diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..e5c5959 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,30 @@ +--- +name: Bug report +about: Report a reproducible problem with the CueMap Rust Engine +title: "[Bug]: " +labels: "" +assignees: "" +--- + +## Describe the bug + + + +## Reproduction + + + +```text + +``` + +## Environment + +- CueMap version/commit: +- Operating system and architecture: +- Rust version or installation method: +- SDK/MCP version, if applicable: + +## Logs and configuration + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..aa1ef92 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,23 @@ +--- +name: Feature request +about: Suggest an improvement for the CueMap Rust Engine +title: "[Feature]: " +labels: "" +assignees: "" +--- + +## Problem + + + +## Proposed solution + + + +## Alternatives considered + + + +## Additional context + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..a8d6ea5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,30 @@ +## Summary + + + +## Changes + + + +## Testing + +- [ ] `cargo check --locked --all-targets` +- [ ] `cargo test --locked` +- [ ] Relevant Windows, package, or integration checks were run or are covered by CI. +- [ ] For code changes, the lexical and hybrid release benchmarks were rerun and the hybrid recall average remains below 10 ms at every requested scale; results are included below. +- [ ] Candidate generation remains semantic-model-free; semantic models are used only for bounded post-generation reranking, with regression coverage if that boundary changed. + +## Release impact + +- [ ] No user-facing behavior change +- [ ] README/changelog updated +- [ ] Migration or compatibility notes included +- [ ] Version/package/release workflow impact reviewed + +## Notes + + + +## Benchmark results + + diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index bd246a7..b52e812 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -4,9 +4,9 @@ on: push: branches: - main - - v0.7.2 pull_request: workflow_dispatch: + workflow_call: permissions: contents: read diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6b4ec19..ca5412e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,28 +2,34 @@ name: Build and Publish Optional NPM Binaries on: push: - branches: [main] - workflow_dispatch: # Allow manual triggering + tags: ["v*"] + workflow_dispatch: jobs: - build-and-publish: - name: Build & Publish (${{ matrix.os }} - ${{ matrix.arch }}) + coverage: + uses: ./.github/workflows/coverage.yml + secrets: inherit + + build: + name: Build and verify (${{ matrix.os }} - ${{ matrix.arch }}) runs-on: ${{ matrix.os }} + container: ${{ matrix.container }} permissions: contents: read - id-token: write strategy: fail-fast: false matrix: include: - - os: ubuntu-latest + - os: ubuntu-22.04 + container: rust:1.93-slim-bookworm target: x86_64-unknown-linux-gnu arch: x64 npm_os: linux npm_arch: x64 pkg_name: engine-linux-x64 - os: ubuntu-24.04-arm + container: rust:1.93-slim-bookworm target: aarch64-unknown-linux-gnu arch: arm64 npm_os: linux @@ -41,8 +47,18 @@ jobs: npm_os: darwin npm_arch: arm64 pkg_name: engine-darwin-arm64 + - os: windows-latest + target: x86_64-pc-windows-msvc + arch: x64 + npm_os: win32 + npm_arch: x64 + pkg_name: engine-win32-x64 steps: + - name: Install Linux build dependencies + if: runner.os == 'Linux' + run: apt-get update && apt-get install -y build-essential pkg-config libssl-dev ca-certificates curl git gzip + - name: Checkout Repository uses: actions/checkout@v4 @@ -52,14 +68,24 @@ jobs: node-version: '24' registry-url: 'https://registry.npmjs.org' - - name: Update npm - run: npm install -g npm@latest + - name: Validate release tag + shell: bash + run: | + version="$(awk -F '"' '/^version = "/ { print $2; exit }' Cargo.toml)" + test "${GITHUB_REF_TYPE}" = "tag" + test "${GITHUB_REF_NAME}" = "v${version}" - name: Setup Rust Toolchain - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@1.93.0 with: targets: ${{ matrix.target }} + - name: Test publication guards + run: node --test scripts/publish-native-artifacts.test.cjs + + - name: Test Rust Engine + run: cargo test --locked --all-targets -- --test-threads=1 + - name: Build Rust Engine run: cargo build --locked --release --target ${{ matrix.target }} @@ -67,26 +93,41 @@ jobs: shell: bash run: | package_dir="npm-packages/${{ matrix.pkg_name }}" - mkdir -p "${package_dir}/bin" "${package_dir}/assets" - - cp target/${{ matrix.target }}/release/cuemap "${package_dir}/bin/cuemap-native" - cp scripts/npm-native-wrapper.cjs "${package_dir}/bin/cuemap" - cp scripts/npm-native-README.md "${package_dir}/README.md" - cp LICENSE "${package_dir}/LICENSE" - chmod +x "${package_dir}/bin/cuemap" "${package_dir}/bin/cuemap-native" + mkdir -p "$package_dir/bin" "$package_dir/assets" + + if [[ "${{ matrix.npm_os }}" == "win32" ]]; then + native_binary="cuemap.exe" + packaged_binary="cuemap-native.exe" + else + native_binary="cuemap" + packaged_binary="cuemap-native" + fi + cp "target/${{ matrix.target }}/release/$native_binary" "$package_dir/bin/$packaged_binary" + cp scripts/npm-native-wrapper.cjs "$package_dir/bin/cuemap" + cp scripts/npm-native-README.md "$package_dir/README.md" + cp LICENSE "$package_dir/LICENSE" + cp NOTICE "$package_dir/NOTICE" + cp THIRD_PARTY_NOTICES.txt "$package_dir/THIRD_PARTY_NOTICES.txt" + cp LGPL-2.1.txt "$package_dir/LGPL-2.1.txt" + cp ONNXRUNTIME-LICENSE.txt "$package_dir/ONNXRUNTIME-LICENSE.txt" + cp ONNXRUNTIME-NOTICES.txt "$package_dir/ONNXRUNTIME-NOTICES.txt" + + if [[ "${{ matrix.npm_os }}" != "win32" ]]; then + chmod +x "$package_dir/bin/cuemap" "$package_dir/bin/$packaged_binary" + fi tokenizer_url="https://cuemap.dev/assets/en_tokenizer.bin.gz" tokenizer_sha256="f54fd31ec463f8646d0239bb531a64e0210ed1ae02bf5e3b42aeeb9bff8305ba" - curl -fsSL --retry 3 "${tokenizer_url}" -o "${package_dir}/assets/en_tokenizer.bin.gz" + curl -fsSL --retry 3 "$tokenizer_url" -o "$package_dir/assets/en_tokenizer.bin.gz" node -e ' const fs = require("node:fs"); const crypto = require("node:crypto"); const [file, expected] = process.argv.slice(1); const actual = crypto.createHash("sha256").update(fs.readFileSync(file)).digest("hex"); if (actual !== expected) throw new Error(`Tokenizer checksum mismatch: ${actual}`); - ' "${package_dir}/assets/en_tokenizer.bin.gz" "${tokenizer_sha256}" - gzip -dc "${package_dir}/assets/en_tokenizer.bin.gz" > "${package_dir}/assets/en_tokenizer.bin" - rm "${package_dir}/assets/en_tokenizer.bin.gz" + ' "$package_dir/assets/en_tokenizer.bin.gz" "$tokenizer_sha256" + gzip -dc "$package_dir/assets/en_tokenizer.bin.gz" > "$package_dir/assets/en_tokenizer.bin" + rm "$package_dir/assets/en_tokenizer.bin.gz" version="$(awk -F '"' '/^version = "/ { print $2; exit }' Cargo.toml)" node -e ' @@ -100,32 +141,139 @@ jobs: os: [os], cpu: [cpu], bin: { cuemap: "bin/cuemap" }, - files: ["bin", "assets", "README.md", "LICENSE"], + files: ["bin", "assets", "README.md", "LICENSE", "NOTICE", "THIRD_PARTY_NOTICES.txt", "LGPL-2.1.txt", "ONNXRUNTIME-LICENSE.txt", "ONNXRUNTIME-NOTICES.txt"], repository: { type: "git", url: "https://github.com/cuemap-dev/cuemap.git" }, author: "Kaan Demirel", - license: "BSL-1.1", + license: "Apache-2.0", publishConfig: { access: "public" }, }; if (os === "linux") manifest.libc = ["glibc"]; fs.writeFileSync(output, `${JSON.stringify(manifest, null, 2)}\n`); - ' "${package_dir}/package.json" "${version}" "${{ matrix.npm_os }}" "${{ matrix.npm_arch }}" "${{ matrix.pkg_name }}" + ' "$package_dir/package.json" "$version" "${{ matrix.npm_os }}" "${{ matrix.npm_arch }}" "${{ matrix.pkg_name }}" - name: Verify NPM package contents working-directory: npm-packages/${{ matrix.pkg_name }} shell: bash run: | - test -x bin/cuemap - test -x bin/cuemap-native + test -f bin/cuemap + if [[ "${{ matrix.npm_os }}" == "win32" ]]; then + test -f bin/cuemap-native.exe + else + test -f bin/cuemap-native + fi test -s assets/en_tokenizer.bin npm pack --dry-run - - name: Publish to NPM + - name: Exercise packaged engine + run: node scripts/native-package-smoke.cjs npm-packages/${{ matrix.pkg_name }} + + - name: Pack verified artifact working-directory: npm-packages/${{ matrix.pkg_name }} + run: npm pack + + - uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.pkg_name }} + path: npm-packages/${{ matrix.pkg_name }}/*.tgz + if-no-files-found: error + + consumer-preflight: + needs: build + strategy: + fail-fast: false + matrix: + include: + - os: ubuntu-latest + package: engine-linux-x64 + - os: ubuntu-24.04-arm + package: engine-linux-arm64 + - os: macos-15-intel + package: engine-darwin-x64 + - os: macos-latest + package: engine-darwin-arm64 + - os: windows-latest + package: engine-win32-x64 + runs-on: ${{ matrix.os }} + permissions: + contents: read + steps: + - uses: actions/checkout@v4 + with: + path: rust_engine + - uses: actions/checkout@v4 + with: + repository: cuemap-dev/typescript-sdk + ref: ${{ github.ref_name }} + path: typescript-sdk + - uses: actions/checkout@v4 + with: + repository: cuemap-dev/python-sdk + ref: ${{ github.ref_name }} + path: python-sdk + - uses: actions/checkout@v4 + with: + repository: cuemap-dev/cuemap-mcp + ref: ${{ github.ref_name }} + path: mcp-server + - uses: actions/checkout@v4 + with: + repository: cuemap-dev/agent-plugin + ref: ${{ github.ref_name }} + path: agent-plugin + - uses: actions/setup-node@v4 + with: + node-version: '24' + - uses: actions/setup-python@v5 + with: + python-version: '3.12' + - run: npm ci + working-directory: typescript-sdk + - run: npm run build + working-directory: typescript-sdk + - run: npm install --ignore-scripts --omit=optional --no-save --package-lock=false ../typescript-sdk + working-directory: mcp-server + - run: python -m pip install -e './python-sdk[dev]' wheel + - uses: actions/download-artifact@v4 + with: + name: ${{ matrix.package }} + path: release-artifact + - name: Select tested native artifact + shell: bash run: | - package_name="$(node -p 'require("./package.json").name')" - package_version="$(node -p 'require("./package.json").version')" - if npm view "${package_name}@${package_version}" version --registry=https://registry.npmjs.org >/dev/null 2>&1; then - echo "${package_name}@${package_version} already exists; skipping publish" - else - npm publish --access public --provenance --verbose - fi + artifact="$(find "$GITHUB_WORKSPACE/release-artifact" -name '*.tgz' -print -quit)" + test -n "$artifact" + echo "CUEMAP_RELEASE_ENGINE_TARBALL=$artifact" >> "$GITHUB_ENV" + - run: node rust_engine/scripts/release-preflight.cjs + + docker-runtime: + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - uses: actions/checkout@v4 + - run: docker build -t cuemap-release-check . + - name: Check authenticated container + shell: bash + run: | + version="$(awk -F '"' '/^version = "/ { print $2; exit }' Cargo.toml)" + python3 scripts/verify-docker-runtime.py --image cuemap-release-check --version "$version" + + publish: + needs: [build, coverage, consumer-preflight, docker-runtime] + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '24' + registry-url: https://registry.npmjs.org + - uses: actions/download-artifact@v4 + with: + pattern: engine-* + path: packages + merge-multiple: true + - name: Publish exactly the tested tarballs + run: node scripts/publish-native-artifacts.cjs packages diff --git a/.github/workflows/release-smoke.yml b/.github/workflows/release-smoke.yml new file mode 100644 index 0000000..fe4dced --- /dev/null +++ b/.github/workflows/release-smoke.yml @@ -0,0 +1,164 @@ +name: Post-release Smoke Test + +on: + workflow_dispatch: + inputs: + version: + description: "Published CueMap version to validate" + required: true + default: "0.7.3" + type: string + +permissions: + contents: read + +jobs: + package-presence: + name: Verify published package set + runs-on: ubuntu-latest + timeout-minutes: 10 + env: + VERSION: ${{ inputs.version }} + steps: + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: "24" + + - name: Verify npm packages and licenses + shell: bash + run: | + node <<'NODE' + const { execFileSync } = require("node:child_process"); + + const version = process.env.VERSION; + const packages = [ + "cuemap", + "cuemap-mcp", + "cuemap-agent-plugin", + "@cuemap-dev/engine-darwin-arm64", + "@cuemap-dev/engine-darwin-x64", + "@cuemap-dev/engine-linux-arm64", + "@cuemap-dev/engine-linux-x64", + "@cuemap-dev/engine-win32-x64", + ]; + + function npmView(packageName, field) { + const output = execFileSync( + "npm", + ["view", `${packageName}@${version}`, field, "--json"], + { encoding: "utf8", stdio: ["ignore", "pipe", "inherit"] }, + ); + return JSON.parse(output); + } + + for (const packageName of packages) { + const publishedVersion = npmView(packageName, "version"); + if (publishedVersion !== version) { + throw new Error(`${packageName} resolved to ${publishedVersion}, expected ${version}`); + } + console.log(`${packageName}@${version} exists`); + } + + for (const packageName of [ + "@cuemap-dev/engine-darwin-arm64", + "@cuemap-dev/engine-darwin-x64", + "@cuemap-dev/engine-linux-arm64", + "@cuemap-dev/engine-linux-x64", + "@cuemap-dev/engine-win32-x64", + ]) { + if (npmView(packageName, "license") !== "Apache-2.0") { + throw new Error(`${packageName} is not Apache-2.0 licensed`); + } + } + + for (const packageName of ["cuemap", "cuemap-mcp", "cuemap-agent-plugin"]) { + if (npmView(packageName, "license") !== "MIT") { + throw new Error(`${packageName} is not MIT licensed`); + } + } + NODE + + - name: Verify published Agent Plugin pin + shell: bash + run: | + temp_dir="$(mktemp -d)" + trap 'rm -rf "$temp_dir"' EXIT + cd "$temp_dir" + npm pack --json --pack-destination "$temp_dir" "cuemap-agent-plugin@${VERSION}" > pack.json + tarball="$(node -p 'JSON.parse(require("fs").readFileSync("pack.json", "utf8"))[0].filename')" + mkdir extracted + tar -xzf "$tarball" -C extracted + node - "$VERSION" <<'NODE' + const fs = require("node:fs"); + const path = require("node:path"); + const expectedVersion = process.argv[2]; + const root = path.join(process.cwd(), "extracted", "package"); + const plugin = JSON.parse(fs.readFileSync(path.join(root, "plugin.json"), "utf8")); + const mcp = JSON.parse(fs.readFileSync(path.join(root, "mcp.json"), "utf8")); + if (plugin.version !== expectedVersion) throw new Error("Agent Plugin version mismatch"); + const server = mcp.mcpServers?.cuemap; + if (!server || server.args?.[1] !== `cuemap-mcp@${expectedVersion}`) { + throw new Error("Agent Plugin does not pin the matching MCP version"); + } + console.log("published Agent Plugin pin verified"); + NODE + + python-package: + name: Verify published Python SDK + runs-on: ubuntu-latest + timeout-minutes: 10 + env: + VERSION: ${{ inputs.version }} + steps: + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" + + - name: Install and import published Python SDK + shell: bash + run: | + python -m venv "$RUNNER_TEMP/cuemap-release-python" + "$RUNNER_TEMP/cuemap-release-python/bin/python" -m pip install --disable-pip-version-check "cuemap==${VERSION}" + "$RUNNER_TEMP/cuemap-release-python/bin/python" - "$VERSION" <<'PY' + import importlib.metadata + import sys + import cuemap + + expected = sys.argv[1] + actual = importlib.metadata.version("cuemap") + assert actual == expected, (actual, expected) + assert cuemap.__version__ == expected, cuemap.__version__ + print(f"published Python SDK {actual} verified") + PY + + platform-smoke: + name: Smoke test (${{ matrix.label }}) + runs-on: ${{ matrix.runner }} + timeout-minutes: 30 + strategy: + fail-fast: false + matrix: + include: + - label: darwin-arm64 + runner: macos-latest + - label: darwin-x64 + runner: macos-15-intel + - label: linux-arm64 + runner: ubuntu-24.04-arm + - label: linux-x64 + runner: ubuntu-latest + - label: win32-x64 + runner: windows-latest + steps: + - name: Check out smoke harness + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: "24" + + - name: Install and exercise published packages + run: node scripts/release-smoke.cjs --version ${{ inputs.version }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000..21cb5c3 --- /dev/null +++ b/.github/workflows/windows.yml @@ -0,0 +1,65 @@ +name: Windows Compatibility + +on: + push: + branches: [main] + pull_request: + workflow_dispatch: + +permissions: + contents: read + +jobs: + windows: + name: Windows x64 build and tests + runs-on: windows-latest + timeout-minutes: 45 + env: + CARGO_TERM_COLOR: always + + steps: + - name: Check out source + uses: actions/checkout@v6 + + - name: Install Rust + uses: dtolnay/rust-toolchain@stable + + - name: Check all targets with the default feature set + run: cargo check --locked --all-targets + + - name: Install nlprule tokenizer + shell: pwsh + env: + TOKENIZER_URL: https://cuemap.dev/assets/en_tokenizer.bin.gz + TOKENIZER_SHA256: f54fd31ec463f8646d0239bb531a64e0210ed1ae02bf5e3b42aeeb9bff8305ba + run: | + $archive = Join-Path $env:RUNNER_TEMP 'en_tokenizer.bin.gz' + $tokenizer = Join-Path $env:RUNNER_TEMP 'en_tokenizer.bin' + Invoke-WebRequest -Uri $env:TOKENIZER_URL -OutFile $archive + $actualHash = (Get-FileHash -Algorithm SHA256 -Path $archive).Hash.ToLowerInvariant() + if ($actualHash -ne $env:TOKENIZER_SHA256.ToLowerInvariant()) { + throw "Tokenizer checksum mismatch: expected $env:TOKENIZER_SHA256, got $actualHash" + } + $sourceStream = [System.IO.File]::OpenRead($archive) + $targetStream = [System.IO.File]::Create($tokenizer) + $gzipStream = [System.IO.Compression.GzipStream]::new( + $sourceStream, + [System.IO.Compression.CompressionMode]::Decompress + ) + try { + $gzipStream.CopyTo($targetStream) + } finally { + $gzipStream.Dispose() + $targetStream.Dispose() + $sourceStream.Dispose() + } + "TOKENIZER_PATH=$tokenizer" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append + + - name: Run Windows-compatible tests without the optional encoder + run: cargo test --locked --no-default-features --all-targets -- --test-threads=1 + + - name: Build the release executable + run: cargo build --locked --release + + - name: Verify the Windows executable + run: .\target\release\cuemap.exe --version diff --git a/.gitignore b/.gitignore index f47dd8b..61ea64b 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,10 @@ dist/ data/nlprule/ data/reports/ data/snapshots/ -tests/data/ +tests/data/* +!tests/data/ +!tests/data/verbs.csv +!tests/data/nouns.csv snapshots/ __pycache__/ *.py[cod] diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md new file mode 100644 index 0000000..07115b1 --- /dev/null +++ b/ARCHITECTURE.md @@ -0,0 +1,192 @@ +# CueMap Rust Engine Architecture + +This document contains the system architecture diagrams for the CueMap Rust Engine. It covers the high-level component layout, synchronous write and read flows, and the background job pipeline. + +## System Architecture + +### 1. High-Level Overview + +```mermaid +graph TB + subgraph "Clients" + SDK[Python/TS SDKs] + CURL[HTTP Clients] + end + + subgraph "API Layer" + AXUM[Axum HTTP Server] + AUTH[Auth Middleware] + end + + subgraph "Multi-Tenant Core" + MT[MultiTenantEngine] + MAIN[CueMap Engine
DashMap + aHash] + LEX[Lexicon Engine
Token β†’ Cue] + ALIAS[Alias Engine
Synonyms] + end + + subgraph "Background Processing" + QUEUE[Job Queue
Reinforcement + Agent Jobs] + SESSION[Session Manager
Ingest Progress] + end + + subgraph "Intelligence" + NL[NL Tokenizer
Lemmatization + RAKE] + STRUCT[Structural Facets
Evidence + Metadata] + end + + subgraph "Persistence" + PERSIST[Snapshots
Zstd + ChaCha20] + end + + SDK --> AXUM + CURL --> AXUM + AXUM --> AUTH --> MT + + MT --> MAIN + MT --> LEX + MT --> ALIAS + + AXUM --> QUEUE + AXUM --> SESSION + + QUEUE --> LEX + + MAIN <-.-> PERSIST + LEX <-.-> PERSIST + + style MAIN fill:#4CAF50 + style LEX fill:#2196F3 + style ALIAS fill:#FF9800 + style QUEUE fill:#9C27B0 +``` + +### 2. Write Flow + +```mermaid +sequenceDiagram + participant C as Client + participant API as HTTP Handler + participant NL as NL Tokenizer + participant Norm as Normalizer + participant Tax as Taxonomy + participant Main as CueMap Engine + + C->>API: Memory write request
{content, cues[]} + + alt cues[] is empty + API->>NL: tokenize_to_cues(content) + NL-->>API: ["payment", "timeout", ...] + end + + API->>Norm: normalize_cue(each) + Norm-->>API: normalized cues + + API->>Tax: validate_cues(cues) + Tax-->>API: {accepted[], rejected[]} + + API->>Main: add_memory(content, accepted) + Main-->>API: memory_id + + API-->>C: 200 {id, cues, latency_ms} + Note over C,API: βœ… Synchronous ~2ms + + Note over API,Main: Cue extraction and indexing happen synchronously +``` + +### 3. Read Flow + +```mermaid +sequenceDiagram + participant C as Client + participant API as HTTP Handler + participant Lex as Lexicon + participant Alias as Alias Engine + participant Art as CueBridge Artifacts + participant Main as CueMap Engine + participant Q as Job Queue + + C->>API: Recall request
{query_text?, cues[], limit} + + alt query_text provided + API->>Lex: resolve_cues_from_text(query) + Lex-->>API: resolved_cues[] + end + + API->>API: Merge & Normalize cues + + opt explicit aliases enabled + API->>Alias: apply_aliases(cues) + Alias-->>API: weighted_cues[(cue, weight)] + end + + opt exact recall is weak and artifacts are enabled + API->>Art: lookup GapPack(query_signature) + Art-->>API: capped expansion cues + end + + API->>Main: recall_weighted(cues, limit, options) + Main->>Main: Salience Bias + Main->>Main: Score & Rank + + Main-->>API: RecallResult[] + + opt auto_reinforce = true + API->>Q: Enqueue ReinforceMemories + API->>Q: Enqueue ReinforceLexicon + end + + API-->>C: {results, explain?, latency_ms} +``` + +### 4. Background Job Pipeline + +```mermaid +graph TB + subgraph "Job Sources" + INGEST[Ingestion] + RECALL[Recall] + AGENT[Self-Learning Agent] + TIMER[60s Heatmap Tick] + end + + subgraph "Job Types" + J4[ReinforceMemories] + J5[ReinforceLexicon] + J7[ExtractAndIngest] + J8[VerifyFile] + J10[DeleteMemory] + J9[UpdateMarketHeatmap] + end + + subgraph "Processing" + SESSION[Session Manager
Tracks write completion] + QUEUE[MPSC Queue
Async Worker] + end + + subgraph "Side Effects" + E1[Memories Reinforced] + E2[Lexicon Reinforced] + E4[Content Extracted] + E5[Stale File Memories Deleted] + E6[Market Heatmap Updated] + end + + RECALL --> J4 & J5 + INGEST --> J7 + AGENT --> J7 & J8 & J10 + TIMER --> J9 + + J7 --> SESSION + J4 & J5 --> QUEUE + J7 & J8 & J10 --> QUEUE + J9 --> QUEUE + + QUEUE --> E1 & E2 & E4 & E5 & E6 + + style QUEUE fill:#9C27B0 + style SESSION fill:#673AB7 + style E1 fill:#2196F3 + style E2 fill:#4CAF50 + style E5 fill:#F44336 +``` diff --git a/CHANGELOG.md b/CHANGELOG.md index d133553..acf43d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,23 @@ # Changelog -All notable changes to the CueMap Rust Engine will be documented in this file. +## [0.7.3] - 2026-08-27 + +### Added +- **Portable project packages**: Added checksummed `.cuemap` packages that carry ready-to-query project snapshots, disk-backed content, and CueBridge artifacts without replaying ingestion. Matching CLI and HTTP operations support local pack/load and S3 push/pull through an already-configured AWS CLI. Imports validate paths, payload hashes, and snapshots before staged installation. +- **Project sync protocol**: Added Git-like S3 sync with immutable content-addressed package commits, local base tracking, fast-forward push/pull, conditional head updates, and explicit divergence refusal across CLI and HTTP. +- **Mobile-language ingestion**: Added Tree-sitter-backed chunking and structural cues for Swift, Dart, Objective-C, and Kotlin files, including uppercase extensions and code-fence routing. +- **Broader source ingestion**: Added Tree-sitter-backed chunking for C, C++, C#, and Bash, plus structured TOML ingestion. Ambiguous `.h` files use source syntax and Apple-project markers to distinguish Objective-C from C/C++. +- **Language-aware cue filtering**: Added keyword sets for the new mobile languages so code ingestion does not pollute lexical cues with language syntax. +- **Project memory residency**: Added configurable inactivity-based unloading, transparent demand-loading for requests targeting unloaded projects, explicit `POST /projects/{project_id}/load` and `POST /projects/{project_id}/unload` endpoints, and loaded-state reporting in project summaries. The default inactivity period is one day. +- Added engine-level recall `response_mode` (`full` by default or `preview`) and `preview_chars` (100–2000, default 200). Single- and cross-project responses omit full content in preview mode while preserving ranking and provenance. +- Added opt-in `GET /memories/:id?decoded=true` for readable content and provenance without storage internals. Uses the engine content reader for compressed, encrypted, or disk-backed memories; the default HTTP response is unchanged. + +### Fixed +- **Lemmatization correctness**: Corrected common false lemmas, with regression coverage for truncated and wrong-part-of-speech outputs. + +### Changed +- **License**: The CueMap Rust Engine and native engine packages are licensed under Apache-2.0 from v0.7.3 onward. Earlier releases remain under BSL-1.1. +- **Default port**: Changed the local HTTP server default from `8080` to `8735`; `CUEMAP_PORT` and the CLI `--port` option remain available for overrides. ## [0.7.2] - 2026-08-04 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..4f93f4f --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,60 @@ +# Contributing to CueMap Rust Engine + +Thanks for helping improve CueMap. This repository contains the Rust engine; the Python SDK, TypeScript SDK, MCP server, and agent plugin have separate release surfaces. + +## Before you start + +- Check existing issues and pull requests before opening a new one. +- For security vulnerabilities, follow [SECURITY.md](SECURITY.md) instead of opening a public issue. +- Keep changes focused and explain user-visible behavior in the pull request. + +## Local development + +Install a current stable Rust toolchain and run commands from the repository root: + +```bash +cargo check --locked --all-targets +cargo test --locked +``` + +The engine uses a compiled `nlprule` tokenizer at runtime. Set `TOKENIZER_PATH` to a compatible tokenizer file, or place `en_tokenizer.bin` under `~/.cuemap/data`, when running the server locally. The test suite supplies its own temporary fixtures where needed. + +For Windows-specific changes, the pull request must pass the Windows Compatibility workflow. A local Windows run should include: + +```powershell +cargo check --locked --all-targets +cargo test --locked --no-default-features --all-targets -- --test-threads=1 +cargo build --locked --release +.\target\release\cuemap.exe --version +``` + +## Performance requirement + +Every code contribution that changes the engine, ingestion, tokenization, recall, persistence, concurrency, or dependencies must rerun the release benchmark before review. Documentation-only changes are exempt unless they change benchmark claims or instructions. + +Run the lexical and hybrid benchmark modes using the procedure in the [Performance section of the README](README.md#performance). Include the exact commands, hardware, dataset sizes, and console or JSON results in the pull request. The hybrid recall average latency must remain below 10 ms at every requested scale. Report P50 and P95 as well so reviewers can see tail behavior; a contribution that misses the latency ceiling or omits benchmark results is not review-ready. + +Use a release build of the branch under test and keep the benchmark settings comparable with the README reference run. Do not replace the required benchmark with a microbenchmark or a smaller synthetic test. + +## Retrieval architecture requirement + +Candidate generation must remain semantic-model-free. Sparse lexical and structural retrieval must select the candidate set without invoking an embedding model or using semantic vectors to discover additional candidates. Semantic models may only participate in the bounded post-generation reranking path that is already exposed by the explicit semantic or hybrid modes. Any change to this boundary must include regression coverage and is not review-ready without maintainer approval. + +## Making changes + +- Add or update regression tests for behavior changes. +- Add ingestion fixtures when introducing a file format or Tree-sitter grammar. +- Preserve deterministic behavior and avoid introducing network or model calls into the default engine path. +- Update the README or changelog when a change affects users, configuration, compatibility, or release behavior. +- Do not commit generated build output, credentials, local snapshots, tokenizer files, or benchmark datasets. + +## Pull requests + +A useful pull request includes: + +- a concise summary of the problem and solution; +- the test commands that were run and any platform limitations; +- documentation or changelog updates for user-facing changes; +- migration notes for persistence, API, CLI, or compatibility changes. + +Keep unrelated cleanup out of feature pull requests so reviews remain easy to verify. diff --git a/Cargo.lock b/Cargo.lock index 00f3477..199b8c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -306,6 +306,16 @@ dependencies = [ "generic-array", ] +[[package]] +name = "brokk-tree-sitter-kotlin" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "026d0000e970e184e93236c12c2ce899828b3aae6a97f4741858ae4b498611bd" +dependencies = [ + "cc", + "tree-sitter-language", +] + [[package]] name = "bstr" version = "1.12.1" @@ -662,7 +672,7 @@ dependencies = [ [[package]] name = "cuemap" -version = "0.7.2" +version = "0.7.3" dependencies = [ "ahash", "aho-corasick 1.1.4", @@ -671,6 +681,7 @@ dependencies = [ "axum-extra", "base64 0.21.7", "bincode", + "brokk-tree-sitter-kotlin", "bytes", "calamine", "chacha20poly1305", @@ -713,6 +724,7 @@ dependencies = [ "time", "tokenizers", "tokio", + "tokio-util", "toml", "tower 0.4.13", "tower-http 0.5.2", @@ -720,14 +732,22 @@ dependencies = [ "tracing-appender", "tracing-subscriber", "tree-sitter", + "tree-sitter-bash", + "tree-sitter-c", + "tree-sitter-c-sharp", + "tree-sitter-cpp", "tree-sitter-css", + "tree-sitter-dart", "tree-sitter-go", "tree-sitter-html", "tree-sitter-java", "tree-sitter-javascript", + "tree-sitter-objc", "tree-sitter-php", "tree-sitter-python", "tree-sitter-rust", + "tree-sitter-swift", + "tree-sitter-toml-ng", "tree-sitter-typescript", "unicode-general-category", "unicode-segmentation", @@ -3947,6 +3967,46 @@ dependencies = [ "tree-sitter-language", ] +[[package]] +name = "tree-sitter-bash" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e5ec769279cc91b561d3df0d8a5deb26b0ad40d183127f409494d6d8fc53062" +dependencies = [ + "cc", + "tree-sitter-language", +] + +[[package]] +name = "tree-sitter-c" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9b2eb57a55fed6b00812912e730b7a275cf4fe98bfd6a5d76263d4438371728" +dependencies = [ + "cc", + "tree-sitter-language", +] + +[[package]] +name = "tree-sitter-c-sharp" +version = "0.23.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1aac67f1ad71de1d6d39708d34811081c26dfa495658de6c14c34200849357c" +dependencies = [ + "cc", + "tree-sitter-language", +] + +[[package]] +name = "tree-sitter-cpp" +version = "0.23.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df2196ea9d47b4ab4a31b9297eaa5a5d19a0b121dceb9f118f6790ad0ab94743" +dependencies = [ + "cc", + "tree-sitter-language", +] + [[package]] name = "tree-sitter-css" version = "0.23.2" @@ -3957,6 +4017,16 @@ dependencies = [ "tree-sitter-language", ] +[[package]] +name = "tree-sitter-dart" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "325dd1e24ee9ee21111e9c43680ae7d6010aaa9f282b048a99b9c7163c1cf553" +dependencies = [ + "cc", + "tree-sitter-language", +] + [[package]] name = "tree-sitter-go" version = "0.23.4" @@ -4003,6 +4073,16 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782" +[[package]] +name = "tree-sitter-objc" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ca8bb556423fc176f0535e79d525f783a6684d3c9da81bf9d905303c129e1d2" +dependencies = [ + "cc", + "tree-sitter-language", +] + [[package]] name = "tree-sitter-php" version = "0.23.11" @@ -4033,6 +4113,26 @@ dependencies = [ "tree-sitter-language", ] +[[package]] +name = "tree-sitter-swift" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe36052155b9dd69ca82b3b8f1b4ccfb2d867125ac1a4db1dd7331829242668c" +dependencies = [ + "cc", + "tree-sitter-language", +] + +[[package]] +name = "tree-sitter-toml-ng" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9adc2c898ae49730e857d75be403da3f92bb81d8e37a2f918a08dd10de5ebb1" +dependencies = [ + "cc", + "tree-sitter-language", +] + [[package]] name = "tree-sitter-typescript" version = "0.23.2" diff --git a/Cargo.toml b/Cargo.toml index a8765d0..00e1cd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "cuemap" -version = "0.7.2" +version = "0.7.3" edition = "2021" autobins = false -license = "BSL-1.1" +license = "Apache-2.0" description = "High-performance temporal-associative memory engine for AI agents" readme = "README.md" repository = "https://github.com/cuemap-dev/cuemap" @@ -29,8 +29,10 @@ name = "cuemap" path = "src/main.rs" [dependencies] +tempfile = "3.8" axum = { version = "0.7", features = ["macros"] } tokio = { version = "1", features = ["full", "signal"] } +tokio-util = { version = "0.7", features = ["io"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" bincode = "1.3" @@ -38,7 +40,7 @@ dashmap = "5.5" uuid = { version = "1.6", features = ["v4", "serde", "v5"] } rayon = "1.8" tower = "0.4" -tower-http = { version = "0.5", features = ["cors"] } +tower-http = { version = "0.5", features = ["cors", "limit"] } rand = "0.8" chrono = "0.4" indexmap = { version = "2.1", features = ["serde"] } @@ -63,6 +65,15 @@ tree-sitter-html = "0.23.1" tree-sitter-css = "0.23.1" tree-sitter-java = "0.23.0" tree-sitter-php = "0.23.0" +tree-sitter-swift = "0.7.3" +tree-sitter-dart = "0.2.0" +tree-sitter-objc = "3.0.2" +brokk-tree-sitter-kotlin = "0.4.0" +tree-sitter-c = "0.24.2" +tree-sitter-cpp = "0.23.4" +tree-sitter-c-sharp = "0.23.5" +tree-sitter-bash = "0.25.1" +tree-sitter-toml-ng = "0.7.0" csv = "1.3" serde_yaml = "0.9" half = { version = "1.8.3", features = ["serde"] } @@ -110,7 +121,6 @@ semantic-encoder = ["dep:ort", "dep:tokenizers"] [dev-dependencies] tokio = { version = "1.0", features = ["full", "test-util"] } -tempfile = "3.8" tower = { version = "0.4", features = ["util"] } [profile.release] diff --git a/Dockerfile b/Dockerfile index 65f2999..fdf533d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM rust:1.93-slim-trixie AS builder +FROM rust:1.93-slim-bookworm AS builder WORKDIR /build @@ -23,7 +23,7 @@ FROM scratch AS native-binary COPY --from=builder /build/cuemap /cuemap -FROM debian:trixie-slim AS tokenizer +FROM debian:bookworm-slim AS tokenizer ARG TOKENIZER_URL="https://cuemap.dev/assets/en_tokenizer.bin.gz" ARG TOKENIZER_SHA256="f54fd31ec463f8646d0239bb531a64e0210ed1ae02bf5e3b42aeeb9bff8305ba" @@ -36,9 +36,9 @@ RUN apt-get update \ && gzip -dc /tmp/en_tokenizer.bin.gz > /en_tokenizer.bin \ && rm /tmp/en_tokenizer.bin.gz -FROM debian:trixie-slim AS runtime +FROM debian:bookworm-slim AS runtime -ARG VERSION=0.7.2 +ARG VERSION=0.7.3 ARG REVISION="" LABEL org.opencontainers.image.title="CueMap Engine" \ @@ -57,21 +57,24 @@ RUN apt-get update \ --home-dir /home/cuemap --shell /usr/sbin/nologin cuemap \ && install -d -o cuemap -g cuemap /app/data /app/data/snapshots /app/assets +COPY LICENSE NOTICE THIRD_PARTY_NOTICES.txt LGPL-2.1.txt ONNXRUNTIME-LICENSE.txt ONNXRUNTIME-NOTICES.txt /app/licenses/ + COPY --from=builder --chown=cuemap:cuemap /build/cuemap /app/cuemap COPY --from=tokenizer --chown=cuemap:cuemap /en_tokenizer.bin /app/assets/en_tokenizer.bin ENV HOME=/home/cuemap \ RUST_LOG=info \ - CUEMAP_PORT=8080 \ + CUEMAP_PORT=8735 \ + CUEMAP_HOST=0.0.0.0 \ CUEMAP_DATA_DIR=/app/data \ CUEMAP_SNAPSHOT_INTERVAL_SECONDS=60 \ TOKENIZER_PATH=/app/assets/en_tokenizer.bin -EXPOSE 8080 +EXPOSE 8735 STOPSIGNAL SIGTERM HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ - CMD curl -fsS "http://127.0.0.1:${CUEMAP_PORT:-8080}/" || exit 1 + CMD curl -fsS "http://127.0.0.1:${CUEMAP_PORT:-8735}/healthz" || exit 1 USER cuemap diff --git a/LGPL-2.1.txt b/LGPL-2.1.txt new file mode 100644 index 0000000..f6683e7 --- /dev/null +++ b/LGPL-2.1.txt @@ -0,0 +1,501 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, see . + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Moe Ghoul, President of Vice + +That's all there is to it! diff --git a/LICENSE b/LICENSE index 3a52b78..30680dc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,29 +1,202 @@ -Business Source License 1.1 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ -License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved. -"Business Source License" is a trademark of MariaDB Corporation Ab. + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -Parameters + 1. Definitions. -Licensed Work: CueMap Engine -Licensor: CueMap/Kaan Demirel + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -Additional Use Grant: -You may make use of the Licensed Work, provided that you may not use the Licensed Work for a Database Service. + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. -A "Database Service" is a commercial offering that allows third parties (other than your employees and contractors) to consume the Licensed Work by accessing the Licensed Work over a network or interacting with software applications that use the Licensed Work to provide same or similar functionality. + "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. -Change Date: 2030-03-02 -Change License: Version 2.0, January 2004 of the Apache License (http://www.apache.org/licenses/) + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -Terms + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -The Licensor hereby grants you the right to copy, modify, create derivative works, redistribute, and make non-production use of the Licensed Work. The Licensor may make an Additional Use Grant, above, permitting limited production use. + "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. -Effective on the Change Date, or the fourth anniversary of the first publicly available distribution of a specific version of the Licensed Work under this License, whichever comes first, the Licensor hereby grants you a license under the terms of the Change License, and such license applies to this specific version of the Licensed Work. + "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). -Any use of the Licensed Work in violation of this License will automatically terminate your rights under this License. + "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. -This License does not grant you any right in any trademark or logo of Licensor or its affiliates. + "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." -Unless required by applicable law or agreed to in writing, the Licensed Work is provided "AS IS", 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. + "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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..4c71421 --- /dev/null +++ b/NOTICE @@ -0,0 +1,44 @@ +CueMap Rust Engine +Copyright 2026 Kaan Demirel + +CueMap's original source is licensed under Apache-2.0. Third-party components +retain their own licenses. Cargo dependency attributions and license texts are +included in THIRD_PARTY_NOTICES.txt, including build and platform dependencies. + +Bundled MiniLM model and tokenizer +--------------------------------- +Upstream: sentence-transformers/paraphrase-MiniLM-L3-v2 +Source: https://huggingface.co/sentence-transformers/paraphrase-MiniLM-L3-v2 +License: Apache-2.0 (see LICENSE) + +The bundled model_qint8_arm64.onnx is an unchanged upstream ONNX export: +https://huggingface.co/sentence-transformers/paraphrase-MiniLM-L3-v2/blob/e51865b/onnx/model_qint8_arm64.onnx +SHA-256: 44a2d6852c28e7a4cff4d77a8bc8d5ca2a8b38884c1fa746e6652d830109e0c2 +The model_int4.onnx file is a locally quantized derivative of that model family. +The tokenizer.json contains the matching upstream tokenizer configuration. +The local directory name all-MiniLM-L3-v2 is an internal identifier. +Artifact hashes are recorded in assets/all-MiniLM-L3-v2/SHA256SUMS. + +The intent_probe_qint8.head and intent_probe_q4.head files were trained for +CueMap using project-created examples and are distributed under Apache-2.0. + +nlprule tokenizer +----------------- +The nlprule Rust library offers MIT or Apache-2.0 licensing. Its compiled +LanguageTool-derived tokenizer resources have separate LGPLv2.1 licensing. +The distributed en_tokenizer.bin is an unchanged upstream nlprule binary. +License text: LGPL-2.1.txt +Upstream licensing: https://github.com/bminixhofer/nlprule#license +Resource source project: https://github.com/languagetool-org/languagetool/tree/v5.2 +Tokenizer build tools: https://github.com/bminixhofer/nlprule/tree/0.6.4 +CueMap loads this file separately at runtime; TOKENIZER_PATH can select a +replacement tokenizer. The distribution's compressed download is: +https://cuemap.dev/assets/en_tokenizer.bin.gz +SHA-256: f54fd31ec463f8646d0239bb531a64e0210ed1ae02bf5e3b42aeeb9bff8305ba + +ONNX Runtime +------------ +The optional semantic encoder links ONNX Runtime 1.22.0 via ort-sys rc.10. +Source: https://github.com/microsoft/onnxruntime/tree/v1.22.0 +License and bundled dependency notices: ONNXRUNTIME-LICENSE.txt and +ONNXRUNTIME-NOTICES.txt. diff --git a/ONNXRUNTIME-LICENSE.txt b/ONNXRUNTIME-LICENSE.txt new file mode 100644 index 0000000..48bc6bb --- /dev/null +++ b/ONNXRUNTIME-LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ONNXRUNTIME-NOTICES.txt b/ONNXRUNTIME-NOTICES.txt new file mode 100644 index 0000000..7b2bbdd --- /dev/null +++ b/ONNXRUNTIME-NOTICES.txt @@ -0,0 +1,6156 @@ +THIRD PARTY SOFTWARE NOTICES AND INFORMATION + +Do Not Translate or Localize + +This software incorporates material from third parties. Microsoft makes certain +open source code available at http://3rdpartysource.microsoft.com, or you may +send a check or money order for US $5.00, including the product name, the open +source component name, and version number, to: + +Source Code Compliance Team +Microsoft Corporation +One Microsoft Way +Redmond, WA 98052 +USA + +Notwithstanding any other terms, you may reverse engineer this software to the +extent required to debug changes to any libraries licensed under the GNU Lesser +General Public License. + +_____ + +Intel Math Kernel Library (Intel MKL) + +Intel Simplified Software License (Version April 2018) + +Copyright (c) 2018 Intel Corporation. + +Use and Redistribution. You may use and redistribute the software (the β€œSoftware”), without modification, +provided the following conditions are met: + +* Redistributions must reproduce the above copyright notice and the following terms of use in the Software +and in the documentation and/or other materials provided with the distribution. + +* Neither the name of Intel nor the names of its suppliers may be used to endorse or promote products +derived from this Software without specific prior written permission. + +* No reverse engineering, decompilation, or disassembly of this Software is permitted. + +Limited patent license. Intel grants you a world-wide, royalty-free, non-exclusive license under patents it now +or hereafter owns or controls to make, have made, use, import, offer to sell and sell (β€œUtilize”) this Software, +but solely to the extent that any such patent is necessary to Utilize the Software alone. The patent license +shall not apply to any combinations which include this software. No hardware per se is licensed hereunder. + +Third party and other Intel programs. β€œThird Party Programs” are the files listed in the β€œthird-party-programs.txt” +text file that is included with the Software and may include Intel programs under separate license terms. +Third Party Programs, even if included with the distribution of the Materials, are governed by +separate license terms and those license terms solely govern your use of those programs. + +DISCLAIMER. THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED. THIS SOFTWARE IS +NOT INTENDED FOR USE IN SYSTEMS OR APPLICATIONS WHERE FAILURE OF THE SOFTWARE +MAY CAUSE PERSONAL INJURY OR DEATH AND YOU AGREE THAT YOU ARE FULLY RESPONSIBLE FOR ANY +CLAIMS, COSTS, DAMAGES, EXPENSES, AND ATTORNEYS’ FEES ARISING OUT OF ANY SUCH USE, +EVEN IF ANY CLAIM ALLEGES THAT INTEL WAS NEGLIGENT REGARDING THE DESIGN OR MANUFACTURE OF +THE MATERIALS. + +LIMITATION OF LIABILITY. IN NO EVENT WILL INTEL BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY +OF SUCH DAMAGE. YOU AGREE TO INDEMNIFY AND HOLD INTEL HARMLESS AGAINST ANY CLAIMS +AND EXPENSES RESULTING FROM YOUR USE OR UNAUTHORIZED USE OF THE SOFTWARE. + +No support. Intel may make changes to the Software, at any time without notice, and is not obligated to +support, update or provide training for the Software. + +Termination. Intel may terminate your right to use the Software in the event of your breach of this Agreement +and you fail to cure the breach within a reasonable period of time. + +Feedback. Should you provide Intel with comments, modifications, corrections, enhancements or other input +(β€œFeedback”) related to the Software Intel will be free to use, disclose, reproduce, license or otherwise +distribute or exploit the Feedback in its sole discretion without any obligations or restrictions of any kind, +including without limitation, intellectual property rights or licensing obligations. + +Compliance with laws. You agree to comply with all relevant laws and regulations governing your use, +transfer, import or export (or prohibition thereof) of the Software. + +Governing law. All disputes will be governed by the laws of the United States of America and the State of +Delaware without reference to conflict of law principles and subject to the exclusive jurisdiction of the state or +federal courts sitting in the State of Delaware, and each party agrees that it submits to the personal +jurisdiction and venue of those courts and waives any objections. The United Nations Convention on +Contracts for the International Sale of Goods (1980) is specifically excluded and will not apply to the +Software. + +*Other names and brands may be claimed as the property of others. + +_____ + +protocolbuffers/protobuf + +Copyright 2008 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Code generated by the Protocol Buffer compiler is owned by the owner +of the input file used when generating it. This code is not +standalone and requires a support library to be linked with it. This +support library is itself covered by the above license. + +_____ + +madler/zlib + +The deflate format used by zlib was defined by Phil Katz. The deflate and +zlib specifications were written by L. Peter Deutsch. Thanks to all the +people who reported problems and suggested various improvements in zlib; they +are too numerous to cite here. + +Copyright notice: + + (C) 1995-2017 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +If you use the zlib library in a product, we would appreciate *not* receiving +lengthy legal documents to sign. The sources are provided for free but without +warranty of any kind. The library has been entirely written by Jean-loup +Gailly and Mark Adler; it does not include third-party code. + +If you redistribute modified sources, we would appreciate that you include in +the file ChangeLog history information documenting your changes. Please read +the FAQ for more information on the distribution of modified source versions. + +_____ + +pybind/pybind11 + +Copyright (c) 2016 Wenzel Jakob , All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Please also refer to the file CONTRIBUTING.md, which clarifies licensing of +external contributions to this project including patches, pull requests, etc. + +_____ + +onnx +Open Neural Network Exchange + +Copyright (c) Facebook, Inc. and Microsoft Corporation. All rights reserved. + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + +_____ + +Eigen + +MPL v2.0 +Mozilla Public License Version 2.0 + + +================================== + +1. Definitions + +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions + +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities + +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation + +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination + +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +_____ + +intel/dnnl + +Copyright 2016-2018 Intel Corporation + +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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + +sub-components: + +xbyak + +Copyright (c) 2007 MITSUNARI Shigeo. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. +Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. +Neither the name of the copyright owner nor the names of its contributors may +be used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +_____ + +Microsoft GSL + +Copyright (c) 2015 Microsoft Corporation. All rights reserved. + +This code is licensed under the MIT License (MIT). + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +_____ + +Tensorflow + +Copyright 2018 The TensorFlow Authors. All rights reserved. + +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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2017, The TensorFlow 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. + +_____ + +Microsoft Cognitive Toolkit (CNTK) + +Copyright (c) Microsoft Corporation. All rights reserved. + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, +merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +_____ + +NumPy License + +Copyright (c) 2005, NumPy Developers + +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + Neither the name of the NumPy Developers nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS β€œAS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +_____ + +Pytorch / Caffe2 + +From PyTorch: + +Copyright (c) 2016- Facebook, Inc (Adam Paszke) +Copyright (c) 2014- Facebook, Inc (Soumith Chintala) +Copyright (c) 2011-2014 Idiap Research Institute (Ronan Collobert) +Copyright (c) 2012-2014 Deepmind Technologies (Koray Kavukcuoglu) +Copyright (c) 2011-2012 NEC Laboratories America (Koray Kavukcuoglu) +Copyright (c) 2011-2013 NYU (Clement Farabet) +Copyright (c) 2006-2010 NEC Laboratories America (Ronan Collobert, Leon Bottou, Iain Melvin, Jason Weston) +Copyright (c) 2006 Idiap Research Institute (Samy Bengio) +Copyright (c) 2001-2004 Idiap Research Institute (Ronan Collobert, Samy Bengio, Johnny Mariethoz) + +From Caffe2: + +Copyright (c) 2016-present, Facebook Inc. All rights reserved. + +All contributions by Facebook: +Copyright (c) 2016 Facebook Inc. + +All contributions by Google: +Copyright (c) 2015 Google Inc. +All rights reserved. + +All contributions by Yangqing Jia: +Copyright (c) 2015 Yangqing Jia +All rights reserved. + +All contributions from Caffe: +Copyright(c) 2013, 2014, 2015, the respective contributors +All rights reserved. + +All other contributions: +Copyright(c) 2015, 2016 the respective contributors +All rights reserved. + +Caffe2 uses a copyright model similar to Caffe: each contributor holds +copyright over their contributions to Caffe2. The project versioning records +all such contribution and copyright details. If a contributor wants to further +mark their specific copyright on a particular contribution, they should +indicate their copyright solely in the commit message of the change when it is +committed. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the names of Facebook, Deepmind Technologies, NYU, NEC Laboratories America + and IDIAP Research Institute nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +_____ + +Caffe + +COPYRIGHT + +All contributions by the University of California: +Copyright (c) 2014-2017 The Regents of the University of California (Regents) +All rights reserved. + +All other contributions: +Copyright (c) 2014-2017, the respective contributors +All rights reserved. + +Caffe uses a shared copyright model: each contributor holds copyright over +their contributions to Caffe. The project versioning records all such +contribution and copyright details. If a contributor wants to further mark +their specific copyright on a particular contribution, they should indicate +their copyright solely in the commit message of the change when it is +committed. + +LICENSE + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +CONTRIBUTION AGREEMENT + +By contributing to the BVLC/caffe repository through pull-request, comment, +or otherwise, the contributor releases their content to the +license and copyright terms herein. + +_____ + +The LLVM Compiler Infrastructure + +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2017 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} +pyyaml tests llvm/test/YAMLParser/{*.data, LICENSE.TXT} +ARM contributions llvm/lib/Target/ARM/LICENSE.TXT +md5 contributions llvm/lib/Support/MD5.cpp llvm/include/llvm/Support/MD5.h + +_____ + +google/benchmark + + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + +CONTRIBUTORS + +# People who have agreed to one of the CLAs and can contribute patches. +# The AUTHORS file lists the copyright holders; this file +# lists people. For example, Google employees are listed here +# but not in AUTHORS, because Google holds the copyright. +# +# Names should be added to this file only after verifying that +# the individual or the individual's organization has agreed to +# the appropriate Contributor License Agreement, found here: +# +# https://developers.google.com/open-source/cla/individual +# https://developers.google.com/open-source/cla/corporate +# +# The agreement for individuals can be filled out on the web. +# +# When adding J Random Contributor's name to this file, +# either J's name or J's organization's name should be +# added to the AUTHORS file, depending on whether the +# individual or corporate CLA was used. +# +# Names should be added to this file as: +# Name +# +# Please keep the list sorted. + +Albert Pretorius +Arne Beer +Billy Robert O'Neal III +Chris Kennelly +Christopher Seymour +David Coeurjolly +Deniz Evrenci +Dominic Hamon +Dominik Czarnota +Eric Fiselier +Eugene Zhuk +Evgeny Safronov +Federico Ficarelli +Felix Homann +Ismael Jimenez Martinez +Jern-Kuan Leong +JianXiong Zhou +Joao Paulo Magalhaes +John Millikin +Jussi Knuuttila +Kai Wolf +Kishan Kumar +Kaito Udagawa +Lei Xu +Matt Clarkson +Maxim Vafin +Nick Hutchinson +Oleksandr Sochka +Pascal Leroy +Paul Redmond +Pierre Phaneuf +Radoslav Yovchev +Raul Marin +Ray Glover +Robert Guo +Roman Lebedev +Shuo Chen +Tobias UlvgΓ₯rd +Tom Madams +Yixuan Qiu +Yusuke Suzuki +Zbigniew Skowron + +AUTHORS + +# This is the official list of benchmark authors for copyright purposes. +# This file is distinct from the CONTRIBUTORS files. +# See the latter for an explanation. +# +# Names should be added to this file as: +# Name or Organization +# The email address is not required for organizations. +# +# Please keep the list sorted. + +Albert Pretorius +Arne Beer +Carto +Christopher Seymour +David Coeurjolly +Deniz Evrenci +Dirac Research +Dominik Czarnota +Eric Fiselier +Eugene Zhuk +Evgeny Safronov +Federico Ficarelli +Felix Homann +Google Inc. +International Business Machines Corporation +Ismael Jimenez Martinez +Jern-Kuan Leong +JianXiong Zhou +Joao Paulo Magalhaes +Jussi Knuuttila +Kaito Udagawa +Kishan Kumar +Lei Xu +Matt Clarkson +Maxim Vafin +MongoDB Inc. +Nick Hutchinson +Oleksandr Sochka +Paul Redmond +Radoslav Yovchev +Roman Lebedev +Shuo Chen +Steinar H. Gunderson +Stripe, Inc. +Yixuan Qiu +Yusuke Suzuki +Zbigniew Skowron + +_____ + +HalideIR + +Copyright (c) 2016 HalideIR contributors +Copyright (c) 2012-2014 MIT CSAIL, Google Inc., and other contributors +HalideIR is derived from the Halide project. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +_____ + +Distributed Machine Learning Common Codebase + +Copyright (c) 2015 by Contributors + +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. + +_____ + +DLPack: Open In Memory Tensor Structure + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2017 by Contributors + + 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. + +_____ + +HowardHinnant/date + +The source code in this project is released using the MIT License. There is no +global license for the project because each file is licensed individually with +different author names and/or dates. + +If you contribute to this project, please add your name to the license of each +file you modify. If you have already contributed to this project and forgot to +add your name to the license, please feel free to submit a new P/R to add your +name to the license in each file you modified. + +For convenience, here is a copy of the MIT license found in each file except +without author names or dates: + +The MIT License (MIT) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +_____ + +FreeBSD: getopt.c file + +Copyright (c) 1987, 1993, 1994 +The Regents of the University of California. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + 1. Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +3. Neither the name of the University nor the names of its contributors +may be used to endorse or promote products derived from this software +without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. +_____ + + +google/googletest + +Copyright 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +_____ + +G3log : Asynchronous logger with Dynamic Sinks + +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to +_____ + +Scikit-learn + +Copyright (c) 2007–2018 The scikit-learn developers. +All rights reserved. + + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + a. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + b. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + c. Neither the name of the Scikit-learn Developers nor the names of + its contributors may be used to endorse or promote products + derived from this software without specific prior written + permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +_____ + +google/re2 + +Copyright (c) 2009 The RE2 Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +_____ +onnx/onnx-tensorrt + +MIT License + +Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved. +Copyright (c) 2018 Open Neural Network Exchange + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +_____ +nvidia/cutlass + +Copyright (c) 2017 - 2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +SPDX-License-Identifier: BSD-3-Clause + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +_____ +Boost + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +_____ + +JDAI-CV/DNNLibrary + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [2019] [JD.com Inc. JD AI] + + 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. + + +_____ + +google/flatbuffers + + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2014 Google Inc. + + 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. + + +_____ + +google/glog + +Copyright (c) 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +A function gettimeofday in utilities.cc is based on + +http://www.google.com/codesearch/p?hl=en#dR3YEbitojA/COPYING&q=GetSystemTimeAsFileTime%20license:bsd + +The license of this code is: + +Copyright (c) 2003-2008, Jouni Malinen and contributors +All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name(s) of the above-listed copyright holder(s) nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +_____ + +abseil-cpp +https://github.com/abseil/abseil-cpp + + Apache License + Version 2.0, January 2004 + https://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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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 + + https://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. + + +_____ + +microsoft/wil + +MIT License + +Copyright (c) Microsoft Corporation. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE + +_____ + +nlohmann/json + +MIT License + +Copyright (c) 2013-2019 Niels Lohmann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +_____ + +dcleblanc/SafeInt + +MIT License + +Copyright (c) 2018 Microsoft + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +_____ +Open MPI + +3-Clause BSD License + +Most files in this release are marked with the copyrights of the +organizations who have edited them. The copyrights below are in no +particular order and generally reflect members of the Open MPI core +team who have contributed code to this release. The copyrights for +code used under license from other parties are included in the +corresponding files. + +Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana + University Research and Technology + Corporation. All rights reserved. +Copyright (c) 2004-2017 The University of Tennessee and The University + of Tennessee Research Foundation. All rights + reserved. +Copyright (c) 2004-2010 High Performance Computing Center Stuttgart, + University of Stuttgart. All rights reserved. +Copyright (c) 2004-2008 The Regents of the University of California. + All rights reserved. +Copyright (c) 2006-2017 Los Alamos National Security, LLC. All rights + reserved. +Copyright (c) 2006-2017 Cisco Systems, Inc. All rights reserved. +Copyright (c) 2006-2010 Voltaire, Inc. All rights reserved. +Copyright (c) 2006-2017 Sandia National Laboratories. All rights reserved. +Copyright (c) 2006-2010 Sun Microsystems, Inc. All rights reserved. + Use is subject to license terms. +Copyright (c) 2006-2017 The University of Houston. All rights reserved. +Copyright (c) 2006-2009 Myricom, Inc. All rights reserved. +Copyright (c) 2007-2017 UT-Battelle, LLC. All rights reserved. +Copyright (c) 2007-2017 IBM Corporation. All rights reserved. +Copyright (c) 1998-2005 Forschungszentrum Juelich, Juelich Supercomputing + Centre, Federal Republic of Germany +Copyright (c) 2005-2008 ZIH, TU Dresden, Federal Republic of Germany +Copyright (c) 2007 Evergrid, Inc. All rights reserved. +Copyright (c) 2008 Chelsio, Inc. All rights reserved. +Copyright (c) 2008-2009 Institut National de Recherche en + Informatique. All rights reserved. +Copyright (c) 2007 Lawrence Livermore National Security, LLC. + All rights reserved. +Copyright (c) 2007-2017 Mellanox Technologies. All rights reserved. +Copyright (c) 2006-2010 QLogic Corporation. All rights reserved. +Copyright (c) 2008-2017 Oak Ridge National Labs. All rights reserved. +Copyright (c) 2006-2012 Oracle and/or its affiliates. All rights reserved. +Copyright (c) 2009-2015 Bull SAS. All rights reserved. +Copyright (c) 2010 ARM ltd. All rights reserved. +Copyright (c) 2016 ARM, Inc. All rights reserved. +Copyright (c) 2010-2011 Alex Brick . All rights reserved. +Copyright (c) 2012 The University of Wisconsin-La Crosse. All rights + reserved. +Copyright (c) 2013-2016 Intel, Inc. All rights reserved. +Copyright (c) 2011-2017 NVIDIA Corporation. All rights reserved. +Copyright (c) 2016 Broadcom Limited. All rights reserved. +Copyright (c) 2011-2017 Fujitsu Limited. All rights reserved. +Copyright (c) 2014-2015 Hewlett-Packard Development Company, LP. All + rights reserved. +Copyright (c) 2013-2017 Research Organization for Information Science (RIST). + All rights reserved. +Copyright (c) 2017-2018 Amazon.com, Inc. or its affiliates. All Rights + reserved. +Copyright (c) 2018 DataDirect Networks. All rights reserved. +Copyright (c) 2018-2019 Triad National Security, LLC. All rights reserved. + +$COPYRIGHT$ + +Additional copyrights may follow + +$HEADER$ + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +- Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer listed + in this license in the documentation and/or other materials + provided with the distribution. + +- Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +The copyright holders provide no reassurances that the source code +provided does not infringe any patent, copyright, or any other +intellectual property rights of third parties. The copyright holders +disclaim any liability to any recipient for claims brought against +recipient by any third party for infringement of that parties +intellectual property rights. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +_____ + +The Android Open Source Project + +Copyright (C) 2017 The Android Open Source Project +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. + +------ + +libprotobuf-mutator + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + ----- + + openucx/ucx + https://github.com/openucx/ucx + + Copyright (c) 2014-2015 UT-Battelle, LLC. All rights reserved. + Copyright (C) 2014-2020 Mellanox Technologies Ltd. All rights reserved. + Copyright (C) 2014-2015 The University of Houston System. All rights reserved. + Copyright (C) 2015 The University of Tennessee and The University + of Tennessee Research Foundation. All rights reserved. + Copyright (C) 2016-2020 ARM Ltd. All rights reserved. + Copyright (c) 2016 Los Alamos National Security, LLC. All rights reserved. + Copyright (C) 2016-2020 Advanced Micro Devices, Inc. All rights reserved. + Copyright (C) 2019 UChicago Argonne, LLC. All rights reserved. + Copyright (c) 2018-2020 NVIDIA CORPORATION. All rights reserved. + Copyright (C) 2020 Huawei Technologies Co., Ltd. All rights reserved. + Copyright (C) 2016-2020 Stony Brook University. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + ----- + + From PyTorch: + + Copyright (c) 2016- Facebook, Inc (Adam Paszke) + Copyright (c) 2014- Facebook, Inc (Soumith Chintala) + Copyright (c) 2011-2014 Idiap Research Institute (Ronan Collobert) + Copyright (c) 2012-2014 Deepmind Technologies (Koray Kavukcuoglu) + Copyright (c) 2011-2012 NEC Laboratories America (Koray Kavukcuoglu) + Copyright (c) 2011-2013 NYU (Clement Farabet) + Copyright (c) 2006-2010 NEC Laboratories America (Ronan Collobert, Leon Bottou, Iain Melvin, Jason Weston) + Copyright (c) 2006 Idiap Research Institute (Samy Bengio) + Copyright (c) 2001-2004 Idiap Research Institute (Ronan Collobert, Samy Bengio, Johnny Mariethoz) + + From Caffe2: + + Copyright (c) 2016-present, Facebook Inc. All rights reserved. + + All contributions by Facebook: + Copyright (c) 2016 Facebook Inc. + + All contributions by Google: + Copyright (c) 2015 Google Inc. + All rights reserved. + + All contributions by Yangqing Jia: + Copyright (c) 2015 Yangqing Jia + All rights reserved. + + All contributions from Caffe: + Copyright(c) 2013, 2014, 2015, the respective contributors + All rights reserved. + + All other contributions: + Copyright(c) 2015, 2016 the respective contributors + All rights reserved. + + Caffe2 uses a copyright model similar to Caffe: each contributor holds + copyright over their contributions to Caffe2. The project versioning records + all such contribution and copyright details. If a contributor wants to further + mark their specific copyright on a particular contribution, they should + indicate their copyright solely in the commit message of the change when it is + committed. + + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the names of Facebook, Deepmind Technologies, NYU, NEC Laboratories America + and IDIAP Research Institute nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +_____ + + mpi4py + https://github.com/mpi4py/mpi4py/ + + ======================= + LICENSE: MPI for Python + ======================= + + :Author: Lisandro Dalcin + :Contact: dalcinl@gmail.com + + + Copyright (c) 2019, Lisandro Dalcin. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +_____ +huggingface/transformers + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. +_____ +msgpack/msgpack-python + +Copyright (C) 2008-2011 INADA Naoki + + 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. +_____ +lanpa/tensorboardX + +MIT License + +Copyright (c) 2017 Tzu-Wei Huang + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +_____ +tensorflow/tensorboard + +Copyright 2017 The TensorFlow Authors. All rights reserved. + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2017, The TensorFlow 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. + + +_____ + +cerberus + +Cerberus is a lightweight and extensible data validation library for Python. + +ISC License + +Copyright (c) 2012-2016 Nicola Iarocci. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. + +_____ + +MurmurHash3 + +MIT license + +https://github.com/aappleby/smhasher + +SMHasher is a test suite designed to test the distribution, collision, and +performance properties of non-cryptographic hash functions. +This is the home for the MurmurHash family of hash functions along with the +SMHasher test suite used to verify them. +SMHasher is released under the MIT license. +All MurmurHash versions are public domain software, and the author disclaims all copyright to their code. + +_____ + +gtest-ios-framework + +https://github.com/mestevens/gtest-ios-framework + +Copyright (c) 2013 Matthew Stevens + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +_____ + +DLPack + +https://github.com/dmlc/dlpack + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2017 by Contributors + + 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. + +_____ + +emsdk + +MIT/Expat license + +https://github.com/emscripten-core/emsdk + +Copyright (c) 2018 Emscripten authors (see AUTHORS in Emscripten) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +---------------------------------------------------------------------------- + +This is the MIT/Expat License. For more information see: + +1. http://www.opensource.org/licenses/mit-license.php + +2. http://en.wikipedia.org/wiki/MIT_License + +_____ + +coremltools + +BSD-3-Clause License + +https://github.com/apple/coremltools + +Copyright (c) 2020, Apple Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder(s) nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Β© 2021 GitHub, Inc. + +_____ + +react-native + +MIT License + +https://github.com/facebook/react-native + +Copyright (c) Facebook, Inc. and its affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +_____ + +pytorch/cpuinfo + +BSD 2-Clause "Simplified" License + +https://github.com/pytorch/cpuinfo + +Copyright (c) 2019 Google LLC +Copyright (c) 2017-2018 Facebook Inc. +Copyright (C) 2012-2017 Georgia Institute of Technology +Copyright (C) 2010-2012 Marat Dukhan + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +_____ + +SQLite Is Public Domain + +All of the code and documentation in SQLite has been dedicated to the public +domain by the authors. All code authors, and representatives of the companies +they work for, have signed affidavits dedicating their contributions to the +public domain and originals of those signed affidavits are stored in a firesafe +at the main offices of Hwaci. Anyone is free to copy, modify, publish, use, +compile, sell, or distribute the original SQLite code, either in source code +form or as a compiled binary, for any purpose, commercial or non-commercial, +and by any means. + +The previous paragraph applies to the deliverable code and documentation in +SQLite - those parts of the SQLite library that you actually bundle and ship +with a larger application. Some scripts used as part of the build process (for +example the "configure" scripts generated by autoconf) might fall under other +open-source licenses. Nothing from these build scripts ever reaches the final +deliverable SQLite library, however, and so the licenses associated with those +scripts should not be a factor in assessing your rights to copy and use the +SQLite library. + +All of the deliverable code in SQLite has been written from scratch. No code +has been taken from other projects or from the open internet. Every line of +code can be traced back to its original author, and all of those authors have +public domain dedications on file. So the SQLite code base is clean and is +uncontaminated with licensed code from other projects. + +_____ + +google/XNNPACK + +BSD License + +For XNNPACK software + +Copyright (c) Facebook, Inc. and its affiliates. All rights reserved. +Copyright 2019 Google LLC + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name Facebook nor the names of its contributors may be used to + endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +_____ + +google/sentencepiece, https://github.com/google/sentencepiece +(included when statically linked with onnxruntime-extensions) + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + +_____ + +dlfcn-win32/dlfcn-win32 is licensed under the MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +_____ + +The Python Imaging Library (PIL) is + + Copyright Β© 1997-2011 by Secret Labs AB + Copyright Β© 1995-2011 by Fredrik Lundh + +Pillow is the friendly PIL fork. It is + + Copyright Β© 2010-2023 by Alex Clark and contributors + +Like PIL, Pillow is licensed under the open source HPND License: + +By obtaining, using, and/or copying this software and/or its associated +documentation, you agree that you have read, understood, and will comply +with the following terms and conditions: + +Permission to use, copy, modify, and distribute this software and its +associated documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appears in all copies, and that +both that copyright notice and this permission notice appear in supporting +documentation, and that the name of Secret Labs AB or the author not be +used in advertising or publicity pertaining to distribution of the software +without specific, written prior permission. + +SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS +SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. +IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR ANY SPECIAL, +INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE +OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. + +_____ + +openssl/openssl, https://github.com/openssl/openssl + + Apache License + Version 2.0, January 2004 + https://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 + +_____ + +Tencent/rapidjson, https://github.com/Tencent/rapidjson + +Tencent is pleased to support the open source community by making RapidJSON available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. +If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. To avoid the problematic JSON license in your own projects, it's sufficient to exclude the bin/jsonchecker/ directory, as it's the only code under the JSON license. +A copy of the MIT License is included in this file. + +Other dependencies and licenses: + +Open Source Software Licensed Under the BSD License: +-------------------------------------------------------------------- + +The msinttypes r29 +Copyright (c) 2006-2013 Alexander Chemeris +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +* Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Open Source Software Licensed Under the JSON License: +-------------------------------------------------------------------- + +json.org +Copyright (c) 2002 JSON.org +All Rights Reserved. + +JSON_checker +Copyright (c) 2002 JSON.org +All Rights Reserved. + + +Terms of the JSON License: +--------------------------------------------------- + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +The Software shall be used for Good, not Evil. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +Terms of the MIT License: +-------------------------------------------------------------------- + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +_____ + +boostorg/boost, https://github.com/boostorg/boost + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + +_____ + +libb64/libb64, https://github.com/libb64/libb64 + +Copyright-Only Dedication (based on United States law) or Public Domain Certification + +The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the "Work") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a "dedicator" below. + +A certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain. + +Dedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work. + +Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. + +_____ + +posix pthread library, https://sourceforge.net/projects/pthreads4w + + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + +_____ + +Triton Inference Server & Client, https://github.com/triton-inference-server + +Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of NVIDIA CORPORATION nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +_____ + +microsoft/mimalloc, https://github.com/microsoft/mimalloc + +MIT License + +Copyright (c) 2018-2021 Microsoft Corporation, Daan Leijen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +_____ + +TensorFlow.js + +https://github.com/tensorflow/tfjs + + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + +β€”β€” + +curl/curl + +https://github.com/curl + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (C) Daniel Stenberg, , and many +contributors, see the THANKS file. + +All rights reserved. + +Permission to use, copy, modify, and distribute this software for any purpose +with or without fee is hereby granted, provided that the above copyright +notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE +OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall not +be used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization of the copyright holder. + +_____ + +Intel neural-compressor + +https://github.com/intel/neural-compressor + + 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 + + ============================================================================ + + Copyright 2016-2019 Intel Corporation + Copyright 2018 YANDEX LLC + + 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. + + This distribution includes third party software ("third party programs"). + This third party software, even if included with the distribution of + the Intel software, may be governed by separate license terms, including + without limitation, third party license terms, other Intel software license + terms, and open source software license terms. These separate license terms + govern your use of the third party programs as set forth in the + "THIRD-PARTY-PROGRAMS" file. + +_____ + +FlashAttention, https://github.com/Dao-AILab/flash-attention + +BSD 3-Clause License + +Copyright (c) 2022, the respective contributors, as shown by the AUTHORS file. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +_____ + +composable_kernel + +https://github.com/ROCmSoftwarePlatform/composable_kernel + +Copyright (c) 2018- , Advanced Micro Devices, Inc. (Chao Liu, Jing Zhang) +Copyright (c) 2019- , Advanced Micro Devices, Inc. (Letao Qin, Qianfeng Zhang, Liang Huang, Shaojie Wang) +Copyright (c) 2022- , Advanced Micro Devices, Inc. (Anthony Chang, Chunyu Lai, Illia Silin, Adam Osewski, Poyen Chen, Jehandad Khan) +Copyright (c) 2019-2021, Advanced Micro Devices, Inc. (Hanwen Chang) +Copyright (c) 2019-2020, Advanced Micro Devices, Inc. (Tejash Shah) +Copyright (c) 2020 , Advanced Micro Devices, Inc. (Xiaoyan Zhou) +Copyright (c) 2021-2022, Advanced Micro Devices, Inc. (Jianfeng Yan) + +SPDX-License-Identifier: MIT +Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +_____ + +neural-speed + +https://github.com/intel/neural-speed + + Apache License + 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 + + ============================================================================ + + Copyright 2016-2019 Intel Corporation + Copyright 2018 YANDEX LLC + + 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. + + This distribution includes third party software ("third party programs"). + This third party software, even if included with the distribution of + the Intel software, may be governed by separate license terms, including + without limitation, third party license terms, other Intel software license + terms, and open source software license terms. These separate license terms + govern your use of the third party programs as set forth in the + "THIRD-PARTY-PROGRAMS" file. + +_____ + +dawn + +https://dawn.googlesource.com/dawn + + BSD 3-Clause License + + Copyright 2017-2023 The Dawn & Tint Authors + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +_____ + +KleidiAI + +https://gitlab.arm.com/kleidi/kleidiai + +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 + +Copyright 2024-2025 Arm Limited and/or its affiliates + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md index 0346f1a..5a79679 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,22 @@ -# CueMap Rust Engine +

+ CueMap +

-[![CI](https://github.com/cuemap-dev/cuemap/actions/workflows/coverage.yml/badge.svg?branch=v0.7.2)](https://github.com/cuemap-dev/cuemap/actions/workflows/coverage.yml) -[![Coverage](https://codecov.io/github/cuemap-dev/cuemap/branch/v0.7.2/graph/badge.svg?flag=rust-engine)](https://app.codecov.io/github/cuemap-dev/cuemap) +

CueMap Rust Engine

+ +

Fast, accurate, and explainable temporal-associative memory for agents.

+ +

+ CI + Coverage + License +

**High-performance temporal-associative memory store** designed for dynamic contextual retrieval. ## Overview -CueMap implements a **Continuous Gradient Algorithm** optimized for associative data structures: +CueMap uses **temporal-associative retrieval**: lexical and structural candidate generation, with optional semantic reranking. Its main components are: 1. **Intersection (Context Filter)**: Triangulates relevant memories by overlapping cues 2. **Structural Extraction**: Emits deterministic cues for observable evidence such as dates, numbers, lists, source metadata, and surface entities. @@ -15,9 +24,11 @@ CueMap implements a **Continuous Gradient Algorithm** optimized for associative 4. **Reinforcement (Access-based Learning)**: Frequently accessed memories gain signal strength, remaining highly accessible even as they age. 5. **Sparse Recall**: Uses normalized lexical cues, structural facets, recency, salience, and bounded deterministic reranking. -As of v0.7.2, CueMap's default core path is deterministic and ontology-free. GloVe/Ollama cue generation, WordNet/POS expansion, semantic bridges, pattern completion, external lexicon graphs, context expansion/speculation endpoints, and autonomous consolidation have been removed from the default engine path. v0.7.2 bundles a qint8 `all-MiniLM-L3-v2` vector layer for semantic reranking, intent classification, and query embeddings; the `edge` profile selects a q4 build of the same model. The encoder can still be disabled for constrained builds or deployments. +As of v0.7.2+, CueMap's default core path is deterministic and ontology-free. GloVe/Ollama cue generation, WordNet/POS expansion, semantic bridges, pattern completion, external lexicon graphs, context expansion/speculation endpoints, and autonomous consolidation have been removed from the default engine path. v0.7.2+ bundles a qint8 `paraphrase-MiniLM-L3-v2` vector layer for semantic reranking, intent classification, and query embeddings; the `edge` profile selects a q4 build of the same model. The encoder can still be disabled for constrained builds or deployments. -v0.7.2 also uses numeric per-project memory IDs everywhere. If callers need deterministic upsert/dedupe identity, pass `source_key`; memory IDs remain compact runtime addresses. +v0.7.2+ also uses numeric per-project memory IDs everywhere. If callers need deterministic upsert/dedupe identity, pass `source_key`; memory IDs remain compact runtime addresses. + +v0.7.3 adds Tree-sitter-backed ingestion for Swift, Dart, Objective-C, Kotlin, C, C++, C#, and Bash source files, plus structured TOML files. Built with Rust for maximum performance and reliability. @@ -28,7 +39,7 @@ Built with Rust for maximum performance and reliability. ```bash # Production (optimized) cargo build --release -./target/release/cuemap start --port 8080 +./target/release/cuemap start --port 8735 # Development cargo run -- start @@ -39,22 +50,52 @@ CueMap treats the nlprule tokenizer as a runtime asset, not a build artifact. Se ### Docker ```bash -docker build -t cuemap/engine:0.7.2 . -docker run -p 8080:8080 -v "$(pwd)/local_snapshot_dir:/app/data" cuemap/engine:0.7.2 +docker build -t cuemap/engine:0.7.3 . +docker run -p 127.0.0.1:8735:8735 -v "$(pwd)/local_snapshot_dir:/app/data" cuemap/engine:0.7.3 ``` -The container runs as the unprivileged `cuemap` user. Ensure a bind-mounted data directory is writable by UID/GID `10001`, or use a Docker-managed volume. Runtime defaults can be overridden with `CUEMAP_PORT`, `CUEMAP_DATA_DIR`, `CUEMAP_SNAPSHOT_INTERVAL_SECONDS`, `TOKENIZER_PATH`, and `RUST_LOG`. +The container runs as the unprivileged `cuemap` user. Ensure a bind-mounted data directory is writable by UID/GID `10001`, or use a Docker-managed volume. Runtime defaults can be overridden with `CUEMAP_HOST`, `CUEMAP_PORT`, `CUEMAP_DATA_DIR`, `CUEMAP_SNAPSHOT_INTERVAL_SECONDS`, `CUEMAP_PROJECT_INACTIVITY_TIMEOUT_SECONDS`, `CUEMAP_PROJECT_UNLOAD_CHECK_INTERVAL_SECONDS`, `TOKENIZER_PATH`, and `RUST_LOG`. + +### Network access and read-only operation + +The native server binds to `127.0.0.1:8735` by default. Set `server.host` or +`CUEMAP_HOST` to a numeric IPv4 or IPv6 address to change the bind address. +The Docker image binds to `0.0.0.0` inside the container; the examples publish +its port only on the host loopback interface. + +Browser origins are denied by default, including simple cross-origin requests. +To allow a browser application, list its exact origin in configuration: + +```toml +[security] +allowed_origins = ["http://localhost:3000"] +``` + +API-key authentication still applies to allowed browser clients. + +`server.read_only = true` and static loading disable write routes, recall +reinforcement, automatic ingestion, and snapshot writes. Existing snapshots can +still be loaded for queries. Ordinary requests and multipart uploads have a +64 MiB body limit; project-package uploads to `/projects/load` have a 1 GiB limit. +These limits apply to the request body, not the expanded contents of archives. + +Set `CUEMAP_HOME` to isolate the engine's configuration and PID files. It defaults +to `~/.cuemap`; `CUEMAP_DATA_DIR` separately controls the data directory. ### Native npm packages -Build the Darwin ARM64, Darwin x64, Linux x64, and Linux ARM64 native packages without publishing them: +Build the Darwin ARM64, Darwin x64, Linux x64, and Linux ARM64 native packages locally without publishing them: ```bash ./scripts/build-npm-native-packages.sh ./scripts/verify-npm-native-packages.sh ``` -The packager builds Linux on Debian Trixie, bundles the checksum-pinned tokenizer, and writes package tarballs plus `SHA256SUMS` under `dist/npm-native/tarballs`. +The local packager builds Linux on Debian Bookworm, bundles the checksum-pinned tokenizer, and writes package tarballs plus `SHA256SUMS` under `dist/npm-native/tarballs`. The Windows x64 package is built and published by the GitHub Actions release workflow. + +### Release validation + +Run the local consumer preflight on macOS and Windows before publishing, then run the read-only public-registry smoke test from GitHub Actions after publishing. See [RELEASE.md](RELEASE.md) for the exact commands and release order. ### CLI Commands @@ -81,7 +122,7 @@ cuemap [OPTIONS] - **`add`**: Add a memory via natural language. - **`recall`**: Search memories (supports Grounded Recall and Web Recall). - **`ingest`**: Ingest data from files or URLs. -- **`projects`**: Create and list projects. +- **`project`**: Manage projects, portable packages, and sync (`projects` remains an alias). - **`set-project`**: Set the default project for the current session. - **`set-watch-dir`**: Set a watch directory for a project (enables agent). @@ -93,6 +134,13 @@ Hint: Use `cuemap --help` to see available commands and options. ## Configuration +For agent-facing memory inspection, `GET /memories/{id}?decoded=true` with +`X-Project-ID` returns readable content, IDs, source key, cues, metadata, and +timestamps. It resolves compressed, encrypted, and disk-backed content through +the engine's content reader and omits storage internals such as vectors. +Omitting `decoded=true` preserves the existing raw storage response. This +option affects individual memory reads, not recall or its scoring path. + CueMap uses a layered configuration system that prioritizes settings in the following order: **CLI Args** > **Env Vars** > **`server_config.toml`** > **Defaults**. @@ -116,7 +164,7 @@ On startup, if `--agent-dir` is provided, CueMap initializes the **Self-Learning ./target/release/cuemap start --agent-dir ~/projects/my-app # The agent will automatically: -# 1. Supercharged Structural Ingestion (Rust, Python, Go, JS/TS, PHP, Java). +# 1. Supercharged Structural Ingestion (Rust, Python, Go, JS/TS, PHP, Java, Swift, Dart, Objective-C, Kotlin, C/C++, C#, Bash, and TOML). # - Native tree-sitter queries capture definitions, calls, and imports as grounded cues. # 2. Document & Data Parsing (PDF, Word, Excel, JSON, CSV, YAML, XML). # - Extracts headers, keys, and metadata as structural metadata. @@ -142,7 +190,7 @@ Add the MCP server to your AI agent's configuration (e.g., Claude Desktop, Curso "cuemap-mcp" ], "env": { - "CUEMAP_PORT": "8080" + "CUEMAP_PORT": "8735" } } } @@ -160,6 +208,7 @@ CueMap provides complete project isolation with automatic persistence: - **Project Isolation**: Each project has its own memory space, identified by `X-Project-ID` header. - **Auto-Save on Shutdown**: All projects are saved on graceful shutdown when persistence is enabled. - **Auto-Load on Startup**: Snapshots are restored from the configured data directory when persistence is enabled. +- **Memory-Aware Residency**: Loaded project contexts are automatically unloaded after a configurable inactivity period while their snapshots remain available on disk. A request for an unloaded project transparently loads it again. - **Zero Configuration**: Works out of the box ### Usage @@ -168,7 +217,7 @@ CueMap runs in multi-tenant mode by default. Select a project for CLI commands w ```bash # Start the server -./target/release/cuemap start --port 8080 +./target/release/cuemap start --port 8735 # Choose a project and use the local CLI cuemap set-project my-project @@ -180,6 +229,89 @@ cuemap recall "What is important?" # Data persists across restarts unless snapshots are disabled. ``` +### Project memory residency + +By default, the engine checks loaded projects every 60 seconds and unloads +projects that have had no activity for one day. Configure this in +`server_config.toml`: + +```toml +[project_lifecycle] +inactivity_timeout_seconds = 86400 +unload_check_interval_seconds = 60 +``` + +Set `inactivity_timeout_seconds = 0` to disable automatic unloading. Project +snapshots are written before an unload, and ordinary recall, ingestion, and +other project requests demand-load the project when needed. The first request +after a reload can therefore have additional snapshot/index reconstruction +latency. Use `POST /projects/{project_id}/load` to warm a project explicitly +or `POST /projects/{project_id}/unload` to persist and release it immediately. +`GET /projects` includes `loaded: true|false` for each project. Explicit +unload returns a conflict while active work still holds the project context. + +### Memory optimization + +CueMap has two complementary ways to reduce memory usage. Choose between them +based on whether the memory pressure comes from large content payloads or from +having many inactive projects loaded at once. + +#### Content-level optimization: `--disk-content` + +Start the engine with `--disk-content` to keep memory content on disk instead +of retaining the raw content bytes in RAM: + +```bash +./target/release/cuemap start --disk-content +``` + +The project’s cues, metadata, indexes, and semantic vectors remain loaded, so +recall stays warm. CueMap reads the content from +`/contents//` when it needs to return a result. This is +useful for a frequently accessed project with many large memories, but content +results incur disk I/O. It is not a project unload mechanism. + +#### Project-level optimization: load/unload + +Project unloading persists the project snapshot and releases the complete +in-memory project context, including its indexes and metadata. It is useful +when an instance contains many repositories but only a few are active. A +request for an unloaded project loads it automatically; the first request can +therefore have higher latency. See [Project memory residency](#project-memory-residency) +for the inactivity policy and explicit endpoints. + +The two options can be enabled together: `--disk-content` reduces the RAM used +by each loaded project, while project unloading reduces the number of loaded +projects. Disk-backed content lives outside the project snapshots, so backups +must include both the snapshots directory and `/contents/`. + +### Portable project packages + +A `.cuemap` file carries a ready-to-query projectβ€”snapshots, disk-backed content, +and CueBridge artifactsβ€”so another server can load it without re-ingestion. + +```bash +cuemap project pack my-project --output my-project.cuemap +cuemap project load my-project.cuemap +cuemap project push my-project s3://my-bucket/cuemap/ +cuemap project pull s3://my-bucket/cuemap/my-project.cuemap +cuemap project sync my-project s3://my-bucket/team +``` + +HTTP clients use the matching `POST /projects/{id}/pack`, `/projects/load`, +`/projects/{id}/push`, and `/projects/pull` endpoints. + +`pack`/`push` flush the running server first; use `--offline` only for a current +stopped instance. Imports verify SHA-256 checksums and snapshot compatibility and +refuse overwrite unless `--force` is used while the server is stopped. Packages +exclude machine-specific watch settings and are point-in-time, sensitive copies. +Encrypted projects require the same master key on the target. S3 commands use +the configured AWS CLI and incur normal AWS charges. + +`sync` adds immutable commits and a conditionally updated S3 head. It pushes or +pulls only fast-forwards and refuses divergent or concurrently changed state. +HTTP clients use `POST /projects/{id}/sync` with `{"remote":"s3://..."}`. + ### Snapshot Management Snapshots are automatically managed: @@ -226,10 +358,10 @@ Set an API key via environment variable: ```bash # Single API key -CUEMAP_API_KEY=your-secret-key ./target/release/cuemap start --port 8080 +CUEMAP_API_KEY=your-secret-key ./target/release/cuemap start --port 8735 # Multiple API keys (comma-separated) -CUEMAP_API_KEYS=key1,key2,key3 ./target/release/cuemap start --port 8080 +CUEMAP_API_KEYS=key1,key2,key3 ./target/release/cuemap start --port 8735 ``` Or configure keys in `~/.cuemap/server_config.toml`: @@ -244,7 +376,7 @@ Clients send the configured key in the `X-API-Key` header. See the [HTTP API ref ### Docker with Authentication ```bash -docker run -p 8080:8080 -v "$(pwd)/local_snapshot_dir:/app/data" \ +docker run -p 127.0.0.1:8735:8735 -v "$(pwd)/local_snapshot_dir:/app/data" \ -e CUEMAP_API_KEY=your-secret-key \ cuemap/engine ``` @@ -277,11 +409,11 @@ To optimize storage efficiency, especially for large textual memories, CueMap em ## Performance -### Benchmark Results (v0.7.2) +### Benchmark Results (v0.7.3) Tests performed on **Real-World Data** (Wikipedia Articles), processing full natural language sentences with the complete NLP pipeline. -**Hardware:** MacBook Pro M-series, 64GB RAM, single node. The v0.7.2 release table below records completed lexical and hybrid runs at 10K, 100K, and 1M memories. Lexical runs isolate the sparse core with the semantic encoder disabled; hybrid runs include the bundled local encoder. P95 is the release headline percentile, while P99 remains available in the JSON diagnostics. +**Hardware:** MacBook Pro M-series, 64GB RAM, single node. The v0.7.3 release table below records completed lexical and hybrid runs at 10K, 100K, and 1M memories. Lexical runs isolate the sparse core with the semantic encoder disabled; hybrid runs include the bundled local encoder. P95 is the release headline percentile, while P99 remains available in the JSON diagnostics. #### Benchmark Methodology @@ -315,7 +447,7 @@ same command with `--semantic-mode hybrid` to produce the hybrid comparison. The dataset is downloaded only once and reused from the local cache on subsequent runs. -#### v0.7.2 latency comparison +#### v0.7.3 latency comparison The lexical release rerun now covers 10K, 100K, and 1M writes plus lean recall queries. The compact comparison below records the 10K, 100K, and 1M hybrid @@ -356,9 +488,9 @@ Write latency remains mostly flat with project size; the dominant cost is per-me | **1,000,000** | 2.63 ms | 2.06 ms | 3.72 ms | 378 ops/s | **Key Metrics**: -- **Low-latency recall:** The lexical v0.7.2 1M run measured 2.63ms average with 3.72ms p95; hybrid measurements remain separate because they include bundled encoder work. +- **Low-latency recall:** The lexical v0.7.3 1M run measured 2.63ms average with 3.72ms p95; hybrid measurements remain separate because they include bundled encoder work. - **Numeric ID memory reduction:** 1M in-memory footprint dropped from about 5.25GB to about 1.93GB after the v0.7 numeric memory-ID refactor. -- **Controlled hot path:** the release benchmark disables the local semantic encoder, LLMs, network services, and disk scans; normal v0.7.2 hybrid recall can use the bundled local encoder for bounded reranking. +- **Controlled hot path:** the release benchmark disables the local semantic encoder, LLMs, network services, and disk scans; normal v0.7.3 hybrid recall can use the bundled local encoder for bounded reranking. ## Architecture @@ -390,192 +522,9 @@ The website docs are the source of truth for endpoint behavior and are kept alig ## System Architecture -### 1. High-Level Overview - -```mermaid -graph TB - subgraph "Clients" - SDK[Python/TS SDKs] - CURL[HTTP Clients] - end - - subgraph "API Layer" - AXUM[Axum HTTP Server] - AUTH[Auth Middleware] - end - - subgraph "Multi-Tenant Core" - MT[MultiTenantEngine] - MAIN[CueMap Engine
DashMap + aHash] - LEX[Lexicon Engine
Token β†’ Cue] - ALIAS[Alias Engine
Synonyms] - end - - subgraph "Background Processing" - QUEUE[Job Queue
Reinforcement + Agent Jobs] - SESSION[Session Manager
Ingest Progress] - end - - subgraph "Intelligence" - NL[NL Tokenizer
Lemmatization + RAKE] - STRUCT[Structural Facets
Evidence + Metadata] - end - - subgraph "Persistence" - PERSIST[Snapshots
Zstd + ChaCha20] - end - - SDK --> AXUM - CURL --> AXUM - AXUM --> AUTH --> MT - - MT --> MAIN - MT --> LEX - MT --> ALIAS - - AXUM --> QUEUE - AXUM --> SESSION - - QUEUE --> LEX - - MAIN <-.-> PERSIST - LEX <-.-> PERSIST - - style MAIN fill:#4CAF50 - style LEX fill:#2196F3 - style ALIAS fill:#FF9800 - style QUEUE fill:#9C27B0 -``` - -### 2. Write Flow - -```mermaid -sequenceDiagram - participant C as Client - participant API as HTTP Handler - participant NL as NL Tokenizer - participant Norm as Normalizer - participant Tax as Taxonomy - participant Main as CueMap Engine - - C->>API: Memory write request
{content, cues[]} - - alt cues[] is empty - API->>NL: tokenize_to_cues(content) - NL-->>API: ["payment", "timeout", ...] - end - - API->>Norm: normalize_cue(each) - Norm-->>API: normalized cues - - API->>Tax: validate_cues(cues) - Tax-->>API: {accepted[], rejected[]} - - API->>Main: add_memory(content, accepted) - Main-->>API: memory_id - - API-->>C: 200 {id, cues, latency_ms} - Note over C,API: βœ… Synchronous ~2ms - - Note over API,Main: Cue extraction and indexing happen synchronously -``` - -### 3. Read Flow - -```mermaid -sequenceDiagram - participant C as Client - participant API as HTTP Handler - participant Lex as Lexicon - participant Alias as Alias Engine - participant Art as CueBridge Artifacts - participant Main as CueMap Engine - participant Q as Job Queue - - C->>API: Recall request
{query_text?, cues[], limit} - - alt query_text provided - API->>Lex: resolve_cues_from_text(query) - Lex-->>API: resolved_cues[] - end - - API->>API: Merge & Normalize cues - - opt explicit aliases enabled - API->>Alias: apply_aliases(cues) - Alias-->>API: weighted_cues[(cue, weight)] - end - - opt exact recall is weak and artifacts are enabled - API->>Art: lookup GapPack(query_signature) - Art-->>API: capped expansion cues - end - - API->>Main: recall_weighted(cues, limit, options) - Main->>Main: Salience Bias - Main->>Main: Score & Rank - - Main-->>API: RecallResult[] - - opt auto_reinforce = true - API->>Q: Enqueue ReinforceMemories - API->>Q: Enqueue ReinforceLexicon - end - - API-->>C: {results, explain?, latency_ms} -``` +The system diagrams are maintained separately to keep this README focused: -### 4. Background Job Pipeline - -```mermaid -graph TB - subgraph "Job Sources" - INGEST[Ingestion] - RECALL[Recall] - AGENT[Self-Learning Agent] - TIMER[60s Heatmap Tick] - end - - subgraph "Job Types" - J4[ReinforceMemories] - J5[ReinforceLexicon] - J7[ExtractAndIngest] - J8[VerifyFile] - J10[DeleteMemory] - J9[UpdateMarketHeatmap] - end - - subgraph "Processing" - SESSION[Session Manager
Tracks write completion] - QUEUE[MPSC Queue
Async Worker] - end - - subgraph "Side Effects" - E1[Memories Reinforced] - E2[Lexicon Reinforced] - E4[Content Extracted] - E5[Stale File Memories Deleted] - E6[Market Heatmap Updated] - end - - RECALL --> J4 & J5 - INGEST --> J7 - AGENT --> J7 & J8 & J10 - TIMER --> J9 - - J7 --> SESSION - J4 & J5 --> QUEUE - J7 & J8 & J10 --> QUEUE - J9 --> QUEUE - - QUEUE --> E1 & E2 & E4 & E5 & E6 - - style QUEUE fill:#9C27B0 - style SESSION fill:#673AB7 - style E1 fill:#2196F3 - style E2 fill:#4CAF50 - style E5 fill:#F44336 -``` +- [Architecture diagrams](ARCHITECTURE.md) ## Advanced Capabilities @@ -584,9 +533,9 @@ graph TB The agent transforms your local filesystem into a deterministic structural knowledge base with zero manual effort. * **Universal Format Support**: Deeply integrates with dozens of formats: - * **Languages**: Rust, Python, TypeScript, Go, Java, PHP, HTML, CSS (via Tree-sitter). + * **Languages**: Rust, Python, TypeScript, JavaScript, Go, Java, PHP, HTML, CSS, Swift, Dart, Objective-C, Kotlin, C, C++, C#, and Bash (via Tree-sitter). * **Documents**: PDF (text extraction), Word (DOCX), Excel (XLSX). - * **Data**: CSV (row-aware), JSON (key-aware), YAML, XML. + * **Data**: CSV (row-aware), JSON (key-aware), YAML, XML, TOML. * **Tree-sitter Powered Chunking**: Smartly splits code into functions, classes, and modules while preserving context. * **Deterministic Knowledge Extraction**: Uses tree-sitter structure, document parsers, metadata facets, and token normalization; no runtime model call is required. * **Idempotent Updates**: Uses content-aware hashing (`file::`) to prevent memory duplication and ensure stale memories are pruned. @@ -645,9 +594,18 @@ These modes are off by default and are designed for diagnostics or workloads tha ## License -BSL-1.1 (Business Source License 1.1) converting to Apache 2.0 after 4 years. -See `LICENSE` for details. - -This allows full use for development, testing, and self-hosting, while preventing the software from being offered as a competing managed Database Service. - -For commercial licensing (closed-source SaaS or offering as a service), contact: hello@cuemap.dev +CueMap Rust Engine and its native engine packages are licensed under +Apache-2.0 from v0.7.3 onward. Earlier releases remain under BSL-1.1. +See [LICENSE](LICENSE) and [NOTICE](NOTICE) for details. + +### Recall previews + +The engine's `POST /recall` accepts `response_mode: "preview"` and optional +`preview_chars` (100–2000 UTF-16 code units, default 200). Full content remains +the default. Previews replace each hit's `content` with a leading `preview`, +`content_truncated`, and `content_length`, preserving metadata and ranking. +Use previews for broad discovery, then fetch a selected memory with +`GET /memories/{id}?decoded=true` or read its source. Metadata and diagnostics +are not capped. TypeScript request objects and Python sync/async `recall` +accept these same options; Python returns `RecallPreviewResult` for ungrouped +preview results. The updated engine is required. diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000..0cbf020 --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,63 @@ +# Release validation + +CueMap validates tagged release candidates before native publication and checks public registry installations afterward. The preflight does not run the full retrieval evaluation suite or the required release performance benchmark. + +## Before publishing + +From the CueMap workspace, with the five release repositories next to one another: + +```bash +node rust_engine/scripts/release-preflight.cjs +``` + +The preflight builds and tests the Rust engine, runs TypeScript, MCP, and Python +real-engine integration tests, verifies the Python wheel in a clean environment +and the Agent Plugin, packs local consumer artifacts, +and installs those artifacts into a clean temporary npm project. It then verifies +the native binary version, tokenizer, engine start/ingest/recall, MCP stdio +startup, tool registration, memory creation, and recall. + +Run it on macOS and Windows before publishing. It does not publish packages. +The tokenizer is reused from `dist/npm-native/tokenizer` when available or +downloaded with a pinned SHA-256 checksum. If the selected Python interpreter +does not already provide the packaging tools, the preflight creates a temporary +Python environment for them and leaves the active environment unchanged. + +## After publishing + +In GitHub Actions, open **Post-release Smoke Test**, choose the branch containing +this workflow, enter the published version, and run it. The workflow installs the +MCP server, TypeScript SDK, and current-platform native engine package from the +public registry at the exact requested version, then runs the smoke test on: + +- macOS ARM64 and x64 +- Linux ARM64 and x64 +- Windows x64 + +It also verifies that all native engine packages, the SDKs, MCP server, and Agent +Plugin exist at the requested version, have the expected license, and that the +Agent Plugin pins the matching MCP version. + +Publish in this order: + +1. Native engine packages +2. Python and TypeScript SDKs +3. MCP server +4. Agent Plugin +5. Post-release smoke workflow + +The post-release workflow is read-only against npm and PyPI; it never publishes +or modifies a package. + +## Native publication gate + +Create the matching version tag in all five release repositories before running +the engine release workflow. Companion sources are checked out at that tag. +Publication requires all five native build/test jobs, Rust coverage, and the +consumer preflight to pass. Linux binaries and Docker use Debian Bookworm. +The publish job publishes the exact tarballs produced and exercised by the +build jobs; pushes to `main` do not publish packages. + +Native packages and the TypeScript SDK must reach the registry before the MCP +package can resolve its v0.7.3 dependency floor. After publication, refresh the +MCP lockfile from the registry to capture the published tarball integrity hashes. diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..dd3de32 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,29 @@ +# Security Policy + +## Reporting a vulnerability + +Please do not report security vulnerabilities in public GitHub issues, pull requests, or discussions. + +Use GitHub's private vulnerability reporting for this repository: + +[Report a private vulnerability](https://github.com/cuemap-dev/cuemap/security/advisories/new) + +Include the affected version or commit, operating system, configuration, reproduction steps, and potential impact. Remove API keys, credentials, personal data, and other secrets from reports and reproduction cases. + +If private vulnerability reporting is unavailable, contact the maintainers through the private communication channel listed in the repository or organization profile. + +## Scope and deployment guidance + +CueMap can expose an HTTP server and supports API-key authentication, encryption at rest, and cloud backups. Before deploying it outside a trusted local environment: + +- enable API-key authentication; +- restrict network access to trusted clients; +- protect encryption keys, cloud credentials, and snapshot files; +- avoid placing secrets in ingested content or checked-in configuration; +- keep the engine and companion packages updated. + +The Apache-2.0 license is described in [LICENSE](LICENSE). Earlier engine releases may use the BSL-1.1 license noted in their respective release artifacts. + +## Supported versions + +Security fixes target the latest released version. When reporting an issue, include the exact CueMap engine version and the versions of any SDK or MCP package involved. diff --git a/THIRD_PARTY_NOTICES.txt b/THIRD_PARTY_NOTICES.txt new file mode 100644 index 0000000..62870a7 --- /dev/null +++ b/THIRD_PARTY_NOTICES.txt @@ -0,0 +1,88256 @@ +CueMap Cargo dependency notices + +This inventory includes build, test, and platform-specific dependencies. +Bundled model and tokenizer assets are described separately in NOTICE. + + +======================================================================== +adler2 2.0.1 +Declared license: 0BSD OR MIT OR Apache-2.0 +Repository: https://github.com/oyvindln/adler2 +Source: https://crates.io/api/v1/crates/adler2/2.0.1/download + + +--- LICENSE-0BSD --- +Copyright (C) Jonas Schievink + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN +AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +--- LICENSE-APACHE --- + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/LICENSE-2.0 + +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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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 + + https://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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +adobe-cmap-parser 0.4.1 +Declared license: MIT +Repository: https://github.com/jrmuizel/adobe-cmap-parser +Source: https://crates.io/api/v1/crates/adobe-cmap-parser/0.4.1/download + + +--- SPDX MIT license text; authors declared by package metadata: Jeff Muizelaar --- +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and +associated documentation files (the "Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO +EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +aead 0.5.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/traits +Source: https://crates.io/api/v1/crates/aead/0.5.2/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2019 The RustCrypto Project Developers +Copyright (c) 2019 MobileCoin, LLC + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +ahash 0.8.12 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/tkaitchuck/ahash +Source: https://crates.io/api/v1/crates/ahash/0.8.12/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2018 Tom Kaitchuck + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +aho-corasick 0.7.20 +Declared license: Unlicense OR MIT +Repository: https://github.com/BurntSushi/aho-corasick +Source: https://crates.io/api/v1/crates/aho-corasick/0.7.20/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +aho-corasick 1.1.4 +Declared license: Unlicense OR MIT +Repository: https://github.com/BurntSushi/aho-corasick +Source: https://crates.io/api/v1/crates/aho-corasick/1.1.4/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +allocator-api2 0.2.21 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/zakarumych/allocator-api2 +Source: https://crates.io/api/v1/crates/allocator-api2/0.2.21/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +android_system_properties 0.1.5 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/nical/android_system_properties +Source: https://crates.io/api/v1/crates/android_system_properties/0.1.5/download + + +--- LICENSE-APACHE --- +Copyright 2016 Nicolas Silva + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2013 Nicolas Silva + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +anstream 0.6.21 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-cli/anstyle.git +Source: https://crates.io/api/v1/crates/anstream/0.6.21/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +anstyle 1.0.13 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-cli/anstyle.git +Source: https://crates.io/api/v1/crates/anstyle/1.0.13/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +anstyle-parse 0.2.7 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-cli/anstyle.git +Source: https://crates.io/api/v1/crates/anstyle-parse/0.2.7/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +anstyle-query 1.1.5 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-cli/anstyle.git +Source: https://crates.io/api/v1/crates/anstyle-query/1.1.5/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +anstyle-wincon 3.0.11 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-cli/anstyle.git +Source: https://crates.io/api/v1/crates/anstyle-wincon/3.0.11/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +anyhow 1.0.102 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/anyhow +Source: https://crates.io/api/v1/crates/anyhow/1.0.102/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +async-trait 0.1.89 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/async-trait +Source: https://crates.io/api/v1/crates/async-trait/0.1.89/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +atomic-waker 1.1.2 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/smol-rs/atomic-waker +Source: https://crates.io/api/v1/crates/atomic-waker/1.1.2/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +--- LICENSE-THIRD-PARTY --- +=============================================================================== + +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio 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. + +=============================================================================== + +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +autocfg 1.5.0 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/cuviper/autocfg +Source: https://crates.io/api/v1/crates/autocfg/1.5.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2018 Josh Stone + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +axum 0.7.9 +Declared license: MIT +Repository: https://github.com/tokio-rs/axum +Source: https://crates.io/api/v1/crates/axum/0.7.9/download + + +--- LICENSE --- +Copyright (c) 2019 Axum Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +axum-core 0.4.5 +Declared license: MIT +Repository: https://github.com/tokio-rs/axum +Source: https://crates.io/api/v1/crates/axum-core/0.4.5/download + + +--- LICENSE --- +Copyright 2021 Axum Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +axum-extra 0.9.6 +Declared license: MIT +Repository: https://github.com/tokio-rs/axum +Source: https://crates.io/api/v1/crates/axum-extra/0.9.6/download + + +--- LICENSE --- +Copyright 2021 Axum Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +axum-macros 0.4.2 +Declared license: MIT +Repository: https://github.com/tokio-rs/axum +Source: https://crates.io/api/v1/crates/axum-macros/0.4.2/download + + +--- LICENSE --- +Copyright 2021 Axum Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +base64 0.13.1 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/marshallpierce/rust-base64 +Source: https://crates.io/api/v1/crates/base64/0.13.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Alice Maz + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +base64 0.21.7 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/marshallpierce/rust-base64 +Source: https://crates.io/api/v1/crates/base64/0.21.7/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Alice Maz + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +base64 0.22.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/marshallpierce/rust-base64 +Source: https://crates.io/api/v1/crates/base64/0.22.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Alice Maz + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +base64ct 1.8.3 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/RustCrypto/formats +Source: https://crates.io/api/v1/crates/base64ct/1.8.3/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Steve "Sc00bz" Thomas (steve at tobtu dot com) +Copyright (c) 2021-2025 The RustCrypto Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +bimap 0.6.3 +Declared license: Apache-2.0/MIT +Repository: https://github.com/billyrieger/bimap-rs/ +Source: https://crates.io/api/v1/crates/bimap/0.6.3/download + + +--- LICENSE_APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE_MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +bincode 1.3.3 +Declared license: MIT +Repository: https://github.com/servo/bincode +Source: https://crates.io/api/v1/crates/bincode/1.3.3/download + + +--- LICENSE.md --- +The MIT License (MIT) + +Copyright (c) 2014 Ty Overby + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +bitflags 1.3.2 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/bitflags/bitflags +Source: https://crates.io/api/v1/crates/bitflags/1.3.2/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +bitflags 2.11.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/bitflags/bitflags +Source: https://crates.io/api/v1/crates/bitflags/2.11.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +block-buffer 0.10.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/utils +Source: https://crates.io/api/v1/crates/block-buffer/0.10.4/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2018-2019 The RustCrypto Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +brokk-tree-sitter-kotlin 0.4.0 +Declared license: MIT +Repository: https://github.com/BrokkAi/tree-sitter-kotlin +Source: https://crates.io/api/v1/crates/brokk-tree-sitter-kotlin/0.4.0/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2019 fwcd + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +bstr 1.12.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/BurntSushi/bstr +Source: https://crates.io/api/v1/crates/bstr/1.12.1/download + + +--- COPYING --- +This project is licensed under either of + + * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or + https://www.apache.org/licenses/LICENSE-2.0) + * MIT license ([LICENSE-MIT](LICENSE-MIT) or + https://opensource.org/licenses/MIT) + +at your option. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2018-2019 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +bumpalo 3.20.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/fitzgen/bumpalo +Source: https://crates.io/api/v1/crates/bumpalo/3.20.2/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2019 Nick Fitzgerald + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +bytemuck 1.25.0 +Declared license: Zlib OR Apache-2.0 OR MIT +Repository: https://github.com/Lokathor/bytemuck +Source: https://crates.io/api/v1/crates/bytemuck/1.25.0/download + + +--- LICENSE-APACHE --- +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 + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) 2019 Daniel "Lokathor" Gee. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +--- LICENSE-ZLIB --- +Copyright (c) 2019 Daniel "Lokathor" Gee. + +This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + + +======================================================================== +byteorder 1.5.0 +Declared license: Unlicense OR MIT +Repository: https://github.com/BurntSushi/byteorder +Source: https://crates.io/api/v1/crates/byteorder/1.5.0/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +byteorder-lite 0.1.0 +Declared license: Unlicense OR MIT +Repository: https://github.com/image-rs/byteorder-lite +Source: https://crates.io/api/v1/crates/byteorder-lite/0.1.0/download + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +bytes 1.11.1 +Declared license: MIT +Repository: https://github.com/tokio-rs/bytes +Source: https://crates.io/api/v1/crates/bytes/1.11.1/download + + +--- LICENSE --- +Copyright (c) 2018 Carl Lerche + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +calamine 0.22.1 +Declared license: MIT +Repository: https://github.com/tafia/calamine +Source: https://crates.io/api/v1/crates/calamine/0.22.1/download + + +--- LICENSE-MIT.md --- +The MIT License (MIT) + +Copyright (c) 2016 Johann Tuffe + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +castaway 0.2.4 +Declared license: MIT +Repository: https://github.com/sagebind/castaway +Source: https://crates.io/api/v1/crates/castaway/0.2.4/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2021 Stephen M. Coakley + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +cc 1.2.56 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/cc-rs +Source: https://crates.io/api/v1/crates/cc/1.2.56/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +cfg-if 1.0.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/cfg-if +Source: https://crates.io/api/v1/crates/cfg-if/1.0.4/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +cfg_aliases 0.2.1 +Declared license: MIT +Repository: https://github.com/katharostech/cfg_aliases +Source: https://crates.io/api/v1/crates/cfg_aliases/0.2.1/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2020 Katharos Technology + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +chacha20 0.9.1 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/RustCrypto/stream-ciphers +Source: https://crates.io/api/v1/crates/chacha20/0.9.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2019-2023 The RustCrypto Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +chacha20poly1305 0.10.1 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/RustCrypto/AEADs/tree/master/chacha20poly1305 +Source: https://crates.io/api/v1/crates/chacha20poly1305/0.10.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2019 The RustCrypto Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +chrono 0.4.44 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/chronotope/chrono +Source: https://crates.io/api/v1/crates/chrono/0.4.44/download + + +--- LICENSE.txt --- +Rust-chrono is dual-licensed under The MIT License [1] and +Apache 2.0 License [2]. Copyright (c) 2014--2026, Kang Seonghoon and +contributors. + +Nota Bene: This is same as the Rust Project's own license. + + +[1]: , which is reproduced below: + +~~~~ +The MIT License (MIT) + +Copyright (c) 2014, Kang Seonghoon. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +~~~~ + + +[2]: , which is reproduced below: + +~~~~ + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. +~~~~ + + +======================================================================== +cipher 0.4.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/traits +Source: https://crates.io/api/v1/crates/cipher/0.4.4/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016-2020 RustCrypto Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +clap 4.5.60 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/clap-rs/clap +Source: https://crates.io/api/v1/crates/clap/4.5.60/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +clap_builder 4.5.60 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/clap-rs/clap +Source: https://crates.io/api/v1/crates/clap_builder/4.5.60/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +clap_derive 4.5.55 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/clap-rs/clap +Source: https://crates.io/api/v1/crates/clap_derive/4.5.55/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +clap_lex 1.0.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/clap-rs/clap +Source: https://crates.io/api/v1/crates/clap_lex/1.0.0/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +codepage 0.1.2 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/hsivonen/codepage +Source: https://crates.io/api/v1/crates/codepage/0.1.2/download + + +--- COPYRIGHT --- +codepage is copyright 2018 Mozilla Foundation. + +Licensed under the Apache License, Version 2.0 + or the MIT +license , +at your option. All files in the project carrying such +notice may not be copied, modified, or distributed except +according to those terms. + + +--- LICENSE-APACHE --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +Copyright Mozilla Foundation + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +color_quant 1.1.0 +Declared license: MIT +Repository: https://github.com/image-rs/color_quant.git +Source: https://crates.io/api/v1/crates/color_quant/1.1.0/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2016 PistonDevelopers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +colorchoice 1.0.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-cli/anstyle.git +Source: https://crates.io/api/v1/crates/colorchoice/1.0.4/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +compact_str 0.9.1 +Declared license: MIT +Repository: https://github.com/ParkMyCar/compact_str +Source: https://crates.io/api/v1/crates/compact_str/0.9.1/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2021 Parker Timmerman + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +console 0.16.4 +Declared license: MIT +Repository: https://github.com/console-rs/console +Source: https://crates.io/api/v1/crates/console/0.16.4/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2017 Armin Ronacher + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +core-foundation 0.10.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/core-foundation-rs +Source: https://crates.io/api/v1/crates/core-foundation/0.10.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2012-2013 Mozilla Foundation + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +core-foundation-sys 0.8.7 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/core-foundation-rs +Source: https://crates.io/api/v1/crates/core-foundation-sys/0.8.7/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2012-2013 Mozilla Foundation + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +cpufeatures 0.2.17 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/utils +Source: https://crates.io/api/v1/crates/cpufeatures/0.2.17/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2020-2025 The RustCrypto Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +crc32fast 1.5.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/srijs/rust-crc32fast +Source: https://crates.io/api/v1/crates/crc32fast/1.5.0/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) 2018 Sam Rijs, Alex Crichton and contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +crossbeam-channel 0.5.15 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/crossbeam-rs/crossbeam +Source: https://crates.io/api/v1/crates/crossbeam-channel/0.5.15/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2019 The Crossbeam Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +--- LICENSE-THIRD-PARTY --- +=============================================================================== + +matching.go +https://creativecommons.org/licenses/by/3.0/legalcode + +Creative Commons Legal Code + +Attribution 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + +License + +THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE +COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY +COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS +AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + +BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE +TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY +BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS +CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND +CONDITIONS. + +1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined above) for the purposes of this + License. + c. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + d. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + e. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + f. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + g. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + h. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + i. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + +2. Fair Dealing Rights. Nothing in this License is intended to reduce, +limit, or restrict any uses free from copyright or rights arising from +limitations or exceptions that are provided for in connection with the +copyright protection under copyright law or other applicable laws. + +3. License Grant. Subject to the terms and conditions of this License, +Licensor hereby grants You a worldwide, royalty-free, non-exclusive, +perpetual (for the duration of the applicable copyright) license to +exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such Adaptation, + including any translation in any medium, takes reasonable steps to + clearly label, demarcate or otherwise identify that changes were made + to the original Work. For example, a translation could be marked "The + original work was translated from English to Spanish," or a + modification could indicate "The original work has been modified."; + c. to Distribute and Publicly Perform the Work including as incorporated + in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + e. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives the + exclusive right to collect such royalties for any exercise by You + of the rights granted under this License; and, + iii. Voluntary License Schemes. The Licensor waives the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License. + +The above rights may be exercised in all media and formats whether now +known or hereafter devised. The above rights include the right to make +such modifications as are technically necessary to exercise the rights in +other media and formats. Subject to Section 8(f), all rights not expressly +granted by Licensor are hereby reserved. + +4. Restrictions. The license granted in Section 3 above is expressly made +subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(b), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the extent + practicable, remove from the Adaptation any credit as required by + Section 4(b), as requested. + b. If You Distribute, or Publicly Perform the Work or any Adaptations or + Collections, You must, unless a request has been made pursuant to + Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) the + name of the Original Author (or pseudonym, if applicable) if supplied, + and/or if the Original Author and/or Licensor designate another party + or parties (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work; + and (iv) , consistent with Section 3(b), in the case of an Adaptation, + a credit identifying the use of the Work in the Adaptation (e.g., + "French translation of the Work by Original Author," or "Screenplay + based on original Work by Original Author"). The credit required by + this Section 4 (b) may be implemented in any reasonable manner; + provided, however, that in the case of a Adaptation or Collection, at + a minimum such credit will appear, if a credit for all contributing + authors of the Adaptation or Collection appears, then as part of these + credits and in a manner at least as prominent as the credits for the + other contributing authors. For the avoidance of doubt, You may only + use the credit required by this Section for the purpose of attribution + in the manner set out above and, by exercising Your rights under this + License, You may not implicitly or explicitly assert or imply any + connection with, sponsorship or endorsement by the Original Author, + Licensor and/or Attribution Parties, as appropriate, of You or Your + use of the Work, without the separate, express prior written + permission of the Original Author, Licensor and/or Attribution + Parties. + c. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify or + take other derogatory action in relation to the Work which would be + prejudicial to the Original Author's honor or reputation. Licensor + agrees that in those jurisdictions (e.g. Japan), in which any exercise + of the right granted in Section 3(b) of this License (the right to + make Adaptations) would be deemed to be a distortion, mutilation, + modification or other derogatory action prejudicial to the Original + Author's honor and reputation, the Licensor will waive or not assert, + as appropriate, this Section, to the fullest extent permitted by the + applicable national law, to enable You to reasonably exercise Your + right under Section 3(b) of this License (right to make Adaptations) + but not otherwise. + +5. Representations, Warranties and Disclaimer + +UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR +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, MERCHANTIBILITY, +FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF +LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, +WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION +OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + +6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE +LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR +ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES +ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS +BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or Collections + from You under this License, however, will not have their licenses + terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will + survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + +8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, Licensor + offers to the recipient a license to the original Work on the same + terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + +Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of this License. + + Creative Commons may be contacted at https://creativecommons.org/. + +=============================================================================== + +The Go Programming Language +https://golang.org/LICENSE + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +=============================================================================== + +The Rust Programming Language +https://github.com/rust-lang/rust/blob/master/LICENSE-MIT + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + +=============================================================================== + +The Rust Programming Language +https://github.com/rust-lang/rust/blob/master/LICENSE-APACHE + + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +======================================================================== +crossbeam-deque 0.8.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/crossbeam-rs/crossbeam +Source: https://crates.io/api/v1/crates/crossbeam-deque/0.8.6/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2019 The Crossbeam Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +crossbeam-epoch 0.9.18 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/crossbeam-rs/crossbeam +Source: https://crates.io/api/v1/crates/crossbeam-epoch/0.9.18/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2019 The Crossbeam Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +crossbeam-utils 0.8.21 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/crossbeam-rs/crossbeam +Source: https://crates.io/api/v1/crates/crossbeam-utils/0.8.21/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2019 The Crossbeam Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +crunchy 0.2.4 +Declared license: MIT +Repository: https://github.com/eira-fransham/crunchy +Source: https://crates.io/api/v1/crates/crunchy/0.2.4/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright 2017-2023 Eira Fransham. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +crypto-common 0.1.7 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/traits +Source: https://crates.io/api/v1/crates/crypto-common/0.1.7/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2021 RustCrypto Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +cssparser 0.34.0 +Declared license: MPL-2.0 +Repository: https://github.com/servo/rust-cssparser +Source: https://crates.io/api/v1/crates/cssparser/0.34.0/download + + +--- LICENSE --- +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + + +======================================================================== +cssparser-macros 0.6.1 +Declared license: MPL-2.0 +Repository: https://github.com/servo/rust-cssparser +Source: https://crates.io/api/v1/crates/cssparser-macros/0.6.1/download + + +--- LICENSE --- +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + + +======================================================================== +csv 1.4.0 +Declared license: Unlicense/MIT +Repository: https://github.com/BurntSushi/rust-csv +Source: https://crates.io/api/v1/crates/csv/1.4.0/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +csv-core 0.1.13 +Declared license: Unlicense/MIT +Repository: https://github.com/BurntSushi/rust-csv +Source: https://crates.io/api/v1/crates/csv-core/0.1.13/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +daachorse 1.0.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/daac-tools/daachorse +Source: https://crates.io/api/v1/crates/daachorse/1.0.1/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +darling 0.20.11 +Declared license: MIT +Repository: https://github.com/TedDriggs/darling +Source: https://crates.io/api/v1/crates/darling/0.20.11/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2017 Ted Driggs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +darling_core 0.20.11 +Declared license: MIT +Repository: https://github.com/TedDriggs/darling +Source: https://crates.io/api/v1/crates/darling_core/0.20.11/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2017 Ted Driggs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +darling_macro 0.20.11 +Declared license: MIT +Repository: https://github.com/TedDriggs/darling +Source: https://crates.io/api/v1/crates/darling_macro/0.20.11/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2017 Ted Driggs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +dary_heap 0.3.9 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/hanmertens/dary_heap +Source: https://crates.io/api/v1/crates/dary_heap/0.3.9/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +dashmap 5.5.3 +Declared license: MIT +Repository: https://github.com/xacrimon/dashmap +Source: https://crates.io/api/v1/crates/dashmap/5.5.3/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2019 Acrimon + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +der 0.8.1 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/RustCrypto/formats +Source: https://crates.io/api/v1/crates/der/0.8.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2020-2026 The RustCrypto Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +deranged 0.3.11 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/jhpratt/deranged +Source: https://crates.io/api/v1/crates/deranged/0.3.11/download + + +--- LICENSE-Apache --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2022 Jacob Pratt et al. + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2022 Jacob Pratt et al. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +derivative 2.2.0 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/mcarton/rust-derivative +Source: https://crates.io/api/v1/crates/derivative/2.2.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Martin Carton + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +derive_builder 0.20.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/colin-kiegel/rust-derive-builder +Source: https://crates.io/api/v1/crates/derive_builder/0.20.2/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2016 rust-derive-builder contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +derive_builder_core 0.20.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/colin-kiegel/rust-derive-builder +Source: https://crates.io/api/v1/crates/derive_builder_core/0.20.2/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2016 rust-derive-builder contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +derive_builder_macro 0.20.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/colin-kiegel/rust-derive-builder +Source: https://crates.io/api/v1/crates/derive_builder_macro/0.20.2/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2016 rust-derive-builder contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +derive_more 0.99.20 +Declared license: MIT +Repository: https://github.com/JelteF/derive_more +Source: https://crates.io/api/v1/crates/derive_more/0.99.20/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2016 Jelte Fennema + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +digest 0.10.7 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/traits +Source: https://crates.io/api/v1/crates/digest/0.10.7/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 Artyom Pavlov + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +displaydoc 0.2.5 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/yaahc/displaydoc +Source: https://crates.io/api/v1/crates/displaydoc/0.2.5/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +docx-rs 0.4.19 +Declared license: MIT +Repository: https://github.com/bokuweb/docx-rs +Source: https://crates.io/api/v1/crates/docx-rs/0.4.19/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2020 bokuweb + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +dtoa 1.0.11 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/dtoa +Source: https://crates.io/api/v1/crates/dtoa/1.0.11/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +dtoa-short 0.3.5 +Declared license: MPL-2.0 +Repository: https://github.com/upsuper/dtoa-short +Source: https://crates.io/api/v1/crates/dtoa-short/0.3.5/download + + +--- LICENSE --- +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + + +======================================================================== +ego-tree 0.9.0 +Declared license: ISC +Repository: https://github.com/rust-scraper/ego-tree +Source: https://crates.io/api/v1/crates/ego-tree/0.9.0/download + + +--- LICENSE --- +Copyright Β© 2016, June McEnroe + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +======================================================================== +either 1.15.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rayon-rs/either +Source: https://crates.io/api/v1/crates/either/1.15.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +encode_unicode 1.0.0 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/tormol/encode_unicode +Source: https://crates.io/api/v1/crates/encode_unicode/1.0.0/download + + +--- LICENSE-APACHE --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE + + +======================================================================== +encoding_rs 0.8.35 +Declared license: (Apache-2.0 OR MIT) AND BSD-3-Clause +Repository: https://github.com/hsivonen/encoding_rs +Source: https://crates.io/api/v1/crates/encoding_rs/0.8.35/download + + +--- COPYRIGHT --- +encoding_rs is copyright Mozilla Foundation. + +Licensed under the Apache License, Version 2.0 + or the MIT +license , +at your option. All files in the project carrying such +notice may not be copied, modified, or distributed except +according to those terms. + +This crate includes data derived from the data files supplied +with the WHATWG Encoding Standard, which, when incorporated into +source code, are licensed under the BSD 3-Clause License +. + +Test code within encoding_rs is dedicated to the Public Domain when so +designated (see the individual files for PD/CC0-dedicated sections). + + +--- LICENSE-APACHE --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +Copyright Mozilla Foundation + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +--- LICENSE-WHATWG --- +Copyright Β© WHATWG (Apple, Google, Mozilla, Microsoft). + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +======================================================================== +enum_dispatch 0.3.13 +Declared license: MIT OR Apache-2.0 +Repository: https://gitlab.com/antonok/enum_dispatch +Source: https://crates.io/api/v1/crates/enum_dispatch/0.3.13/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2019 Anton Lazarev + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +equivalent 1.0.2 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/indexmap-rs/equivalent +Source: https://crates.io/api/v1/crates/equivalent/1.0.2/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016--2023 + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +errno 0.3.14 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/lambda-fairy/rust-errno +Source: https://crates.io/api/v1/crates/errno/0.3.14/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Chris Wong + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +esaxx-rs 0.1.10 +Declared license: Apache-2.0 +Repository: https://github.com/Narsil/esaxx-rs +Source: https://crates.io/api/v1/crates/esaxx-rs/0.1.10/download + + +--- 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +======================================================================== +euclid 0.20.14 +Declared license: MIT / Apache-2.0 +Repository: https://github.com/servo/euclid +Source: https://crates.io/api/v1/crates/euclid/0.20.14/download + + +--- COPYRIGHT --- +Licensed under the Apache License, Version 2.0 or the MIT license +, at your +option. All files in the project carrying such notice may not be +copied, modified, or distributed except according to those terms. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2012-2013 Mozilla Foundation + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +fastrand 2.3.0 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/smol-rs/fastrand +Source: https://crates.io/api/v1/crates/fastrand/2.3.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +fax 0.2.6 +Declared license: MIT +Repository: https://github.com/pdf-rs/fax +Source: https://crates.io/api/v1/crates/fax/0.2.6/download + + +--- SPDX MIT license text; authors declared by package metadata: Sebastian K --- +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and +associated documentation files (the "Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO +EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +fax_derive 0.2.0 +Declared license: MIT +Repository: https://github.com/pdf-rs/fax +Source: https://crates.io/api/v1/crates/fax_derive/0.2.0/download + + +--- SPDX MIT license text; authors declared by package metadata: Sebastian K --- +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and +associated documentation files (the "Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO +EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +fdeflate 0.3.7 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/image-rs/fdeflate +Source: https://crates.io/api/v1/crates/fdeflate/0.3.7/download + + +--- LICENSE-APACHE --- + + 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 + + +--- LICENSE-MIT --- +MIT License + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +filetime 0.2.29 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/alexcrichton/filetime +Source: https://crates.io/api/v1/crates/filetime/0.2.29/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +find-msvc-tools 0.1.9 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/cc-rs +Source: https://crates.io/api/v1/crates/find-msvc-tools/0.1.9/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +flate2 1.1.9 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/flate2-rs +Source: https://crates.io/api/v1/crates/flate2/1.1.9/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014-2026 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +fnv 1.0.7 +Declared license: Apache-2.0 / MIT +Repository: https://github.com/servo/rust-fnv +Source: https://crates.io/api/v1/crates/fnv/1.0.7/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +foldhash 0.1.5 +Declared license: Zlib +Repository: https://github.com/orlp/foldhash +Source: https://crates.io/api/v1/crates/foldhash/0.1.5/download + + +--- LICENSE --- +Copyright (c) 2024 Orson Peters + +This software is provided 'as-is', without any express or implied warranty. In +no event will the authors be held liable for any damages arising from the use of +this software. + +Permission is granted to anyone to use this software for any purpose, including +commercial applications, and to alter it and redistribute it freely, subject to +the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim + that you wrote the original software. If you use this software in a product, + an acknowledgment in the product documentation would be appreciated but is + not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + + +======================================================================== +foreign-types 0.3.2 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/sfackler/foreign-types +Source: https://crates.io/api/v1/crates/foreign-types/0.3.2/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 The foreign-types Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +foreign-types-shared 0.1.1 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/sfackler/foreign-types +Source: https://crates.io/api/v1/crates/foreign-types-shared/0.1.1/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 The foreign-types Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +form_urlencoded 1.2.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/rust-url +Source: https://crates.io/api/v1/crates/form_urlencoded/1.2.2/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2013-2016 The rust-url developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +fs-err 2.11.0 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/andrewhickman/fs-err +Source: https://crates.io/api/v1/crates/fs-err/2.11.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +fsevent-sys 4.1.0 +Declared license: MIT +Repository: https://github.com/octplane/fsevent-rust/tree/master/fsevent-sys +Source: https://crates.io/api/v1/crates/fsevent-sys/4.1.0/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2015 Pierre Baillet + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +fst 0.4.7 +Declared license: Unlicense/MIT +Repository: https://github.com/BurntSushi/fst +Source: https://crates.io/api/v1/crates/fst/0.4.7/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +futf 0.1.5 +Declared license: MIT / Apache-2.0 +Repository: https://github.com/servo/futf +Source: https://crates.io/api/v1/crates/futf/0.1.5/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 Keegan McAllister + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +futures 0.3.32 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/futures-rs +Source: https://crates.io/api/v1/crates/futures/0.3.32/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +futures-channel 0.3.32 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/futures-rs +Source: https://crates.io/api/v1/crates/futures-channel/0.3.32/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +futures-core 0.3.32 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/futures-rs +Source: https://crates.io/api/v1/crates/futures-core/0.3.32/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +futures-executor 0.3.32 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/futures-rs +Source: https://crates.io/api/v1/crates/futures-executor/0.3.32/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +futures-io 0.3.32 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/futures-rs +Source: https://crates.io/api/v1/crates/futures-io/0.3.32/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +futures-macro 0.3.32 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/futures-rs +Source: https://crates.io/api/v1/crates/futures-macro/0.3.32/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +futures-sink 0.3.32 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/futures-rs +Source: https://crates.io/api/v1/crates/futures-sink/0.3.32/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +futures-task 0.3.32 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/futures-rs +Source: https://crates.io/api/v1/crates/futures-task/0.3.32/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +futures-util 0.3.32 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/futures-rs +Source: https://crates.io/api/v1/crates/futures-util/0.3.32/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Alex Crichton +Copyright (c) 2017 The Tokio Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +fxhash 0.2.1 +Declared license: Apache-2.0/MIT +Repository: https://github.com/cbreeden/fxhash +Source: https://crates.io/api/v1/crates/fxhash/0.2.1/download + + +--- SPDX Apache-2.0 license text; authors declared by package metadata: cbreeden --- +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 + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +======================================================================== +generic-array 0.14.7 +Declared license: MIT +Repository: https://github.com/fizyk20/generic-array.git +Source: https://crates.io/api/v1/crates/generic-array/0.14.7/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2015 BartΕ‚omiej KamiΕ„ski + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +getopts 0.2.24 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/getopts +Source: https://crates.io/api/v1/crates/getopts/0.2.24/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +getrandom 0.2.17 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-random/getrandom +Source: https://crates.io/api/v1/crates/getrandom/0.2.17/download + + +--- LICENSE-APACHE --- + Apache License + Version 2.0, January 2004 + https://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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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 + + https://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. + + +--- LICENSE-MIT --- +Copyright (c) 2018-2024 The rust-random Project Developers +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +getrandom 0.3.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-random/getrandom +Source: https://crates.io/api/v1/crates/getrandom/0.3.4/download + + +--- LICENSE-APACHE --- + Apache License + Version 2.0, January 2004 + https://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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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 + + https://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. + + +--- LICENSE-MIT --- +Copyright (c) 2018-2025 The rust-random Project Developers +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +getrandom 0.4.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-random/getrandom +Source: https://crates.io/api/v1/crates/getrandom/0.4.1/download + + +--- LICENSE-APACHE --- + Apache License + Version 2.0, January 2004 + https://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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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 + + https://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. + + +--- LICENSE-MIT --- +Copyright (c) 2018-2026 The rust-random Project Developers +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +gif 0.14.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/image-rs/image-gif +Source: https://crates.io/api/v1/crates/gif/0.14.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 nwin + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +globset 0.4.15 +Declared license: Unlicense OR MIT +Repository: https://github.com/BurntSushi/ripgrep/tree/master/crates/globset +Source: https://crates.io/api/v1/crates/globset/0.4.15/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +h2 0.4.13 +Declared license: MIT +Repository: https://github.com/hyperium/h2 +Source: https://crates.io/api/v1/crates/h2/0.4.13/download + + +--- LICENSE --- +Copyright (c) 2017 h2 authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +half 1.8.3 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/starkat99/half-rs +Source: https://crates.io/api/v1/crates/half/1.8.3/download + + +--- LICENSE --- +MIT OR Apache-2.0 + + +======================================================================== +half 2.7.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/VoidStarKat/half-rs +Source: https://crates.io/api/v1/crates/half/2.7.1/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +hashbrown 0.14.5 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/hashbrown +Source: https://crates.io/api/v1/crates/hashbrown/0.14.5/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Amanieu d'Antras + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +hashbrown 0.15.5 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/hashbrown +Source: https://crates.io/api/v1/crates/hashbrown/0.15.5/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Amanieu d'Antras + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +hashbrown 0.16.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/hashbrown +Source: https://crates.io/api/v1/crates/hashbrown/0.16.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Amanieu d'Antras + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +heck 0.5.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/withoutboats/heck +Source: https://crates.io/api/v1/crates/heck/0.5.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +hex 0.4.3 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/KokaKiwi/rust-hex +Source: https://crates.io/api/v1/crates/hex/0.4.3/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2013-2014 The Rust Project Developers. +Copyright (c) 2015-2020 The rust-hex Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +hmac 0.12.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/MACs +Source: https://crates.io/api/v1/crates/hmac/0.12.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 Artyom Pavlov + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +html5ever 0.29.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/html5ever +Source: https://crates.io/api/v1/crates/html5ever/0.29.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The html5ever Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +http 1.4.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/hyperium/http +Source: https://crates.io/api/v1/crates/http/1.4.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2017 http-rs 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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 http-rs authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +http-body 1.0.1 +Declared license: MIT +Repository: https://github.com/hyperium/http-body +Source: https://crates.io/api/v1/crates/http-body/1.0.1/download + + +--- LICENSE --- +Copyright (c) 2019-2024 Sean McArthur & Hyper Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +http-body-util 0.1.3 +Declared license: MIT +Repository: https://github.com/hyperium/http-body +Source: https://crates.io/api/v1/crates/http-body-util/0.1.3/download + + +--- LICENSE --- +Copyright (c) 2019-2025 Sean McArthur & Hyper Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +httparse 1.10.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/seanmonstar/httparse +Source: https://crates.io/api/v1/crates/httparse/1.10.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015-2025 Sean McArthur + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +httpdate 1.0.3 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/pyfisch/httpdate +Source: https://crates.io/api/v1/crates/httpdate/1.0.3/download + + +--- LICENSE-APACHE --- +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 + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following +boilerplate notice, with the fields enclosed by brackets "[]" +replaced with your own identifying information. (Don't include +the brackets!) The text should be enclosed in the appropriate +comment syntax for the file format. We also recommend that a +file or class name and description of purpose be included on the +same "printed page" as the copyright notice for easier +identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Pyfisch + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +humantime 2.3.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/chronotope/humantime +Source: https://crates.io/api/v1/crates/humantime/2.3.0/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 The humantime Developers + +Includes parts of http date with the following copyright: +Copyright (c) 2016 Pyfisch + +Includes portions of musl libc with the following copyright: +Copyright Β© 2005-2013 Rich Felker + + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +hyper 1.8.1 +Declared license: MIT +Repository: https://github.com/hyperium/hyper +Source: https://crates.io/api/v1/crates/hyper/1.8.1/download + + +--- LICENSE --- +Copyright (c) 2014-2025 Sean McArthur + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +hyper-rustls 0.27.7 +Declared license: Apache-2.0 OR ISC OR MIT +Repository: https://github.com/rustls/hyper-rustls +Source: https://crates.io/api/v1/crates/hyper-rustls/0.27.7/download + + +--- LICENSE --- +hyper-rustls is distributed under the following three licenses: + +- Apache License version 2.0. +- MIT license. +- ISC license. + +These are included as LICENSE-APACHE, LICENSE-MIT and LICENSE-ISC +respectively. You may use this software under the terms of any +of these licenses, at your option. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-ISC --- +ISC License (ISC) +Copyright (c) 2016, Joseph Birr-Pixton + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted, provided that the +above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR +PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS +ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Joseph Birr-Pixton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +hyper-util 0.1.20 +Declared license: MIT +Repository: https://github.com/hyperium/hyper-util +Source: https://crates.io/api/v1/crates/hyper-util/0.1.20/download + + +--- LICENSE --- +Copyright (c) 2023-2025 Sean McArthur + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +iana-time-zone 0.1.65 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/strawlab/iana-time-zone +Source: https://crates.io/api/v1/crates/iana-time-zone/0.1.65/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2020 Andrew Straw + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2020 Andrew D. Straw + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +iana-time-zone-haiku 0.1.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/strawlab/iana-time-zone +Source: https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.2/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2020 Andrew Straw + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2020 Andrew D. Straw + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +icu_collections 2.1.1 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/icu_collections/2.1.1/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +icu_locale_core 2.1.1 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/icu_locale_core/2.1.1/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +icu_normalizer 2.1.1 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/icu_normalizer/2.1.1/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +icu_normalizer_data 2.1.1 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/icu_normalizer_data/2.1.1/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +icu_properties 2.1.2 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/icu_properties/2.1.2/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +icu_properties_data 2.1.2 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/icu_properties_data/2.1.2/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +icu_provider 2.1.1 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/icu_provider/2.1.1/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +id-arena 2.3.0 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/fitzgen/id-arena +Source: https://crates.io/api/v1/crates/id-arena/2.3.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +ident_case 1.0.1 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/TedDriggs/ident_case +Source: https://crates.io/api/v1/crates/ident_case/1.0.1/download + + +--- LICENSE --- +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +idna 1.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/rust-url/ +Source: https://crates.io/api/v1/crates/idna/1.1.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2013-2025 The rust-url developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +idna_adapter 1.2.1 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/hsivonen/idna_adapter +Source: https://crates.io/api/v1/crates/idna_adapter/1.2.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) The rust-url developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +ignore 0.4.23 +Declared license: Unlicense OR MIT +Repository: https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore +Source: https://crates.io/api/v1/crates/ignore/0.4.23/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +image 0.25.9 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/image-rs/image +Source: https://crates.io/api/v1/crates/image/0.25.9/download + + +--- LICENSE-APACHE --- + + 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 + + +--- LICENSE-MIT --- +MIT License + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +indexmap 2.13.0 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/indexmap-rs/indexmap +Source: https://crates.io/api/v1/crates/indexmap/2.13.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016--2017 + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +indicatif 0.18.6 +Declared license: MIT +Repository: https://github.com/console-rs/indicatif +Source: https://crates.io/api/v1/crates/indicatif/0.18.6/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2017 Armin Ronacher + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +inotify 0.11.0 +Declared license: ISC +Repository: https://github.com/hannobraun/inotify +Source: https://crates.io/api/v1/crates/inotify/0.11.0/download + + +--- LICENSE --- +Copyright (c) Hanno Braun and contributors + +Permission to use, copy, modify, and/or distribute this software for any purpose +with or without fee is hereby granted, provided that the above copyright notice +and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE. + + +======================================================================== +inotify-sys 0.1.5 +Declared license: ISC +Repository: https://github.com/hannobraun/inotify-sys +Source: https://crates.io/api/v1/crates/inotify-sys/0.1.5/download + + +--- LICENSE --- +Copyright (c) Hanno Braun and contributors + +Permission to use, copy, modify, and/or distribute this software for any purpose +with or without fee is hereby granted, provided that the above copyright notice +and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE. + + +======================================================================== +inout 0.1.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/utils +Source: https://crates.io/api/v1/crates/inout/0.1.4/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2022 The RustCrypto Project Developers +Copyright (c) 2022 Artyom Pavlov + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +ipnet 2.11.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/krisprice/ipnet +Source: https://crates.io/api/v1/crates/ipnet/2.11.0/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2017 Juniper Networks, Inc. + + 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. + + +--- LICENSE-MIT --- +Copyright 2017 Juniper Networks, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +iri-string 0.7.10 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/lo48576/iri-string +Source: https://crates.io/api/v1/crates/iri-string/0.7.10/download + + +--- LICENSE-APACHE.txt --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT.txt --- +Copyright 2019-2024 YOSHIOKA Takuma + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +is_terminal_polyfill 1.70.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/polyfill-rs/is_terminal_polyfill +Source: https://crates.io/api/v1/crates/is_terminal_polyfill/1.70.2/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +itertools 0.10.5 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/rust-itertools/itertools +Source: https://crates.io/api/v1/crates/itertools/0.10.5/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +itertools 0.13.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-itertools/itertools +Source: https://crates.io/api/v1/crates/itertools/0.13.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +itertools 0.14.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-itertools/itertools +Source: https://crates.io/api/v1/crates/itertools/0.14.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +itertools 0.8.2 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/bluss/rust-itertools +Source: https://crates.io/api/v1/crates/itertools/0.8.2/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +itoa 1.0.17 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/itoa +Source: https://crates.io/api/v1/crates/itoa/1.0.17/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +jobserver 0.1.34 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/jobserver-rs +Source: https://crates.io/api/v1/crates/jobserver/0.1.34/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +js-sys 0.3.90 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys +Source: https://crates.io/api/v1/crates/js-sys/0.3.90/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +kqueue 1.1.1 +Declared license: MIT +Repository: https://gitlab.com/rust-kqueue/rust-kqueue +Source: https://crates.io/api/v1/crates/kqueue/1.1.1/download + + +--- LICENSE --- +Copyright (c) 2016 William Orr + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +kqueue-sys 1.0.4 +Declared license: MIT +Repository: https://gitlab.com/rust-kqueue/rust-kqueue-sys +Source: https://crates.io/api/v1/crates/kqueue-sys/1.0.4/download + + +--- LICENSE --- +Copyright (c) 2016 William Orr + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +lazy_static 1.5.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang-nursery/lazy-static.rs +Source: https://crates.io/api/v1/crates/lazy_static/1.5.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2010 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +leb128fmt 0.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/bluk/leb128fmt +Source: https://crates.io/api/v1/crates/leb128fmt/0.1.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +libc 0.2.182 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/libc +Source: https://crates.io/api/v1/crates/libc/0.2.182/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Copyright (c) The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +linux-raw-sys 0.12.1 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/sunfishcode/linux-raw-sys +Source: https://crates.io/api/v1/crates/linux-raw-sys/0.12.1/download + + +--- COPYRIGHT --- +Short version for non-lawyers: + +`linux-raw-sys` is triple-licensed under Apache 2.0 with the LLVM Exception, +Apache 2.0, and MIT terms. + + +Longer version: + +Copyrights in the `linux-raw-sys` project are retained by their contributors. +No copyright assignment is required to contribute to the `linux-raw-sys` +project. + +Some files include code derived from Rust's `libstd`; see the comments in +the code for details. + +Except as otherwise noted (below and/or in individual files), `linux-raw-sys` +is licensed under: + + - the Apache License, Version 2.0, with the LLVM Exception + or + + - the Apache License, Version 2.0 + or + , + - or the MIT license + or + , + +at your option. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-Apache-2.0_WITH_LLVM-exception --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +litemap 0.8.1 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/litemap/0.8.1/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +lock_api 0.4.14 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/Amanieu/parking_lot +Source: https://crates.io/api/v1/crates/lock_api/0.4.14/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +log 0.4.29 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/log +Source: https://crates.io/api/v1/crates/log/0.4.29/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +lopdf 0.34.0 +Declared license: MIT +Repository: https://github.com/J-F-Liu/lopdf.git +Source: https://crates.io/api/v1/crates/lopdf/0.34.0/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2016 Junfeng Liu + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +lru 0.12.5 +Declared license: MIT +Repository: https://github.com/jeromefroe/lru-rs.git +Source: https://crates.io/api/v1/crates/lru/0.12.5/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2016 Jerome Froelich + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +lru-slab 0.1.2 +Declared license: MIT OR Apache-2.0 OR Zlib +Repository: https://github.com/Ralith/lru-slab +Source: https://crates.io/api/v1/crates/lru-slab/0.1.2/download + + +--- LICENSE-APACHE --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2024 The lru-slab Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +--- LICENSE-ZLIB --- +Copyright (c) 2024 The lru-slab Developers + +This software is provided 'as-is', without any express or implied warranty. In +no event will the authors be held liable for any damages arising from the use of +this software. + +Permission is granted to anyone to use this software for any purpose, including +commercial applications, and to alter it and redistribute it freely, subject to +the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim + that you wrote the original software. If you use this software in a product, an + acknowledgment in the product documentation would be appreciated but is not + required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + + +======================================================================== +mac 0.1.1 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/reem/rust-mac.git +Source: https://crates.io/api/v1/crates/mac/0.1.1/download + + +--- SPDX Apache-2.0 license text; authors declared by package metadata: Jonathan Reem --- +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 + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +======================================================================== +macro_rules_attribute 0.2.3 +Declared license: Apache-2.0 OR MIT OR Zlib +Repository: https://github.com/danielhenrymantilla/macro_rules_attribute-rs +Source: https://crates.io/api/v1/crates/macro_rules_attribute/0.2.3/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2019 Daniel Henry-Mantilla + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) 2019 Daniel Henry-Mantilla + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- LICENSE-ZLIB --- +zlib License + +(C) 2019 Daniel Henry-Mantilla + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + + +======================================================================== +macro_rules_attribute-proc_macro 0.2.3 +Declared license: Apache-2.0 OR MIT OR Zlib +Repository: https://github.com/danielhenrymantilla/macro_rules_attribute-rs +Source: https://crates.io/api/v1/crates/macro_rules_attribute-proc_macro/0.2.3/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2019 Daniel Henry-Mantilla + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) 2019 Daniel Henry-Mantilla + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- LICENSE-ZLIB --- +zlib License + +(C) 2019 Daniel Henry-Mantilla + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + + +======================================================================== +markup5ever 0.14.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/html5ever +Source: https://crates.io/api/v1/crates/markup5ever/0.14.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The html5ever Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +match_token 0.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/html5ever +Source: https://crates.io/api/v1/crates/match_token/0.1.0/download + + +--- https://raw.githubusercontent.com/servo/html5ever/0e4e125b8672abad4ff14d1e0043d3be9305af6a/LICENSE-MIT --- +Copyright (c) 2014 The html5ever Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +matchers 0.2.0 +Declared license: MIT +Repository: https://github.com/hawkw/matchers +Source: https://crates.io/api/v1/crates/matchers/0.2.0/download + + +--- LICENSE --- +Copyright (c) 2019 Eliza Weisman + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +matchit 0.7.3 +Declared license: MIT AND BSD-3-Clause +Repository: https://github.com/ibraheemdev/matchit +Source: https://crates.io/api/v1/crates/matchit/0.7.3/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2022 Ibraheem Ahmed + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- LICENSE.httprouter --- +BSD 3-Clause License + +Copyright (c) 2013, Julien Schmidt +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +======================================================================== +matrixmultiply 0.3.11 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/bluss/matrixmultiply/ +Source: https://crates.io/api/v1/crates/matrixmultiply/0.3.11/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 - 2023 Ulrik Sverdrup "bluss" +Copyirhgt (c) 2018 R. Janis Goldschmidt +Copyright (c) 2021 DutchGhost [constparse.rs] + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +md-5 0.10.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/hashes +Source: https://crates.io/api/v1/crates/md-5/0.10.6/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2006-2009 Graydon Hoare +Copyright (c) 2009-2013 Mozilla Foundation +Copyright (c) 2016 Artyom Pavlov + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +memchr 2.8.0 +Declared license: Unlicense OR MIT +Repository: https://github.com/BurntSushi/memchr +Source: https://crates.io/api/v1/crates/memchr/2.8.0/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +mime 0.3.17 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/hyperium/mime +Source: https://crates.io/api/v1/crates/mime/0.3.17/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Sean McArthur + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +minimal-lexical 0.2.1 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/Alexhuszagh/minimal-lexical +Source: https://crates.io/api/v1/crates/minimal-lexical/0.2.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +--- LICENSE.md --- +Minimal-lexical is dual licensed under the Apache 2.0 license as well as the MIT +license. See the LICENCE-MIT and the LICENCE-APACHE files for the licenses. + +--- + +`src/bellerophon.rs` is loosely based off the Golang implementation, +found [here](https://github.com/golang/go/blob/b10849fbb97a2244c086991b4623ae9f32c212d0/src/strconv/extfloat.go). +That code (used if the `compact` feature is enabled) is subject to a +[3-clause BSD license](https://github.com/golang/go/blob/b10849fbb97a2244c086991b4623ae9f32c212d0/LICENSE): + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +======================================================================== +miniz_oxide 0.8.9 +Declared license: MIT OR Zlib OR Apache-2.0 +Repository: https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide +Source: https://crates.io/api/v1/crates/miniz_oxide/0.8.9/download + + +--- LICENSE --- +MIT License + +Copyright 2013-2014 RAD Game Tools and Valve Software +Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC +Copyright (c) 2017 Frommi +Copyright (c) 2017-2024 oyvindln + + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- LICENSE-APACHE.md --- + + 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 + + +--- LICENSE-MIT.md --- +MIT License + +Copyright 2013-2014 RAD Game Tools and Valve Software +Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC +Copyright (c) 2017 Frommi +Copyright (c) 2017-2024 oyvindln + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- LICENSE-ZLIB.md --- +Copyright 2013-2014 RAD Game Tools and Valve Software +Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC +Copyright (c) 2020 Frommi +Copyright (c) 2017-2024 oyvindln + +This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + + +======================================================================== +mio 1.1.1 +Declared license: MIT +Repository: https://github.com/tokio-rs/mio +Source: https://crates.io/api/v1/crates/mio/1.1.1/download + + +--- LICENSE --- +Copyright (c) 2014 Carl Lerche and other MIO contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +monostate 0.1.18 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/monostate +Source: https://crates.io/api/v1/crates/monostate/0.1.18/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +monostate-impl 0.1.18 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/monostate +Source: https://crates.io/api/v1/crates/monostate-impl/0.1.18/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +moxcms 0.7.11 +Declared license: BSD-3-Clause OR Apache-2.0 +Repository: https://github.com/awxkee/moxcms.git +Source: https://crates.io/api/v1/crates/moxcms/0.7.11/download + + +--- LICENSE-APACHE.md --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2024 Radzivon Bartoshyk + + 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. + + +--- LICENSE.md --- +Copyright (c) Radzivon Bartoshyk. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +======================================================================== +multer 3.1.0 +Declared license: MIT +Repository: https://github.com/rwf2/multer +Source: https://crates.io/api/v1/crates/multer/3.1.0/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2020 Rousan Ali + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +native-tls 0.2.18 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-native-tls/rust-native-tls +Source: https://crates.io/api/v1/crates/native-tls/0.2.18/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 The rust-native-tls Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +ndarray 0.16.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-ndarray/ndarray +Source: https://crates.io/api/v1/crates/ndarray/0.16.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 - 2021 Ulrik Sverdrup "bluss", + Jim Turner, + and ndarray developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +new_debug_unreachable 1.0.6 +Declared license: MIT +Repository: https://github.com/mbrubeck/rust-debug-unreachable +Source: https://crates.io/api/v1/crates/new_debug_unreachable/1.0.6/download + + +--- LICENSE-MIT --- +Copyright (c) 2015 Jonathan Reem + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +nlprule 0.6.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/bminixhofer/nlprule +Source: https://crates.io/api/v1/crates/nlprule/0.6.4/download + + +--- SPDX Apache-2.0 license text; authors declared by package metadata: Benjamin Minixhofer --- +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 + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +======================================================================== +nom 7.1.3 +Declared license: MIT +Repository: https://github.com/Geal/nom +Source: https://crates.io/api/v1/crates/nom/7.1.3/download + + +--- LICENSE --- +Copyright (c) 2014-2019 Geoffroy Couprie + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +notify 8.2.0 +Declared license: CC0-1.0 +Repository: https://github.com/notify-rs/notify.git +Source: https://crates.io/api/v1/crates/notify/8.2.0/download + + +--- LICENSE-CC0 --- +Creative Commons CC0 1.0 Universal + +<> CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. <> + +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: + + i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; + + ii. moral rights retained by the original author(s) and/or performer(s); + + iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; + + iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; + + v. rights protecting the extraction, dissemination, use and reuse of data in a Work; + + vi. 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 + + vii. 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. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. + + b. 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. + + c. 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. + + d. 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. + + +======================================================================== +notify-types 2.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/notify-rs/notify.git +Source: https://crates.io/api/v1/crates/notify-types/2.1.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2023 Notify Contributors + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2023 Notify Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +nu-ansi-term 0.50.3 +Declared license: MIT +Repository: https://github.com/nushell/nu-ansi-term +Source: https://crates.io/api/v1/crates/nu-ansi-term/0.50.3/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014 Benjamin Sago +Copyright (c) 2021-2022 The Nushell Project Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +num-complex 0.4.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-num/num-complex +Source: https://crates.io/api/v1/crates/num-complex/0.4.6/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +num-conv 0.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/jhpratt/num-conv +Source: https://crates.io/api/v1/crates/num-conv/0.1.0/download + + +--- LICENSE-Apache --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2023 Jacob Pratt + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2023 Jacob Pratt + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +num-integer 0.1.46 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-num/num-integer +Source: https://crates.io/api/v1/crates/num-integer/0.1.46/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +num-traits 0.2.19 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-num/num-traits +Source: https://crates.io/api/v1/crates/num-traits/0.2.19/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +object_store 0.11.2 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/apache/arrow-rs/tree/main/object_store +Source: https://crates.io/api/v1/crates/object_store/0.11.2/download + + +--- LICENSE.txt --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- NOTICE.txt --- +Apache Arrow Object Store +Copyright 2020-2024 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + + +======================================================================== +once_cell 1.21.3 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/matklad/once_cell +Source: https://crates.io/api/v1/crates/once_cell/1.21.3/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +once_cell_polyfill 1.70.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/polyfill-rs/once_cell_polyfill +Source: https://crates.io/api/v1/crates/once_cell_polyfill/1.70.2/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +onig 6.5.1 +Declared license: MIT +Repository: https://github.com/iwillspeak/rust-onig +Source: https://crates.io/api/v1/crates/onig/6.5.1/download + + +--- LICENSE.md --- +# Rust-Onig is Open Source! + +All source code in this repository is distributed under the terms of +the *MIT License* unless otherwise stated. The Oniguruma source code +remains the property of the original authors and is re-distributed +under the original license. + +> The MIT License (MIT) +> +> Copyright (c) 2015 Will Speak , Ivan Ivashchenko +> , and contributors. +> +> Permission is hereby granted, free of charge, to any person obtaining a copy +> of this software and associated documentation files (the "Software"), to deal +> in the Software without restriction, including without limitation the rights +> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +> copies of the Software, and to permit persons to whom the Software is +> furnished to do so, subject to the following conditions: +> +> The above copyright notice and this permission notice shall be included in all +> copies or substantial portions of the Software. +> +> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +> SOFTWARE. + + +======================================================================== +onig_sys 69.9.1 +Declared license: MIT +Repository: https://github.com/iwillspeak/rust-onig +Source: https://crates.io/api/v1/crates/onig_sys/69.9.1/download + + +--- LICENSE.md --- +# Rust-Onig is Open Source! + +All source code in this repository is distributed under the terms of +the *MIT License* unless otherwise stated. The Oniguruma source code +remains the property of the original authors and is re-distributed +under the original license, see [COPYING](oniguruma/COPYING) for more +information. + +> The MIT License (MIT) +> +> Copyright (c) 2015 Will Speak , Ivan Ivashchenko +> , and contributors. +> +> Permission is hereby granted, free of charge, to any person obtaining a copy +> of this software and associated documentation files (the "Software"), to deal +> in the Software without restriction, including without limitation the rights +> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +> copies of the Software, and to permit persons to whom the Software is +> furnished to do so, subject to the following conditions: +> +> The above copyright notice and this permission notice shall be included in all +> copies or substantial portions of the Software. +> +> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +> SOFTWARE. + + +--- oniguruma/COPYING --- +Oniguruma LICENSE +----------------- + +Copyright (c) 2002-2021 K.Kosako +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + + +======================================================================== +opaque-debug 0.3.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/utils +Source: https://crates.io/api/v1/crates/opaque-debug/0.3.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2018-2024 The RustCrypto Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +openssl 0.10.81 +Declared license: Apache-2.0 +Repository: https://github.com/rust-openssl/rust-openssl +Source: https://crates.io/api/v1/crates/openssl/0.10.81/download + + +--- LICENSE --- +Copyright 2011-2017 Google Inc. + 2013 Jack Lloyd + 2013-2014 Steven Fackler + +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. + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +======================================================================== +openssl-macros 0.1.1 +Declared license: MIT/Apache-2.0 +Repository: +Source: https://crates.io/api/v1/crates/openssl-macros/0.1.1/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2022 Steven Fackler + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +openssl-probe 0.2.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rustls/openssl-probe +Source: https://crates.io/api/v1/crates/openssl-probe/0.2.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +openssl-sys 0.9.117 +Declared license: MIT +Repository: https://github.com/rust-openssl/rust-openssl +Source: https://crates.io/api/v1/crates/openssl-sys/0.9.117/download + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +ort 2.0.0-rc.10 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/pykeio/ort +Source: https://crates.io/api/v1/crates/ort/2.0.0-rc.10/download + + +--- LICENSE-APACHE --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) 2023-2025 pyke.io +Copyright (c) 2020 Nicolas Bigaouette + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +ort-sys 2.0.0-rc.10 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/pykeio/ort +Source: https://crates.io/api/v1/crates/ort-sys/2.0.0-rc.10/download + + +--- LICENSE-APACHE --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) 2023-2025 pyke.io +Copyright (c) 2020 Nicolas Bigaouette + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +parking_lot 0.12.5 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/Amanieu/parking_lot +Source: https://crates.io/api/v1/crates/parking_lot/0.12.5/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +parking_lot_core 0.9.12 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/Amanieu/parking_lot +Source: https://crates.io/api/v1/crates/parking_lot_core/0.9.12/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +paste 1.0.15 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/paste +Source: https://crates.io/api/v1/crates/paste/1.0.15/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +pastey 0.2.3 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/as1100k/pastey +Source: https://crates.io/api/v1/crates/pastey/0.2.3/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +pbkdf2 0.12.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2 +Source: https://crates.io/api/v1/crates/pbkdf2/0.12.2/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 Artyom Pavlov +Copyright (c) 2018-2023 The RustCrypto Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +pdf-extract 0.7.12 +Declared license: MIT +Repository: https://github.com/jrmuizel/pdf-extract +Source: https://crates.io/api/v1/crates/pdf-extract/0.7.12/download + + +--- SPDX MIT license text; authors declared by package metadata: Jeff Muizelaar --- +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and +associated documentation files (the "Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO +EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +pem-rfc7468 1.0.0 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/RustCrypto/formats +Source: https://crates.io/api/v1/crates/pem-rfc7468/1.0.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2021-2025 The RustCrypto Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +percent-encoding 2.3.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/rust-url/ +Source: https://crates.io/api/v1/crates/percent-encoding/2.3.2/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2013-2025 The rust-url developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +phf 0.11.3 +Declared license: MIT +Repository: https://github.com/rust-phf/rust-phf +Source: https://crates.io/api/v1/crates/phf/0.11.3/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +phf_codegen 0.11.3 +Declared license: MIT +Repository: https://github.com/rust-phf/rust-phf +Source: https://crates.io/api/v1/crates/phf_codegen/0.11.3/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +phf_generator 0.11.3 +Declared license: MIT +Repository: https://github.com/rust-phf/rust-phf +Source: https://crates.io/api/v1/crates/phf_generator/0.11.3/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +phf_macros 0.11.3 +Declared license: MIT +Repository: https://github.com/rust-phf/rust-phf +Source: https://crates.io/api/v1/crates/phf_macros/0.11.3/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +phf_shared 0.11.3 +Declared license: MIT +Repository: https://github.com/rust-phf/rust-phf +Source: https://crates.io/api/v1/crates/phf_shared/0.11.3/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +pin-project 1.1.10 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/taiki-e/pin-project +Source: https://crates.io/api/v1/crates/pin-project/1.1.10/download + + +--- LICENSE-APACHE --- + + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +pin-project-internal 1.1.10 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/taiki-e/pin-project +Source: https://crates.io/api/v1/crates/pin-project-internal/1.1.10/download + + +--- LICENSE-APACHE --- + + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +pin-project-lite 0.2.16 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/taiki-e/pin-project-lite +Source: https://crates.io/api/v1/crates/pin-project-lite/0.2.16/download + + +--- LICENSE-APACHE --- + + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +pin-utils 0.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang-nursery/pin-utils +Source: https://crates.io/api/v1/crates/pin-utils/0.1.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2018 The pin-utils 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. + + +--- LICENSE-MIT --- +Copyright (c) 2018 The pin-utils authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +pkg-config 0.3.32 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/pkg-config-rs +Source: https://crates.io/api/v1/crates/pkg-config/0.3.32/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +png 0.18.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/image-rs/image-png +Source: https://crates.io/api/v1/crates/png/0.18.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 nwin + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +poly1305 0.8.0 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/RustCrypto/universal-hashes +Source: https://crates.io/api/v1/crates/poly1305/0.8.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015-2019 RustCrypto Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +pom 1.1.0 +Declared license: MIT +Repository: https://github.com/J-F-Liu/pom.git +Source: https://crates.io/api/v1/crates/pom/1.1.0/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2016 Junfeng Liu + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +portable-atomic 1.14.0 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/taiki-e/portable-atomic +Source: https://crates.io/api/v1/crates/portable-atomic/1.14.0/download + + +--- LICENSE-APACHE --- + + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +portable-atomic-util 0.2.7 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/taiki-e/portable-atomic-util +Source: https://crates.io/api/v1/crates/portable-atomic-util/0.2.7/download + + +--- LICENSE-APACHE --- + + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +postscript 0.14.1 +Declared license: Apache-2.0/MIT +Repository: https://github.com/bodoni/postscript +Source: https://crates.io/api/v1/crates/postscript/0.14.1/download + + +--- LICENSE.md --- +# License + +The project is dual licensed under the terms of the Apache License, Version 2.0, +and the MIT License. You may obtain copies of the two licenses at + +* https://www.apache.org/licenses/LICENSE-2.0 and +* https://opensource.org/licenses/MIT, respectively. + +The following two notices apply to every file of the project. + +## The Apache License + +``` +Copyright 2015–2022 The postscript Developers + +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. +``` + +## The MIT License + +``` +Copyright 2015–2022 The postscript Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the β€œSoftware”), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED β€œAS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +``` + + +======================================================================== +potential_utf 0.1.4 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/potential_utf/0.1.4/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +powerfmt 0.2.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/jhpratt/powerfmt +Source: https://crates.io/api/v1/crates/powerfmt/0.2.0/download + + +--- LICENSE-Apache --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2023 Jacob Pratt et al. + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2023 Jacob Pratt et al. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +ppv-lite86 0.2.21 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/cryptocorrosion/cryptocorrosion +Source: https://crates.io/api/v1/crates/ppv-lite86/0.2.21/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2019 The CryptoCorrosion Contributors + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2019 The CryptoCorrosion Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +precomputed-hash 0.1.1 +Declared license: MIT +Repository: https://github.com/emilio/precomputed-hash +Source: https://crates.io/api/v1/crates/precomputed-hash/0.1.1/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2017 Emilio Cobos Álvarez + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +prettyplease 0.2.37 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/prettyplease +Source: https://crates.io/api/v1/crates/prettyplease/0.2.37/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +proc-macro2 1.0.106 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/proc-macro2 +Source: https://crates.io/api/v1/crates/proc-macro2/1.0.106/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +pxfm 0.1.26 +Declared license: BSD-3-Clause OR Apache-2.0 +Repository: https://github.com/awxkee/pxfm +Source: https://crates.io/api/v1/crates/pxfm/0.1.26/download + + +--- LICENSE-APACHE.md --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2024 Radzivon Bartoshyk + + 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. + + +--- LICENSE.md --- +Copyright (c) Radzivon Bartoshyk. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +======================================================================== +quick-error 2.0.1 +Declared license: MIT/Apache-2.0 +Repository: http://github.com/tailhook/quick-error +Source: https://crates.io/api/v1/crates/quick-error/2.0.1/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 The quick-error Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +quick-xml 0.30.0 +Declared license: MIT +Repository: https://github.com/tafia/quick-xml +Source: https://crates.io/api/v1/crates/quick-xml/0.30.0/download + + +--- LICENSE-MIT.md --- +The MIT License (MIT) + +Copyright (c) 2016 Johann Tuffe + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +quick-xml 0.37.5 +Declared license: MIT +Repository: https://github.com/tafia/quick-xml +Source: https://crates.io/api/v1/crates/quick-xml/0.37.5/download + + +--- LICENSE-MIT.md --- +The MIT License (MIT) + +Copyright (c) 2016 Johann Tuffe + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +quick-xml 0.39.2 +Declared license: MIT +Repository: https://github.com/tafia/quick-xml +Source: https://crates.io/api/v1/crates/quick-xml/0.39.2/download + + +--- LICENSE-MIT.md --- +The MIT License (MIT) + +Copyright (c) 2016 Johann Tuffe + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +quinn 0.11.9 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/quinn-rs/quinn +Source: https://crates.io/api/v1/crates/quinn/0.11.9/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2018 The quinn Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +quinn-proto 0.11.13 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/quinn-rs/quinn +Source: https://crates.io/api/v1/crates/quinn-proto/0.11.13/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2018 The quinn Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +quinn-udp 0.5.14 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/quinn-rs/quinn +Source: https://crates.io/api/v1/crates/quinn-udp/0.5.14/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2018 The quinn Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +quote 1.0.44 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/quote +Source: https://crates.io/api/v1/crates/quote/1.0.44/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +r-efi 5.3.0 +Declared license: MIT OR Apache-2.0 OR LGPL-2.1-or-later +Repository: https://github.com/r-efi/r-efi +Source: https://crates.io/api/v1/crates/r-efi/5.3.0/download + + +--- SPDX Apache-2.0 license text; authors declared by package metadata: See the linked source package --- +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 + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +======================================================================== +rand 0.8.5 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-random/rand +Source: https://crates.io/api/v1/crates/rand/0.8.5/download + + +--- COPYRIGHT --- +Copyrights in the Rand project are retained by their contributors. No +copyright assignment is required to contribute to the Rand project. + +For full authorship information, see the version control history. + +Except as otherwise noted (below and/or in individual files), Rand is +licensed under the Apache License, Version 2.0 or + or the MIT license + or , at your option. + +The Rand project includes code from the Rust project +published under these same licenses. + + +--- LICENSE-APACHE --- + Apache License + Version 2.0, January 2004 + https://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 + + +--- LICENSE-MIT --- +Copyright 2018 Developers of the Rand project +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rand 0.9.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-random/rand +Source: https://crates.io/api/v1/crates/rand/0.9.2/download + + +--- COPYRIGHT --- +Copyrights in the Rand project are retained by their contributors. No +copyright assignment is required to contribute to the Rand project. + +For full authorship information, see the version control history. + +Except as otherwise noted (below and/or in individual files), Rand is +licensed under the Apache License, Version 2.0 or + or the MIT license + or , at your option. + +The Rand project includes code from the Rust project +published under these same licenses. + + +--- LICENSE-APACHE --- + Apache License + Version 2.0, January 2004 + https://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 + + +--- LICENSE-MIT --- +Copyright 2018 Developers of the Rand project +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rand_chacha 0.3.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-random/rand +Source: https://crates.io/api/v1/crates/rand_chacha/0.3.1/download + + +--- COPYRIGHT --- +Copyrights in the Rand project are retained by their contributors. No +copyright assignment is required to contribute to the Rand project. + +For full authorship information, see the version control history. + +Except as otherwise noted (below and/or in individual files), Rand is +licensed under the Apache License, Version 2.0 or + or the MIT license + or , at your option. + +The Rand project includes code from the Rust project +published under these same licenses. + + +--- LICENSE-APACHE --- + Apache License + Version 2.0, January 2004 + https://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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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 + + https://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. + + +--- LICENSE-MIT --- +Copyright 2018 Developers of the Rand project +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rand_chacha 0.9.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-random/rand +Source: https://crates.io/api/v1/crates/rand_chacha/0.9.0/download + + +--- COPYRIGHT --- +Copyrights in the Rand project are retained by their contributors. No +copyright assignment is required to contribute to the Rand project. + +For full authorship information, see the version control history. + +Except as otherwise noted (below and/or in individual files), Rand is +licensed under the Apache License, Version 2.0 or + or the MIT license + or , at your option. + +The Rand project includes code from the Rust project +published under these same licenses. + + +--- LICENSE-APACHE --- + Apache License + Version 2.0, January 2004 + https://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 + + +--- LICENSE-MIT --- +Copyright 2018 Developers of the Rand project +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rand_core 0.6.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-random/rand +Source: https://crates.io/api/v1/crates/rand_core/0.6.4/download + + +--- COPYRIGHT --- +Copyrights in the Rand project are retained by their contributors. No +copyright assignment is required to contribute to the Rand project. + +For full authorship information, see the version control history. + +Except as otherwise noted (below and/or in individual files), Rand is +licensed under the Apache License, Version 2.0 or + or the MIT license + or , at your option. + +The Rand project includes code from the Rust project +published under these same licenses. + + +--- LICENSE-APACHE --- + Apache License + Version 2.0, January 2004 + https://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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + +--- LICENSE-MIT --- +Copyright 2018 Developers of the Rand project +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rand_core 0.9.5 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-random/rand +Source: https://crates.io/api/v1/crates/rand_core/0.9.5/download + + +--- COPYRIGHT --- +Copyrights in the Rand project are retained by their contributors. No +copyright assignment is required to contribute to the Rand project. + +For full authorship information, see the version control history. + +Except as otherwise noted (below and/or in individual files), Rand is +licensed under the Apache License, Version 2.0 or + or the MIT license + or , at your option. + +The Rand project includes code from the Rust project +published under these same licenses. + + +--- LICENSE-APACHE --- + Apache License + Version 2.0, January 2004 + https://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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + +--- LICENSE-MIT --- +Copyright 2018 Developers of the Rand project +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rangemap 1.7.1 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/jeffparsons/rangemap +Source: https://crates.io/api/v1/crates/rangemap/1.7.1/download + + +--- LICENSE-APACHE --- + + 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 + + Copyright 2019-2022 Jeff Parsons, and [contributors](https://github.com/jeffparsons/rangemap/contributors) + + 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. + + +--- LICENSE-MIT --- +Copyright 2019 Jeffrey Parsons + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +rawpointer 0.2.1 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/bluss/rawpointer/ +Source: https://crates.io/api/v1/crates/rawpointer/0.2.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rayon 1.11.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rayon-rs/rayon +Source: https://crates.io/api/v1/crates/rayon/1.11.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2010 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rayon-cond 0.1.0 +Declared license: Apache-2.0/MIT +Repository: https://github.com/cuviper/rayon-cond +Source: https://crates.io/api/v1/crates/rayon-cond/0.1.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2018 Josh Stone + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rayon-cond 0.4.0 +Declared license: Apache-2.0/MIT +Repository: https://github.com/cuviper/rayon-cond +Source: https://crates.io/api/v1/crates/rayon-cond/0.4.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2018 Josh Stone + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rayon-core 1.13.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rayon-rs/rayon +Source: https://crates.io/api/v1/crates/rayon-core/1.13.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2010 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +redox_syscall 0.5.18 +Declared license: MIT +Repository: https://gitlab.redox-os.org/redox-os/syscall +Source: https://crates.io/api/v1/crates/redox_syscall/0.5.18/download + + +--- LICENSE --- +Copyright (c) 2017 Redox OS Developers + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +regex 1.12.3 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/regex +Source: https://crates.io/api/v1/crates/regex/1.12.3/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +regex-automata 0.4.14 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/regex +Source: https://crates.io/api/v1/crates/regex-automata/0.4.14/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +regex-syntax 0.8.10 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/regex +Source: https://crates.io/api/v1/crates/regex-syntax/0.8.10/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +--- src/unicode_tables/LICENSE-UNICODE --- +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +Unicode Data Files include all data files under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, +http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and +http://www.unicode.org/utility/trac/browser/. + +Unicode Data Files do not include PDF online code charts under the +directory http://www.unicode.org/Public/. + +Software includes any source code published in the Unicode Standard +or under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, +http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and +http://www.unicode.org/utility/trac/browser/. + +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 1991-2018 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in http://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + + +======================================================================== +reqwest 0.12.28 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/seanmonstar/reqwest +Source: https://crates.io/api/v1/crates/reqwest/0.12.28/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2016 Sean McArthur + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016-2025 Sean McArthur + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +ring 0.17.14 +Declared license: Apache-2.0 AND ISC +Repository: https://github.com/briansmith/ring +Source: https://crates.io/api/v1/crates/ring/0.17.14/download + + +--- LICENSE --- +*ring* uses an "ISC" license, like BoringSSL used to use, for new code +files. See LICENSE-other-bits for the text of that license. + +See LICENSE-BoringSSL for code that was sourced from BoringSSL under the +Apache 2.0 license. Some code that was sourced from BoringSSL under the ISC +license. In each case, the license info is at the top of the file. + +See src/polyfill/once_cell/LICENSE-APACHE and src/polyfill/once_cell/LICENSE-MIT +for the license to code that was sourced from the once_cell project. + + +--- LICENSE-BoringSSL --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +Licenses for support code +------------------------- + +Parts of the TLS test suite are under the Go license. This code is not included +in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so +distributing code linked against BoringSSL does not trigger this license: + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +BoringSSL uses the Chromium test infrastructure to run a continuous build, +trybots etc. The scripts which manage this, and the script for generating build +metadata, are under the Chromium license. Distributing code linked against +BoringSSL does not trigger this license. + +Copyright 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +--- LICENSE-other-bits --- +Copyright 2015-2025 Brian Smith. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +--- src/polyfill/once_cell/LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- src/polyfill/once_cell/LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHOR OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +--- third_party/fiat/LICENSE --- +The Apache License, Version 2.0 (Apache-2.0) + +Copyright 2015-2020 the fiat-crypto authors (see the AUTHORS file) + +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. + + +======================================================================== +roxmltree 0.20.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RazrFalcon/roxmltree +Source: https://crates.io/api/v1/crates/roxmltree/0.20.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2018 Yevhenii Reizner + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +rustc-hash 2.1.1 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/rust-lang/rustc-hash +Source: https://crates.io/api/v1/crates/rustc-hash/2.1.1/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rustix 1.1.4 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/rustix +Source: https://crates.io/api/v1/crates/rustix/1.1.4/download + + +--- COPYRIGHT --- +Short version for non-lawyers: + +`rustix` is triple-licensed under Apache 2.0 with the LLVM Exception, +Apache 2.0, and MIT terms. + + +Longer version: + +Copyrights in the `rustix` project are retained by their contributors. +No copyright assignment is required to contribute to the `rustix` +project. + +Some files include code derived from Rust's `libstd`; see the comments in +the code for details. + +Except as otherwise noted (below and/or in individual files), `rustix` +is licensed under: + + - the Apache License, Version 2.0, with the LLVM Exception + or + + - the Apache License, Version 2.0 + or + , + - or the MIT license + or + , + +at your option. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-Apache-2.0_WITH_LLVM-exception --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rustls 0.23.37 +Declared license: Apache-2.0 OR ISC OR MIT +Repository: https://github.com/rustls/rustls +Source: https://crates.io/api/v1/crates/rustls/0.23.37/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-ISC --- +ISC License (ISC) +Copyright (c) 2016, Joseph Birr-Pixton + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted, provided that the +above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR +PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS +ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Joseph Birr-Pixton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rustls-native-certs 0.8.3 +Declared license: Apache-2.0 OR ISC OR MIT +Repository: https://github.com/rustls/rustls-native-certs +Source: https://crates.io/api/v1/crates/rustls-native-certs/0.8.3/download + + +--- LICENSE --- +Rustls is distributed under the following three licenses: + +- Apache License version 2.0. +- MIT license. +- ISC license. + +These are included as LICENSE-APACHE, LICENSE-MIT and LICENSE-ISC +respectively. You may use this software under the terms of any +of these licenses, at your option. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-ISC --- +ISC License (ISC) +Copyright (c) 2016, Joseph Birr-Pixton + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted, provided that the +above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR +PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS +ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Joseph Birr-Pixton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rustls-pemfile 2.2.0 +Declared license: Apache-2.0 OR ISC OR MIT +Repository: https://github.com/rustls/pemfile +Source: https://crates.io/api/v1/crates/rustls-pemfile/2.2.0/download + + +--- LICENSE --- +rustls-pemfile is distributed under the following three licenses: + +- Apache License version 2.0. +- MIT license. +- ISC license. + +These are included as LICENSE-APACHE, LICENSE-MIT and LICENSE-ISC +respectively. You may use this software under the terms of any +of these licenses, at your option. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-ISC --- +ISC License (ISC) +Copyright (c) 2016, Joseph Birr-Pixton + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted, provided that the +above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR +PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS +ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Joseph Birr-Pixton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rustls-pki-types 1.14.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rustls/pki-types +Source: https://crates.io/api/v1/crates/rustls-pki-types/1.14.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2023 Dirkjan Ochtman + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2023 Dirkjan Ochtman + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +rustls-webpki 0.103.9 +Declared license: ISC +Repository: https://github.com/rustls/webpki +Source: https://crates.io/api/v1/crates/rustls-webpki/0.103.9/download + + +--- LICENSE --- +Except as otherwise noted, this project is licensed under the following +(ISC-style) terms: + +Copyright 2015 Brian Smith. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +The files under third-party/chromium are licensed as described in +third-party/chromium/LICENSE. + + +======================================================================== +rustversion 1.0.22 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/rustversion +Source: https://crates.io/api/v1/crates/rustversion/1.0.22/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +ryu 1.0.23 +Declared license: Apache-2.0 OR BSL-1.0 +Repository: https://github.com/dtolnay/ryu +Source: https://crates.io/api/v1/crates/ryu/1.0.23/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-BOOST --- +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +same-file 1.0.6 +Declared license: Unlicense/MIT +Repository: https://github.com/BurntSushi/same-file +Source: https://crates.io/api/v1/crates/same-file/1.0.6/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2017 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +schannel 0.1.28 +Declared license: MIT +Repository: https://github.com/steffengy/schannel-rs +Source: https://crates.io/api/v1/crates/schannel/0.1.28/download + + +--- LICENSE.md --- +Copyright (c) 2015 steffengy + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +scopeguard 1.2.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/bluss/scopeguard +Source: https://crates.io/api/v1/crates/scopeguard/1.2.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016-2019 Ulrik Sverdrup "bluss" and scopeguard developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +scraper 0.21.0 +Declared license: ISC +Repository: https://github.com/causal-agent/scraper +Source: https://crates.io/api/v1/crates/scraper/0.21.0/download + + +--- LICENSE --- +./../LICENSE + + +======================================================================== +security-framework 3.7.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/kornelski/rust-security-framework +Source: https://crates.io/api/v1/crates/security-framework/3.7.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Steven Fackler + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +security-framework-sys 2.17.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/kornelski/rust-security-framework +Source: https://crates.io/api/v1/crates/security-framework-sys/2.17.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Steven Fackler + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +selectors 0.26.0 +Declared license: MPL-2.0 +Repository: https://github.com/servo/stylo +Source: https://crates.io/api/v1/crates/selectors/0.26.0/download + + +--- SPDX MPL-2.0 license text; authors declared by package metadata: The Servo Project Developers --- +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at https://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + + +======================================================================== +semver 1.0.27 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/semver +Source: https://crates.io/api/v1/crates/semver/1.0.27/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +serde 1.0.228 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/serde-rs/serde +Source: https://crates.io/api/v1/crates/serde/1.0.228/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +serde_core 1.0.228 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/serde-rs/serde +Source: https://crates.io/api/v1/crates/serde_core/1.0.228/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +serde_derive 1.0.228 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/serde-rs/serde +Source: https://crates.io/api/v1/crates/serde_derive/1.0.228/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +serde_json 1.0.149 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/serde-rs/json +Source: https://crates.io/api/v1/crates/serde_json/1.0.149/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +serde_path_to_error 0.1.20 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/path-to-error +Source: https://crates.io/api/v1/crates/serde_path_to_error/0.1.20/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +serde_regex 1.1.0 +Declared license: MIT/Apache-2.0 +Repository: +Source: https://crates.io/api/v1/crates/serde_regex/1.1.0/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 The serde_regex Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Parts of the code extracted from futures-rs with the following copyright: + +Copyright (c) 2016 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +serde_spanned 1.0.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/toml-rs/toml +Source: https://crates.io/api/v1/crates/serde_spanned/1.0.4/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +serde_urlencoded 0.7.1 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/nox/serde_urlencoded +Source: https://crates.io/api/v1/crates/serde_urlencoded/0.7.1/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Copyright (c) 2016 Anthony Ramine + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +serde_yaml 0.9.34+deprecated +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/serde-yaml +Source: https://crates.io/api/v1/crates/serde_yaml/0.9.34+deprecated/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +servo_arc 0.4.3 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/stylo +Source: https://crates.io/api/v1/crates/servo_arc/0.4.3/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +sha1_smol 1.0.1 +Declared license: BSD-3-Clause +Repository: https://github.com/mitsuhiko/sha1-smol +Source: https://crates.io/api/v1/crates/sha1_smol/1.0.1/download + + +--- LICENSE --- +BSD 3-Clause License + +Copyright (c) 2018, the respective contributors, as shown by the AUTHORS file. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +----- + +src/simd.rs is licensed under the MIT license: + +Copyright (c) 2006-2009 Graydon Hoare +Copyright (c) 2009-2013 Mozilla Foundation + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +sha2 0.10.9 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/hashes +Source: https://crates.io/api/v1/crates/sha2/0.10.9/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2006-2009 Graydon Hoare +Copyright (c) 2009-2013 Mozilla Foundation +Copyright (c) 2016 Artyom Pavlov + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +sharded-slab 0.1.7 +Declared license: MIT +Repository: https://github.com/hawkw/sharded-slab +Source: https://crates.io/api/v1/crates/sharded-slab/0.1.7/download + + +--- LICENSE --- +Copyright (c) 2019 Eliza Weisman + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +shlex 1.3.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/comex/rust-shlex +Source: https://crates.io/api/v1/crates/shlex/1.3.0/download + + +--- LICENSE-APACHE --- +Copyright 2015 Nicholas Allegra (comex). + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Nicholas Allegra (comex). + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +signal-hook-registry 1.4.8 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/vorner/signal-hook +Source: https://crates.io/api/v1/crates/signal-hook-registry/1.4.8/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 tokio-jsonrpc developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +simd-adler32 0.3.8 +Declared license: MIT +Repository: https://github.com/mcountryman/simd-adler32 +Source: https://crates.io/api/v1/crates/simd-adler32/0.3.8/download + + +--- LICENSE.md --- +MIT License + +Copyright (c) [2021] [Marvin Countryman] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +siphasher 1.0.2 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/jedisct1/rust-siphash +Source: https://crates.io/api/v1/crates/siphasher/1.0.2/download + + +--- COPYING --- +Copyright 2012-2016 The Rust Project Developers. +Copyright 2016-2026 Frank Denis. + +Licensed under the Apache License, Version 2.0 or the MIT license +, at your +option. + + +======================================================================== +slab 0.4.12 +Declared license: MIT +Repository: https://github.com/tokio-rs/slab +Source: https://crates.io/api/v1/crates/slab/0.4.12/download + + +--- LICENSE --- +Copyright (c) 2019 Carl Lerche + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +smallvec 1.15.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/rust-smallvec +Source: https://crates.io/api/v1/crates/smallvec/1.15.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2018 The Servo Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +smallvec 2.0.0-alpha.10 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/rust-smallvec +Source: https://crates.io/api/v1/crates/smallvec/2.0.0-alpha.10/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2018 The Servo Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +snafu 0.8.9 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/shepmaster/snafu +Source: https://crates.io/api/v1/crates/snafu/0.8.9/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2019- Jake Goulding + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2019- Jake Goulding + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +snafu-derive 0.8.9 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/shepmaster/snafu +Source: https://crates.io/api/v1/crates/snafu-derive/0.8.9/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2019- Jake Goulding + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2019- Jake Goulding + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +socket2 0.6.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rust-lang/socket2 +Source: https://crates.io/api/v1/crates/socket2/0.6.2/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +socks 0.3.4 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/sfackler/rust-socks +Source: https://crates.io/api/v1/crates/socks/0.3.4/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 The rust-socks Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +spin 0.9.8 +Declared license: MIT +Repository: https://github.com/mvdnes/spin-rs.git +Source: https://crates.io/api/v1/crates/spin/0.9.8/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014 Mathijs van de Nes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +spm_precompiled 0.1.4 +Declared license: Apache-2.0 +Repository: https://github.com/huggingface/spm_precompiled +Source: https://crates.io/api/v1/crates/spm_precompiled/0.1.4/download + + +--- 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +======================================================================== +srx 0.1.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/bminixhofer/srx +Source: https://crates.io/api/v1/crates/srx/0.1.4/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +stable_deref_trait 1.2.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/storyyeller/stable_deref_trait +Source: https://crates.io/api/v1/crates/stable_deref_trait/1.2.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 Robert Grosse + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +static_assertions 1.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/nvzqz/static-assertions-rs +Source: https://crates.io/api/v1/crates/static_assertions/1.1.0/download + + +--- LICENSE-APACHE --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) 2017 Nikolai Vazquez + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +streaming-iterator 0.1.9 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/sfackler/streaming-iterator +Source: https://crates.io/api/v1/crates/streaming-iterator/0.1.9/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 Steven Fackler + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +string_cache 0.8.9 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/string-cache +Source: https://crates.io/api/v1/crates/string_cache/0.8.9/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2012-2013 Mozilla Foundation + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +string_cache_codegen 0.5.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/string-cache +Source: https://crates.io/api/v1/crates/string_cache_codegen/0.5.4/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2012-2013 Mozilla Foundation + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +strsim 0.11.1 +Declared license: MIT +Repository: https://github.com/rapidfuzz/strsim-rs +Source: https://crates.io/api/v1/crates/strsim/0.11.1/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2015 Danny Guo +Copyright (c) 2016 Titus Wormer +Copyright (c) 2018 Akash Kurdekar + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +subtle 2.6.1 +Declared license: BSD-3-Clause +Repository: https://github.com/dalek-cryptography/subtle +Source: https://crates.io/api/v1/crates/subtle/2.6.1/download + + +--- LICENSE --- +Copyright (c) 2016-2017 Isis Agora Lovecruft, Henry de Valence. All rights reserved. +Copyright (c) 2016-2024 Isis Agora Lovecruft. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +======================================================================== +syn 1.0.109 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/syn +Source: https://crates.io/api/v1/crates/syn/1.0.109/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +syn 2.0.117 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/syn +Source: https://crates.io/api/v1/crates/syn/2.0.117/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +sync_wrapper 1.0.2 +Declared license: Apache-2.0 +Repository: https://github.com/Actyx/sync_wrapper +Source: https://crates.io/api/v1/crates/sync_wrapper/1.0.2/download + + +--- 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 + + +======================================================================== +synstructure 0.13.2 +Declared license: MIT +Repository: https://github.com/mystor/synstructure +Source: https://crates.io/api/v1/crates/synstructure/0.13.2/download + + +--- LICENSE --- +Copyright 2016 Nika Layzell + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +tar 0.4.46 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/composefs/tar-rs +Source: https://crates.io/api/v1/crates/tar/0.4.46/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) The tar-rs Project Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tempfile 3.26.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/Stebalien/tempfile +Source: https://crates.io/api/v1/crates/tempfile/3.26.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 Steven Allen + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tendril 0.4.3 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/servo/tendril +Source: https://crates.io/api/v1/crates/tendril/0.4.3/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 Keegan McAllister + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +thiserror 1.0.69 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/thiserror +Source: https://crates.io/api/v1/crates/thiserror/1.0.69/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +thiserror 2.0.18 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/thiserror +Source: https://crates.io/api/v1/crates/thiserror/2.0.18/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +thiserror-impl 1.0.69 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/thiserror +Source: https://crates.io/api/v1/crates/thiserror-impl/1.0.69/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +thiserror-impl 2.0.18 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/dtolnay/thiserror +Source: https://crates.io/api/v1/crates/thiserror-impl/2.0.18/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +thread_local 1.1.9 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/Amanieu/thread_local-rs +Source: https://crates.io/api/v1/crates/thread_local/1.1.9/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2016 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tiff 0.10.3 +Declared license: MIT +Repository: https://github.com/image-rs/image-tiff +Source: https://crates.io/api/v1/crates/tiff/0.10.3/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2018 PistonDevelopers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- tests/COPYRIGHT --- +subsubifd.tif: + url: https://data.kitware.com/api/v1/file/hashsum/sha512/372ca32735c8a8fdbe2286dabead9e779da63f10ba81eda84625e5273f76d74ca1a47a978f67e9c00c12f7f72009c7b2c07a641e643bb0c463812f4ae7f15d6e/download + credit: https://github.com/DigitalSlideArchive/tifftools/commit/4d00c70dbce828262f86c1431f7c66b1748965ac + license: CC0 + + +======================================================================== +time 0.3.36 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/time-rs/time +Source: https://crates.io/api/v1/crates/time/0.3.36/download + + +--- LICENSE-Apache --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2024 Jacob Pratt et al. + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2024 Jacob Pratt et al. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +time-core 0.1.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/time-rs/time +Source: https://crates.io/api/v1/crates/time-core/0.1.2/download + + +--- LICENSE-Apache --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2022 Jacob Pratt et al. + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2022 Jacob Pratt et al. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +time-macros 0.2.18 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/time-rs/time +Source: https://crates.io/api/v1/crates/time-macros/0.2.18/download + + +--- LICENSE-Apache --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2024 Jacob Pratt et al. + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2024 Jacob Pratt et al. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tinystr 0.8.2 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/tinystr/0.8.2/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +tinyvec 1.10.0 +Declared license: Zlib OR Apache-2.0 OR MIT +Repository: https://github.com/Lokathor/tinyvec +Source: https://crates.io/api/v1/crates/tinyvec/1.10.0/download + + +--- LICENSE-APACHE.md --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT.md --- +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +--- LICENSE-ZLIB.md --- +Copyright (c) 2019 Daniel "Lokathor" Gee. + +This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + + +======================================================================== +tinyvec_macros 0.1.1 +Declared license: MIT OR Apache-2.0 OR Zlib +Repository: https://github.com/Soveu/tinyvec_macros +Source: https://crates.io/api/v1/crates/tinyvec_macros/0.1.1/download + + +--- LICENSE-APACHE.md --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2020 Tomasz "Soveu" Marx + + 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. + + +--- LICENSE-MIT.md --- +MIT License + +Copyright (c) 2020 Soveu + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- LICENSE-ZLIB.md --- +zlib License + +(C) 2020 Tomasz "Soveu" Marx + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + + +======================================================================== +tokenizers 0.23.1 +Declared license: Apache-2.0 +Repository: https://github.com/huggingface/tokenizers +Source: https://crates.io/api/v1/crates/tokenizers/0.23.1/download + + +--- 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +======================================================================== +tokio 1.49.0 +Declared license: MIT +Repository: https://github.com/tokio-rs/tokio +Source: https://crates.io/api/v1/crates/tokio/1.49.0/download + + +--- LICENSE --- +MIT License + +Copyright (c) Tokio Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tokio-macros 2.6.0 +Declared license: MIT +Repository: https://github.com/tokio-rs/tokio +Source: https://crates.io/api/v1/crates/tokio-macros/2.6.0/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2019 Yoshua Wuyts +Copyright (c) Tokio Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tokio-rustls 0.26.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/rustls/tokio-rustls +Source: https://crates.io/api/v1/crates/tokio-rustls/0.26.4/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2017 quininer kel + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 quininer kel + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tokio-util 0.7.18 +Declared license: MIT +Repository: https://github.com/tokio-rs/tokio +Source: https://crates.io/api/v1/crates/tokio-util/0.7.18/download + + +--- LICENSE --- +MIT License + +Copyright (c) Tokio Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +toml 1.0.3+spec-1.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/toml-rs/toml +Source: https://crates.io/api/v1/crates/toml/1.0.3+spec-1.1.0/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +toml_datetime 1.0.0+spec-1.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/toml-rs/toml +Source: https://crates.io/api/v1/crates/toml_datetime/1.0.0+spec-1.1.0/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +toml_parser 1.0.9+spec-1.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/toml-rs/toml +Source: https://crates.io/api/v1/crates/toml_parser/1.0.9+spec-1.1.0/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +toml_writer 1.0.6+spec-1.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/toml-rs/toml +Source: https://crates.io/api/v1/crates/toml_writer/1.0.6+spec-1.1.0/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) Individual contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tower 0.4.13 +Declared license: MIT +Repository: https://github.com/tower-rs/tower +Source: https://crates.io/api/v1/crates/tower/0.4.13/download + + +--- LICENSE --- +Copyright (c) 2019 Tower Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tower 0.5.3 +Declared license: MIT +Repository: https://github.com/tower-rs/tower +Source: https://crates.io/api/v1/crates/tower/0.5.3/download + + +--- LICENSE --- +Copyright (c) 2019 Tower Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tower-http 0.5.2 +Declared license: MIT +Repository: https://github.com/tower-rs/tower-http +Source: https://crates.io/api/v1/crates/tower-http/0.5.2/download + + +--- LICENSE --- +Copyright (c) 2019-2021 Tower Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tower-http 0.6.8 +Declared license: MIT +Repository: https://github.com/tower-rs/tower-http +Source: https://crates.io/api/v1/crates/tower-http/0.6.8/download + + +--- LICENSE --- +Copyright (c) 2019-2021 Tower Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tower-layer 0.3.3 +Declared license: MIT +Repository: https://github.com/tower-rs/tower +Source: https://crates.io/api/v1/crates/tower-layer/0.3.3/download + + +--- LICENSE --- +Copyright (c) 2019 Tower Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tower-service 0.3.3 +Declared license: MIT +Repository: https://github.com/tower-rs/tower +Source: https://crates.io/api/v1/crates/tower-service/0.3.3/download + + +--- LICENSE --- +Copyright (c) 2019 Tower Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tracing 0.1.44 +Declared license: MIT +Repository: https://github.com/tokio-rs/tracing +Source: https://crates.io/api/v1/crates/tracing/0.1.44/download + + +--- LICENSE --- +Copyright (c) 2019 Tokio Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tracing-appender 0.2.4 +Declared license: MIT +Repository: https://github.com/tokio-rs/tracing +Source: https://crates.io/api/v1/crates/tracing-appender/0.2.4/download + + +--- LICENSE --- +Copyright (c) 2019 Tokio Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tracing-attributes 0.1.31 +Declared license: MIT +Repository: https://github.com/tokio-rs/tracing +Source: https://crates.io/api/v1/crates/tracing-attributes/0.1.31/download + + +--- LICENSE --- +Copyright (c) 2019 Tokio Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tracing-core 0.1.36 +Declared license: MIT +Repository: https://github.com/tokio-rs/tracing +Source: https://crates.io/api/v1/crates/tracing-core/0.1.36/download + + +--- LICENSE --- +Copyright (c) 2019 Tokio Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +--- src/spin/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014 Mathijs van de Nes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tracing-log 0.2.0 +Declared license: MIT +Repository: https://github.com/tokio-rs/tracing +Source: https://crates.io/api/v1/crates/tracing-log/0.2.0/download + + +--- LICENSE --- +Copyright (c) 2019 Tokio Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tracing-subscriber 0.3.22 +Declared license: MIT +Repository: https://github.com/tokio-rs/tracing +Source: https://crates.io/api/v1/crates/tracing-subscriber/0.3.22/download + + +--- LICENSE --- +Copyright (c) 2019 Tokio Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +tree-sitter 0.26.6 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter +Source: https://crates.io/api/v1/crates/tree-sitter/0.26.6/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2018 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- src/unicode/LICENSE --- +COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) + +Copyright Β© 1991-2019 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +--------------------- + +Third-Party Software Licenses + +This section contains third-party software notices and/or additional +terms for licensed third-party software components included within ICU +libraries. + +1. ICU License - ICU 1.8.1 to ICU 57.1 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2016 International Business Machines Corporation and others +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + +2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt) + + # The Google Chrome software developed by Google is licensed under + # the BSD license. Other software included in this distribution is + # provided under other licenses, as set forth below. + # + # The BSD License + # http://opensource.org/licenses/bsd-license.php + # Copyright (C) 2006-2008, Google Inc. + # + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, + # this list of conditions and the following disclaimer. + # Redistributions in binary form must reproduce the above + # copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided with + # the distribution. + # Neither the name of Google Inc. nor the names of its + # contributors may be used to endorse or promote products derived from + # this software without specific prior written permission. + # + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + # + # + # The word list in cjdict.txt are generated by combining three word lists + # listed below with further processing for compound word breaking. The + # frequency is generated with an iterative training against Google web + # corpora. + # + # * Libtabe (Chinese) + # - https://sourceforge.net/project/?group_id=1519 + # - Its license terms and conditions are shown below. + # + # * IPADIC (Japanese) + # - http://chasen.aist-nara.ac.jp/chasen/distribution.html + # - Its license terms and conditions are shown below. + # + # ---------COPYING.libtabe ---- BEGIN-------------------- + # + # /* + # * Copyright (c) 1999 TaBE Project. + # * Copyright (c) 1999 Pai-Hsiang Hsiao. + # * All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the TaBE Project nor the names of its + # * contributors may be used to endorse or promote products derived + # * from this software without specific prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # /* + # * Copyright (c) 1999 Computer Systems and Communication Lab, + # * Institute of Information Science, Academia + # * Sinica. All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the Computer Systems and Communication Lab + # * nor the names of its contributors may be used to endorse or + # * promote products derived from this software without specific + # * prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + # University of Illinois + # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 + # + # ---------------COPYING.libtabe-----END-------------------------------- + # + # + # ---------------COPYING.ipadic-----BEGIN------------------------------- + # + # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science + # and Technology. All Rights Reserved. + # + # Use, reproduction, and distribution of this software is permitted. + # Any copy of this software, whether in its original form or modified, + # must include both the above copyright notice and the following + # paragraphs. + # + # Nara Institute of Science and Technology (NAIST), + # the copyright holders, disclaims all warranties with regard to this + # software, including all implied warranties of merchantability and + # fitness, in no event shall NAIST be liable for + # any special, indirect or consequential damages or any damages + # whatsoever resulting from loss of use, data or profits, whether in an + # action of contract, negligence or other tortuous action, arising out + # of or in connection with the use or performance of this software. + # + # A large portion of the dictionary entries + # originate from ICOT Free Software. The following conditions for ICOT + # Free Software applies to the current dictionary as well. + # + # Each User may also freely distribute the Program, whether in its + # original form or modified, to any third party or parties, PROVIDED + # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear + # on, or be attached to, the Program, which is distributed substantially + # in the same form as set out herein and that such intended + # distribution, if actually made, will neither violate or otherwise + # contravene any of the laws and regulations of the countries having + # jurisdiction over the User or the intended distribution itself. + # + # NO WARRANTY + # + # The program was produced on an experimental basis in the course of the + # research and development conducted during the project and is provided + # to users as so produced on an experimental basis. Accordingly, the + # program is provided without any warranty whatsoever, whether express, + # implied, statutory or otherwise. The term "warranty" used herein + # includes, but is not limited to, any warranty of the quality, + # performance, merchantability and fitness for a particular purpose of + # the program and the nonexistence of any infringement or violation of + # any right of any third party. + # + # Each user of the program will agree and understand, and be deemed to + # have agreed and understood, that there is no warranty whatsoever for + # the program and, accordingly, the entire risk arising from or + # otherwise connected with the program is assumed by the user. + # + # Therefore, neither ICOT, the copyright holder, or any other + # organization that participated in or was otherwise related to the + # development of the program and their respective officials, directors, + # officers and other employees shall be held liable for any and all + # damages, including, without limitation, general, special, incidental + # and consequential damages, arising out of or otherwise in connection + # with the use or inability to use the program or any product, material + # or result produced or otherwise obtained by using the program, + # regardless of whether they have been advised of, or otherwise had + # knowledge of, the possibility of such damages at any time during the + # project or thereafter. Each user will be deemed to have agreed to the + # foregoing by his or her commencement of use of the program. The term + # "use" as used herein includes, but is not limited to, the use, + # modification, copying and distribution of the program and the + # production of secondary products from the program. + # + # In the case where the program, whether in its original form or + # modified, was distributed or delivered to or received by a user from + # any person, organization or entity other than ICOT, unless it makes or + # grants independently of ICOT any specific warranty to the user in + # writing, such person, organization or entity, will also be exempted + # from and not be held liable to the user for any such damages as noted + # above as far as the program is concerned. + # + # ---------------COPYING.ipadic-----END---------------------------------- + +3. Lao Word Break Dictionary Data (laodict.txt) + + # Copyright (c) 2013 International Business Machines Corporation + # and others. All Rights Reserved. + # + # Project: http://code.google.com/p/lao-dictionary/ + # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt + # License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt + # (copied below) + # + # This file is derived from the above dictionary, with slight + # modifications. + # ---------------------------------------------------------------------- + # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, + # are permitted provided that the following conditions are met: + # + # + # Redistributions of source code must retain the above copyright notice, this + # list of conditions and the following disclaimer. Redistributions in + # binary form must reproduce the above copyright notice, this list of + # conditions and the following disclaimer in the documentation and/or + # other materials provided with the distribution. + # + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # OF THE POSSIBILITY OF SUCH DAMAGE. + # -------------------------------------------------------------------------- + +4. Burmese Word Break Dictionary Data (burmesedict.txt) + + # Copyright (c) 2014 International Business Machines Corporation + # and others. All Rights Reserved. + # + # This list is part of a project hosted at: + # github.com/kanyawtech/myanmar-karen-word-lists + # + # -------------------------------------------------------------------------- + # Copyright (c) 2013, LeRoy Benjamin Sharon + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions + # are met: Redistributions of source code must retain the above + # copyright notice, this list of conditions and the following + # disclaimer. Redistributions in binary form must reproduce the + # above copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided + # with the distribution. + # + # Neither the name Myanmar Karen Word Lists, nor the names of its + # contributors may be used to endorse or promote products derived + # from this software without specific prior written permission. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS + # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + # SUCH DAMAGE. + # -------------------------------------------------------------------------- + +5. Time Zone Database + + ICU uses the public domain data and code derived from Time Zone +Database for its time zone support. The ownership of the TZ database +is explained in BCP 175: Procedure for Maintaining the Time Zone +Database section 7. + + # 7. Database Ownership + # + # The TZ database itself is not an IETF Contribution or an IETF + # document. Rather it is a pre-existing and regularly updated work + # that is in the public domain, and is intended to remain in the + # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do + # not apply to the TZ Database or contributions that individuals make + # to it. Should any claims be made and substantiated against the TZ + # Database, the organization that is providing the IANA + # Considerations defined in this RFC, under the memorandum of + # understanding with the IETF, currently ICANN, may act in accordance + # with all competent court orders. No ownership claims will be made + # by ICANN or the IETF Trust on the database or the code. Any person + # making a contribution to the database or code waives all rights to + # future claims in that contribution or in the TZ Database. + +6. Google double-conversion + +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +======================================================================== +tree-sitter-bash 0.25.1 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-bash +Source: https://crates.io/api/v1/crates/tree-sitter-bash/0.25.1/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2017 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-c 0.24.2 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-c +Source: https://crates.io/api/v1/crates/tree-sitter-c/0.24.2/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-c-sharp 0.23.5 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-c-sharp +Source: https://crates.io/api/v1/crates/tree-sitter-c-sharp/0.23.5/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014-2023 Max Brunsfeld, Damien Guard, Amaan Qureshi, and contributors. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-cpp 0.23.4 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-cpp +Source: https://crates.io/api/v1/crates/tree-sitter-cpp/0.23.4/download + + +--- https://raw.githubusercontent.com/tree-sitter/tree-sitter-cpp/f41e1a044c8a84ea9fa8577fdd2eab92ec96de02/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-css 0.23.2 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-css +Source: https://crates.io/api/v1/crates/tree-sitter-css/0.23.2/download + + +--- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/c0d581e32d183a536731ed6c3a72758b27e20411/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2018 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-dart 0.2.0 +Declared license: MIT +Repository: https://github.com/nielsenko/tree-sitter-dart +Source: https://crates.io/api/v1/crates/tree-sitter-dart/0.2.0/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2026 Kasper OvergΓ₯rd Nielsen (kasper@byolimit.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-go 0.23.4 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-go +Source: https://crates.io/api/v1/crates/tree-sitter-go/0.23.4/download + + +--- https://raw.githubusercontent.com/tree-sitter/tree-sitter-go/3c3775faa968158a8b4ac190a7fda867fd5fb748/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-html 0.23.2 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-html +Source: https://crates.io/api/v1/crates/tree-sitter-html/0.23.2/download + + +--- https://raw.githubusercontent.com/tree-sitter/tree-sitter-html/5a5ca8551a179998360b4a4ca2c0f366a35acc03/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-java 0.23.5 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-java +Source: https://crates.io/api/v1/crates/tree-sitter-java/0.23.5/download + + +--- https://raw.githubusercontent.com/tree-sitter/tree-sitter-java/94703d5a6bed02b98e438d7cad1136c01a60ba2c/LICENSE --- +MIT License + +Copyright (c) 2017 Ayman Nadeem + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-javascript 0.23.1 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-javascript +Source: https://crates.io/api/v1/crates/tree-sitter-javascript/0.23.1/download + + +--- https://raw.githubusercontent.com/tree-sitter/tree-sitter-javascript/3a837b6f3658ca3618f2022f8707e29739c91364/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-language 0.1.7 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter +Source: https://crates.io/api/v1/crates/tree-sitter-language/0.1.7/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2018 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-objc 3.0.2 +Declared license: MIT +Repository: https://github.com/tree-sitter-grammars/tree-sitter-objc +Source: https://crates.io/api/v1/crates/tree-sitter-objc/3.0.2/download + + +--- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-objc/18802acf31d0b5c1c1d50bdbc9eb0e1636cab9ed/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2023 Amaan Qureshi + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-php 0.23.11 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-php +Source: https://crates.io/api/v1/crates/tree-sitter-php/0.23.11/download + + +--- https://raw.githubusercontent.com/tree-sitter/tree-sitter-php/43aad2b9a98aa8e603ea0cf5bb630728a5591ad8/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2017 Josh Vera, GitHub +Copyright (c) 2019 Max Brunsfeld, Amaan Qureshi, Christian FrΓΈystad, Caleb White + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-python 0.25.0 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-python +Source: https://crates.io/api/v1/crates/tree-sitter-python/0.25.0/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2016 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-rust 0.24.0 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-rust +Source: https://crates.io/api/v1/crates/tree-sitter-rust/0.24.0/download + + +--- https://raw.githubusercontent.com/tree-sitter/tree-sitter-rust/18b0515fca567f5a10aee9978c6d2640e878671a/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2017 Maxim Sokolov + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-swift 0.7.3 +Declared license: MIT +Repository: https://github.com/alex-pinkus/tree-sitter-swift +Source: https://crates.io/api/v1/crates/tree-sitter-swift/0.7.3/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2021 alex-pinkus + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- node_modules/isexe/LICENSE --- +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +--- node_modules/node-gyp-build/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2017 Mathias Buus + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +--- node_modules/tree-sitter-cli/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2018-2024 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- node_modules/which/LICENSE --- +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +======================================================================== +tree-sitter-toml-ng 0.7.0 +Declared license: MIT +Repository: https://github.com/tree-sitter-grammars/tree-sitter-toml +Source: https://crates.io/api/v1/crates/tree-sitter-toml-ng/0.7.0/download + + +--- https://raw.githubusercontent.com/tree-sitter-grammars/tree-sitter-toml/64b56832c2cffe41758f28e05c756a3a98d16f41/LICENSE --- +The MIT License (MIT) + +Copyright (c) Ika (https://github.com/ikatyang) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +tree-sitter-typescript 0.23.2 +Declared license: MIT +Repository: https://github.com/tree-sitter/tree-sitter-typescript +Source: https://crates.io/api/v1/crates/tree-sitter-typescript/0.23.2/download + + +--- https://raw.githubusercontent.com/tree-sitter/tree-sitter-typescript/f975a621f4e7f532fe322e13c4f79495e0a7b2e7/LICENSE --- +The MIT License (MIT) + +Copyright (c) 2017 Max Brunsfeld + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +try-lock 0.2.5 +Declared license: MIT +Repository: https://github.com/seanmonstar/try-lock +Source: https://crates.io/api/v1/crates/try-lock/0.2.5/download + + +--- LICENSE --- +Copyright (c) 2018-2023 Sean McArthur +Copyright (c) 2016 Alex Crichton + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +type1-encoding-parser 0.1.0 +Declared license: MIT +Repository: https://github.com/jrmuizel/type1-encoding-parser +Source: https://crates.io/api/v1/crates/type1-encoding-parser/0.1.0/download + + +--- SPDX MIT license text; authors declared by package metadata: Jeff Muizelaar --- +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and +associated documentation files (the "Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO +EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +typenum 1.19.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/paholg/typenum +Source: https://crates.io/api/v1/crates/typenum/1.19.0/download + + +--- LICENSE --- +MIT OR Apache-2.0 + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright 2014 Paho Lurie-Gregg + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2014 Paho Lurie-Gregg + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +unicase 2.9.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/seanmonstar/unicase +Source: https://crates.io/api/v1/crates/unicase/2.9.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014-2026 Sean McArthur + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +unicode-general-category 1.1.0 +Declared license: Apache-2.0 +Repository: https://github.com/yeslogic/unicode-general-category +Source: https://crates.io/api/v1/crates/unicode-general-category/1.1.0/download + + +--- 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +======================================================================== +unicode-ident 1.0.24 +Declared license: (MIT OR Apache-2.0) AND Unicode-3.0 +Repository: https://github.com/dtolnay/unicode-ident +Source: https://crates.io/api/v1/crates/unicode-ident/1.0.24/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +--- LICENSE-UNICODE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 1991-2023 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + + +======================================================================== +unicode-normalization 0.1.25 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/unicode-rs/unicode-normalization +Source: https://crates.io/api/v1/crates/unicode-normalization/0.1.25/download + + +--- COPYRIGHT --- +Licensed under the Apache License, Version 2.0 + or the MIT +license , +at your option. All files in the project carrying such +notice may not be copied, modified, or distributed except +according to those terms. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +unicode-normalization-alignments 0.1.12 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/n1t0/unicode-normalization +Source: https://crates.io/api/v1/crates/unicode-normalization-alignments/0.1.12/download + + +--- COPYRIGHT --- +Licensed under the Apache License, Version 2.0 + or the MIT +license , +at your option. All files in the project carrying such +notice may not be copied, modified, or distributed except +according to those terms. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +unicode-segmentation 1.12.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/unicode-rs/unicode-segmentation +Source: https://crates.io/api/v1/crates/unicode-segmentation/1.12.0/download + + +--- COPYRIGHT --- +Licensed under the Apache License, Version 2.0 + or the MIT +license , +at your option. All files in the project carrying such +notice may not be copied, modified, or distributed except +according to those terms. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +unicode-width 0.2.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/unicode-rs/unicode-width +Source: https://crates.io/api/v1/crates/unicode-width/0.2.2/download + + +--- COPYRIGHT --- +Licensed under the Apache License, Version 2.0 + or the MIT +license , +at your option. All files in the project carrying such +notice may not be copied, modified, or distributed except +according to those terms. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +unicode-xid 0.2.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/unicode-rs/unicode-xid +Source: https://crates.io/api/v1/crates/unicode-xid/0.2.6/download + + +--- COPYRIGHT --- +Licensed under the Apache License, Version 2.0 + or the MIT +license , +at your option. All files in the project carrying such +notice may not be copied, modified, or distributed except +according to those terms. + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 The Rust Project Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +unicode_categories 0.1.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/swgillespie/unicode-categories +Source: https://crates.io/api/v1/crates/unicode_categories/0.1.1/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 The unicode-categories Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +unit-prefix 0.5.2 +Declared license: MIT +Repository: https://codeberg.org/commons-rs/unit-prefix +Source: https://crates.io/api/v1/crates/unit-prefix/0.5.2/download + + +--- LICENSE --- +MIT License + +Copyright (c) 2024 Benjamin Sago, Fabio Valentini + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +universal-hash 0.5.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/RustCrypto/traits +Source: https://crates.io/api/v1/crates/universal-hash/0.5.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2019-2020 RustCrypto Developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +unsafe-libyaml 0.2.11 +Declared license: MIT +Repository: https://github.com/dtolnay/unsafe-libyaml +Source: https://crates.io/api/v1/crates/unsafe-libyaml/0.2.11/download + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +untrusted 0.9.0 +Declared license: ISC +Repository: https://github.com/briansmith/untrusted +Source: https://crates.io/api/v1/crates/untrusted/0.9.0/download + + +--- LICENSE.txt --- +// Copyright 2015-2016 Brian Smith. +// +// Permission to use, copy, modify, and/or distribute this software for any +// purpose with or without fee is hereby granted, provided that the above +// copyright notice and this permission notice appear in all copies. +// +// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES +// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR +// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +======================================================================== +ureq 3.3.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/algesten/ureq +Source: https://crates.io/api/v1/crates/ureq/3.3.0/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) 2019 Martin Algesten + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +ureq-proto 0.6.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/algesten/ureq-proto +Source: https://crates.io/api/v1/crates/ureq-proto/0.6.0/download + + +--- LICENSE-MIT.txt --- +Copyright 2022 Martin Algesten + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +url 2.5.8 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/servo/rust-url +Source: https://crates.io/api/v1/crates/url/2.5.8/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2013-2025 The rust-url developers + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +utf-8 0.7.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/SimonSapin/rust-utf8 +Source: https://crates.io/api/v1/crates/utf-8/0.7.6/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +utf8-zero 0.8.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/algesten/utf8-zero +Source: https://crates.io/api/v1/crates/utf8-zero/0.8.1/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +utf8_iter 1.0.4 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/hsivonen/utf8_iter +Source: https://crates.io/api/v1/crates/utf8_iter/1.0.4/download + + +--- COPYRIGHT --- +Copyright Mozilla Foundation + +Licensed under the Apache License (Version 2.0), or the MIT license, +(the "Licenses") at your option. You may not use this file except in +compliance with one of the Licenses. You may obtain copies of the +Licenses at: + + https://www.apache.org/licenses/LICENSE-2.0 + https://opensource.org/licenses/MIT + +Unless required by applicable law or agreed to in writing, software +distributed under the Licenses is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the Licenses for the specific language governing permissions and +limitations under the Licenses. + +-- + +Test code is dedicated to the Public Domain when so designated (see +the individual files for PD/CC0-dedicated sections). + +-- + +The implementation for Utf8CharIndices was adapted from the +CharIndices implementation of the Rust standard library at revision +ab32548539ec38a939c1b58599249f3b54130026 +(https://github.com/rust-lang/rust/blob/ab32548539ec38a939c1b58599249f3b54130026/library/core/src/str/iter.rs). + +Excerpt from https://github.com/rust-lang/rust/blob/ab32548539ec38a939c1b58599249f3b54130026/COPYRIGHT , +which refers to +https://github.com/rust-lang/rust/blob/ab32548539ec38a939c1b58599249f3b54130026/LICENSE-APACHE +and +https://github.com/rust-lang/rust/blob/ab32548539ec38a939c1b58599249f3b54130026/LICENSE-MIT +: + +For full authorship information, see the version control history or +https://thanks.rust-lang.org + +Except as otherwise noted (below and/or in individual files), Rust is +licensed under the Apache License, Version 2.0 or + or the MIT license + or , at your option. + + +--- LICENSE-APACHE --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +Copyright Mozilla Foundation + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +utf8parse 0.2.2 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/alacritty/vte +Source: https://crates.io/api/v1/crates/utf8parse/0.2.2/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Copyright (c) 2016 Joe Wilm + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +uuid 1.21.0 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/uuid-rs/uuid +Source: https://crates.io/api/v1/crates/uuid/1.21.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 The Rust Project Developers +Copyright (c) 2018 Ashley Mannix, Christopher Armstrong, Dylan DPC, Hunar Roop Kahlon + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +valuable 0.1.1 +Declared license: MIT +Repository: https://github.com/tokio-rs/valuable +Source: https://crates.io/api/v1/crates/valuable/0.1.1/download + + +--- https://raw.githubusercontent.com/tokio-rs/valuable/9efc29b6e58cef28f6566a47aa7e142a55fead77/LICENSE --- +Copyright (c) 2021 Valuable Contributors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +vcpkg 0.2.15 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/mcgoo/vcpkg-rs +Source: https://crates.io/api/v1/crates/vcpkg/0.2.15/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2017 Jim McGrath + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +version_check 0.9.5 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/SergioBenitez/version_check +Source: https://crates.io/api/v1/crates/version_check/0.9.5/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) +Copyright (c) 2017-2018 Sergio Benitez + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +walkdir 2.5.0 +Declared license: Unlicense/MIT +Repository: https://github.com/BurntSushi/walkdir +Source: https://crates.io/api/v1/crates/walkdir/2.5.0/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2015 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +want 0.3.1 +Declared license: MIT +Repository: https://github.com/seanmonstar/want +Source: https://crates.io/api/v1/crates/want/0.3.1/download + + +--- LICENSE --- +Copyright (c) 2018-2019 Sean McArthur + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +wasi 0.11.1+wasi-snapshot-preview1 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wasi +Source: https://crates.io/api/v1/crates/wasi/0.11.1+wasi-snapshot-preview1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-Apache-2.0_WITH_LLVM-exception --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wasip2 1.0.2+wasi-0.2.9 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wasi-rs +Source: https://crates.io/api/v1/crates/wasip2/1.0.2+wasi-0.2.9/download + + +--- https://raw.githubusercontent.com/bytecodealliance/wasi-rs/06ce201370fcde0d1b0d47cac8ecb1b0b312c9f9/LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wasip3 0.4.0+wasi-0.3.0-rc-2026-01-06 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wasi-rs +Source: https://crates.io/api/v1/crates/wasip3/0.4.0+wasi-0.3.0-rc-2026-01-06/download + + +--- https://raw.githubusercontent.com/bytecodealliance/wasi-rs/06ce201370fcde0d1b0d47cac8ecb1b0b312c9f9/LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wasm-bindgen 0.2.113 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/wasm-bindgen/wasm-bindgen +Source: https://crates.io/api/v1/crates/wasm-bindgen/0.2.113/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wasm-bindgen-futures 0.4.63 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/futures +Source: https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.63/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wasm-bindgen-macro 0.2.113 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro +Source: https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.113/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wasm-bindgen-macro-support 0.2.113 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support +Source: https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.113/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wasm-bindgen-shared 0.2.113 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared +Source: https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.113/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wasm-encoder 0.244.0 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder +Source: https://crates.io/api/v1/crates/wasm-encoder/0.244.0/download + + +--- https://raw.githubusercontent.com/bytecodealliance/wasm-tools/d4e317f22c3bace76cb3205003bcc34b4929037d/LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wasm-metadata 0.244.0 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-metadata +Source: https://crates.io/api/v1/crates/wasm-metadata/0.244.0/download + + +--- https://raw.githubusercontent.com/bytecodealliance/wasm-tools/d4e317f22c3bace76cb3205003bcc34b4929037d/LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wasm-streams 0.4.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/MattiasBuelens/wasm-streams/ +Source: https://crates.io/api/v1/crates/wasm-streams/0.4.2/download + + +--- LICENSE-APACHE --- + 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 + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wasmparser 0.244.0 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser +Source: https://crates.io/api/v1/crates/wasmparser/0.244.0/download + + +--- https://raw.githubusercontent.com/bytecodealliance/wasm-tools/d4e317f22c3bace76cb3205003bcc34b4929037d/LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +web-sys 0.3.90 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/web-sys +Source: https://crates.io/api/v1/crates/web-sys/0.3.90/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2014 Alex Crichton + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +web-time 1.1.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/daxpedda/web-time +Source: https://crates.io/api/v1/crates/web-time/1.1.0/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2023 dAxpeDDa + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) 2023 dAxpeDDa + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +webpki-root-certs 1.0.9 +Declared license: CDLA-Permissive-2.0 +Repository: https://github.com/rustls/webpki-roots +Source: https://crates.io/api/v1/crates/webpki-root-certs/1.0.9/download + + +--- LICENSE --- +# Community Data License Agreement - Permissive - Version 2.0 + +This is the Community Data License Agreement - Permissive, Version +2.0 (the "agreement"). Data Provider(s) and Data Recipient(s) agree +as follows: + +## 1. Provision of the Data + +1.1. A Data Recipient may use, modify, and share the Data made +available by Data Provider(s) under this agreement if that Data +Recipient follows the terms of this agreement. + +1.2. This agreement does not impose any restriction on a Data +Recipient's use, modification, or sharing of any portions of the +Data that are in the public domain or that may be used, modified, +or shared under any other legal exception or limitation. + +## 2. Conditions for Sharing Data + +2.1. A Data Recipient may share Data, with or without modifications, so +long as the Data Recipient makes available the text of this agreement +with the shared Data. + +## 3. No Restrictions on Results + +3.1. This agreement does not impose any restriction or obligations +with respect to the use, modification, or sharing of Results. + +## 4. No Warranty; Limitation of Liability + +4.1. All Data Recipients receive the Data subject to the following +terms: + +THE DATA IS PROVIDED ON AN "AS IS" BASIS, WITHOUT REPRESENTATIONS, +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. + +NO DATA PROVIDER SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE DATA OR RESULTS, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +## 5. Definitions + +5.1. "Data" means the material received by a Data Recipient under +this agreement. + +5.2. "Data Provider" means any person who is the source of Data +provided under this agreement and in reliance on a Data Recipient's +agreement to its terms. + +5.3. "Data Recipient" means any person who receives Data directly +or indirectly from a Data Provider and agrees to the terms of this +agreement. + +5.4. "Results" means any outcome obtained by computational analysis +of Data, including for example machine learning models and models' +insights. + + +======================================================================== +webpki-roots 1.0.8 +Declared license: CDLA-Permissive-2.0 +Repository: https://github.com/rustls/webpki-roots +Source: https://crates.io/api/v1/crates/webpki-roots/1.0.8/download + + +--- LICENSE --- +# Community Data License Agreement - Permissive - Version 2.0 + +This is the Community Data License Agreement - Permissive, Version +2.0 (the "agreement"). Data Provider(s) and Data Recipient(s) agree +as follows: + +## 1. Provision of the Data + +1.1. A Data Recipient may use, modify, and share the Data made +available by Data Provider(s) under this agreement if that Data +Recipient follows the terms of this agreement. + +1.2. This agreement does not impose any restriction on a Data +Recipient's use, modification, or sharing of any portions of the +Data that are in the public domain or that may be used, modified, +or shared under any other legal exception or limitation. + +## 2. Conditions for Sharing Data + +2.1. A Data Recipient may share Data, with or without modifications, so +long as the Data Recipient makes available the text of this agreement +with the shared Data. + +## 3. No Restrictions on Results + +3.1. This agreement does not impose any restriction or obligations +with respect to the use, modification, or sharing of Results. + +## 4. No Warranty; Limitation of Liability + +4.1. All Data Recipients receive the Data subject to the following +terms: + +THE DATA IS PROVIDED ON AN "AS IS" BASIS, WITHOUT REPRESENTATIONS, +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. + +NO DATA PROVIDER SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE DATA OR RESULTS, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +## 5. Definitions + +5.1. "Data" means the material received by a Data Recipient under +this agreement. + +5.2. "Data Provider" means any person who is the source of Data +provided under this agreement and in reliance on a Data Recipient's +agreement to its terms. + +5.3. "Data Recipient" means any person who receives Data directly +or indirectly from a Data Provider and agrees to the terms of this +agreement. + +5.4. "Results" means any outcome obtained by computational analysis +of Data, including for example machine learning models and models' +insights. + + +======================================================================== +weezl 0.1.12 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/image-rs/weezl +Source: https://crates.io/api/v1/crates/weezl/0.1.12/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) HeroicKatora 2020 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +winapi 0.3.9 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/retep998/winapi-rs +Source: https://crates.io/api/v1/crates/winapi/0.3.9/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + + +--- LICENSE-MIT --- +Copyright (c) 2015-2018 The winapi-rs Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +winapi-i686-pc-windows-gnu 0.4.0 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/retep998/winapi-rs +Source: https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download + + +--- SPDX Apache-2.0 license text; authors declared by package metadata: Peter Atashian --- +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 + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +======================================================================== +winapi-util 0.1.11 +Declared license: Unlicense OR MIT +Repository: https://github.com/BurntSushi/winapi-util +Source: https://crates.io/api/v1/crates/winapi-util/0.1.11/download + + +--- COPYING --- +This project is dual-licensed under the Unlicense and MIT licenses. + +You may use this code under the terms of either license. + + +--- LICENSE-MIT --- +The MIT License (MIT) + +Copyright (c) 2017 Andrew Gallant + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +======================================================================== +winapi-x86_64-pc-windows-gnu 0.4.0 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/retep998/winapi-rs +Source: https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download + + +--- SPDX Apache-2.0 license text; authors declared by package metadata: Peter Atashian --- +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 + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +======================================================================== +windows-core 0.62.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows-core/0.62.2/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows-implement 0.60.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows-implement/0.60.2/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows-interface 0.59.3 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows-interface/0.59.3/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows-link 0.2.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows-link/0.2.1/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows-result 0.4.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows-result/0.4.1/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows-strings 0.5.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows-strings/0.5.1/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows-sys 0.52.0 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows-sys/0.52.0/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows-sys 0.60.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows-sys/0.60.2/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows-sys 0.61.2 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows-sys/0.61.2/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows-targets 0.52.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows-targets/0.52.6/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows-targets 0.53.5 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows-targets/0.53.5/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_aarch64_gnullvm 0.52.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.6/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_aarch64_gnullvm 0.53.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.53.1/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_aarch64_msvc 0.52.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.6/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_aarch64_msvc 0.53.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_aarch64_msvc/0.53.1/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_i686_gnu 0.52.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_i686_gnu/0.52.6/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_i686_gnu 0.53.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_i686_gnu/0.53.1/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_i686_gnullvm 0.52.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_i686_gnullvm/0.52.6/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_i686_gnullvm 0.53.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_i686_gnullvm/0.53.1/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_i686_msvc 0.52.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_i686_msvc/0.52.6/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_i686_msvc 0.53.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_i686_msvc/0.53.1/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_x86_64_gnu 0.52.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.6/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_x86_64_gnu 0.53.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_x86_64_gnu/0.53.1/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_x86_64_gnullvm 0.52.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.6/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_x86_64_gnullvm 0.53.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.53.1/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_x86_64_msvc 0.52.6 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.6/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +windows_x86_64_msvc 0.53.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/microsoft/windows-rs +Source: https://crates.io/api/v1/crates/windows_x86_64_msvc/0.53.1/download + + +--- license-apache-2.0 --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) Microsoft Corporation. + + 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. + + +--- license-mit --- + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE + + +======================================================================== +winnow 0.7.14 +Declared license: MIT +Repository: https://github.com/winnow-rs/winnow +Source: https://crates.io/api/v1/crates/winnow/0.7.14/download + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +wit-bindgen 0.51.0 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wit-bindgen +Source: https://crates.io/api/v1/crates/wit-bindgen/0.51.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-Apache-2.0_WITH_LLVM-exception --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wit-bindgen-core 0.51.0 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wit-bindgen +Source: https://crates.io/api/v1/crates/wit-bindgen-core/0.51.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-Apache-2.0_WITH_LLVM-exception --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wit-bindgen-rust 0.51.0 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wit-bindgen +Source: https://crates.io/api/v1/crates/wit-bindgen-rust/0.51.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-Apache-2.0_WITH_LLVM-exception --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wit-bindgen-rust-macro 0.51.0 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wit-bindgen +Source: https://crates.io/api/v1/crates/wit-bindgen-rust-macro/0.51.0/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-Apache-2.0_WITH_LLVM-exception --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wit-component 0.244.0 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wit-component +Source: https://crates.io/api/v1/crates/wit-component/0.244.0/download + + +--- https://raw.githubusercontent.com/bytecodealliance/wasm-tools/d4e317f22c3bace76cb3205003bcc34b4929037d/LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +wit-parser 0.244.0 +Declared license: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT +Repository: https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wit-parser +Source: https://crates.io/api/v1/crates/wit-parser/0.244.0/download + + +--- https://raw.githubusercontent.com/bytecodealliance/wasm-tools/d4e317f22c3bace76cb3205003bcc34b4929037d/LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +writeable 0.6.2 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/writeable/0.6.2/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +xattr 1.6.1 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/Stebalien/xattr +Source: https://crates.io/api/v1/crates/xattr/1.6.1/download + + +--- LICENSE-APACHE --- + 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 + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +--- LICENSE-MIT --- +Copyright (c) 2015 Steven Allen + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +xml-rs 0.8.28 +Declared license: MIT +Repository: https://github.com/kornelski/xml-rs +Source: https://crates.io/api/v1/crates/xml-rs/0.8.28/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014 Vladimir Matveev + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +yoke 0.8.1 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/yoke/0.8.1/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +yoke-derive 0.8.1 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/yoke-derive/0.8.1/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +zerocopy 0.8.39 +Declared license: BSD-2-Clause OR Apache-2.0 OR MIT +Repository: https://github.com/google/zerocopy +Source: https://crates.io/api/v1/crates/zerocopy/0.8.39/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2023 The Fuchsia 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. + + +--- LICENSE-BSD --- +Copyright 2019 The Fuchsia Authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +--- LICENSE-MIT --- +Copyright 2023 The Fuchsia Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +zerocopy-derive 0.8.39 +Declared license: BSD-2-Clause OR Apache-2.0 OR MIT +Repository: https://github.com/google/zerocopy +Source: https://crates.io/api/v1/crates/zerocopy-derive/0.8.39/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2023 The Fuchsia 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. + + +--- LICENSE-BSD --- +Copyright 2019 The Fuchsia Authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +--- LICENSE-MIT --- +Copyright 2023 The Fuchsia Authors + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +zerofrom 0.1.6 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/zerofrom/0.1.6/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +zerofrom-derive 0.1.6 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/zerofrom-derive/0.1.6/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +zeroize 1.8.2 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/RustCrypto/utils +Source: https://crates.io/api/v1/crates/zeroize/1.8.2/download + + +--- LICENSE-APACHE --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) 2018-2021 The RustCrypto Project Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +zeroize_derive 1.4.3 +Declared license: Apache-2.0 OR MIT +Repository: https://github.com/RustCrypto/utils/tree/master/zeroize/derive +Source: https://crates.io/api/v1/crates/zeroize_derive/1.4.3/download + + +--- LICENSE-APACHE --- + + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) 2019-2023 The RustCrypto Project Developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +zerotrie 0.2.3 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/zerotrie/0.2.3/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +zerovec 0.11.5 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/zerovec/0.11.5/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +zerovec-derive 0.11.2 +Declared license: Unicode-3.0 +Repository: https://github.com/unicode-org/icu4x +Source: https://crates.io/api/v1/crates/zerovec-derive/0.11.2/download + + +--- LICENSE --- +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright Β© 2020-2024 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +SPDX-License-Identifier: Unicode-3.0 + +β€” + +Portions of ICU4X may have been adapted from ICU4C and/or ICU4J. +ICU 1.8.1 to ICU 57.1 Β© 1995-2016 International Business Machines Corporation and others. + + +======================================================================== +zip 0.6.6 +Declared license: MIT +Repository: https://github.com/zip-rs/zip.git +Source: https://crates.io/api/v1/crates/zip/0.6.6/download + + +--- LICENSE --- +The MIT License (MIT) + +Copyright (c) 2014 Mathijs van de Nes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +======================================================================== +zmij 1.0.21 +Declared license: MIT +Repository: https://github.com/dtolnay/zmij +Source: https://crates.io/api/v1/crates/zmij/1.0.21/download + + +--- LICENSE-MIT --- +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +======================================================================== +zstd 0.13.3 +Declared license: MIT +Repository: https://github.com/gyscos/zstd-rs +Source: https://crates.io/api/v1/crates/zstd/0.13.3/download + + +--- LICENSE --- +The MIT License (MIT) +Copyright (c) 2016 Alexandre Bury + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +zstd-safe 7.2.4 +Declared license: MIT OR Apache-2.0 +Repository: https://github.com/gyscos/zstd-rs +Source: https://crates.io/api/v1/crates/zstd-safe/7.2.4/download + + +--- LICENSE --- +MIT or Apache-2.0 + + +--- LICENSE.Apache-2.0 --- + + 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 + + +--- LICENSE.Mit --- +The MIT License (MIT) +Copyright (c) 2016 Alexandre Bury + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +======================================================================== +zstd-sys 2.0.16+zstd.1.5.7 +Declared license: MIT/Apache-2.0 +Repository: https://github.com/gyscos/zstd-rs +Source: https://crates.io/api/v1/crates/zstd-sys/2.0.16+zstd.1.5.7/download + + +--- LICENSE --- +MIT or Apache-2.0 + + +--- LICENSE.Apache-2.0 --- + + 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 + + +--- LICENSE.BSD-3-Clause --- +The auto-generated bindings are under the 3-clause BSD license: + +BSD License + +For Zstandard software + +Copyright (c) 2016-present, Facebook, Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name Facebook nor the names of its contributors may be used to + endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +--- LICENSE.Mit --- +The MIT License (MIT) +Copyright (c) 2016 Alexandre Bury + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +--- zstd/COPYING --- + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. + + +--- zstd/LICENSE --- +BSD License + +For Zstandard software + +Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name Facebook, nor Meta, nor the names of its contributors may + be used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +======================================================================== +zune-core 0.4.12 +Declared license: MIT OR Apache-2.0 OR Zlib +Repository: +Source: https://crates.io/api/v1/crates/zune-core/0.4.12/download + + +--- SPDX Apache-2.0 license text; authors declared by package metadata: See the linked source package --- +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 + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +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. + + +======================================================================== +zune-core 0.5.1 +Declared license: MIT OR Apache-2.0 OR Zlib +Repository: https://github.com/etemesi254/zune-image +Source: https://crates.io/api/v1/crates/zune-core/0.5.1/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) zune-image developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- LICENSE-ZLIB --- +zlib License + +(C) zune-image developers + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + + +======================================================================== +zune-jpeg 0.4.21 +Declared license: MIT OR Apache-2.0 OR Zlib +Repository: https://github.com/etemesi254/zune-image/tree/dev/crates/zune-jpeg +Source: https://crates.io/api/v1/crates/zune-jpeg/0.4.21/download + + +--- https://raw.githubusercontent.com/etemesi254/zune-image/fa2c767a01d7d9373911d0bf63e0588553d67e0e/LICENSE.md --- +Copyright (c) zune-image developers + +Licensed under the Apache License, Version 2.0 + or the MIT +license , +at your option. All files in the project carrying such +notice may not be copied, modified, or distributed except +according to those terms + + +======================================================================== +zune-jpeg 0.5.12 +Declared license: MIT OR Apache-2.0 OR Zlib +Repository: https://github.com/etemesi254/zune-image/tree/dev/crates/zune-jpeg +Source: https://crates.io/api/v1/crates/zune-jpeg/0.5.12/download + + +--- LICENSE-APACHE --- + 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 + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. + + +--- LICENSE-MIT --- +MIT License + +Copyright (c) zune-image developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +--- LICENSE-ZLIB --- +zlib License + +(C) zune-image developers + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. diff --git a/benchmarks/benchmark_nl.py b/benchmarks/benchmark_nl.py index b5d9d42..acc36ef 100644 --- a/benchmarks/benchmark_nl.py +++ b/benchmarks/benchmark_nl.py @@ -751,6 +751,7 @@ async def main(): import sys parser = argparse.ArgumentParser(description='CueMap NL Benchmark: Python vs Rust') + parser.add_argument('--url', default="http://127.0.0.1:8735", help="CueMap engine URL") parser.add_argument('--sizes', type=str, help='Comma-separated list of sizes (e.g., 10000,100000)') parser.add_argument('--project-id', type=str, default="nl_test",help='Project ID for multi-tenant instance') parser.add_argument('--wikipedia-path', type=str, default=None, help='Path to a local Wikipedia parquet file or directory; omitted downloads the release Kaggle fixture') @@ -806,7 +807,7 @@ async def main(): benchmark = CueMapNLBenchmark( python_url="http://localhost:8000", - rust_url="http://localhost:8080", + rust_url=args.url, project_id=args.project_id, wiki_path=wikipedia_path, wiki_reservoir_size=effective_wiki_reservoir_size, diff --git a/data/agent-test/api-spec/openapi-sample.yaml b/data/agent-test/api-spec/openapi-sample.yaml new file mode 100644 index 0000000..d065f5a --- /dev/null +++ b/data/agent-test/api-spec/openapi-sample.yaml @@ -0,0 +1,10 @@ +openapi: 3.0.0 +info: + title: CueMap test API + version: 1.0.0 +paths: + /recall: + get: + responses: + '200': + description: ok diff --git a/data/agent-test/csv/message_1 2.csv b/data/agent-test/csv/message_1 2.csv new file mode 100644 index 0000000..5ef9136 --- /dev/null +++ b/data/agent-test/csv/message_1 2.csv @@ -0,0 +1,3 @@ +sender,message +alice,"retrieval, benchmark" +bob,"latency, report" diff --git a/data/agent-test/instagram/message_1.json b/data/agent-test/instagram/message_1.json new file mode 100644 index 0000000..330d34a --- /dev/null +++ b/data/agent-test/instagram/message_1.json @@ -0,0 +1 @@ +[{"sender_name":"alice","timestamp_ms":1706781600000,"content":"A useful retrieval experiment"}] diff --git a/data/agent-test/markdown/README.md b/data/agent-test/markdown/README.md new file mode 100644 index 0000000..dff9eb5 --- /dev/null +++ b/data/agent-test/markdown/README.md @@ -0,0 +1,7 @@ +# Retrieval Notes + +This document records a small candidate-generation experiment. + +## Results + +Latency stays predictable as the index grows. diff --git a/data/agent-test/programming/classifier.py b/data/agent-test/programming/classifier.py new file mode 100644 index 0000000..0815d30 --- /dev/null +++ b/data/agent-test/programming/classifier.py @@ -0,0 +1,2 @@ +def classify(text): + return {"label": "memory", "text": text} diff --git a/data/agent-test/programming/engine.rs b/data/agent-test/programming/engine.rs new file mode 100644 index 0000000..9fb41a0 --- /dev/null +++ b/data/agent-test/programming/engine.rs @@ -0,0 +1,3 @@ +pub fn retrieve(query: &str) -> Vec { + query.split_whitespace().map(str::to_lowercase).collect() +} diff --git a/data/agent-test/programming/index.ts b/data/agent-test/programming/index.ts new file mode 100644 index 0000000..62acf87 --- /dev/null +++ b/data/agent-test/programming/index.ts @@ -0,0 +1,3 @@ +export function index(values: string[]): Map { + return new Map(values.map((value, index) => [value, index])); +} diff --git a/data/agent-test/programming/model.java b/data/agent-test/programming/model.java new file mode 100644 index 0000000..41a22ee --- /dev/null +++ b/data/agent-test/programming/model.java @@ -0,0 +1 @@ +class Model { String name() { return "memory"; } } diff --git a/data/agent-test/programming/test.go b/data/agent-test/programming/test.go new file mode 100644 index 0000000..c894c84 --- /dev/null +++ b/data/agent-test/programming/test.go @@ -0,0 +1,3 @@ +package main + +func main() { println("retrieval") } diff --git a/data/agent-test/whatsapp/chat_3.txt b/data/agent-test/whatsapp/chat_3.txt new file mode 100644 index 0000000..7f27560 --- /dev/null +++ b/data/agent-test/whatsapp/chat_3.txt @@ -0,0 +1,2 @@ +[01/02/24, 10:00:00] Alice: We should review the retrieval benchmark and decide which experiments to run next. +[01/02/24, 10:01:00] Bob: Agreed, I will collect the latency numbers and share the report this afternoon. diff --git a/evals/README.md b/evals/README.md index a411b5e..cd88266 100644 --- a/evals/README.md +++ b/evals/README.md @@ -1,6 +1,6 @@ -# CueMap v0.7.2 Evaluation Pack +# CueMap v0.7.3 Evaluation Pack -CueMap is a deterministic memory engine with an embedding-free, vector-database-free, LLM-free recall hot path. These reports document the v0.7.2 retrieval runs used to calibrate release readiness across LongMemEval, LoCoMo, and BEAM. +CueMap uses lexical and structural candidate generation, with optional semantic reranking. These reports present retrieval metrics for the v0.7.3 evaluation pack across LongMemEval, LoCoMo, and BEAM. Hybrid runs use embeddings for reranking; they are not embedding-free. The short version: CueMap is already very strong on compact long-memory retrieval, competitive on LoCoMo when adjacent context expansion is enabled, and shows strong candidate discovery at BEAM 10M scale. The latest raw BEAM 128K, 1M, and 10M runs reach 84.2%, 80.3%, and 67.0% Hit@20, with 4,702, 2,934, and 1,749 average top-20 context tokens respectively. The separate historical CueBridge question-oracle run improved Hit@20 by 10 questions; it is reported independently from the latest raw baselines. @@ -20,7 +20,7 @@ The latest LoCoMo, LongMemEval, and BEAM runs use the wrappers' default `SEMANTI ## Hot-Path Latency Context -These retrieval benchmarks focus on accuracy. For hot-path performance, the release latency runs measured: +These benchmarks measure evidence retrieval (Hit@K and evidence coverage), not generated-answer accuracy. No single LLM-judge accuracy score is reported. For hot-path performance, the release latency runs measured: | Dataset size | Operation | Throughput | Avg | P50 | P99 | |---:|---|---:|---:|---:|---:| @@ -29,7 +29,7 @@ These retrieval benchmarks focus on accuracy. For hot-path performance, the rele | 1M memories | Write | 351 ops/s | 2.85 ms | 2.39 ms | 11.23 ms | | 1M memories | Read, NL lean | 369 ops/s | 2.70 ms | 2.06 ms | 5.10 ms | -The benchmark harnesses add HTTP, ingest, scoring, and optional CueBridge generation overhead. The runtime point is that raw recall remains a deterministic, millisecond-class path. +The benchmark harnesses add HTTP, ingest, scoring, and optional CueBridge generation overhead. The latency table reports a separate workload and should not be read as the end-to-end latency of these evaluation runs. ## Reports @@ -42,8 +42,8 @@ The benchmark harnesses add HTTP, ingest, scoring, and optional CueBridge genera Each benchmark has a shell wrapper in its directory: ```bash -bash evals/longmemeval/run_longmemeval.sh -bash evals/locomo/run_locomo.sh +DATASET=/path/to/longmemeval_s_cleaned.json bash evals/longmemeval/run_longmemeval.sh +DATASET=/path/to/locomo10.json bash evals/locomo/run_locomo.sh bash evals/beam/run_beam.sh ``` @@ -81,3 +81,8 @@ For disposable benchmark projects, keep `DELETE_PROJECTS=1` so temporary `eval_* These are raw retrieval metrics rather than LLM-as-judge answer accuracy. This is deliberate: raw retrieval shows what the memory engine actually found before answer-model interpretation. CueBridge numbers in these reports are labeled carefully. The highlighted CueBridge lift is the BEAM 128K diagnostic question-oracle run, which uses benchmark questions to probe whether artifacts can improve ranking. It demonstrates mechanism and upside; product-mode CueBridge is the next packaging step. + +The raw harnesses are included under `evals/harnesses` and use Python 3.10+. +Install `datasets` for BEAM and provide the original LongMemEval/LoCoMo JSON +files with `DATASET`. Dataset files are not bundled. Optional CueBridge modes +require a separate CueBridge installation; use `CUEBRIDGE_CLI` for its CLI path. diff --git a/evals/beam/report.md b/evals/beam/report.md index 548e812..264bceb 100644 --- a/evals/beam/report.md +++ b/evals/beam/report.md @@ -1,10 +1,10 @@ # BEAM: Scaling Deterministic Recall To 10M Tokens -`CueMap v0.7.2` `BEAM 128K / 1M / 10M` `CueBridge lift` `embedding-free` +`CueMap v0.7.3` `BEAM 128K / 1M / 10M` `CueBridge lift` `hybrid reranking` BEAM is the stress test for scale. CueMap uses deterministic lexical/facet recall instead of an embedding service or vector database, so this benchmark asks the central question: can that architecture stay competitive at 1M and 10M tokens? -The answer in v0.7.2 is yes. The latest raw 128K, 1M, and 10M runs reach 84.2%, 80.3%, and 67.0% Hit@20, with Hit@100 at 96.3%, 93.1%, and 83.5% respectively. All three runs use the wrapper's default **hybrid recall mode** (`SEMANTIC_MODE=hybrid`), message-level turn ingestion, evidence coverage disabled, and ordered reconstruction disabled. +The reported runs show that it can. The latest raw 128K, 1M, and 10M runs reach 84.2%, 80.3%, and 67.0% Hit@20, with Hit@100 at 96.3%, 93.1%, and 83.5% respectively. All three runs use the wrapper's default **hybrid recall mode** (`SEMANTIC_MODE=hybrid`), message-level turn ingestion, evidence coverage disabled, and ordered reconstruction disabled. ## Headline @@ -14,7 +14,7 @@ The answer in v0.7.2 is yes. The latest raw 128K, 1M, and 10M runs reach 84.2%, | 1M | 625 | 38.4% | 63.4% | 74.6% | 80.3% | 90.4% | 93.1% | | 10M | 176 | 33.5% | 50.0% | 58.5% | 67.0% | 77.8% | 83.5% | -The 10M tier crosses the 50% Hit@20 target while keeping Hit@100 above 80%. That matters because it shows CueMap handles the scale jump and often puts the right memory into the candidate set with embedding-free recall. +The 10M tier crosses the 50% Hit@20 target while keeping Hit@100 above 80%. That matters because it shows CueMap handles the scale jump and retrieves relevant evidence after lexical and structural candidate generation and hybrid reranking. ## Depth Metrics @@ -81,7 +81,7 @@ What works now: |---|---| | Candidate discovery | 128K Hit@100 is 96.3%; 1M Hit@100 is 93.1%; 10M Hit@100 is 83.5%. | | Contradictions and updates | These categories stay strong even at 10M. | -| Embedding-free architecture | The engine preserves strong 10M candidate discovery with deterministic indexing. | +| Candidate generation without embeddings | Lexical and structural indexing supplies candidates; the reported hybrid results also use semantic reranking. | Next lift areas: @@ -164,4 +164,4 @@ Useful knobs: | `MODE` | `raw` | `raw`, `product-cuebridge`, or `question-oracle`. | | `DELETE_PROJECTS` | `1` | Delete temporary eval projects after each record. | -The wrapper writes fresh output under `evals/beam/results/` by default. The figures above come from the latest v0.7.2 raw runs for all three tiers. +The wrapper writes fresh output under `evals/beam/results/` by default. The figures above cover raw runs for all three tiers. diff --git a/evals/beam/run_beam.sh b/evals/beam/run_beam.sh index c657346..3a7c408 100755 --- a/evals/beam/run_beam.sh +++ b/evals/beam/run_beam.sh @@ -2,9 +2,8 @@ set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -CUEMAP_ROOT="$(cd "$SCRIPT_DIR/../../.." && pwd)" CUEMAP_ENGINE_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)" -CUEMAP_EVALS_DIR="${CUEMAP_EVALS_DIR:-$CUEMAP_ROOT/evals}" +CUEMAP_EVALS_DIR="${CUEMAP_EVALS_DIR:-$CUEMAP_ENGINE_ROOT/evals/harnesses}" HARNESS="$CUEMAP_EVALS_DIR/test_beam_settled.py" # Pin every subprocess in this evaluation to the release engine. The @@ -30,7 +29,7 @@ if [[ ! -f "$HARNESS" ]]; then fi CONTEXT="${CONTEXT:-128k}" -CUEMAP_URL="${CUEMAP_URL:-http://127.0.0.1:8080}" +CUEMAP_URL="${CUEMAP_URL:-http://127.0.0.1:8735}" LIMIT="${LIMIT:-100}" MODE="${MODE:-raw}" SEMANTIC_MODE="${SEMANTIC_MODE:-hybrid}" @@ -72,7 +71,7 @@ if [[ "$TRACE_TIMING" == "1" ]]; then fi args=( - python "$HARNESS" + "${PYTHON:-python3}" "$HARNESS" --context "$CONTEXT" --url "$CUEMAP_URL" --limit "$LIMIT" @@ -162,7 +161,7 @@ else fi if [[ "$TRACE_TIMING" == "1" && -s "$TIMING_FILE" ]]; then - python "$SCRIPT_DIR/report_timing.py" --input "$TIMING_FILE" + "${PYTHON:-python3}" "$CUEMAP_EVALS_DIR/report_timing.py" --input "$TIMING_FILE" echo "Timing samples: $TIMING_FILE" fi diff --git a/evals/harnesses/cuebridge_eval_utils.py b/evals/harnesses/cuebridge_eval_utils.py new file mode 100644 index 0000000..274807a --- /dev/null +++ b/evals/harnesses/cuebridge_eval_utils.py @@ -0,0 +1,1254 @@ +import argparse +import hashlib +import json +import math +import os +import re +import shutil +import subprocess +import time +import urllib.error +import urllib.parse +import urllib.request +from collections import Counter +from pathlib import Path +from typing import Any + + +CUEMAP_ROOT = Path(__file__).resolve().parents[2] +CUEBRIDGE = Path(os.environ.get("CUEBRIDGE_CLI", str(CUEMAP_ROOT / "cuebridge" / "cuebridge.py"))) +DEFAULT_CUEBRIDGE_RUN_ROOT = CUEMAP_ROOT / "evals" / "cuebridge_runs" +CUEBRIDGE_ARTIFACT_STEPS = ( + "analyze-project", + "question-generation", + "score-questions", + "propose-fixes", + "validate-proposals", + "compile", + "validate-artifact", + "install", + "enhanced-recall", +) + + +def cuebridge_step_index(step: str) -> int: + try: + return CUEBRIDGE_ARTIFACT_STEPS.index(step) + except ValueError as exc: + raise ValueError(f"Unknown CueBridge start step: {step}") from exc + + +def cuebridge_should_run(start_step: str, step: str) -> bool: + return cuebridge_step_index(step) >= cuebridge_step_index(start_step) + + +def require_resume_file(path: Path, *, step: str) -> None: + if not path.exists(): + raise FileNotFoundError(f"Cannot resume at {step}: required file is missing: {path}") + + +def run_pipeline_cmd(cmd: list[str], *, timeout: int | None = None) -> subprocess.CompletedProcess: + print("+ " + " ".join(cmd)) + result = subprocess.run(cmd, capture_output=True, text=True, timeout=timeout) + if result.returncode != 0: + raise RuntimeError( + f"Command failed ({result.returncode}): {' '.join(cmd)}\n" + f"STDOUT:\n{result.stdout}\nSTDERR:\n{result.stderr}" + ) + if result.stdout.strip(): + print(result.stdout.rstrip()) + if result.stderr.strip(): + print(result.stderr.rstrip()) + return result + + +def sha256_file(path: Path) -> str: + digest = hashlib.sha256() + with path.open("rb") as f: + for chunk in iter(lambda: f.read(1024 * 1024), b""): + digest.update(chunk) + return digest.hexdigest() + + +def append_cuebridge_recall_option_args(cmd: list[str], args: argparse.Namespace) -> None: + for attr, flag in ( + ("parent_fusion", "--parent-fusion"), + ("parent_fusion_limit", "--parent-fusion-limit"), + ("parent_fusion_min_chunks", "--parent-fusion-min-chunks"), + ("ordered_reconstruction", "--ordered-reconstruction"), + ("ordered_reconstruction_limit", "--ordered-reconstruction-limit"), + ("ordered_session_scan_limit", "--ordered-session-scan-limit"), + ("ordered_max_sessions", "--ordered-max-sessions"), + ("evidence_coverage", "--evidence-coverage"), + ("evidence_coverage_limit", "--evidence-coverage-limit"), + ("evidence_coverage_session_scan_limit", "--evidence-coverage-session-scan-limit"), + ("evidence_coverage_max_sessions", "--evidence-coverage-max-sessions"), + ): + if hasattr(args, attr): + cmd.extend([flag, str(getattr(args, attr))]) + + +def add_cuebridge_compare_args(parser: argparse.ArgumentParser) -> None: + group = parser.add_argument_group("CueBridge compare") + group.add_argument( + "--compare-cuebridge", + action="store_true", + help=( + "Legacy alias for --compare-cuebridge-oracle. Runs raw recall first, " + "builds artifacts from failed benchmark gold evidence, then reruns recall." + ), + ) + group.add_argument( + "--compare-cuebridge-product", + action="store_true", + help=( + "Run raw recall first, build/install CueBridge artifacts from project memories only, " + "then rerun recall. This mode does not use benchmark gold evidence." + ), + ) + group.add_argument( + "--compare-cuebridge-oracle", + action="store_true", + help=( + "Diagnostic mode: run raw recall first, build/install CueBridge artifacts from " + "gold evidence for benchmark questions ranked worse than --cuebridge-target-rank-threshold, " + "then rerun recall. Do not publish this as product-mode accuracy." + ), + ) + group.add_argument( + "--compare-cuebridge-question-oracle", + action="store_true", + help=( + "Diagnostic mode: use the actual benchmark question text plus matched gold memories " + "as targeted weak questions, then build/install CueBridge artifacts and rerun recall. " + "This directly tests whether CueBridge can bridge known eval questions; do not publish " + "this as product-mode accuracy." + ), + ) + group.add_argument("--cuebridge-run-root", default=str(DEFAULT_CUEBRIDGE_RUN_ROOT)) + group.add_argument("--cuebridge-python", default="python") + group.add_argument( + "--cuebridge-provider", + choices=["auto", "llama-cpp", "llama-server", "openai-compatible"], + default="openai-compatible", + ) + group.add_argument("--llama-binary", default="llama-cli") + group.add_argument("--llama-model", default="") + group.add_argument("--llama-n-predict", type=int, default=1024) + group.add_argument("--llama-temp", type=float, default=0.0) + group.add_argument("--llama-top-p", type=float, default=1.0) + group.add_argument("--llama-seed", type=int, default=42) + group.add_argument("--llama-ctx-size", type=int, default=8192) + group.add_argument("--llama-timeout-seconds", type=int, default=300) + group.add_argument("--llama-display-prompt", action="store_true") + group.add_argument("--llama-extra-arg", action="append", default=[]) + group.add_argument("--llama-server-binary", default="llama-server") + group.add_argument("--llama-server-host", default="127.0.0.1") + group.add_argument("--llama-server-port", type=int, default=8088) + group.add_argument("--llama-server-start-timeout-seconds", type=int, default=180) + group.add_argument("--llama-server-extra-arg", action="append", default=[]) + group.add_argument("--openai-base-url", default="http://127.0.0.1:1234/v1") + group.add_argument("--openai-model", default="qwen3-4b-cuebridge") + group.add_argument("--openai-api-key", default="local") + group.add_argument( + "--openai-extra-param", + action="append", + default=[], + help="Repeatable KEY=JSON_VALUE forwarded to CueBridge OpenAI-compatible calls, e.g. reasoning={\"enabled\":false}.", + ) + group.add_argument("--continue-on-model-error", action="store_true", default=True) + group.add_argument("--cuebridge-max-samples", type=int, default=500) + group.add_argument("--cuebridge-max-jobs", type=int, default=200) + group.add_argument("--cuebridge-job-offset", type=int, default=0) + group.add_argument("--cuebridge-max-fix-cases", type=int, default=1000) + group.add_argument("--cuebridge-case-offset", type=int, default=0) + group.add_argument("--cuebridge-question-concurrency", type=int, default=1) + group.add_argument("--cuebridge-question-batch-size", type=int, default=1) + group.add_argument("--cuebridge-question-underfill-retries", type=int, default=2) + group.add_argument("--cuebridge-fix-concurrency", type=int, default=1) + group.add_argument("--cuebridge-fix-batch-size", type=int, default=1) + group.add_argument("--cuebridge-progress-every", type=int, default=1) + group.add_argument("--cuebridge-page-size", type=int, default=1000) + group.add_argument("--cuebridge-salient-cue-limit", type=int, default=24) + group.add_argument("--cuebridge-available-cue-limit", type=int, default=128) + group.add_argument("--cuebridge-excerpt-chars", type=int, default=900) + group.add_argument("--cuebridge-include-raw", action="store_true", default=True) + group.add_argument("--max-questions-per-memory", type=int, default=3) + group.add_argument("--cuebridge-weak-rank-threshold", type=int, default=20) + group.add_argument("--cuebridge-accept-rank-threshold", type=int, default=20) + group.add_argument("--cuebridge-min-rank-improvement", type=int, default=1) + group.add_argument("--cuebridge-collateral-policy", choices=("off", "tier", "rank"), default="tier") + group.add_argument( + "--cuebridge-target-rank-threshold", + type=int, + default=10, + help=( + "In oracle compare modes, only raw benchmark questions ranked worse than this " + "become gold-memory/question targets." + ), + ) + group.add_argument("--include-rank-6-20-fixes", action="store_true") + group.add_argument("--score-with-artifacts", action="store_true") + group.add_argument("--min-gap-confidence", type=float, default=0.60) + group.add_argument("--min-alias-confidence", type=float, default=0.80) + group.add_argument("--max-fanout", type=int, default=3) + group.add_argument("--cuebridge-command-timeout-seconds", type=int, default=7200) + + +def cuebridge_compare_mode(args: argparse.Namespace) -> str: + product = bool(getattr(args, "compare_cuebridge_product", False)) + oracle = bool(getattr(args, "compare_cuebridge_oracle", False)) + question_oracle = bool(getattr(args, "compare_cuebridge_question_oracle", False)) + legacy_oracle = bool(getattr(args, "compare_cuebridge", False)) + selected_count = sum(1 for enabled in (product, oracle, question_oracle, legacy_oracle) if enabled) + if selected_count > 1: + raise ValueError( + "Choose only one CueBridge compare mode: --compare-cuebridge-product, " + "--compare-cuebridge-oracle, or --compare-cuebridge-question-oracle." + ) + if product: + return "product" + if question_oracle: + return "question_oracle" + if oracle or legacy_oracle: + return "oracle" + return "off" + + +def cuebridge_compare_enabled(args: argparse.Namespace) -> bool: + return cuebridge_compare_mode(args) != "off" + + +def cuebridge_product_enabled(args: argparse.Namespace) -> bool: + return cuebridge_compare_mode(args) == "product" + + +def cuebridge_oracle_enabled(args: argparse.Namespace) -> bool: + return cuebridge_compare_mode(args) == "oracle" + + +def _resolve_provider(args: argparse.Namespace) -> str: + provider = args.cuebridge_provider + if provider == "auto": + llama_cli_available = ( + "/" in args.llama_binary and Path(args.llama_binary).expanduser().exists() + ) or shutil.which(args.llama_binary) + provider = "llama-cpp" if llama_cli_available else "llama-server" + return provider + + +def _append_provider_args(cmd: list[str], args: argparse.Namespace, provider: str) -> None: + if provider == "llama-cpp": + cmd.extend(["--llama-binary", args.llama_binary, "--llama-model", args.llama_model]) + if args.llama_display_prompt: + cmd.append("--llama-display-prompt") + for value in args.llama_extra_arg: + cmd.append(f"--llama-extra-arg={value}") + elif provider == "llama-server": + cmd.extend( + [ + "--llama-server-binary", + args.llama_server_binary, + "--llama-model", + args.llama_model, + "--llama-server-host", + args.llama_server_host, + "--llama-server-port", + str(args.llama_server_port), + "--llama-server-start-timeout-seconds", + str(args.llama_server_start_timeout_seconds), + "--openai-model", + args.openai_model, + ] + ) + for value in args.llama_server_extra_arg: + cmd.append(f"--llama-server-extra-arg={value}") + elif provider == "openai-compatible": + cmd.extend( + [ + "--openai-base-url", + args.openai_base_url, + "--openai-model", + args.openai_model, + "--openai-api-key", + args.openai_api_key, + ] + ) + for value in args.openai_extra_param: + cmd.append(f"--openai-extra-param={value}") + + +def _proposal_metrics(path: Path) -> dict[str, Any]: + if not path.exists(): + return {} + payload = json.loads(path.read_text()) + metrics = payload.get("metrics") if isinstance(payload, dict) else None + if isinstance(metrics, dict): + return metrics + if not isinstance(payload, dict): + return {} + return { + "generated_questions": len(payload.get("generated_questions", []) or []), + "gap_proposals": len(payload.get("gap_proposals", []) or []), + "alias_proposals": len(payload.get("alias_proposals", []) or []), + "rejected": len(payload.get("rejected", []) or []), + "failures": len(payload.get("failures", []) or []), + } + + +def _status_urls(url: str) -> list[str]: + parsed = urllib.parse.urlparse(url) + urls = [url.rstrip("/")] + if parsed.hostname == "localhost": + port = f":{parsed.port}" if parsed.port else "" + replacement = urllib.parse.urlunparse( + (parsed.scheme, f"127.0.0.1{port}", parsed.path.rstrip("/"), "", "", "") + ) + urls.append(replacement.rstrip("/")) + return list(dict.fromkeys(urls)) + + +def _request_json( + method: str, + url: str, + path: str, + project_id: str, + *, + timeout: int = 120, +) -> dict[str, Any]: + last_error = None + body = None + for base_url in _status_urls(url): + endpoint = f"{base_url.rstrip('/')}{path}" + request = urllib.request.Request( + endpoint, + data=body, + method=method, + headers={"Content-Type": "application/json", "X-Project-ID": project_id}, + ) + try: + with urllib.request.urlopen(request, timeout=timeout) as response: + raw = response.read().decode("utf-8") + return json.loads(raw) if raw else {} + except urllib.error.HTTPError as exc: + error_body = exc.read().decode("utf-8", errors="replace") + raise RuntimeError(f"{method} {endpoint} failed with HTTP {exc.code}: {error_body}") from exc + except urllib.error.URLError as exc: + last_error = f"{method} {endpoint} failed: {exc}" + raise RuntimeError(last_error or f"{method} {url}{path} failed") + + +def _export_project_memories( + *, + url: str, + project_id: str, + page_size: int, + include_content: bool, +) -> list[dict[str, Any]]: + memories = [] + cursor = None + while True: + query = { + "limit": str(page_size), + "include_content": "true" if include_content else "false", + "include_cues": "true", + "include_metadata": "true", + } + if cursor is not None: + query["cursor"] = str(cursor) + encoded = urllib.parse.urlencode(query) + path = f"/projects/{urllib.parse.quote(project_id, safe='')}/export?{encoded}" + page = _request_json("GET", url, path, project_id) + batch = page.get("memories", []) + if not isinstance(batch, list): + raise RuntimeError("Project export response did not contain a memories array") + memories.extend(batch) + if not page.get("has_more"): + return memories + cursor = page.get("next_cursor") + if cursor is None: + return memories + + +def _normalize_cue(value: Any) -> str: + return re.sub(r"\s+", " ", str(value).strip().lower()) + + +def _normalize_match_text(value: Any) -> str: + text = str(value or "").replace("assistant: ", "").replace("user: ", "") + text = re.sub(r"\s+", " ", text) + return text.strip().lower() + + +def _text_matches_target(memory_content: str, target_text: str) -> bool: + memory_norm = _normalize_match_text(memory_content) + target_norm = _normalize_match_text(target_text) + if not memory_norm or not target_norm: + return False + if len(target_norm) >= 24 and target_norm in memory_norm: + return True + if len(memory_norm) >= 24 and memory_norm in target_norm: + return True + memory_tokens = set(re.findall(r"[a-z0-9_]+", memory_norm)) + target_tokens = set(re.findall(r"[a-z0-9_]+", target_norm)) + if len(target_tokens) < 4: + return False + overlap = len(memory_tokens & target_tokens) + return overlap >= max(4, int(len(target_tokens) * 0.75)) + + +def _memory_excerpt(content: str, max_chars: int) -> str: + content = re.sub(r"\s+", " ", content).strip() + if len(content) <= max_chars: + return content + return content[: max(0, max_chars - 1)].rstrip() + "..." + + +def _memory_sample(memory: dict[str, Any], args: argparse.Namespace) -> dict[str, Any]: + content = str(memory.get("content", "")) + cues = [_normalize_cue(cue) for cue in memory.get("cues", []) if _normalize_cue(cue)] + metadata = memory.get("metadata", {}) if isinstance(memory.get("metadata"), dict) else {} + sample = { + "memory_id": memory.get("id"), + "source_key": memory.get("source_key"), + "content_sha256": hashlib.sha256(content.encode("utf-8")).hexdigest(), + "created_at": memory.get("created_at"), + "metadata": metadata, + "salient_cues": cues[: args.cuebridge_salient_cue_limit], + "available_cues": cues[: args.cuebridge_available_cue_limit], + "content_char_count": len(content), + } + if args.cuebridge_include_raw: + sample["content"] = content + else: + sample["content_excerpt"] = _memory_excerpt(content, args.cuebridge_excerpt_chars) + return sample + + +_QUERY_STOPWORDS = { + "a", "an", "and", "are", "as", "at", "be", "between", "by", "can", "could", + "did", "do", "does", "for", "from", "had", "has", "have", "how", "i", "in", + "is", "it", "me", "my", "of", "on", "or", "our", "should", "the", "their", + "them", "then", "there", "these", "they", "this", "to", "was", "were", + "what", "when", "where", "which", "who", "why", "with", "would", "you", + "your", +} + + +def _query_signature_from_question(question: str, limit: int = 16) -> dict[str, list[str]]: + cues: list[str] = [] + seen = set() + for raw in re.findall(r"[A-Za-z0-9_][A-Za-z0-9_+.#/-]*", question.lower()): + cue = raw.strip("-_/") + if len(cue) < 3 or cue in _QUERY_STOPWORDS or cue in seen: + continue + seen.add(cue) + cues.append(cue) + if len(cues) >= limit: + break + return {"required_any": cues} + + +def _select_memories_for_target_texts( + memories: list[dict[str, Any]], + target_texts: list[str], + args: argparse.Namespace, +) -> list[dict[str, Any]]: + selected: list[dict[str, Any]] = [] + seen_ids = set() + for memory in memories: + content = str(memory.get("content", "")) + if any(_text_matches_target(content, target) for target in target_texts): + memory_id = str(memory.get("id")) + if memory_id not in seen_ids: + selected.append(_memory_sample(memory, args)) + seen_ids.add(memory_id) + return selected + + +def _write_targeted_analysis( + args: argparse.Namespace, + project_id: str, + analysis_path: Path, + target_texts: list[str], +) -> dict[str, Any]: + memories = _export_project_memories( + url=args.url, + project_id=project_id, + page_size=args.cuebridge_page_size, + include_content=True, + ) + cue_freq = Counter() + target_texts = [text for text in target_texts if str(text).strip()] + for memory in memories: + cues = [_normalize_cue(cue) for cue in memory.get("cues", []) if _normalize_cue(cue)] + cue_freq.update(cues) + selected = _select_memories_for_target_texts(memories, target_texts, args) + + hub_cues = [ + {"cue": cue, "count": count} + for cue, count in cue_freq.most_common(100) + if count > 1 + ] + analysis = { + "schema_version": 1, + "artifact_type": "cuebridge_project_analysis", + "project_id": project_id, + "created_at": time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime()), + "compiler_version": "eval-targeted", + "metrics": { + "exported_memories": len(memories), + "target_text_count": len(target_texts), + "sample_count": len(selected), + "unique_cues": len(cue_freq), + "targeting": "benchmark_raw_rank_gt_threshold_gold_memory", + }, + "hub_cues": hub_cues, + "question_generation_jobs": [ + { + "id": f"qgen_target_{idx + 1:06d}", + "task": "generate recall questions and lexical-gap proposal candidates for this memory", + "memory": sample, + "instructions": { + "do_not_answer": True, + "generate_questions": True, + "focus": "minimal lexical overlap between question and memory while preserving answerability", + "proposal_goal": "surface only safe lexical-gap bridges for CueMap validation", + }, + } + for idx, sample in enumerate(selected) + ], + } + analysis_path.parent.mkdir(parents=True, exist_ok=True) + analysis_path.write_text(json.dumps(analysis, indent=2, sort_keys=True)) + print( + f"Wrote targeted CueBridge analysis with {len(selected)} gold memories " + f"from {len(target_texts)} target texts to {analysis_path}" + ) + return { + "target_text_count": len(target_texts), + "target_memory_count": len(selected), + "exported_memories": len(memories), + } + + +def _write_question_oracle_analysis( + args: argparse.Namespace, + project_id: str, + analysis_path: Path, + questions_path: Path, + target_questions: list[dict[str, Any]], +) -> dict[str, Any]: + memories = _export_project_memories( + url=args.url, + project_id=project_id, + page_size=args.cuebridge_page_size, + include_content=True, + ) + cue_freq = Counter() + for memory in memories: + cues = [_normalize_cue(cue) for cue in memory.get("cues", []) if _normalize_cue(cue)] + cue_freq.update(cues) + + jobs: list[dict[str, Any]] = [] + generated_questions: list[dict[str, Any]] = [] + matched_target_count = 0 + matched_memory_ids = set() + + for case_idx, case in enumerate(target_questions, start=1): + question = str(case.get("question", "")).strip() + target_texts = [text for text in case.get("target_texts", []) if str(text).strip()] + if not question or not target_texts: + continue + selected = _select_memories_for_target_texts(memories, target_texts, args) + if not selected: + continue + matched_target_count += 1 + for mem_idx, sample in enumerate(selected, start=1): + memory_id = sample.get("memory_id") + matched_memory_ids.add(str(memory_id)) + job_id = f"qoracle_{case_idx:06d}_{mem_idx:03d}" + question_id = f"{job_id}_question" + jobs.append( + { + "id": job_id, + "task": "generate targeted lexical-gap proposal candidates for this known weak question", + "memory": sample, + "instructions": { + "do_not_answer": True, + "generate_questions": False, + "focus": "bridge the actual question wording to this expected memory", + "proposal_goal": "surface only safe lexical-gap bridges for CueMap validation", + }, + "eval_question": { + "id": case.get("id") or f"eval_question_{case_idx:06d}", + "question": question, + "category": case.get("category"), + }, + } + ) + generated_questions.append( + { + "id": question_id, + "job_id": job_id, + "question": question, + **({"query_time": case.get("query_time")} if case.get("query_time") else {}), + "expected_memory_id": memory_id, + "query_signature": _query_signature_from_question(question), + "expected_expansion_cues": sample.get("salient_cues", []), + "gap_pairs": [], + "provenance": { + "source": "benchmark_question_oracle", + "eval_question_id": case.get("id") or f"eval_question_{case_idx:06d}", + "category": case.get("category"), + }, + } + ) + + hub_cues = [ + {"cue": cue, "count": count} + for cue, count in cue_freq.most_common(100) + if count > 1 + ] + created_at = time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime()) + analysis = { + "schema_version": 1, + "artifact_type": "cuebridge_project_analysis", + "project_id": project_id, + "created_at": created_at, + "compiler_version": "eval-question-oracle", + "metrics": { + "exported_memories": len(memories), + "target_question_count": len(target_questions), + "matched_target_question_count": matched_target_count, + "target_memory_count": len(matched_memory_ids), + "question_memory_target_count": len(generated_questions), + "generated_question_count": len(generated_questions), + "unique_cues": len(cue_freq), + "targeting": "benchmark_raw_rank_gt_threshold_actual_question", + }, + "hub_cues": hub_cues, + "question_generation_jobs": jobs, + } + proposal = { + "schema_version": 1, + "artifact_type": "cuebridge_question_proposals", + "project_id": project_id, + "created_at": created_at, + "compiler_version": "eval-question-oracle", + "source_analysis": str(analysis_path), + "generated_questions": generated_questions, + "gap_proposals": [], + "alias_proposals": [], + "rejected": [], + "metrics": { + "generated_questions": len(generated_questions), + "target_question_count": len(target_questions), + "matched_target_question_count": matched_target_count, + "target_memory_count": len(matched_memory_ids), + "question_memory_target_count": len(generated_questions), + }, + } + analysis_path.parent.mkdir(parents=True, exist_ok=True) + analysis_path.write_text(json.dumps(analysis, indent=2, sort_keys=True)) + questions_path.write_text(json.dumps(proposal, indent=2, sort_keys=True)) + print( + f"Wrote question-oracle CueBridge analysis with {len(generated_questions)} " + f"question-memory targets from {matched_target_count}/{len(target_questions)} eval questions to {analysis_path}" + ) + return { + "target_question_count": len(target_questions), + "matched_target_question_count": matched_target_count, + "target_memory_count": len(matched_memory_ids), + "generated_question_count": len(generated_questions), + "exported_memories": len(memories), + } + + +def build_cuebridge_artifacts( + args: argparse.Namespace, + project_id: str, + run_dir: Path, + *, + target_texts: list[str] | None = None, + target_questions: list[dict[str, Any]] | None = None, + start_step: str = "analyze-project", +) -> dict[str, Any]: + run_dir.mkdir(parents=True, exist_ok=True) + analysis = run_dir / "cuebridge_analysis.json" + questions = run_dir / "cuebridge_questions.json" + scored = run_dir / "cuebridge_scored_questions.json" + targeted = run_dir / "cuebridge_targeted_proposals.json" + validated = run_dir / "cuebridge_validated_proposals.json" + artifact_dir = run_dir / "artifact" + validation = run_dir / "artifact_validation.json" + raw_response_dir = run_dir / "raw_model_responses" + raw_fix_response_dir = run_dir / "raw_targeted_responses" + timeout = args.cuebridge_command_timeout_seconds + start_step = start_step or "analyze-project" + cuebridge_step_index(start_step) + + common_python = [args.cuebridge_python, str(CUEBRIDGE)] + targeted_metrics = None + if target_questions is not None: + if cuebridge_should_run(start_step, "analyze-project"): + targeted_metrics = _write_question_oracle_analysis( + args, + project_id, + analysis, + questions, + target_questions, + ) + if targeted_metrics["generated_question_count"] == 0: + return { + "analysis": str(analysis), + "questions": str(questions), + "provider": None, + "skipped": "no_gold_question_memories_matched", + "targeting": targeted_metrics, + "artifact_files": [], + "start_step": start_step, + } + else: + require_resume_file(analysis, step=start_step) + require_resume_file(questions, step=start_step) + elif target_texts is not None: + if cuebridge_should_run(start_step, "analyze-project"): + targeted_metrics = _write_targeted_analysis(args, project_id, analysis, target_texts) + if targeted_metrics["target_memory_count"] == 0: + return { + "analysis": str(analysis), + "provider": None, + "skipped": "no_gold_memories_matched", + "targeting": targeted_metrics, + "artifact_files": [], + "start_step": start_step, + } + else: + require_resume_file(analysis, step=start_step) + require_resume_file(questions, step=start_step) + else: + if cuebridge_should_run(start_step, "analyze-project"): + run_pipeline_cmd( + common_python + + [ + "analyze-project", + "--project", + project_id, + "--url", + args.url, + "--out", + str(analysis), + "--max-samples", + str(args.cuebridge_max_samples), + "--page-size", + str(args.cuebridge_page_size), + "--salient-cue-limit", + str(args.cuebridge_salient_cue_limit), + "--available-cue-limit", + str(args.cuebridge_available_cue_limit), + "--excerpt-chars", + str(args.cuebridge_excerpt_chars), + ] + + (["--include-raw"] if args.cuebridge_include_raw else []), + timeout=timeout, + ) + else: + require_resume_file(analysis, step=start_step) + + provider = _resolve_provider(args) + if target_questions is None and cuebridge_should_run(start_step, "question-generation"): + propose_cmd = common_python + [ + "propose", + "--analysis", + str(analysis), + "--provider", + provider, + "--questions-only", + "--llama-n-predict", + str(args.llama_n_predict), + "--llama-temp", + str(args.llama_temp), + "--llama-top-p", + str(args.llama_top_p), + "--llama-seed", + str(args.llama_seed), + "--llama-ctx-size", + str(args.llama_ctx_size), + "--max-questions-per-memory", + str(args.max_questions_per_memory), + "--timeout-seconds", + str(args.llama_timeout_seconds), + "--raw-response-dir", + str(raw_response_dir), + "--progress-every", + str(args.cuebridge_progress_every), + "--concurrency", + str(args.cuebridge_question_concurrency), + "--batch-size", + str(args.cuebridge_question_batch_size), + "--question-underfill-retries", + str(args.cuebridge_question_underfill_retries), + "--out", + str(questions), + ] + if args.cuebridge_max_jobs is not None: + propose_cmd.extend(["--max-jobs", str(args.cuebridge_max_jobs)]) + if args.cuebridge_job_offset: + propose_cmd.extend(["--job-offset", str(args.cuebridge_job_offset)]) + if args.continue_on_model_error: + propose_cmd.append("--continue-on-error") + _append_provider_args(propose_cmd, args, provider) + run_pipeline_cmd(propose_cmd, timeout=timeout) + else: + require_resume_file(questions, step=start_step) + + if cuebridge_should_run(start_step, "score-questions"): + score_cmd = common_python + [ + "score-questions", + "--proposal", + str(questions), + "--project", + project_id, + "--url", + args.url, + "--limit", + str(args.limit), + "--weak-rank-threshold", + str(args.cuebridge_weak_rank_threshold), + "--out", + str(scored), + "--progress-every", + str(args.cuebridge_progress_every), + ] + if args.score_with_artifacts: + score_cmd.append("--with-artifacts") + append_cuebridge_recall_option_args(score_cmd, args) + run_pipeline_cmd(score_cmd, timeout=timeout) + else: + require_resume_file(scored, step=start_step) + + if cuebridge_should_run(start_step, "propose-fixes"): + fix_cmd = common_python + [ + "propose-fixes", + "--scored", + str(scored), + "--analysis", + str(analysis), + "--provider", + provider, + "--llama-n-predict", + str(args.llama_n_predict), + "--llama-temp", + str(args.llama_temp), + "--llama-top-p", + str(args.llama_top_p), + "--llama-seed", + str(args.llama_seed), + "--llama-ctx-size", + str(args.llama_ctx_size), + "--timeout-seconds", + str(args.llama_timeout_seconds), + "--raw-response-dir", + str(raw_fix_response_dir), + "--progress-every", + str(args.cuebridge_progress_every), + "--out", + str(targeted), + "--concurrency", + str(args.cuebridge_fix_concurrency), + "--batch-size", + str(args.cuebridge_fix_batch_size), + ] + if args.cuebridge_max_fix_cases is not None: + fix_cmd.extend(["--max-cases", str(args.cuebridge_max_fix_cases)]) + if args.cuebridge_case_offset: + fix_cmd.extend(["--case-offset", str(args.cuebridge_case_offset)]) + if args.include_rank_6_20_fixes or target_questions is not None: + fix_cmd.append("--include-rank-6-20") + if args.continue_on_model_error: + fix_cmd.append("--continue-on-error") + _append_provider_args(fix_cmd, args, provider) + run_pipeline_cmd(fix_cmd, timeout=timeout) + else: + require_resume_file(targeted, step=start_step) + + if cuebridge_should_run(start_step, "validate-proposals"): + validate_cmd = common_python + [ + "validate-proposals", + "--proposal", + str(targeted), + "--project", + project_id, + "--url", + args.url, + "--limit", + str(args.limit), + "--accept-rank-threshold", + str(args.cuebridge_accept_rank_threshold), + "--min-rank-improvement", + str(args.cuebridge_min_rank_improvement), + "--collateral-policy", + args.cuebridge_collateral_policy, + "--min-gap-confidence", + str(args.min_gap_confidence), + "--min-alias-confidence", + str(args.min_alias_confidence), + "--max-fanout", + str(args.max_fanout), + "--progress-every", + str(args.cuebridge_progress_every), + "--out", + str(validated), + ] + append_cuebridge_recall_option_args(validate_cmd, args) + run_pipeline_cmd(validate_cmd, timeout=timeout) + else: + require_resume_file(validated, step=start_step) + + if cuebridge_should_run(start_step, "compile"): + run_pipeline_cmd( + common_python + + [ + "compile", + "--project", + project_id, + "--analysis", + str(analysis), + "--proposal", + str(validated), + "--out", + str(artifact_dir), + "--min-gap-confidence", + str(args.min_gap_confidence), + "--min-alias-confidence", + str(args.min_alias_confidence), + "--max-fanout", + str(args.max_fanout), + ], + timeout=timeout, + ) + elif not artifact_dir.exists(): + raise FileNotFoundError(f"Cannot resume at {start_step}: artifact directory is missing: {artifact_dir}") + if cuebridge_should_run(start_step, "validate-artifact"): + run_pipeline_cmd( + common_python + ["validate", "--artifact", str(artifact_dir), "--out", str(validation)], + timeout=timeout, + ) + else: + require_resume_file(validation, step=start_step) + if cuebridge_should_run(start_step, "install"): + run_pipeline_cmd( + common_python + + [ + "install", + "--project", + project_id, + "--artifact", + str(artifact_dir), + "--replace", + "--url", + args.url, + ], + timeout=timeout, + ) + + artifact_files = [] + for path in sorted(artifact_dir.glob("*.json")): + artifact_files.append( + { + "path": str(path), + "sha256": sha256_file(path), + "size_bytes": path.stat().st_size, + } + ) + + return { + "analysis": str(analysis), + "questions": str(questions), + "scored_questions": str(scored), + "targeted_proposals": str(targeted), + "validated_proposals": str(validated), + "artifact_dir": str(artifact_dir), + "validation": str(validation), + "provider": provider, + "start_step": start_step, + "raw_response_dir": str(raw_response_dir), + "raw_fix_response_dir": str(raw_fix_response_dir), + "proposal_metrics": { + "questions": _proposal_metrics(questions), + "targeted": _proposal_metrics(targeted), + "validated": _proposal_metrics(validated), + }, + "artifact_files": artifact_files, + "targeting": targeted_metrics, + } + + +def _rank_value(value: Any) -> int: + try: + return int(value) + except (TypeError, ValueError): + return -1 + + +def _rank_improved(raw_rank: int, enhanced_rank: int) -> bool: + raw_effective = raw_rank if raw_rank > 0 else 10**9 + enhanced_effective = enhanced_rank if enhanced_rank > 0 else 10**9 + return enhanced_effective < raw_effective + + +def _rank_worsened(raw_rank: int, enhanced_rank: int) -> bool: + raw_effective = raw_rank if raw_rank > 0 else 10**9 + enhanced_effective = enhanced_rank if enhanced_rank > 0 else 10**9 + return enhanced_effective > raw_effective + + +def _normalize_recall_text(text: str) -> str: + text = text.replace("assistant: ", "").replace("user: ", "") + text = re.sub(r"\s+", " ", text) + return text.strip().lower() + + +def _expected_groups(record: dict[str, Any]) -> list[list[str]]: + groups = record.get("expected_context_groups") + if isinstance(groups, list): + normalized_groups = [] + for group in groups: + if isinstance(group, list): + values = [str(item) for item in group if item] + elif group: + values = [str(group)] + else: + values = [] + if values: + normalized_groups.append(values) + if normalized_groups: + return normalized_groups + + contexts = record.get("expected_contexts") + if isinstance(contexts, list): + return [[str(context)] for context in contexts if context] + return [] + + +def _matches_expected_group(content: str, group: list[str]) -> bool: + content_norm = _normalize_recall_text(content) + for expected in group: + expected_norm = _normalize_recall_text(expected) + if expected_norm and (expected_norm in content_norm or content_norm in expected_norm): + return True + return False + + +def _recall_metrics_from_contents( + expected_groups: list[list[str]], + recalled_contents: list[Any], + *, + ks: list[int], +) -> dict[str, float]: + contents = [str(item) for item in recalled_contents if item is not None] + expected_total = max(1, len(expected_groups)) + rel_array = [] + matched_by_rank: list[int | None] = [] + for content in contents: + matched_idx = None + for idx, group in enumerate(expected_groups): + if _matches_expected_group(content, group): + matched_idx = idx + break + rel_array.append(1 if matched_idx is not None else 0) + matched_by_rank.append(matched_idx) + + metrics: dict[str, float] = {} + for k in ks: + found = {idx for idx in matched_by_rank[:k] if idx is not None} + metrics[f"recall_frac_{k}"] = len(found) / expected_total + metrics[f"recall_all_{k}"] = 1.0 if len(found) == len(expected_groups) and expected_groups else 0.0 + dcg = sum(rel / math.log2(idx + 2) for idx, rel in enumerate(rel_array[:k])) + idcg = sum(1.0 / math.log2(idx + 2) for idx in range(min(k, len(expected_groups)))) + metrics[f"ndcg_{k}"] = dcg / idcg if idcg > 0 else 0.0 + return metrics + + +def _side_metric( + item: dict[str, Any], + *, + side: str, + metric: str, + k: int, + ks: list[int], +) -> float | None: + key = f"{metric}_{k}" + if side == "enhanced" and isinstance(item.get(key), (int, float)): + return float(item[key]) + if side == "raw": + raw_result = item.get("raw_result") + if isinstance(raw_result, dict) and isinstance(raw_result.get(key), (int, float)): + return float(raw_result[key]) + raw_metrics = item.get("raw_metrics") + if isinstance(raw_metrics, dict) and isinstance(raw_metrics.get(key), (int, float)): + return float(raw_metrics[key]) + else: + enhanced_metrics = item.get("enhanced_metrics") + if isinstance(enhanced_metrics, dict) and isinstance(enhanced_metrics.get(key), (int, float)): + return float(enhanced_metrics[key]) + + expected = _expected_groups(item) + if not expected: + return None + if side == "raw": + raw_result = item.get("raw_result") + if isinstance(raw_result, dict): + contents = raw_result.get("recalled_contents") + else: + contents = item.get("raw_recalled_contents") + else: + contents = item.get("recalled_contents") + if not isinstance(contents, list): + return None + return _recall_metrics_from_contents(expected, contents, ks=ks).get(key) + + +def _cuebridge_items(results: list[dict[str, Any]]) -> list[dict[str, Any]]: + items: list[dict[str, Any]] = [] + for record in results: + if not isinstance(record, dict): + continue + probing = record.get("probing_results") + if isinstance(probing, list): + for item in probing: + if isinstance(item, dict) and isinstance(item.get("raw_result"), dict): + items.append(item) + elif "raw_hit_rank" in record: + raw_result = { + "hit_rank": record.get("raw_hit_rank"), + "recalled_contents": record.get("raw_recalled_contents"), + } + item = { + **record, + "category": record.get("question_type") or record.get("category") or "unknown", + "raw_result": raw_result, + } + items.append(item) + return items + + +def _fmt_pct(value: float) -> str: + return f"{value * 100:.1f}%" + + +def _avg(values: list[float]) -> float: + return sum(values) / len(values) if values else 0.0 + + +def print_cuebridge_delta_summary(results: list[dict[str, Any]], *, limit: int = 20) -> None: + items = _cuebridge_items(results) + if not items: + return + + pairs = [ + (_rank_value(item.get("raw_result", {}).get("hit_rank")), _rank_value(item.get("hit_rank"))) + for item in items + ] + ks = sorted({1, 5, 10, 20, limit}) + metric_ks = [k for k in (5, 10, 20) if k <= max(ks)] + improved = sum(1 for raw, enh in pairs if _rank_improved(raw, enh)) + worsened = sum(1 for raw, enh in pairs if _rank_worsened(raw, enh)) + unchanged = len(pairs) - improved - worsened + + print("\n============== CUEBRIDGE DELTA ==============") + print(f"Compared questions: {len(items)}") + print("\n[ Hit@K ]") + for k in ks: + raw_hits = sum(1 for raw, _enh in pairs if 0 < raw <= k) + enhanced_hits = sum(1 for _raw, enh in pairs if 0 < enh <= k) + rescues = sum(1 for raw, enh in pairs if not (0 < raw <= k) and 0 < enh <= k) + regressions = sum(1 for raw, enh in pairs if 0 < raw <= k and not (0 < enh <= k)) + delta = enhanced_hits - raw_hits + print( + f"Hit@{k}: raw={raw_hits}/{len(items)} ({raw_hits / len(items) * 100:.1f}%) " + f"enhanced={enhanced_hits}/{len(items)} ({enhanced_hits / len(items) * 100:.1f}%) " + f"delta={delta:+d} rescues={rescues} regressions={regressions}" + ) + + print("\n[ Rank Movement ]") + print(f"Improved rank: {improved}") + print(f"Worsened rank: {worsened}") + print(f"Unchanged rank: {unchanged}") + + print("\n[ Quality Metrics ]") + for metric, label in ( + ("recall_all", "Recall_All"), + ("recall_frac", "Recall_Frac"), + ("ndcg", "NDCG"), + ): + for k in metric_ks: + raw_values = [ + value + for item in items + if (value := _side_metric(item, side="raw", metric=metric, k=k, ks=metric_ks)) is not None + ] + enhanced_values = [ + value + for item in items + if (value := _side_metric(item, side="enhanced", metric=metric, k=k, ks=metric_ks)) is not None + ] + if not raw_values or not enhanced_values: + continue + raw_avg = _avg(raw_values) + enhanced_avg = _avg(enhanced_values) + print(f"{label}@{k}: raw={_fmt_pct(raw_avg)} enhanced={_fmt_pct(enhanced_avg)} delta={(enhanced_avg - raw_avg) * 100:+.1f}pp") + + by_type: dict[str, list[dict[str, Any]]] = {} + for item in items: + q_type = str(item.get("category") or item.get("question_type") or "unknown") + by_type.setdefault(q_type, []).append(item) + if len(by_type) > 1: + print("\n[ By Question Type ]") + for q_type, typed_items in sorted(by_type.items()): + typed_pairs = [ + (_rank_value(item.get("raw_result", {}).get("hit_rank")), _rank_value(item.get("hit_rank"))) + for item in typed_items + ] + raw_hit5 = sum(1 for raw, _enh in typed_pairs if 0 < raw <= 5) + enhanced_hit5 = sum(1 for _raw, enh in typed_pairs if 0 < enh <= 5) + raw_hit20 = sum(1 for raw, _enh in typed_pairs if 0 < raw <= 20) + enhanced_hit20 = sum(1 for _raw, enh in typed_pairs if 0 < enh <= 20) + raw_ndcg10 = [ + value + for item in typed_items + if (value := _side_metric(item, side="raw", metric="ndcg", k=10, ks=metric_ks)) is not None + ] + enhanced_ndcg10 = [ + value + for item in typed_items + if (value := _side_metric(item, side="enhanced", metric="ndcg", k=10, ks=metric_ks)) is not None + ] + raw_frac10 = [ + value + for item in typed_items + if (value := _side_metric(item, side="raw", metric="recall_frac", k=10, ks=metric_ks)) is not None + ] + enhanced_frac10 = [ + value + for item in typed_items + if (value := _side_metric(item, side="enhanced", metric="recall_frac", k=10, ks=metric_ks)) is not None + ] + print(f"{q_type} (n={len(typed_items)}):") + print( + f" Hit@5 raw={raw_hit5}/{len(typed_items)} enhanced={enhanced_hit5}/{len(typed_items)} " + f"delta={enhanced_hit5 - raw_hit5:+d}" + ) + print( + f" Hit@20 raw={raw_hit20}/{len(typed_items)} enhanced={enhanced_hit20}/{len(typed_items)} " + f"delta={enhanced_hit20 - raw_hit20:+d}" + ) + if raw_ndcg10 and enhanced_ndcg10: + raw_avg = _avg(raw_ndcg10) + enhanced_avg = _avg(enhanced_ndcg10) + print(f" NDCG@10 raw={_fmt_pct(raw_avg)} enhanced={_fmt_pct(enhanced_avg)} delta={(enhanced_avg - raw_avg) * 100:+.1f}pp") + if raw_frac10 and enhanced_frac10: + raw_avg = _avg(raw_frac10) + enhanced_avg = _avg(enhanced_frac10) + print(f" Recall_Frac@10 raw={_fmt_pct(raw_avg)} enhanced={_fmt_pct(enhanced_avg)} delta={(enhanced_avg - raw_avg) * 100:+.1f}pp") diff --git a/evals/harnesses/report_timing.py b/evals/harnesses/report_timing.py new file mode 100644 index 0000000..5112073 --- /dev/null +++ b/evals/harnesses/report_timing.py @@ -0,0 +1,26 @@ +import argparse +import json +import math +from collections import defaultdict +from pathlib import Path + +parser = argparse.ArgumentParser() +parser.add_argument('--input', required=True) +args = parser.parse_args() +samples = defaultdict(list) + +def collect(value, prefix=''): + for key, item in value.items(): + name = f'{prefix}.{key}' if prefix else key + if isinstance(item, dict): + collect(item, name) + elif isinstance(item, (int, float)) and not isinstance(item, bool): + samples[name].append(item) + +for line in Path(args.input).read_text().splitlines(): + if line.strip(): + collect(json.loads(line)) +for name, values in sorted(samples.items()): + values.sort() + percentile = lambda fraction: values[max(0, math.ceil(len(values) * fraction) - 1)] + print(f'{name}: n={len(values)} mean={sum(values)/len(values):.3f} p50={percentile(.5):.3f} p95={percentile(.95):.3f}') diff --git a/evals/harnesses/test_beam_settled.py b/evals/harnesses/test_beam_settled.py new file mode 100644 index 0000000..75d4183 --- /dev/null +++ b/evals/harnesses/test_beam_settled.py @@ -0,0 +1,1767 @@ +import argparse +import ast +import hashlib +import json +import math +import os +import re +import shutil +import subprocess +import sys +import time +import urllib.error +import urllib.parse +import urllib.request +import warnings +from collections import defaultdict +from dataclasses import dataclass +from pathlib import Path + +from cuebridge_eval_utils import ( + CUEBRIDGE_ARTIFACT_STEPS, + add_cuebridge_compare_args, + build_cuebridge_artifacts, + cuebridge_compare_mode, + print_cuebridge_delta_summary, +) + +# Suppress NumPy/Pandas compatibility warnings and general python warnings +warnings.filterwarnings("ignore") +os.environ["PYTHONWARNINGS"] = "ignore" + +RESULTS_DIR = str(Path(__file__).resolve().parents[1] / "results") +EVIDENCE_MATCHER = "sentence_or_chunk_overlap_v1" +MIN_EVIDENCE_CHARS = 40 +MIN_EVIDENCE_TOKENS = 6 +try: + from cuebridge_sdk import CueBridgeClient +except Exception: + sdk_path = Path(__file__).resolve().parents[1] / "cuebridge" / "sdk" / "python" + if str(sdk_path) not in sys.path: + sys.path.insert(0, str(sdk_path)) + try: + from cuebridge_sdk import CueBridgeClient + except Exception: + CueBridgeClient = None + + +def clean_output(text: str) -> str: + ansi_escape = re.compile(r"\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])") + return ansi_escape.sub("", text) + + +def normalize_text(text: str) -> str: + text = text.replace("assistant: ", "").replace("user: ", "") + text = re.sub(r"\s+", " ", text) + return text.strip().lower() + + +def approx_token_count(text: str) -> int: + """Cheap model-agnostic estimate for the retrieved context footprint.""" + return len(re.findall(r"\w+|[^\w\s]", text, flags=re.UNICODE)) + + +def context_token_count(contents: list[str], k: int | None = None) -> int: + selected = contents if k is None else contents[:k] + return sum(approx_token_count(content) for content in selected) + + +def percentile(values: list[int], p: float) -> int: + if not values: + return 0 + sorted_values = sorted(values) + idx = math.ceil((p / 100.0) * len(sorted_values)) - 1 + idx = max(0, min(idx, len(sorted_values) - 1)) + return sorted_values[idx] + + +def extract_json_object(text: str) -> dict: + text = clean_output(text) + start = text.find("{") + end = text.rfind("}") + if start == -1 or end == -1 or end < start: + raise ValueError(f"No JSON object found in status output: {text!r}") + return json.loads(text[start : end + 1]) + + +def resolve_cuemap_command(cmd: list[str]) -> list[str]: + """Use the launcher-selected release binary for CLI fallbacks.""" + binary = os.environ.get("CUEMAP_RUST_BIN") + if binary and cmd and Path(cmd[0]).name == "cuemap": + return [binary, *cmd[1:]] + return cmd + + +def run_cmd(cmd: list[str], *, check: bool = False) -> subprocess.CompletedProcess: + resolved_cmd = resolve_cuemap_command(cmd) + result = subprocess.run(resolved_cmd, capture_output=True, text=True) + if check and result.returncode != 0: + raise RuntimeError( + f"Command failed ({result.returncode}): {' '.join(resolved_cmd)}\n" + f"STDOUT:\n{result.stdout}\nSTDERR:\n{result.stderr}" + ) + return result + + +def env_bool(name: str, default: bool = False) -> bool: + raw = os.environ.get(name) + if raw is None: + return default + return raw.strip().lower() in {"1", "true", "yes", "on"} + + +def make_cuebridge_client(args): + if not getattr(args, "cuebridge_observe", False): + return None + if CueBridgeClient is None: + print("WARNING: CueBridge observation disabled; could not import cuebridge_sdk.") + args.cuebridge_observe = False + return None + return CueBridgeClient( + project_id=args.cuebridge_observe_project or f"beam_{args.context}_eval", + endpoint=args.cuebridge_agent_url, + key=args.cuebridge_api_key, + batch_size=args.cuebridge_observe_batch_size, + flush_interval=args.cuebridge_observe_flush_interval, + ) + + +def post_json(url: str, endpoint: str, project_id: str, payload: dict, *, timeout: int = 30) -> dict: + last_error = None + body = json.dumps(payload).encode("utf-8") + for base_url in status_urls(url): + request = urllib.request.Request( + f"{base_url.rstrip('/')}{endpoint}", + data=body, + headers={ + "Content-Type": "application/json", + "X-Project-ID": project_id, + }, + method="POST", + ) + try: + with urllib.request.urlopen(request, timeout=timeout) as response: + return json.loads(response.read().decode("utf-8")) + except urllib.error.HTTPError as exc: + error_body = exc.read().decode("utf-8", errors="replace") + raise RuntimeError(f"POST {request.full_url} failed with HTTP {exc.code}: {error_body}") from exc + except urllib.error.URLError as exc: + last_error = f"POST {request.full_url} failed: {exc}" + raise RuntimeError(last_error or f"POST {url.rstrip()}{endpoint} failed") + + +def cuebridge_text_result_id(content: str) -> str: + digest = hashlib.sha256(content.encode("utf-8")).hexdigest()[:16] + return f"text_sha256:{digest}" + + +def cuebridge_recall_response(recalled_contents: list[str]) -> dict: + return {"results": [{"content": content} for content in recalled_contents]} + + +def cuebridge_eval_labels( + *, + recalled_contents: list[str], + expected_contexts: list[str], + hit_rank: int, + project_id: str, + q_type: str, + name: str, +) -> dict: + target_result_id = None + if hit_rank > 0 and hit_rank <= len(recalled_contents): + target_result_id = cuebridge_text_result_id(recalled_contents[hit_rank - 1]) + elif expected_contexts: + target_result_id = cuebridge_text_result_id(expected_contexts[0]) + return { + "target_result_id": target_result_id, + "top_result_id": cuebridge_text_result_id(recalled_contents[0]) if recalled_contents else None, + "source_eval": "beam", + "cuemap_project_id": project_id, + "question_category": q_type, + "recall_attempt_name": name, + } + + +def cuebridge_send_ingest(args, *, project_id: str, record_idx: int, turn_idx: int, content: str, metadata: dict) -> None: + if getattr(args, "cuebridge_client", None) is None or not getattr(args, "cuebridge_observe_ingest", True): + return + args.cuebridge_client.send_ingest( + { + "id": cuebridge_text_result_id(content), + "content": content, + "metadata": metadata, + }, + source_eval="beam", + cuemap_project_id=project_id, + record_idx=record_idx, + turn_idx=turn_idx, + ) + + +def cue_value(value) -> str: + normalized = re.sub(r"[^a-zA-Z0-9]+", "_", str(value).strip().lower()).strip("_") + return normalized or "unknown" + + +def status_urls(url: str) -> list[str]: + parsed = urllib.parse.urlparse(url) + urls = [url.rstrip("/")] + if parsed.hostname == "localhost": + port = f":{parsed.port}" if parsed.port else "" + replacement = urllib.parse.urlunparse(( + parsed.scheme, + f"127.0.0.1{port}", + parsed.path.rstrip("/"), + "", + "", + "", + )) + urls.append(replacement.rstrip("/")) + return list(dict.fromkeys(urls)) + + +def job_status_via_http(project_id: str, url: str) -> dict: + last_error = None + for base_url in status_urls(url): + endpoint = f"{base_url}/jobs/status" + request = urllib.request.Request(endpoint, headers={"X-Project-ID": project_id}) + try: + with urllib.request.urlopen(request, timeout=10) as response: + return json.loads(response.read().decode("utf-8")) + except urllib.error.HTTPError as exc: + body = exc.read().decode("utf-8", errors="replace") + raise RuntimeError(f"GET {endpoint} failed with HTTP {exc.code}: {body}") from exc + except urllib.error.URLError as exc: + last_error = f"GET {endpoint} failed: {exc}" + raise RuntimeError(last_error or f"GET {url.rstrip('/')}/jobs/status failed") + + +def job_status_via_cli(project_id: str, url: str) -> dict: + commands = [ + ["cuemap", "status", "--jobs", "-p", project_id, "--url", url, "--json"], + ["cuemap", "status", "--jobs", "-p", project_id, "--url", url], + ] + errors = [] + for cmd in commands: + res = run_cmd(cmd) + if res.returncode != 0: + errors.append(f"{' '.join(cmd)} exited {res.returncode}: {res.stderr.strip()}") + continue + try: + return extract_json_object(res.stdout) + except ValueError as exc: + errors.append(str(exc)) + raise RuntimeError("; ".join(errors)) + + +def job_status(project_id: str, url: str) -> dict: + try: + return job_status_via_http(project_id, url) + except RuntimeError as http_error: + try: + return job_status_via_cli(project_id, url) + except RuntimeError as cli_error: + raise RuntimeError(f"{http_error}; CLI fallback failed: {cli_error}") from cli_error + + +def intent_jobs_done(status: dict) -> bool: + if status.get("intent_ready") is not True: + return False + memory_total = int(status.get("intent_memory_total", 0)) + annotated = int(status.get("intent_annotated", 0)) + missing = int(status.get("intent_missing", 0)) + intent_total = int(status.get("intent_total", 0)) + intent_completed = int(status.get("intent_completed", 0)) + intent_failed = int(status.get("intent_failed", 0)) + return ( + missing == 0 + and annotated >= memory_total + and intent_failed == 0 + and (intent_total == 0 or intent_completed >= intent_total) + ) + + +def jobs_done(status: dict) -> bool: + pairs = [ + ("writes_completed", "writes_total"), + ] + return all( + int(status.get(done, 0)) >= int(status.get(total, 0)) for done, total in pairs + ) and intent_jobs_done(status) + + +def progress_counts(status: dict) -> str: + return ( + f"w {status.get('writes_completed', 0)}/{status.get('writes_total', 0)} " + f"j {status.get('intent_completed', 0)}/{status.get('intent_total', 0)} " + f"c {status.get('intent_annotated', 0)}/{status.get('intent_memory_total', 0)}" + ) + + +def wait_for_bg_jobs(project_id: str, url: str, timeout_seconds: int, poll_seconds: float) -> dict: + print("\nWaiting for background jobs to settle", end="", flush=True) + start = time.time() + last_status = {} + while time.time() - start < timeout_seconds: + try: + last_status = job_status(project_id, url) + except RuntimeError as exc: + if time.time() - start < min(timeout_seconds, 30): + print(f"\rWaiting for background jobs to settle status unavailable, retrying: {exc}", end="", flush=True) + time.sleep(poll_seconds) + continue + raise + counts = progress_counts(last_status) + if jobs_done(last_status): + print( + f"\r\033[KWaiting for background jobs to settle " + f"phase={last_status.get('phase', 'unknown')} {counts} Done!" + ) + return last_status + phase = last_status.get("phase", "unknown") + print(f"\r\033[KWaiting for background jobs to settle phase={phase} {counts}", end="", flush=True) + time.sleep(poll_seconds) + raise TimeoutError(f"Timed out waiting for background jobs on {project_id}: {last_status}") + + +def evidence_units(text: str) -> list[str]: + """Return meaningful sentence/line units for expanded-context matching.""" + return _evidence_units_from_text(text) + + +def _evidence_units_from_text(text: str) -> list[str]: + units = [] + seen = set() + for raw_unit in re.split(r"\r?\n+|(?<=[.!?])\s+", text): + unit = normalize_text(raw_unit).strip(" -*#\t") + token_count = len(re.findall(r"[a-z0-9]+", unit)) + if ( + len(unit) >= MIN_EVIDENCE_CHARS + and token_count >= MIN_EVIDENCE_TOKENS + and unit not in seen + ): + units.append(unit) + seen.add(unit) + return units + + +def evidence_tokens(text: str) -> set[str]: + return set(re.findall(r"[a-z0-9]+", normalize_text(text))) + + +@dataclass(frozen=True) +class EvidenceUnitProfile: + text: str + tokens: frozenset[str] + + +@dataclass(frozen=True) +class EvidenceProfile: + normalized: str + tokens: frozenset[str] + units: tuple[EvidenceUnitProfile, ...] + + +def _evidence_profile(text: str) -> EvidenceProfile: + normalized = normalize_text(text) + tokens = frozenset(re.findall(r"[a-z0-9]+", normalized)) + units = tuple( + EvidenceUnitProfile( + text=unit, + tokens=frozenset(re.findall(r"[a-z0-9]+", unit)), + ) + for unit in _evidence_units_from_text(text) + ) + return EvidenceProfile(normalized=normalized, tokens=tokens, units=units) + + +def _profiles_match(expected: EvidenceProfile, returned: EvidenceProfile) -> bool: + """Match whole memories and expanded neighboring evidence monotonically. + + A logical-block result may be one sentence while the BEAM gold context is + the complete source message. Conversely, expansion may concatenate several + neighboring chunks, making the returned text larger than the gold message. + Whole-text substring matching handles only one of those cases. Sentence/ + line-unit matching lets both representations receive credit without + accepting tiny generic fragments. + """ + expected_norm = expected.normalized + returned_norm = returned.normalized + if not expected_norm or not returned_norm: + return False + + if expected_norm in returned_norm: + return True + + returned_token_count = len(returned.tokens) + if ( + returned_norm in expected_norm + and len(returned_norm) >= MIN_EVIDENCE_CHARS + and returned_token_count >= MIN_EVIDENCE_TOKENS + ): + return True + + expected_units = expected.units + if not expected_units: + return False + + for unit in expected_units: + if unit.text in returned_norm: + return True + + # Handle small punctuation/whitespace differences at a sentence boundary. + # Compare against returned units using containment of the shorter unit. + returned_units = returned.units + for expected_unit in expected_units: + expected_unit_tokens = expected_unit.tokens + if len(expected_unit_tokens) < MIN_EVIDENCE_TOKENS: + continue + for returned_unit in returned_units: + returned_unit_tokens = returned_unit.tokens + if len(returned_unit_tokens) < MIN_EVIDENCE_TOKENS: + continue + smaller = min(len(expected_unit_tokens), len(returned_unit_tokens)) + overlap = len(expected_unit_tokens & returned_unit_tokens) / smaller + if overlap >= 0.82: + return True + + return False + + +def matches_expected(expected: str, returned: str) -> bool: + """Match one expected evidence against one returned result.""" + return _profiles_match(_evidence_profile(expected), _evidence_profile(returned)) + + +def build_evidence_match_matrix( + expected_contexts: list[str], recalled_contents: list[str] +) -> list[set[int]]: + """Compute expected-evidence matches once for every returned result. + + The benchmark derives several metrics from the same ranked results. Keeping + this matrix avoids repeatedly normalizing, tokenizing, and splitting the + same expanded result for Hit@K, Recall@K, and NDCG calculations. + """ + expected_profiles = [_evidence_profile(expected) for expected in expected_contexts] + returned_profiles = [] + profile_cache: dict[str, EvidenceProfile] = {} + for content in recalled_contents: + profile = profile_cache.get(content) + if profile is None: + profile = _evidence_profile(content) + profile_cache[content] = profile + returned_profiles.append(profile) + + return [ + { + expected_idx + for expected_idx, expected_profile in enumerate(expected_profiles) + if _profiles_match(expected_profile, returned_profile) + } + for returned_profile in returned_profiles + ] + + +def calc_match( + expected_contexts: list[str], + recalled_contents: list[str], + match_matrix: list[set[int]] | None = None, +) -> tuple[int, list[int]]: + if match_matrix is None: + match_matrix = build_evidence_match_matrix(expected_contexts, recalled_contents) + + hit_rank = -1 + rel_array = [0] * len(recalled_contents) + matched_expected = set() + + for rank, matched_at_rank in enumerate(match_matrix): + # A repeated chunk or neighboring result may match the same gold + # context again. Count each gold context only at its first rank so + # duplicate results cannot inflate NDCG above 1.0. + new_matches = matched_at_rank - matched_expected + if new_matches: + rel_array[rank] = 1 + matched_expected.update(new_matches) + if hit_rank == -1: + hit_rank = rank + 1 + + return hit_rank, rel_array + + +def calc_recall_for_contents( + expected_contexts: list[str], + recalled_contents: list[str], + k: int, + match_matrix: list[set[int]] | None = None, +) -> tuple[float, float]: + if match_matrix is None: + match_matrix = build_evidence_match_matrix(expected_contexts, recalled_contents) + found = set().union(*(matches for matches in match_matrix[:k])) if k else set() + total_expected = max(1, len(expected_contexts)) + frac = len(found) / total_expected + all_found = 1.0 if len(found) == len(expected_contexts) else 0.0 + return frac, all_found + + +def calc_ndcg_for_rel(rel_array: list[int], expected_count: int, k: int) -> float: + dcg = sum(rel / math.log2(idx + 2) for idx, rel in enumerate(rel_array[:k])) + idcg = sum(1.0 / math.log2(idx + 2) for idx in range(min(k, expected_count))) + return dcg / idcg if idcg > 0 else 0.0 + + +def flatten_source_chat_ids(value) -> list[int]: + ids = [] + if value is None: + return ids + if isinstance(value, dict): + for child in value.values(): + ids.extend(flatten_source_chat_ids(child)) + return ids + if isinstance(value, (list, tuple, set)): + for child in value: + ids.extend(flatten_source_chat_ids(child)) + return ids + if isinstance(value, int): + ids.append(value) + return ids + if isinstance(value, str): + clean = value.strip() + if re.fullmatch(r"\d+(?:\s*,\s*\d+)*", clean): + ids.extend(int(match) for match in re.findall(r"\d+", clean)) + return ids + return ids + + +def dedupe_preserve_order(values: list[str]) -> list[str]: + seen = set() + deduped = [] + for value in values: + if value not in seen: + seen.add(value) + deduped.append(value) + return deduped + + +def score_recall_attempt(attempt: dict, expected_count: int) -> tuple: + hit_rank = attempt["hit_rank"] + recalled_contents = attempt["recalled_contents"] + rel_array = attempt["rel_array"] + match_matrix = attempt.get("match_matrix") + if match_matrix is None: + match_matrix = build_evidence_match_matrix( + attempt["expected_contexts"], recalled_contents + ) + r5_frac, r5_all = calc_recall_for_contents( + attempt["expected_contexts"], recalled_contents, 5, match_matrix + ) + r10_frac, r10_all = calc_recall_for_contents( + attempt["expected_contexts"], recalled_contents, 10, match_matrix + ) + r20_frac, r20_all = calc_recall_for_contents( + attempt["expected_contexts"], recalled_contents, 20, match_matrix + ) + n5 = calc_ndcg_for_rel(rel_array, expected_count, 5) + n10 = calc_ndcg_for_rel(rel_array, expected_count, 10) + n20 = calc_ndcg_for_rel(rel_array, expected_count, 20) + + return ( + hit_rank > 0, + -(hit_rank if hit_rank > 0 else 1_000_000), + r5_all, + r5_frac, + n5, + r10_all, + r10_frac, + n10, + r20_all, + r20_frac, + n20, + ) + + +def default_output_path(context: str) -> str: + return f"{RESULTS_DIR}/beam_results_{context}.json" + + +RESUME_STEPS = ("ingest", "raw-recall", *CUEBRIDGE_ARTIFACT_STEPS) + + +def discover_resume_project_id(args: argparse.Namespace, record_idx: int) -> str: + run_root = Path(args.cuebridge_run_root).expanduser() + prefix = f"beam_{args.context}_{record_idx}_" + candidates = [path for path in run_root.glob(f"{prefix}*") if path.is_dir()] + if not candidates: + raise FileNotFoundError( + f"No CueBridge run directory found for record {record_idx} under {run_root}. " + "Pass --project-id explicitly or start from ingest." + ) + latest = max(candidates, key=lambda path: path.stat().st_mtime) + return latest.name[len(prefix):] + + +def cuebridge_record_run_dir(args: argparse.Namespace, record_idx: int, project_id: str) -> Path: + return Path(args.cuebridge_run_root).expanduser() / f"beam_{args.context}_{record_idx}_{project_id}" + + +def raw_baseline_path(run_dir: Path) -> Path: + return run_dir / "cuebridge_raw_baseline.json" + + +def save_raw_baseline(path: Path, *, record_idx: int, project_id: str, results: list[dict]) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + payload = { + "schema_version": 1, + "artifact_type": "beam_raw_recall_baseline", + "record_idx": record_idx, + "project_id": project_id, + "created_at": time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime()), + "probing_results": results, + } + path.write_text(json.dumps(payload, indent=2)) + + +def load_raw_baseline(path: Path, record_questions: list[dict]) -> list[dict]: + if not path.exists(): + raise FileNotFoundError( + f"Cannot resume past raw-recall: raw baseline checkpoint is missing: {path}. " + "Run from --start-step raw-recall to intentionally recompute it." + ) + payload = json.loads(path.read_text()) + results = payload.get("probing_results") + if not isinstance(results, list): + raise ValueError(f"Raw baseline checkpoint has no probing_results list: {path}") + if len(results) != len(record_questions): + raise ValueError( + f"Raw baseline checkpoint question count mismatch: {len(results)} saved, " + f"{len(record_questions)} expected: {path}" + ) + for idx, (saved, question) in enumerate(zip(results, record_questions), start=1): + if saved.get("question") != question.get("question"): + raise ValueError(f"Raw baseline checkpoint question mismatch at #{idx}: {path}") + return results + + +def save_results(output_path: str, results: list[dict]) -> None: + Path(output_path).parent.mkdir(parents=True, exist_ok=True) + with open(output_path, "w") as f: + json.dump(results, f, indent=2) + + +def sha256_file(path: Path) -> str: + digest = hashlib.sha256() + with open(path, "rb") as handle: + for chunk in iter(lambda: handle.read(1024 * 1024), b""): + digest.update(chunk) + return digest.hexdigest() + + +def sha256_directory(path: Path) -> tuple[str, int]: + digest = hashlib.sha256() + file_count = 0 + for child in sorted(p for p in path.rglob("*") if p.is_file()): + rel = child.relative_to(path).as_posix().encode("utf-8") + digest.update(rel) + digest.update(b"\0") + with open(child, "rb") as handle: + for chunk in iter(lambda: handle.read(1024 * 1024), b""): + digest.update(chunk) + digest.update(b"\0") + file_count += 1 + return digest.hexdigest(), file_count + + +def cuebridge_artifact_metadata(paths: list[str]) -> list[dict]: + artifacts = [] + for raw_path in paths: + path = Path(raw_path).expanduser() + entry = {"name": path.name, "path": str(path)} + if not path.exists(): + entry.update({"exists": False}) + elif path.is_dir(): + digest, file_count = sha256_directory(path) + entry.update({ + "exists": True, + "kind": "directory", + "sha256": digest, + "file_count": file_count, + }) + elif path.is_file(): + entry.update({ + "exists": True, + "kind": "file", + "sha256": sha256_file(path), + "file_count": 1, + }) + else: + entry.update({"exists": True, "kind": "other"}) + artifacts.append(entry) + return artifacts + + +def delete_project(project_id: str, url: str) -> None: + errors = [] + for base_url in status_urls(url): + endpoint = f"{base_url}/projects/{urllib.parse.quote(project_id, safe='')}" + request = urllib.request.Request(endpoint, method="DELETE") + try: + with urllib.request.urlopen(request, timeout=10) as response: + if 200 <= response.status < 300 or response.status == 404: + return + errors.append(f"DELETE {endpoint} returned HTTP {response.status}") + except urllib.error.HTTPError as exc: + if exc.code == 404: + return + body = exc.read().decode("utf-8", errors="replace") + errors.append(f"DELETE {endpoint} failed with HTTP {exc.code}: {body}") + except urllib.error.URLError as exc: + errors.append(f"DELETE {endpoint} failed: {exc}") + + raise RuntimeError("; ".join(errors) or f"DELETE project {project_id} failed") + + +def delete_project_files(project_id: str, snapshots_dir: str, contents_dir: str) -> None: + snapshots = Path(snapshots_dir) + if snapshots.exists(): + for suffix in (".bin", "_aliases.bin"): + path = snapshots / f"{project_id}{suffix}" + if path.exists(): + path.unlink() + + contents = Path(contents_dir) / project_id + if contents.exists(): + shutil.rmtree(contents) + + +def build_recall_payload( + args, + question: str, + query_time: str | None = None, + *, + cuebridge_artifacts_enabled: bool | None = None, +) -> dict: + use_cuebridge_artifacts = ( + args.enable_cuebridge_artifacts + if cuebridge_artifacts_enabled is None + else cuebridge_artifacts_enabled + ) + payload = { + "query_text": question, + "cues": [], + "semantic_mode": os.environ.get("CUEMAP_SEMANTIC_MODE", "hybrid"), + "limit": args.limit, + "auto_reinforce": False, + "depth": 1, + "disable_salience_bias": False, + "disable_alias_expansion": not args.enable_alias_expansion, + "disable_cuebridge_artifacts": not use_cuebridge_artifacts, + "parent_fusion": args.parent_fusion, + "parent_fusion_limit": args.parent_fusion_limit, + "parent_fusion_min_chunks": args.parent_fusion_min_chunks, + "ordered_reconstruction": args.ordered_reconstruction, + "ordered_reconstruction_limit": args.ordered_reconstruction_limit, + "ordered_session_scan_limit": args.ordered_session_scan_limit, + "ordered_max_sessions": args.ordered_max_sessions, + "evidence_coverage": args.evidence_coverage, + "evidence_coverage_limit": args.evidence_coverage_limit, + "evidence_coverage_session_scan_limit": args.evidence_coverage_session_scan_limit, + "evidence_coverage_max_sessions": args.evidence_coverage_max_sessions, + } + if args.expansion_depth is not None: + payload["expansion_depth"] = args.expansion_depth + if query_time: + payload["query_time"] = query_time + return payload + + +def run_recall_attempt( + args, + project_id: str, + q_type: str, + question: str, + query_time: str | None, + expected_contexts: list[str], + *, + name: str, + cuebridge_artifacts_enabled: bool | None = None, +) -> dict: + recall_started = time.perf_counter() + recall_response = post_json( + args.url, + "/recall", + project_id, + build_recall_payload( + args, + question, + query_time, + cuebridge_artifacts_enabled=cuebridge_artifacts_enabled, + ), + timeout=120, + ) + latency_ms = int((time.perf_counter() - recall_started) * 1000) + recalled_results = recall_response.get("results") + if not isinstance(recalled_results, list): + raise RuntimeError(f"POST /recall returned no results array: {recall_response!r}") + recalled_results = [result for result in recalled_results if isinstance(result, dict)] + recalled_contents = [str(result.get("content", "")) for result in recalled_results] + recalled_memory_ids = [result.get("memory_id") for result in recalled_results] + recalled_scores = [result.get("score") for result in recalled_results] + ctx_tokens_20 = context_token_count(recalled_contents, 20) + ctx_tokens_returned = context_token_count(recalled_contents) + match_matrix = build_evidence_match_matrix(expected_contexts, recalled_contents) + hit_rank, rel_array = calc_match(expected_contexts, recalled_contents, match_matrix) + if getattr(args, "cuebridge_client", None) is not None: + args.cuebridge_client.send_event( + {"query_text": question, "query_time": query_time, "limit": args.limit}, + cuebridge_recall_response(recalled_contents), + latency_ms=latency_ms, + **cuebridge_eval_labels( + recalled_contents=recalled_contents, + expected_contexts=expected_contexts, + hit_rank=hit_rank, + project_id=project_id, + q_type=q_type, + name=name, + ), + ) + return { + "name": name, + "hit_rank": hit_rank, + "rel_array": rel_array, + "recalled_contents": recalled_contents, + "ctx_tokens": ctx_tokens_20, + "ctx_tokens_returned": ctx_tokens_returned, + "recalled_memory_ids": recalled_memory_ids, + "recalled_scores": recalled_scores, + "expected_contexts": expected_contexts, + "match_matrix": match_matrix, + } + + +def recall_once( + args, + project_id: str, + q_type: str, + question: str, + query_time: str | None, + expected_contexts: list[str], + *, + name: str = "base", + cuebridge_artifacts_enabled: bool | None = None, +) -> tuple[dict, list[dict]]: + attempt = run_recall_attempt( + args, + project_id, + q_type, + question, + query_time, + expected_contexts, + name=name, + cuebridge_artifacts_enabled=cuebridge_artifacts_enabled, + ) + return attempt, [attempt] + + +def get_expected_contexts(q: dict, flat_chat: list) -> list[str]: + expected = [] + # Try looking up by source_chat_ids in flat_chat + source_ids = flatten_source_chat_ids(q.get("source_chat_ids", [])) + if source_ids: + source_set = set(source_ids) + for msg in flat_chat: + msg_global_id = msg.get("_beam_global_id") + try: + msg_id = int(msg["id"]) if msg.get("id") is not None else None + except (TypeError, ValueError): + msg_id = None + if ( + (msg_id is not None and msg_id in source_set) + or (msg_global_id is not None and msg_global_id in source_set) + ): + content = msg.get("content", "").strip() + if content: + expected.append(content) + + # Fallback to conversation_reference or conversation_references if expected is empty + refs = q.get("conversation_reference") or q.get("conversation_references") + if not expected and refs: + if isinstance(refs, list): + for r in refs: + if isinstance(r, str): + clean_r = re.sub(r"^(?:plan-\d+,\s*)?Turn\s+\d+:\s*", "", r, flags=re.IGNORECASE).strip() + if clean_r: + expected.append(clean_r) + elif isinstance(refs, str): + clean_ref = re.sub(r"^(?:plan-\d+,\s*)?Turn\s+\d+:\s*", "", refs, flags=re.IGNORECASE).strip() + if clean_ref: + expected.append(clean_ref) + + # Fallback to key_facts_tested or answer as final resorts if still empty + if not expected: + ans = q.get("answer") or q.get("ideal_response") + if ans: + if isinstance(ans, str): + expected.append(ans.strip()) + elif isinstance(ans, list): + expected.extend([x.strip() for x in ans if isinstance(x, str)]) + + return dedupe_preserve_order([x for x in expected if x]) + + +def score_beam_question( + args, + project_id: str, + flat_chat: list, + q_idx: int, + q: dict, + *, + phase_name: str, + cuebridge_artifacts_enabled: bool | None, +) -> dict | None: + question = q.get("question", "") + q_type = q.get("category", "Unknown") + if not question: + return None + + expected_context_lines = get_expected_contexts(q, flat_chat) + if not expected_context_lines: + print(f"WARNING: no expected contexts found for question '{question}', skipping scoring.") + return None + + best_recall, recall_attempts = recall_once( + args, + project_id, + q_type, + question, + q.get("time_anchor"), + expected_context_lines, + name=phase_name, + cuebridge_artifacts_enabled=cuebridge_artifacts_enabled, + ) + recalled_contents = best_recall["recalled_contents"] + hit_rank = best_recall["hit_rank"] + rel_array = best_recall["rel_array"] + match_matrix = best_recall["match_matrix"] + ctx_tokens = best_recall["ctx_tokens"] + ctx_tokens_returned = best_recall["ctx_tokens_returned"] + + r5_frac, r5_all = calc_recall_for_contents( + expected_context_lines, recalled_contents, 5, match_matrix + ) + r10_frac, r10_all = calc_recall_for_contents( + expected_context_lines, recalled_contents, 10, match_matrix + ) + r20_frac, r20_all = calc_recall_for_contents( + expected_context_lines, recalled_contents, 20, match_matrix + ) + r50_frac, r50_all = calc_recall_for_contents( + expected_context_lines, recalled_contents, 50, match_matrix + ) + r100_frac, r100_all = calc_recall_for_contents( + expected_context_lines, recalled_contents, 100, match_matrix + ) + n5 = calc_ndcg_for_rel(rel_array, len(expected_context_lines), 5) + n10 = calc_ndcg_for_rel(rel_array, len(expected_context_lines), 10) + n20 = calc_ndcg_for_rel(rel_array, len(expected_context_lines), 20) + n50 = calc_ndcg_for_rel(rel_array, len(expected_context_lines), 50) + n100 = calc_ndcg_for_rel(rel_array, len(expected_context_lines), 100) + + print( + f" [{q_idx + 1}] {phase_name} | Type: {q_type} | " + f"Hit Rank: {hit_rank if hit_rank > 0 else 'MISS'} | " + f"NDCG@10: {n10:.2f} | Recall_Frac@10: {r10_frac:.2f} | " + f"CtxTokens@20: {ctx_tokens}" + ) + + return { + "question": question, + "category": q_type, + "hit_rank": hit_rank, + "selected_recall_attempt": best_recall["name"], + "recall_attempts": [ + { + "name": attempt["name"], + "hit_rank": attempt["hit_rank"], + "hit_at_20": 0 < attempt["hit_rank"] <= 20, + "ctx_tokens": attempt["ctx_tokens"], + "ctx_tokens_returned": attempt["ctx_tokens_returned"], + } + for attempt in recall_attempts + ], + "expected_contexts": expected_context_lines, + "recalled_contents": recalled_contents, + "ctx_tokens": ctx_tokens, + "ctx_tokens_returned": ctx_tokens_returned, + "recalled_memory_ids": best_recall["recalled_memory_ids"], + "recalled_scores": best_recall["recalled_scores"], + "rel_array": rel_array, + "recall_frac_5": r5_frac, + "recall_frac_10": r10_frac, + "recall_frac_20": r20_frac, + "recall_frac_50": r50_frac, + "recall_frac_100": r100_frac, + "recall_all_5": r5_all, + "recall_all_10": r10_all, + "recall_all_20": r20_all, + "recall_all_50": r50_all, + "recall_all_100": r100_all, + "ndcg_5": n5, + "ndcg_10": n10, + "ndcg_20": n20, + "ndcg_50": n50, + "ndcg_100": n100, + } + + +def evaluate(): + parser = argparse.ArgumentParser( + description="Settled/background-aware CueMap BEAM Memory Benchmark harness." + ) + parser.add_argument("--context", choices=["128k", "500k", "1m", "10m"], default="128k", + help="Context/conversation length slice to evaluate.") + parser.add_argument("--url", default="http://127.0.0.1:8735") + parser.add_argument("--recall-only", action="store_true") + parser.add_argument("--no-wait-bg", action="store_true") + parser.add_argument("--timeout-seconds", type=int, default=1800) + parser.add_argument("--poll-seconds", type=float, default=1.0) + parser.add_argument("--limit", type=int, default=100) + parser.add_argument( + "--expansion-depth", + type=int, + default=None, + help=( + "Pass through cuemap recall --expansion-depth. A value of 4 includes " + "up to three neighboring memories before and after each hit." + ), + ) + parser.add_argument("--start-index", type=int, default=0) + parser.add_argument( + "--start-step", + choices=RESUME_STEPS, + default="ingest", + help=( + "Resume the first selected record from this step. Use ingest for a full run, " + "raw-recall to reuse an existing project but rerun raw recall, or a CueBridge " + "artifact step such as score-questions to reuse earlier artifact outputs." + ), + ) + parser.add_argument( + "--project-id", + default=None, + help=( + "Existing project id for the first resumed record. If omitted with --start-step " + "after ingest, the newest matching CueBridge run directory is used." + ), + ) + parser.add_argument("--max-records", type=int, default=None) + parser.add_argument( + "--ingest-long-form", + action="store_true", + help="Use /ingest/content for each message so long records are chunked before indexing.", + ) + parser.add_argument( + "--source-order-metadata", + action="store_true", + help=( + "Attach source_session_id/source_turn_index metadata to message-level ingestion " + "so recall expansion can retrieve neighboring full-message memories." + ), + ) + parser.add_argument( + "--long-form-segmenter", + choices=("sentence_window", "logical_block"), + default="logical_block", + help="Segmenter used with --ingest-long-form.", + ) + parser.add_argument("--segment-window-size", type=int, default=8) + parser.add_argument("--segment-overlap", type=int, default=0) + parser.add_argument("--segment-min-chunk-chars", type=int, default=120) + parser.add_argument("--segment-max-chunk-chars", type=int, default=4000) + parser.add_argument("--enable-alias-expansion", action="store_true") + parser.add_argument( + "--enable-cuebridge-artifacts", + action="store_true", + help="Allow installed CueBridge artifacts during recall. Disabled by default for core evals.", + ) + parser.add_argument("--no-auto-reinforce", action="store_true") + parser.add_argument("--parent-fusion", choices=["off", "auto", "force"], default="off") + parser.add_argument("--parent-fusion-limit", type=int, default=80) + parser.add_argument("--parent-fusion-min-chunks", type=int, default=2) + parser.add_argument("--ordered-reconstruction", choices=["off", "auto", "force"], default="off") + parser.add_argument("--ordered-reconstruction-limit", type=int, default=80) + parser.add_argument("--ordered-session-scan-limit", type=int, default=4096) + parser.add_argument("--ordered-max-sessions", type=int, default=3) + parser.add_argument("--evidence-coverage", choices=["off", "auto", "force"], default="off") + parser.add_argument("--evidence-coverage-limit", type=int, default=100) + parser.add_argument("--evidence-coverage-session-scan-limit", type=int, default=4096) + parser.add_argument("--evidence-coverage-max-sessions", type=int, default=3) + parser.add_argument( + "--cuebridge-observe", + action="store_true", + default=env_bool("CUEBRIDGE_OBSERVE", False), + help=( + "Observe recall attempts with the CueBridge Python SDK. Raw query text is sent " + "only to the local agent; returned/target IDs are content hashes." + ), + ) + parser.add_argument( + "--cuebridge-agent-url", + default=os.environ.get("CUEBRIDGE_AGENT_URL", "http://127.0.0.1:8099"), + help="Local CueBridge agent URL used with --cuebridge-observe.", + ) + parser.add_argument( + "--cuebridge-api-key", + default=os.environ.get("CUEBRIDGE_API_KEY"), + help="Optional CueBridge API key for cloud or authenticated endpoints.", + ) + parser.add_argument( + "--cuebridge-observe-project", + default=os.environ.get("CUEBRIDGE_OBSERVE_PROJECT"), + help=( + "Optional CueBridge project to aggregate all observed eval traffic under. " + "Defaults to beam__eval." + ), + ) + parser.add_argument( + "--cuebridge-observe-batch-size", + type=int, + default=int(os.environ.get("CUEBRIDGE_OBSERVE_BATCH_SIZE", "25")), + help="CueBridge SDK batch size for observed recall events.", + ) + parser.add_argument( + "--cuebridge-observe-flush-interval", + type=float, + default=float(os.environ.get("CUEBRIDGE_OBSERVE_FLUSH_INTERVAL", "2.0")), + help="CueBridge SDK background flush interval in seconds.", + ) + parser.add_argument( + "--no-cuebridge-observe-ingest", + dest="cuebridge_observe_ingest", + action="store_false", + default=env_bool("CUEBRIDGE_OBSERVE_INGEST", True), + help="Disable CueBridge ingest observations; recall observations remain enabled.", + ) + parser.add_argument( + "--delete-project-after-record", + action="store_true", + help="Delete each non-recall-only eval project from the running server after scoring it.", + ) + parser.add_argument( + "--delete-project-files-after-record", + action="store_true", + help="Also delete that eval project's snapshot files and disk-backed content directory after scoring it.", + ) + parser.add_argument("--snapshots-dir", default=str(Path.home() / ".cuemap" / "data" / "snapshots")) + parser.add_argument("--contents-dir", default=str(Path.home() / ".cuemap" / "data" / "contents")) + parser.add_argument( + "--cuebridge-artifact", + action="append", + default=[], + help="Active CueBridge artifact file or directory; path and sha256 are recorded in result metadata.", + ) + parser.add_argument("--output", default=None) + add_cuebridge_compare_args(parser) + args = parser.parse_args() + cuebridge_mode = cuebridge_compare_mode(args) + cuebridge_enabled = cuebridge_mode != "off" + if args.recall_only and args.start_step != "ingest": + raise ValueError("--start-step is for non-recall-only runs.") + if args.start_step in CUEBRIDGE_ARTIFACT_STEPS and not cuebridge_enabled: + raise ValueError(f"--start-step {args.start_step} requires a CueBridge compare mode.") + + output_path = args.output or default_output_path(args.context) + active_artifacts = cuebridge_artifact_metadata(args.cuebridge_artifact) + print(f"Context / Config size: {args.context}") + print("Server management: external (assumes running server on url)") + print(f"Output path: {output_path}") + if active_artifacts: + print(f"Active CueBridge artifacts: {len(active_artifacts)}") + if cuebridge_enabled: + print(f"CueBridge compare mode: {cuebridge_mode}") + if args.cuebridge_observe: + observe_target = args.cuebridge_observe_project or f"beam_{args.context}_eval" + ingest_mode = "on" if args.cuebridge_observe_ingest else "off" + print( + f"CueBridge observation: enabled | agent={args.cuebridge_agent_url} | " + f"project={observe_target} | ingest={ingest_mode}" + ) + args.cuebridge_client = make_cuebridge_client(args) + + from datasets import load_dataset + + # Load dataset using Hugging Face datasets library + print(f"Fetching dataset 'Mohammadta/BEAM' for config...") + if args.context == "128k": + ds = load_dataset("Mohammadta/BEAM") + records = ds["100K"] + elif args.context == "500k": + ds = load_dataset("Mohammadta/BEAM") + records = ds["500K"] + elif args.context == "1m": + ds = load_dataset("Mohammadta/BEAM") + records = ds["1M"] + elif args.context == "10m": + print(f"Fetching dataset 'Mohammadta/BEAM-10M'...") + ds = load_dataset("Mohammadta/BEAM-10M") + records = ds["10M"] + else: + raise ValueError(f"Unknown context value: {args.context}") + + end_index = len(records) if args.max_records is None else min(len(records), args.start_index + args.max_records) + records_to_test = list(enumerate(records))[args.start_index:end_index] + + project_mapping = {} + if args.recall_only: + if not os.path.exists(output_path): + raise FileNotFoundError(f"{output_path} not found; recall-only needs an existing output file") + with open(output_path, "r") as f: + old_results = json.load(f) + project_mapping = {r["record_idx"]: r["project_id"] for r in old_results} + + results = [] + hit_at_1 = hit_at_5 = hit_at_10 = hit_at_20 = hit_at_50 = hit_at_100 = 0 + sum_recall_frac_5 = sum_recall_frac_10 = sum_recall_frac_20 = sum_recall_frac_50 = sum_recall_frac_100 = 0.0 + sum_recall_all_5 = sum_recall_all_10 = sum_recall_all_20 = sum_recall_all_50 = sum_recall_all_100 = 0.0 + sum_ndcg_5 = sum_ndcg_10 = sum_ndcg_20 = sum_ndcg_50 = sum_ndcg_100 = 0.0 + total_questions = 0 + context_tokens_by_question = [] + stats_by_type = defaultdict(lambda: { + "total": 0, "hit1": 0, "hit5": 0, "hit10": 0, "hit20": 0, "hit50": 0, "hit100": 0, + "sum_recall_frac_5": 0.0, "sum_recall_frac_10": 0.0, "sum_recall_frac_20": 0.0, "sum_recall_frac_50": 0.0, "sum_recall_frac_100": 0.0, + "sum_recall_all_5": 0.0, "sum_recall_all_10": 0.0, "sum_recall_all_20": 0.0, "sum_recall_all_50": 0.0, "sum_recall_all_100": 0.0, + "sum_ndcg_5": 0.0, "sum_ndcg_10": 0.0, "sum_ndcg_20": 0.0, "sum_ndcg_50": 0.0, "sum_ndcg_100": 0.0, + "context_tokens": [], + "hit20_base": 0, "final_miss": 0, + }) + hit20_by_attempt = defaultdict(int) + final_misses = 0 + + for record_idx, record in records_to_test: + resume_first_record = ( + not args.recall_only + and args.start_step != "ingest" + and record_idx == args.start_index + ) + if args.recall_only: + project_id = project_mapping.get(record_idx) + if not project_id: + continue + elif resume_first_record: + if args.project_id: + project_id = args.project_id + else: + project_id = discover_resume_project_id(args, record_idx) + print(f"Auto-discovered resume project id for record {record_idx}: {project_id}") + else: + project_id = f"eval_beam_{args.context}_{record_idx}_{int(time.time())}" + + if args.recall_only: + mode = "RECALL-ONLY" + elif resume_first_record: + mode = f"RESUME:{args.start_step}" + else: + mode = "FULL" + print(f"\n--- Testing Record {record_idx + 1}/{len(records)} | Project: {project_id} | Mode: {mode} | Context: {args.context} ---") + + # Parse chat data recursively to be extremely robust. + # Preserve source-provided plan grouping when the dataset exposes it. + flat_chat = [] + if args.context == "10m" and "plans" in record: + plans = record.get("plans", []) + for plan_idx, plan in enumerate(plans): + plan_chat = plan.get("chat", []) + if isinstance(plan_chat, list): + for item in plan_chat: + if isinstance(item, list): + for sub_item in item: + if isinstance(sub_item, dict): + msg = dict(sub_item) + msg.setdefault("plan_idx", plan_idx) + msg["_beam_global_id"] = len(flat_chat) + flat_chat.append(msg) + elif isinstance(item, dict): + msg = dict(item) + msg.setdefault("plan_idx", plan_idx) + msg["_beam_global_id"] = len(flat_chat) + flat_chat.append(msg) + else: + chat = record.get("chat", []) + if isinstance(chat, list): + for item in chat: + if isinstance(item, list): + for sub_item in item: + if isinstance(sub_item, dict): + msg = dict(sub_item) + msg["_beam_global_id"] = len(flat_chat) + flat_chat.append(msg) + elif isinstance(item, dict): + msg = dict(item) + msg["_beam_global_id"] = len(flat_chat) + flat_chat.append(msg) + + settle_status = None + if resume_first_record: + print(f"Skipping ingestion for resume; using existing project {project_id}.") + if not args.recall_only and not resume_first_record: + total_messages = len(flat_chat) + print(f"Total messages to ingest for this record: {total_messages}") + ingested_count = 0 + + for msg in flat_chat: + role = msg.get("role", "") + content = msg.get("content", "") + text_to_add = f"{role}: {content}" + metadata = {"source_role": role} + time_anchor = msg.get("time_anchor") + if time_anchor: + metadata["source_date"] = time_anchor + if msg.get("plan_idx") is not None: + metadata["source_plan_idx"] = msg["plan_idx"] + if args.source_order_metadata: + metadata.update({ + "source_session_id": f"beam:{args.context}:record:{record_idx}", + "source_turn_index": ingested_count, + "source_chat_id": msg.get("id", ingested_count), + "source_beam_global_id": msg.get("_beam_global_id", ingested_count), + }) + + if args.ingest_long_form: + msg_id = msg.get("id", ingested_count) + source_key_id = msg.get("_beam_global_id", msg_id) + source_key = f"beam:{args.context}:record:{record_idx}:message:{source_key_id}" + structural_cues = ["source_type:chat_message"] + if role: + structural_cues.append(f"source_role:{cue_value(role)}") + if time_anchor: + structural_cues.append(f"source_date:{cue_value(time_anchor)}") + if msg.get("plan_idx") is not None: + structural_cues.append(f"source_plan:{cue_value(msg['plan_idx'])}") + + post_json( + args.url, + "/ingest/content", + project_id, + { + "content": text_to_add, + "filename": f"beam_record_{record_idx}_message_{msg_id}.txt", + "source_key": source_key, + "metadata": { + **metadata, + "source_session_id": f"beam:{args.context}:record:{record_idx}", + "source_turn_index": ingested_count, + "source_chat_id": msg_id, + "source_beam_global_id": source_key_id, + }, + "structural_cues": structural_cues, + "segmenter": args.long_form_segmenter, + "segment_window_size": args.segment_window_size, + "segment_overlap": args.segment_overlap, + "segment_min_chunk_chars": args.segment_min_chunk_chars, + "segment_max_chunk_chars": args.segment_max_chunk_chars, + }, + timeout=60, + ) + else: + run_cmd( + [ + "cuemap", + "add", + "-p", + project_id, + "--url", + args.url, + "--metadata", + json.dumps(metadata, separators=(",", ":")), + text_to_add, + ], + check=True, + ) + + cuebridge_send_ingest( + args, + project_id=project_id, + record_idx=record_idx, + turn_idx=ingested_count, + content=text_to_add, + metadata=metadata, + ) + ingested_count += 1 + if ingested_count % 50 == 0: + print(f"Ingested {ingested_count}/{total_messages}...", end="\r", flush=True) + + print(f"\nIngested {total_messages} messages.") + if not args.no_wait_bg: + settle_status = wait_for_bg_jobs(project_id, args.url, args.timeout_seconds, args.poll_seconds) + + # Parse probing questions + probing_questions_raw = record.get("probing_questions", "") + probing_questions = {} + if isinstance(probing_questions_raw, str): + try: + probing_questions = ast.literal_eval(probing_questions_raw) + except Exception as exc: + print(f"WARNING: failed to parse probing questions using ast: {exc}") + elif isinstance(probing_questions_raw, dict): + probing_questions = probing_questions_raw + + record_questions = [] + for category, q_list in probing_questions.items(): + if category == "abstention": + # We skip abstentions as they evaluate withholding answers, which does not map to a ground truth context + continue + for q_dict in q_list: + if isinstance(q_dict, dict): + q_dict["category"] = category + record_questions.append(q_dict) + + print(f"Running {len(record_questions)} probing questions...") + + baseline_results = [] + for q_idx, q in enumerate(record_questions): + scored = score_beam_question( + args, + project_id, + flat_chat, + q_idx, + q, + phase_name="raw" if cuebridge_enabled else "base", + cuebridge_artifacts_enabled=False if cuebridge_enabled else None, + ) + if scored is not None: + baseline_results.append(scored) + + artifact_metadata = None + record_results = baseline_results + if cuebridge_enabled: + target_texts = [] + target_questions = [] + if cuebridge_mode in {"oracle", "question_oracle"}: + for raw_result in baseline_results: + raw_rank = raw_result["hit_rank"] + if raw_rank <= 0 or raw_rank > args.cuebridge_target_rank_threshold: + if cuebridge_mode == "oracle": + target_texts.extend(raw_result["expected_contexts"]) + else: + target_questions.append( + { + "id": f"beam_{record_idx}_{len(target_questions) + 1:04d}", + "question": raw_result["question"], + "category": raw_result["category"], + "target_texts": raw_result["expected_contexts"], + } + ) + + if cuebridge_mode == "product" or target_texts or target_questions: + run_dir = Path(args.cuebridge_run_root).expanduser() / f"beam_{args.context}_{record_idx}_{project_id}" + if cuebridge_mode == "oracle": + print( + f"Building CueBridge artifacts for project {project_id} " + f"from {len(target_texts)} gold evidence targets..." + ) + elif cuebridge_mode == "question_oracle": + print( + f"Building CueBridge artifacts for project {project_id} " + f"from {len(target_questions)} actual eval questions..." + ) + else: + print(f"Building CueBridge artifacts for project {project_id} in product mode...") + artifact_start_step = ( + args.start_step + if resume_first_record and args.start_step in CUEBRIDGE_ARTIFACT_STEPS + else "analyze-project" + ) + artifact_metadata = build_cuebridge_artifacts( + args, + project_id, + run_dir, + target_texts=target_texts if cuebridge_mode == "oracle" else None, + target_questions=target_questions if cuebridge_mode == "question_oracle" else None, + start_step=artifact_start_step, + ) + if not artifact_metadata.get("skipped"): + enhanced_results = [] + for q_idx, q in enumerate(record_questions): + scored = score_beam_question( + args, + project_id, + flat_chat, + q_idx, + q, + phase_name="cuebridge", + cuebridge_artifacts_enabled=True, + ) + if scored is not None: + enhanced_results.append(scored) + record_results = [] + for raw_result, enhanced_result in zip(baseline_results, enhanced_results): + enhanced_result["raw_result"] = { + "hit_rank": raw_result["hit_rank"], + "recalled_contents": raw_result["recalled_contents"], + "ctx_tokens": raw_result["ctx_tokens"], + "ctx_tokens_returned": raw_result["ctx_tokens_returned"], + "recall_frac_20": raw_result["recall_frac_20"], + "recall_all_20": raw_result["recall_all_20"], + "ndcg_20": raw_result["ndcg_20"], + } + enhanced_result["cuebridge_delta"] = { + "raw_rank": raw_result["hit_rank"], + "enhanced_rank": enhanced_result["hit_rank"], + "rescued_at_20": not (0 < raw_result["hit_rank"] <= 20) + and 0 < enhanced_result["hit_rank"] <= 20, + "regressed_from_20": 0 < raw_result["hit_rank"] <= 20 + and not (0 < enhanced_result["hit_rank"] <= 20), + } + record_results.append(enhanced_result) + else: + artifact_metadata = { + "skipped": "all_raw_ranks_within_target_threshold", + "target_rank_threshold": args.cuebridge_target_rank_threshold, + } + record_results = [] + for raw_result in baseline_results: + raw_result["raw_result"] = { + "hit_rank": raw_result["hit_rank"], + "recalled_contents": raw_result["recalled_contents"], + "ctx_tokens": raw_result["ctx_tokens"], + "ctx_tokens_returned": raw_result["ctx_tokens_returned"], + "recall_frac_20": raw_result["recall_frac_20"], + "recall_all_20": raw_result["recall_all_20"], + "ndcg_20": raw_result["ndcg_20"], + } + raw_result["cuebridge_delta"] = { + "raw_rank": raw_result["hit_rank"], + "enhanced_rank": raw_result["hit_rank"], + "rescued_at_20": False, + "regressed_from_20": False, + } + record_results.append(raw_result) + + for scored_result in record_results: + q_type = scored_result["category"] + hit_rank = scored_result["hit_rank"] + recalled_contents = scored_result["recalled_contents"] + rel_array = scored_result["rel_array"] + r5_frac = scored_result["recall_frac_5"] + r10_frac = scored_result["recall_frac_10"] + r20_frac = scored_result["recall_frac_20"] + r50_frac = scored_result["recall_frac_50"] + r100_frac = scored_result["recall_frac_100"] + r5_all = scored_result["recall_all_5"] + r10_all = scored_result["recall_all_10"] + r20_all = scored_result["recall_all_20"] + r50_all = scored_result["recall_all_50"] + r100_all = scored_result["recall_all_100"] + n5 = scored_result["ndcg_5"] + n10 = scored_result["ndcg_10"] + n20 = scored_result["ndcg_20"] + n50 = scored_result["ndcg_50"] + n100 = scored_result["ndcg_100"] + ctx_tokens = scored_result["ctx_tokens"] + + if hit_rank == 1: + hit_at_1 += 1 + stats_by_type[q_type]["hit1"] += 1 + if 0 < hit_rank <= 5: + hit_at_5 += 1 + stats_by_type[q_type]["hit5"] += 1 + if 0 < hit_rank <= 10: + hit_at_10 += 1 + stats_by_type[q_type]["hit10"] += 1 + if 0 < hit_rank <= 20: + hit_at_20 += 1 + stats_by_type[q_type]["hit20"] += 1 + attempt_name = scored_result["selected_recall_attempt"] + hit20_by_attempt[attempt_name] += 1 + if attempt_name in {"base", "raw"}: + stats_by_type[q_type]["hit20_base"] += 1 + + if 0 < hit_rank <= 50: + hit_at_50 += 1 + stats_by_type[q_type]["hit50"] += 1 + if 0 < hit_rank <= 100: + hit_at_100 += 1 + stats_by_type[q_type]["hit100"] += 1 + + if hit_rank == -1 or hit_rank > 100: + final_misses += 1 + stats_by_type[q_type]["final_miss"] += 1 + + sum_recall_frac_5 += r5_frac + sum_recall_frac_10 += r10_frac + sum_recall_frac_20 += r20_frac + sum_recall_frac_50 += r50_frac + sum_recall_frac_100 += r100_frac + + sum_recall_all_5 += r5_all + sum_recall_all_10 += r10_all + sum_recall_all_20 += r20_all + sum_recall_all_50 += r50_all + sum_recall_all_100 += r100_all + + sum_ndcg_5 += n5 + sum_ndcg_10 += n10 + sum_ndcg_20 += n20 + sum_ndcg_50 += n50 + sum_ndcg_100 += n100 + + stats_by_type[q_type]["sum_recall_frac_5"] += r5_frac + stats_by_type[q_type]["sum_recall_frac_10"] += r10_frac + stats_by_type[q_type]["sum_recall_frac_20"] += r20_frac + stats_by_type[q_type]["sum_recall_frac_50"] += r50_frac + stats_by_type[q_type]["sum_recall_frac_100"] += r100_frac + + stats_by_type[q_type]["sum_recall_all_5"] += r5_all + stats_by_type[q_type]["sum_recall_all_10"] += r10_all + stats_by_type[q_type]["sum_recall_all_20"] += r20_all + stats_by_type[q_type]["sum_recall_all_50"] += r50_all + stats_by_type[q_type]["sum_recall_all_100"] += r100_all + + stats_by_type[q_type]["sum_ndcg_5"] += n5 + stats_by_type[q_type]["sum_ndcg_10"] += n10 + stats_by_type[q_type]["sum_ndcg_20"] += n20 + stats_by_type[q_type]["sum_ndcg_50"] += n50 + stats_by_type[q_type]["sum_ndcg_100"] += n100 + context_tokens_by_question.append(ctx_tokens) + stats_by_type[q_type]["context_tokens"].append(ctx_tokens) + stats_by_type[q_type]["total"] += 1 + total_questions += 1 + + results.append({ + "record_idx": record_idx, + "project_id": project_id, + "context": args.context, + "start_step": args.start_step if resume_first_record else "ingest", + "ingest_long_form": args.ingest_long_form, + "source_order_metadata": args.source_order_metadata, + "long_form_segmenter": args.long_form_segmenter, + "segment_window_size": args.segment_window_size, + "segment_overlap": args.segment_overlap, + "segment_min_chunk_chars": args.segment_min_chunk_chars, + "segment_max_chunk_chars": args.segment_max_chunk_chars, + "expansion_depth": args.expansion_depth, + "evidence_matcher": EVIDENCE_MATCHER, + "ordered_reconstruction": args.ordered_reconstruction, + "ordered_reconstruction_limit": args.ordered_reconstruction_limit, + "ordered_session_scan_limit": args.ordered_session_scan_limit, + "ordered_max_sessions": args.ordered_max_sessions, + "evidence_coverage": args.evidence_coverage, + "evidence_coverage_limit": args.evidence_coverage_limit, + "evidence_coverage_session_scan_limit": args.evidence_coverage_session_scan_limit, + "evidence_coverage_max_sessions": args.evidence_coverage_max_sessions, + "cuebridge_artifacts": active_artifacts, + "cuebridge_artifacts_enabled": args.enable_cuebridge_artifacts or cuebridge_enabled, + "cuebridge_compare": cuebridge_enabled, + "cuebridge_compare_mode": cuebridge_mode, + "cuebridge_built_artifacts": artifact_metadata, + "settle_status": settle_status, + "probing_results": record_results, + }) + save_results(output_path, results) + if getattr(args, "cuebridge_client", None) is not None: + try: + args.cuebridge_client.flush() + except Exception as exc: + print(f"WARNING: CueBridge observer flush failed: {exc}") + + if args.delete_project_after_record and not args.recall_only: + try: + delete_project(project_id, args.url) + if args.delete_project_files_after_record: + delete_project_files(project_id, args.snapshots_dir, args.contents_dir) + print(f"Deleted eval project: {project_id}") + except Exception as exc: + print(f"WARNING: Failed to delete eval project {project_id}: {exc}") + + print("\n============== SUMMARY ==============") + print(f"\nTotal Probing Questions Evaluated: {total_questions}") + if total_questions > 0: + print("\n[ Recall_Any (Hit@K) ] - At least one relevant fact retrieved") + print(f"Recall_Any@1: {hit_at_1}/{total_questions} ({(hit_at_1 / total_questions * 100):.1f}%)") + print(f"Recall_Any@5: {hit_at_5}/{total_questions} ({(hit_at_5 / total_questions * 100):.1f}%)") + print(f"Recall_Any@10: {hit_at_10}/{total_questions} ({(hit_at_10 / total_questions * 100):.1f}%)") + print(f"Recall_Any@20: {hit_at_20}/{total_questions} ({(hit_at_20 / total_questions * 100):.1f}%)") + print(f"Recall_Any@50: {hit_at_50}/{total_questions} ({(hit_at_50 / total_questions * 100):.1f}%)") + print(f"Recall_Any@100: {hit_at_100}/{total_questions} ({(hit_at_100 / total_questions * 100):.1f}%)") + + print("\n[ Recall_All ] - All relevant facts for the query retrieved") + print(f"Recall_All@5: {(sum_recall_all_5 / total_questions * 100):.1f}%") + print(f"Recall_All@10: {(sum_recall_all_10 / total_questions * 100):.1f}%") + print(f"Recall_All@20: {(sum_recall_all_20 / total_questions * 100):.1f}%") + print(f"Recall_All@50: {(sum_recall_all_50 / total_questions * 100):.1f}%") + print(f"Recall_All@100: {(sum_recall_all_100 / total_questions * 100):.1f}%") + + print("\n[ Recall_Frac ] - Average fraction of relevant facts retrieved") + print(f"Recall_Frac@5: {(sum_recall_frac_5 / total_questions * 100):.1f}%") + print(f"Recall_Frac@10: {(sum_recall_frac_10 / total_questions * 100):.1f}%") + print(f"Recall_Frac@20: {(sum_recall_frac_20 / total_questions * 100):.1f}%") + print(f"Recall_Frac@50: {(sum_recall_frac_50 / total_questions * 100):.1f}%") + print(f"Recall_Frac@100: {(sum_recall_frac_100 / total_questions * 100):.1f}%") + + print("\n[ NDCG ] - Relevance ranked scoring") + print(f"NDCG@5: {(sum_ndcg_5 / total_questions * 100):.1f}%") + print(f"NDCG@10: {(sum_ndcg_10 / total_questions * 100):.1f}%") + print(f"NDCG@20: {(sum_ndcg_20 / total_questions * 100):.1f}%") + print(f"NDCG@50: {(sum_ndcg_50 / total_questions * 100):.1f}%") + print(f"NDCG@100: {(sum_ndcg_100 / total_questions * 100):.1f}%") + + avg_ctx_tokens = sum(context_tokens_by_question) / total_questions + print("\n[ Retrieved Context Tokens @20 ] - Approx tokens from top-20 recalled memory text") + print(f"CtxTokens@20 Avg: {avg_ctx_tokens:.0f}") + print(f"CtxTokens@20 P50: {percentile(context_tokens_by_question, 50)}") + print(f"CtxTokens@20 P95: {percentile(context_tokens_by_question, 95)}") + print(f"CtxTokens@20 P99: {percentile(context_tokens_by_question, 99)}") + print(f"CtxTokens@20 Max: {max(context_tokens_by_question) if context_tokens_by_question else 0}") + + print("\n[ Recall Attempt Attribution @20 ]") + attempt_label = "Selected pass" if cuebridge_enabled else "Base pass" + selected_hits = hit_at_20 if cuebridge_enabled else hit20_by_attempt.get("base", 0) + print(f"{attempt_label} Hit@20: {selected_hits}/{total_questions}") + print(f"Final misses (limit {args.limit}): {final_misses}/{total_questions}") + + print("\n============== BY QUESTION TYPE ==============") + for q_type, s in stats_by_type.items(): + total = s["total"] + if total == 0: + continue + print(f"{q_type} (Total: {total}):") + print(f" Recall_Any@1: {s['hit1']}/{total} ({(s['hit1'] / total * 100):.1f}%)") + print(f" Recall_Any@5: {s['hit5']}/{total} ({(s['hit5'] / total * 100):.1f}%)") + print(f" Recall_Any@10: {s['hit10']}/{total} ({(s['hit10'] / total * 100):.1f}%)") + print(f" Recall_Any@50: {s['hit50']}/{total} ({(s['hit50'] / total * 100):.1f}%)") + print(f" Recall_Any@100: {s['hit100']}/{total} ({(s['hit100'] / total * 100):.1f}%)") + print(f" Recall_All@5: {(s['sum_recall_all_5'] / total * 100):.1f}%") + print(f" Recall_All@10: {(s['sum_recall_all_10'] / total * 100):.1f}%") + print(f" Recall_All@50: {(s['sum_recall_all_50'] / total * 100):.1f}%") + print(f" Recall_All@100: {(s['sum_recall_all_100'] / total * 100):.1f}%") + print(f" Recall_Frac@5: {(s['sum_recall_frac_5'] / total * 100):.1f}%") + print(f" Recall_Frac@10: {(s['sum_recall_frac_10'] / total * 100):.1f}%") + print(f" Recall_Frac@50: {(s['sum_recall_frac_50'] / total * 100):.1f}%") + print(f" Recall_Frac@100: {(s['sum_recall_frac_100'] / total * 100):.1f}%") + print(f" NDCG@5: {(s['sum_ndcg_5'] / total * 100):.1f}%") + print(f" NDCG@10: {(s['sum_ndcg_10'] / total * 100):.1f}%") + print(f" NDCG@50: {(s['sum_ndcg_50'] / total * 100):.1f}%") + print(f" NDCG@100: {(s['sum_ndcg_100'] / total * 100):.1f}%") + type_ctx_tokens = s["context_tokens"] + print( + " CtxTokens@20: " + f"avg={(sum(type_ctx_tokens) / total):.0f}, " + f"p95={percentile(type_ctx_tokens, 95)}" + ) + print( + " Hit@20 source: " + f"base={s['hit20_base']}, " + f"final_miss={s['final_miss']}" + ) + + print(f"\nSaved details to {output_path}") + if cuebridge_enabled: + print_cuebridge_delta_summary(results, limit=20) + if getattr(args, "cuebridge_client", None) is not None: + try: + args.cuebridge_client.shutdown() + except Exception as exc: + print(f"WARNING: CueBridge observer shutdown failed: {exc}") + + +if __name__ == "__main__": + evaluate() diff --git a/evals/harnesses/test_locomo_settled.py b/evals/harnesses/test_locomo_settled.py new file mode 100644 index 0000000..ab1f39c --- /dev/null +++ b/evals/harnesses/test_locomo_settled.py @@ -0,0 +1,1348 @@ +import argparse +import json +import math +import os +import re +import shutil +import subprocess +import time +import urllib.error +import urllib.parse +import urllib.request +import warnings +from collections import defaultdict +from pathlib import Path + +from cuebridge_eval_utils import ( + add_cuebridge_compare_args, + build_cuebridge_artifacts, + cuebridge_compare_mode, + print_cuebridge_delta_summary, +) + +# Suppress warnings +warnings.filterwarnings("ignore") +os.environ["PYTHONWARNINGS"] = "ignore" + +DATASET_PATH = str(Path(__file__).resolve().parents[1] / "data" / "locomo10.json") +RESULTS_DIR = str(Path(__file__).resolve().parents[1] / "results") + + +MONTHS = { + "january": 1, "february": 2, "march": 3, "april": 4, "may": 5, "june": 6, + "july": 7, "august": 8, "september": 9, "october": 10, "november": 11, "december": 12 +} + + +def parse_locomo_date(date_str: str) -> str | None: + if not date_str: + return None + match = re.search(r"on\s+(?P\d{1,2})\s+(?P[a-zA-Z]+),\s+(?P\d{4})", date_str) + if match: + day = int(match.group("day")) + month_name = match.group("month").lower() + year = int(match.group("year")) + month = MONTHS.get(month_name) + if month: + return f"{year:04d}-{month:02d}-{day:02d}" + return None + + +def clean_output(text: str) -> str: + ansi_escape = re.compile(r"\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])") + return ansi_escape.sub("", text) + + +def normalize_text(text: str) -> str: + text = text.replace("assistant: ", "").replace("user: ", "") + text = re.sub(r"\s+", " ", text) + return text.strip().lower() + + +def approx_token_count(text: str) -> int: + # Cheap model-agnostic estimate for retrieved context budget reporting. + return len(re.findall(r"\w+|[^\w\s]", text, flags=re.UNICODE)) + + +def context_token_count(contents: list[str], k: int | None = None) -> int: + selected = contents if k is None else contents[:k] + return sum(approx_token_count(content) for content in selected) + + +def percentile(values: list[int], p: float) -> int: + if not values: + return 0 + sorted_values = sorted(values) + idx = math.ceil((p / 100.0) * len(sorted_values)) - 1 + idx = max(0, min(idx, len(sorted_values) - 1)) + return sorted_values[idx] + + +def extract_json_object(text: str) -> dict: + text = clean_output(text) + start = text.find("{") + end = text.rfind("}") + if start == -1 or end == -1 or end < start: + raise ValueError(f"No JSON object found in status output: {text!r}") + return json.loads(text[start : end + 1]) + + +def resolve_cuemap_command(cmd: list[str]) -> list[str]: + """Use the launcher-selected release binary for every CLI call.""" + binary = os.environ.get("CUEMAP_RUST_BIN") + if binary and cmd and Path(cmd[0]).name == "cuemap": + return [binary, *cmd[1:]] + return cmd + + +def run_cmd(cmd: list[str], *, check: bool = False) -> subprocess.CompletedProcess: + resolved_cmd = resolve_cuemap_command(cmd) + result = subprocess.run(resolved_cmd, capture_output=True, text=True) + if check and result.returncode != 0: + raise RuntimeError( + f"Command failed ({result.returncode}): {' '.join(resolved_cmd)}\n" + f"STDOUT:\n{result.stdout}\nSTDERR:\n{result.stderr}" + ) + return result + + +def status_urls(url: str) -> list[str]: + parsed = urllib.parse.urlparse(url) + urls = [url.rstrip("/")] + if parsed.hostname == "localhost": + port = f":{parsed.port}" if parsed.port else "" + replacement = urllib.parse.urlunparse(( + parsed.scheme, + f"127.0.0.1{port}", + parsed.path.rstrip("/"), + "", + "", + "", + )) + urls.append(replacement.rstrip("/")) + return list(dict.fromkeys(urls)) + + +def job_status_via_http(project_id: str, url: str) -> dict: + last_error = None + for base_url in status_urls(url): + endpoint = f"{base_url}/jobs/status" + request = urllib.request.Request(endpoint, headers={"X-Project-ID": project_id}) + try: + with urllib.request.urlopen(request, timeout=10) as response: + return json.loads(response.read().decode("utf-8")) + except urllib.error.HTTPError as exc: + body = exc.read().decode("utf-8", errors="replace") + raise RuntimeError(f"GET {endpoint} failed with HTTP {exc.code}: {body}") from exc + except urllib.error.URLError as exc: + last_error = f"GET {endpoint} failed: {exc}" + raise RuntimeError(last_error or f"GET {url.rstrip('/')}/jobs/status failed") + + +def job_status_via_cli(project_id: str, url: str) -> dict: + commands = [ + ["cuemap", "status", "--jobs", "-p", project_id, "--url", url, "--json"], + ["cuemap", "status", "--jobs", "-p", project_id, "--url", url], + ] + errors = [] + for cmd in commands: + res = run_cmd(cmd) + if res.returncode != 0: + errors.append(f"{' '.join(cmd)} exited {res.returncode}: {res.stderr.strip()}") + continue + try: + return extract_json_object(res.stdout) + except ValueError as exc: + errors.append(str(exc)) + raise RuntimeError("; ".join(errors)) + + +def job_status(project_id: str, url: str) -> dict: + try: + return job_status_via_http(project_id, url) + except RuntimeError as http_error: + try: + return job_status_via_cli(project_id, url) + except RuntimeError as cli_error: + raise RuntimeError(f"{http_error}; CLI fallback failed: {cli_error}") from cli_error + + +def intent_jobs_done(status: dict) -> bool: + if status.get("intent_ready") is not True: + return False + memory_total = int(status.get("intent_memory_total", 0)) + annotated = int(status.get("intent_annotated", 0)) + missing = int(status.get("intent_missing", 0)) + intent_total = int(status.get("intent_total", 0)) + intent_completed = int(status.get("intent_completed", 0)) + intent_failed = int(status.get("intent_failed", 0)) + return ( + missing == 0 + and annotated >= memory_total + and intent_failed == 0 + and (intent_total == 0 or intent_completed >= intent_total) + ) + + +def jobs_done(status: dict) -> bool: + pairs = [("writes_completed", "writes_total")] + return all( + int(status.get(done, 0)) >= int(status.get(total, 0)) for done, total in pairs + ) and intent_jobs_done(status) + + +def progress_counts(status: dict) -> str: + return ( + f"w {status.get('writes_completed', 0)}/{status.get('writes_total', 0)} " + f"j {status.get('intent_completed', 0)}/{status.get('intent_total', 0)} " + f"c {status.get('intent_annotated', 0)}/{status.get('intent_memory_total', 0)}" + ) + + +def wait_for_bg_jobs(project_id: str, url: str, timeout_seconds: int, poll_seconds: float) -> dict: + print("\nWaiting for background jobs to settle", end="", flush=True) + start = time.time() + last_status = {} + while time.time() - start < timeout_seconds: + try: + last_status = job_status(project_id, url) + except RuntimeError as exc: + if time.time() - start < min(timeout_seconds, 30): + print(f"\rWaiting for background jobs to settle status unavailable, retrying: {exc}", end="", flush=True) + time.sleep(poll_seconds) + continue + raise + counts = progress_counts(last_status) + if jobs_done(last_status): + print( + f"\r\033[KWaiting for background jobs to settle " + f"phase={last_status.get('phase', 'unknown')} {counts} Done!" + ) + return last_status + phase = last_status.get("phase", "unknown") + print(f"\r\033[KWaiting for background jobs to settle phase={phase} {counts}", end="", flush=True) + time.sleep(poll_seconds) + raise TimeoutError(f"Timed out waiting for background jobs on {project_id}: {last_status}") + + +def parse_recall_contents(stdout: str) -> list[str]: + lines = clean_output(stdout).split("\n") + recalled_contents = [] + parsing_results = False + current_item_lines = [] + + for line in lines: + if line.startswith("--- RECALL RESULTS"): + parsing_results = True + continue + + if parsing_results: + if line.startswith("- ["): + if current_item_lines: + recalled_contents.append("\n".join(current_item_lines)) + parts = line.split("] ", 2) + current_item_lines = [parts[-1].strip()] if len(parts) >= 2 else [] + elif line.strip() and current_item_lines: + current_item_lines.append(line) + + if current_item_lines: + recalled_contents.append("\n".join(current_item_lines)) + return recalled_contents + + +def calc_match(expected_context_groups: list[list[str]], recalled_contents: list[str]) -> tuple[int, list[int]]: + hit_rank = -1 + rel_array = [0] * len(recalled_contents) + matched_groups = set() + + for rank, r_content in enumerate(recalled_contents): + rc_norm = normalize_text(r_content) + for group_idx, group in enumerate(expected_context_groups): + if group_idx in matched_groups: + continue + matched_group = False + for expected in group: + if " [Image caption: " in expected: + dialogue_part, caption_part = expected.split(" [Image caption: ", 1) + caption_part = caption_part.rstrip("]") + dialogue_norm = normalize_text(dialogue_part) + caption_norm = normalize_text(caption_part) + if (dialogue_norm in rc_norm or rc_norm in dialogue_norm) and (caption_norm in rc_norm): + matched_group = True + break + else: + expected_norm = normalize_text(expected) + if expected_norm in rc_norm or rc_norm in expected_norm: + matched_group = True + break + if matched_group: + matched_groups.add(group_idx) + rel_array[rank] = 1 + if hit_rank == -1: + hit_rank = rank + 1 + break + + return hit_rank, rel_array + + +def calc_recall_for_contents(expected_context_groups: list[list[str]], recalled_contents: list[str], k: int) -> tuple[float, float]: + found_groups = set() + for r_content in recalled_contents[:k]: + rc_norm = normalize_text(r_content) + for group_idx, group in enumerate(expected_context_groups): + if group_idx in found_groups: + continue + matched_group = False + for expected in group: + if " [Image caption: " in expected: + dialogue_part, caption_part = expected.split(" [Image caption: ", 1) + caption_part = caption_part.rstrip("]") + dialogue_norm = normalize_text(dialogue_part) + caption_norm = normalize_text(caption_part) + if (dialogue_norm in rc_norm or rc_norm in dialogue_norm) and (caption_norm in rc_norm): + matched_group = True + break + else: + expected_norm = normalize_text(expected) + if expected_norm in rc_norm or rc_norm in expected_norm: + matched_group = True + break + if matched_group: + found_groups.add(group_idx) + + total_expected = max(1, len(expected_context_groups)) + frac = len(found_groups) / total_expected + all_found = 1.0 if len(found_groups) == len(expected_context_groups) else 0.0 + return frac, all_found + + +def calc_ndcg_for_rel(rel_array: list[int], expected_count: int, k: int) -> float: + dcg = sum(rel / math.log2(idx + 2) for idx, rel in enumerate(rel_array[:k])) + idcg = sum(1.0 / math.log2(idx + 2) for idx in range(min(k, expected_count))) + return dcg / idcg if idcg > 0 else 0.0 + + +def score_recall_attempt(attempt: dict, expected_count: int) -> tuple: + hit_rank = attempt["hit_rank"] + recalled_contents = attempt["recalled_contents"] + rel_array = attempt["rel_array"] + r5_frac, r5_all = calc_recall_for_contents(attempt["expected_context_groups"], recalled_contents, 5) + r10_frac, r10_all = calc_recall_for_contents(attempt["expected_context_groups"], recalled_contents, 10) + r20_frac, r20_all = calc_recall_for_contents(attempt["expected_context_groups"], recalled_contents, 20) + n5 = calc_ndcg_for_rel(rel_array, expected_count, 5) + n10 = calc_ndcg_for_rel(rel_array, expected_count, 10) + n20 = calc_ndcg_for_rel(rel_array, expected_count, 20) + + return ( + hit_rank > 0, + -(hit_rank if hit_rank > 0 else 1_000_000), + r5_all, + r5_frac, + n5, + r10_all, + r10_frac, + n10, + r20_all, + r20_frac, + n20, + ) + + +def default_output_path() -> str: + return f"{RESULTS_DIR}/locomo_results.json" + + +def save_results(output_path: str, results: list[dict]) -> None: + Path(output_path).parent.mkdir(parents=True, exist_ok=True) + with open(output_path, "w") as f: + json.dump(results, f, indent=2) + + +def explain_matching(expected_context_groups: list[list[str]], recalled_contents: list[str]) -> list[dict]: + explanations = [] + for rank, r_content in enumerate(recalled_contents): + rc_norm = normalize_text(r_content) + matched = False + details = "" + matched_expected = None + + for exp_idx, group in enumerate(expected_context_groups): + matched_group = False + for expected in group: + if " [Image caption: " in expected: + dialogue_part, caption_part = expected.split(" [Image caption: ", 1) + caption_part = caption_part.rstrip("]") + dialogue_norm = normalize_text(dialogue_part) + caption_norm = normalize_text(caption_part) + + dia_in_rc = dialogue_norm in rc_norm + rc_in_dia = rc_norm in dialogue_norm + cap_in_rc = caption_norm in rc_norm + + if (dia_in_rc or rc_in_dia) and cap_in_rc: + matched_group = True + matched_expected = expected + details = ( + f"Multimodal match with expected group[{exp_idx}] item:\n" + f" - Dialogue part normalized: '{dialogue_norm}'\n" + f" - Caption part normalized: '{caption_norm}'\n" + f" - Dialogue match: {'dialogue_norm in rc_norm' if dia_in_rc else 'rc_norm in dialogue_norm'}\n" + f" - Caption match: caption_norm in rc_norm" + ) + break + else: + expected_norm = normalize_text(expected) + exp_in_rc = expected_norm in rc_norm + rc_in_exp = rc_norm in expected_norm + + if exp_in_rc or rc_in_exp: + matched_group = True + matched_expected = expected + details = ( + f"Text match with expected group[{exp_idx}] item:\n" + f" - Expected normalized: '{expected_norm}'\n" + f" - Match type: {'expected_norm in rc_norm' if exp_in_rc else 'rc_norm in expected_norm'}" + ) + break + if matched_group: + matched = True + break + + explanations.append({ + "rank": rank + 1, + "raw_content": r_content, + "norm_content": rc_norm, + "matched": matched, + "matched_expected": matched_expected, + "details": details + }) + return explanations + + +def generate_comparison_report(results: list[dict], report_path: str) -> None: + missed_questions = [] + total_questions = 0 + hit_at_1 = hit_at_5 = hit_at_10 = hit_at_20 = 0 + + for r in results: + record_idx = r["record_idx"] + sample_id = r["sample_id"] + for q_idx, q_res in enumerate(r["probing_results"]): + total_questions += 1 + hit_rank = q_res["hit_rank"] + if hit_rank == 1: + hit_at_1 += 1 + if 0 < hit_rank <= 5: + hit_at_5 += 1 + if 0 < hit_rank <= 10: + hit_at_10 += 1 + if 0 < hit_rank <= 20: + hit_at_20 += 1 + + if hit_rank == -1 or hit_rank > 20: + missed_questions.append({ + "record_idx": record_idx, + "sample_id": sample_id, + "q_idx": q_idx + 1, + "question": q_res["question"], + "category": q_res["category"] + }) + + md = [] + md.append("# CueMap LoCoMo Retrieval Comparison Report\n") + md.append("## Summary Table\n") + md.append("| Metric | Count / Total | Percentage |") + md.append("|---|---|---|") + if total_questions > 0: + md.append(f"| **Recall_Any@1** | {hit_at_1}/{total_questions} | {(hit_at_1 / total_questions * 100):.1f}% |") + md.append(f"| **Recall_Any@5** | {hit_at_5}/{total_questions} | {(hit_at_5 / total_questions * 100):.1f}% |") + md.append(f"| **Recall_Any@10** | {hit_at_10}/{total_questions} | {(hit_at_10 / total_questions * 100):.1f}% |") + md.append(f"| **Recall_Any@20** | {hit_at_20}/{total_questions} | {(hit_at_20 / total_questions * 100):.1f}% |") + else: + md.append("| No questions evaluated | - | - |") + md.append("\n---\n") + + md.append("## Missed Questions List\n") + if missed_questions: + md.append(f"CueMap completely missed **{len(missed_questions)}** out of {total_questions} questions (Hit@20 Miss).\n") + for m in missed_questions: + md.append(f"- **Record {m['record_idx'] + 1}** (ID: {m['sample_id']}), Q{m['q_idx']}: \"{m['question']}\" (Category: `{m['category']}`)") + else: + md.append("Incredible! No missed questions (100% Hit@20)!\n") + md.append("\n---\n") + + md.append("## Detailed Probing Matches & Explanations\n") + for r in results: + record_idx = r["record_idx"] + sample_id = r["sample_id"] + project_id = r["project_id"] + + md.append(f"### Record {record_idx + 1} (ID: {sample_id})") + md.append(f"CueMap Project: `{project_id}`\n") + + for q_idx, q_res in enumerate(r["probing_results"]): + question = q_res["question"] + category = q_res["category"] + hit_rank = q_res["hit_rank"] + selected_attempt = q_res.get("selected_recall_attempt", "unknown") + expected_context_groups = q_res["expected_context_groups"] + recalled_contents = q_res["recalled_contents"] + + status_str = f"HIT (Rank {hit_rank})" if hit_rank > 0 else "MISS" + status_emoji = "βœ…" if hit_rank > 0 else "❌" + + md.append(f"#### Q{q_idx + 1}: \"{question}\"") + md.append(f"- **Category**: `{category}`") + md.append(f"- **Status**: {status_emoji} **{status_str}**") + md.append(f"- **Selected Retrieval Mode**: `{selected_attempt}`\n") + + md.append("**Expected Context Groups (Alternatives):**") + for idx, group in enumerate(expected_context_groups): + md.append(f"{idx + 1}. **Group {idx + 1}**:") + for alt_idx, expected in enumerate(group): + if " [Image caption: " in expected: + dialogue_part, caption_part = expected.split(" [Image caption: ", 1) + caption_part = caption_part.rstrip("]") + dialogue_norm = normalize_text(dialogue_part) + caption_norm = normalize_text(caption_part) + md.append(f" - Alt {alt_idx + 1}: `{expected}`") + md.append(f" - *Dialogue Norm*: `'{dialogue_norm}'`") + md.append(f" - *Caption Norm*: `'{caption_norm}'`") + else: + expected_norm = normalize_text(expected) + md.append(f" - Alt {alt_idx + 1}: `{expected}`") + md.append(f" - *Text Norm*: `'{expected_norm}'`") + md.append("") + + md.append("**Recalled Contents & Comparison Details (Top 20):**") + explanations = explain_matching(expected_context_groups, recalled_contents) + for exp in explanations: + rank = exp["rank"] + raw = exp["raw_content"].replace("\n", " ") + norm = exp["norm_content"] + matched_emoji = "🎯" if exp["matched"] else "βšͺ" + + md.append(f"- **Rank {rank}** {matched_emoji}") + md.append(f" - **Raw**: `{raw}`") + md.append(f" - **Normalized**: `{norm}`") + if exp["matched"]: + md.append(" - **Match Explanation**:") + indented_details = "\n".join(" " + line for line in exp["details"].split("\n")) + md.append(indented_details) + md.append("\n---\n") + + with open(report_path, "w") as f: + f.write("\n".join(md)) + print(f"Generated comparison report at {report_path}") + + +def delete_project(project_id: str, url: str) -> None: + errors = [] + for base_url in status_urls(url): + endpoint = f"{base_url}/projects/{urllib.parse.quote(project_id, safe='')}" + request = urllib.request.Request(endpoint, method="DELETE") + try: + with urllib.request.urlopen(request, timeout=10) as response: + if 200 <= response.status < 300 or response.status == 404: + return + errors.append(f"DELETE {endpoint} returned HTTP {response.status}") + except urllib.error.HTTPError as exc: + if exc.code == 404: + return + body = exc.read().decode("utf-8", errors="replace") + errors.append(f"DELETE {endpoint} failed with HTTP {exc.code}: {body}") + except urllib.error.URLError as exc: + errors.append(f"DELETE {endpoint} failed: {exc}") + + raise RuntimeError("; ".join(errors) or f"DELETE project {project_id} failed") + + +def delete_project_files(project_id: str, snapshots_dir: str, contents_dir: str) -> None: + snapshots = Path(snapshots_dir) + if snapshots.exists(): + for suffix in (".bin", "_aliases.bin"): + path = snapshots / f"{project_id}{suffix}" + if path.exists(): + path.unlink() + + contents = Path(contents_dir) / project_id + if contents.exists(): + shutil.rmtree(contents) + + +def build_recall_cmd( + args, + project_id: str, + q_type: str, + question: str, + query_time: str | None = None, + *, + cuebridge_artifacts_enabled: bool | None = None, +) -> list[str]: + cmd = ["cuemap", "recall", "-p", project_id, "-l", str(args.limit), "--url", args.url] + cmd.extend(["--semantic-mode", os.environ.get("CUEMAP_SEMANTIC_MODE", "hybrid")]) + if args.depth is not None: + cmd.extend(["--depth", str(args.depth)]) + if args.expansion_depth is not None: + cmd.extend(["--expansion-depth", str(args.expansion_depth)]) + if args.ordered_reconstruction is not None: + cmd.extend(["--ordered-reconstruction", args.ordered_reconstruction]) + if args.evidence_coverage is not None: + cmd.extend(["--evidence-coverage", args.evidence_coverage]) + if args.enable_alias_expansion: + cmd.append("--enable-alias-expansion") + use_cuebridge_artifacts = ( + args.enable_cuebridge_artifacts + if cuebridge_artifacts_enabled is None + else cuebridge_artifacts_enabled + ) + if not use_cuebridge_artifacts: + cmd.append("--disable-cuebridge-artifacts") + cmd.append("--no-auto-reinforce") + if query_time: + cmd.extend(["--query-time", query_time]) + cmd.append(question) + return cmd + + +def run_recall_attempt( + args, + project_id: str, + q_type: str, + question: str, + query_time: str | None, + expected_context_groups: list[list[str]], + *, + name: str, + cuebridge_artifacts_enabled: bool | None = None, +) -> dict: + recall_res = run_cmd( + build_recall_cmd( + args, + project_id, + q_type, + question, + query_time, + cuebridge_artifacts_enabled=cuebridge_artifacts_enabled, + ), + check=True, + ) + recalled_contents = parse_recall_contents(recall_res.stdout) + hit_rank, rel_array = calc_match(expected_context_groups, recalled_contents) + return { + "name": name, + "hit_rank": hit_rank, + "rel_array": rel_array, + "recalled_contents": recalled_contents, + "expected_context_groups": expected_context_groups, + } + + +def recall_once( + args, + project_id: str, + q_type: str, + question: str, + query_time: str | None, + expected_context_groups: list[list[str]], + *, + name: str = "base", + cuebridge_artifacts_enabled: bool | None = None, +) -> tuple[dict, list[dict]]: + attempts = [ + run_recall_attempt( + args, + project_id, + q_type, + question, + query_time, + expected_context_groups, + name=name, + cuebridge_artifacts_enabled=cuebridge_artifacts_enabled, + ) + ] + + return attempts[0], attempts + + +def get_flat_chat(conversation: dict) -> list[dict]: + flat_chat = [] + # Identify all sessions + session_keys = [] + for k in conversation.keys(): + if k.startswith("session_") and not k.endswith("_date_time") and not k.endswith("_observation") and not k.endswith("_summary"): + try: + num = int(k.split("_")[1]) + session_keys.append((num, k)) + except ValueError: + pass + # Sort chronologically + session_keys.sort() + for num, k in session_keys: + session_turns = conversation.get(k, []) + session_date = conversation.get(f"{k}_date_time", "") + for session_turn_idx, turn in enumerate(session_turns): + if isinstance(turn, dict): + turn["session_num"] = num + turn["session_turn_index"] = session_turn_idx + turn["session_date"] = session_date + flat_chat.append(turn) + return flat_chat + + +def make_expected_string(turn: dict) -> str: + speaker = turn.get("speaker", "") + text = turn.get("text", "").strip() + text_to_add = f"{speaker}: {text}" if speaker and text else text + blip_caption = turn.get("blip_caption") + if blip_caption: + text_to_add += f" [Image caption: {blip_caption}]" + return text_to_add + + +def get_expected_context_groups(q: dict, flat_chat: list, window: int = 2) -> list[list[str]]: + raw_evidence_ids = q.get("evidence", []) + if isinstance(raw_evidence_ids, str): + raw_evidence_ids = [raw_evidence_ids] + + evidence_ids = [] + for x in raw_evidence_ids: + if isinstance(x, str): + parts = re.split(r"[;,\s]+", x) + evidence_ids.extend(parts) + else: + evidence_ids.append(x) + + # Map dia_id -> index in flat_chat + dia_to_idx = {} + for idx, turn in enumerate(flat_chat): + dia_id = turn.get("dia_id") + if dia_id is not None: + dia_to_idx[str(dia_id).strip()] = idx + + # Group evidence ID indices by their session + session_groups = defaultdict(list) + for ev_id in evidence_ids: + ev_id_clean = str(ev_id).strip() + if ev_id_clean in dia_to_idx: + idx = dia_to_idx[ev_id_clean] + target_turn = flat_chat[idx] + target_session = target_turn.get("session_num") + + # Sibling indices in the same session within +/- window + start_i = max(0, idx - window) + end_i = min(len(flat_chat) - 1, idx + window) + + turn_indices = set() + for i in range(start_i, end_i + 1): + if flat_chat[i].get("session_num") == target_session: + turn_indices.add(i) + + if turn_indices: + session_groups[target_session].append(turn_indices) + + groups = [] + + # For each session, merge overlapping index sets + for session_num, index_sets in session_groups.items(): + merged = [] + for s in index_sets: + # Find any existing sets in merged that overlap with s + overlapping_indices = [] + for idx, existing in enumerate(merged): + if not existing.isdisjoint(s): + overlapping_indices.append(idx) + + if not overlapping_indices: + merged.append(s) + else: + # Merge all overlapping sets and s into a single set + new_set = s.copy() + for idx in sorted(overlapping_indices, reverse=True): + new_set.update(merged.pop(idx)) + merged.append(new_set) + + # Convert merged index sets back to expected context strings + for index_set in merged: + sorted_indices = sorted(list(index_set)) + group_strings = [] + for i in sorted_indices: + s_str = make_expected_string(flat_chat[i]) + if s_str and s_str not in group_strings: + group_strings.append(s_str) + if group_strings: + groups.append(group_strings) + + # Fallback to answer if groups is empty + if not groups and q.get("answer"): + ans = q["answer"] + ans_strings = [] + if isinstance(ans, str): + ans_strings.append(ans.strip()) + elif isinstance(ans, list): + ans_strings.extend([str(x).strip() for x in ans]) + ans_strings = [x for x in ans_strings if x] + if ans_strings: + groups.append(ans_strings) + + return groups + + +def score_locomo_question( + args, + project_id: str, + flat_chat: list, + q_idx: int, + q: dict, + last_date: str | None, + *, + phase_name: str, + cuebridge_artifacts_enabled: bool | None, +) -> dict | None: + question = q.get("question", "") + category_mapping = { + 1: "single-hop", + 2: "multi-hop", + 3: "temporal-reasoning", + 4: "common-sense", + 5: "adversarial", + } + cat_val = q.get("category", "Unknown") + q_type = category_mapping.get(cat_val, str(cat_val)) + + if not question: + return None + + expected_context_groups = get_expected_context_groups(q, flat_chat, window=args.evidence_window) + if not expected_context_groups: + print(f"WARNING: no expected contexts found for question '{question}', skipping scoring.") + return None + + best_recall, recall_attempts = recall_once( + args, + project_id, + q_type, + question, + last_date, + expected_context_groups, + name=phase_name, + cuebridge_artifacts_enabled=cuebridge_artifacts_enabled, + ) + recalled_contents = best_recall["recalled_contents"] + hit_rank = best_recall["hit_rank"] + rel_array = best_recall["rel_array"] + ctx_tokens = context_token_count(recalled_contents) + ctx_chars = sum(len(content) for content in recalled_contents) + r5_frac, r5_all = calc_recall_for_contents(expected_context_groups, recalled_contents, 5) + r10_frac, r10_all = calc_recall_for_contents(expected_context_groups, recalled_contents, 10) + r20_frac, r20_all = calc_recall_for_contents(expected_context_groups, recalled_contents, 20) + n5 = calc_ndcg_for_rel(rel_array, len(expected_context_groups), 5) + n10 = calc_ndcg_for_rel(rel_array, len(expected_context_groups), 10) + n20 = calc_ndcg_for_rel(rel_array, len(expected_context_groups), 20) + + print( + f" [{q_idx + 1}] {phase_name} | Type: {q_type} | " + f"Hit Rank: {hit_rank if hit_rank > 0 else 'MISS'} | " + f"NDCG@10: {n10:.2f} | Recall_Frac@10: {r10_frac:.2f} | CtxTokens: {ctx_tokens}" + ) + use_cuebridge_artifacts = ( + args.enable_cuebridge_artifacts + if cuebridge_artifacts_enabled is None + else cuebridge_artifacts_enabled + ) + + return { + "question": question, + "category": q_type, + "hit_rank": hit_rank, + "selected_recall_attempt": best_recall["name"], + "cuebridge_artifacts_enabled": bool(use_cuebridge_artifacts), + "recall_attempts": [ + { + "name": attempt["name"], + "hit_rank": attempt["hit_rank"], + "hit_at_20": 0 < attempt["hit_rank"] <= 20, + } + for attempt in recall_attempts + ], + "expected_context_groups": expected_context_groups, + "recalled_contents": recalled_contents, + "rel_array": rel_array, + "ctx_tokens": ctx_tokens, + "ctx_chars": ctx_chars, + "ctx_items": len(recalled_contents), + "recall_frac_5": r5_frac, + "recall_frac_10": r10_frac, + "recall_frac_20": r20_frac, + "recall_all_5": r5_all, + "recall_all_10": r10_all, + "recall_all_20": r20_all, + "ndcg_5": n5, + "ndcg_10": n10, + "ndcg_20": n20, + } + + +def evaluate(): + parser = argparse.ArgumentParser( + description="Settled/background-aware CueMap LoCoMo Memory Benchmark harness." + ) + parser.add_argument("--dataset", default=DATASET_PATH) + parser.add_argument("--url", default="http://127.0.0.1:8735") + parser.add_argument("--recall-only", action="store_true") + parser.add_argument("--no-wait-bg", action="store_true") + parser.add_argument("--timeout-seconds", type=int, default=1800) + parser.add_argument("--poll-seconds", type=float, default=1.0) + parser.add_argument("--limit", type=int, default=20) + parser.add_argument( + "--depth", + type=int, + default=None, + help="Pass through cuemap recall --depth for multi-hop recall. Omitted by default to use the engine default.", + ) + parser.add_argument( + "--expansion-depth", + type=int, + default=None, + help="Pass through cuemap recall --expansion-depth to include neighboring chunk/context memories around each hit.", + ) + parser.add_argument( + "--ordered-reconstruction", + choices=["off", "auto", "force"], + default=None, + help="Pass through cuemap recall --ordered-reconstruction. Omitted by default to use the engine default.", + ) + parser.add_argument( + "--evidence-coverage", + choices=["off", "auto", "force"], + default=None, + help="Pass through cuemap recall --evidence-coverage. Omitted by default to use the engine default.", + ) + parser.add_argument("--start-index", type=int, default=0) + parser.add_argument("--max-records", type=int, default=None) + parser.add_argument("--enable-alias-expansion", action="store_true") + parser.add_argument( + "--enable-cuebridge-artifacts", + action="store_true", + help="Allow installed CueBridge artifacts during recall. Disabled by default for core evals.", + ) + parser.add_argument("--no-auto-reinforce", action="store_true") + parser.add_argument( + "--delete-project-after-record", + action="store_true", + help="Delete each non-recall-only eval project from the running server after scoring it.", + ) + parser.add_argument( + "--delete-project-files-after-record", + action="store_true", + help="Also delete that eval project's snapshot files and disk-backed content directory after scoring it.", + ) + parser.add_argument("--snapshots-dir", default=str(Path.home() / ".cuemap" / "data" / "snapshots")) + parser.add_argument("--contents-dir", default=str(Path.home() / ".cuemap" / "data" / "contents")) + parser.add_argument("--output", default=None) + parser.add_argument( + "--evidence-window", + type=int, + default=2, + help="Number of sibling turns in either direction in the same session to allow as alternative matches for a gold turn.", + ) + add_cuebridge_compare_args(parser) + args = parser.parse_args() + cuebridge_mode = cuebridge_compare_mode(args) + cuebridge_enabled = cuebridge_mode != "off" + + output_path = args.output or default_output_path() + print("Dataset: LoCoMo benchmark (locomo10.json)") + print("Server management: external (assumes running server on url)") + print(f"Output path: {output_path}") + if cuebridge_enabled: + print(f"CueBridge compare mode: {cuebridge_mode}") + + with open(args.dataset, "r") as f: + data = json.load(f) + + end_index = len(data) if args.max_records is None else min(len(data), args.start_index + args.max_records) + records_to_test = list(enumerate(data))[args.start_index:end_index] + + project_mapping = {} + if args.recall_only: + if not os.path.exists(output_path): + raise FileNotFoundError(f"{output_path} not found; recall-only needs an existing output file") + with open(output_path, "r") as f: + old_results = json.load(f) + project_mapping = {r["record_idx"]: r["project_id"] for r in old_results} + + results = [] + hit_at_1 = hit_at_5 = hit_at_10 = hit_at_20 = 0 + sum_recall_frac_5 = sum_recall_frac_10 = sum_recall_frac_20 = 0.0 + sum_recall_all_5 = sum_recall_all_10 = sum_recall_all_20 = 0.0 + sum_ndcg_5 = sum_ndcg_10 = sum_ndcg_20 = 0.0 + total_questions = 0 + context_tokens_by_question = [] + stats_by_type = defaultdict(lambda: { + "total": 0, "hit1": 0, "hit5": 0, "hit10": 0, "hit20": 0, + "sum_recall_frac_5": 0.0, "sum_recall_frac_10": 0.0, "sum_recall_frac_20": 0.0, + "sum_recall_all_5": 0.0, "sum_recall_all_10": 0.0, "sum_recall_all_20": 0.0, + "sum_ndcg_5": 0.0, "sum_ndcg_10": 0.0, "sum_ndcg_20": 0.0, + "context_tokens": [], + "hit20_base": 0, "final_miss": 0, + }) + final_misses = 0 + + for record_idx, record in records_to_test: + sample_id = record.get("sample_id", f"conv_{record_idx}") + if args.recall_only: + project_id = project_mapping.get(record_idx) + if not project_id: + continue + else: + project_id = f"eval_locomo_{sample_id}_{int(time.time())}" + + mode = "RECALL-ONLY" if args.recall_only else "FULL" + print(f"\n--- Testing Record {record_idx + 1}/{len(data)} | Project: {project_id} | Mode: {mode} | ID: {sample_id} ---") + + conversation = record.get("conversation", {}) + flat_chat = get_flat_chat(conversation) + + settle_status = None + if not args.recall_only: + total_messages = len(flat_chat) + print(f"Total messages to ingest for this record: {total_messages}") + ingested_count = 0 + + for turn_idx, turn in enumerate(flat_chat): + speaker = turn.get("speaker", "") + text = turn.get("text", "") + dia_id = turn.get("dia_id", "") + + role = speaker + # Format turn as text + text_to_add = f"{speaker}: {text}" + metadata = { + "source_role": role, + "source_session_id": f"{sample_id}:session_{turn.get('session_num')}", + "source_turn_index": turn.get("session_turn_index", turn_idx), + "source_chat_id": sample_id, + "dia_id": dia_id, + "session_num": turn.get("session_num") + } + + # Retrieve session timestamp if available + session_date = turn.get("session_date") + if session_date: + parsed_date = parse_locomo_date(session_date) + if parsed_date: + metadata["source_date"] = parsed_date + + # Append BLIP image caption if turn has a multimodal caption + blip_caption = turn.get("blip_caption") + if blip_caption: + text_to_add += f" [Image caption: {blip_caption}]" + metadata["has_image"] = True + + run_cmd( + [ + "cuemap", + "add", + "-p", + project_id, + "--url", + args.url, + "--metadata", + json.dumps(metadata, separators=(",", ":")), + text_to_add, + ], + check=True, + ) + + ingested_count += 1 + if ingested_count % 50 == 0: + print(f"Ingested {ingested_count}/{total_messages}...", end="\r", flush=True) + + print(f"\nIngested {total_messages} messages.") + if not args.no_wait_bg: + settle_status = wait_for_bg_jobs(project_id, args.url, args.timeout_seconds, args.poll_seconds) + + # Resolve reference query time from the last session date + last_date = None + for turn in reversed(flat_chat): + session_date = turn.get("session_date") + if session_date: + parsed = parse_locomo_date(session_date) + if parsed: + last_date = parsed + break + + # Process LoCoMo QA questions + qa_list = record.get("qa", []) + print(f"Running {len(qa_list)} probing questions...") + + baseline_results = [] + for q_idx, q in enumerate(qa_list): + scored = score_locomo_question( + args, + project_id, + flat_chat, + q_idx, + q, + last_date, + phase_name="raw" if cuebridge_enabled else "base", + cuebridge_artifacts_enabled=False if cuebridge_enabled else None, + ) + if scored is not None: + baseline_results.append(scored) + + artifact_metadata = None + record_results = baseline_results + if cuebridge_enabled: + target_texts = [] + target_questions = [] + if cuebridge_mode in {"oracle", "question_oracle"}: + for raw_result in baseline_results: + raw_rank = raw_result["hit_rank"] + if raw_rank <= 0 or raw_rank > args.cuebridge_target_rank_threshold: + groups = raw_result["expected_context_groups"] + if cuebridge_mode == "oracle": + for group in groups: + target_texts.extend(group) + else: + target_questions.append( + { + "id": f"locomo_{record_idx}_{len(target_questions) + 1:04d}", + "question": raw_result["question"], + "category": raw_result["category"], + "target_texts": [text for group in groups for text in group], + } + ) + + if cuebridge_mode == "product" or target_texts or target_questions: + run_dir = Path(args.cuebridge_run_root).expanduser() / f"locomo_{record_idx}_{project_id}" + if cuebridge_mode == "oracle": + print( + f"Building CueBridge artifacts for project {project_id} " + f"from {len(target_texts)} gold evidence targets..." + ) + elif cuebridge_mode == "question_oracle": + print( + f"Building CueBridge artifacts for project {project_id} " + f"from {len(target_questions)} actual eval questions..." + ) + else: + print(f"Building CueBridge artifacts for project {project_id} in product mode...") + artifact_metadata = build_cuebridge_artifacts( + args, + project_id, + run_dir, + target_texts=target_texts if cuebridge_mode == "oracle" else None, + target_questions=target_questions if cuebridge_mode == "question_oracle" else None, + ) + if not artifact_metadata.get("skipped"): + enhanced_results = [] + for q_idx, q in enumerate(qa_list): + scored = score_locomo_question( + args, + project_id, + flat_chat, + q_idx, + q, + last_date, + phase_name="cuebridge", + cuebridge_artifacts_enabled=True, + ) + if scored is not None: + enhanced_results.append(scored) + record_results = [] + for raw_result, enhanced_result in zip(baseline_results, enhanced_results): + enhanced_result["raw_result"] = { + "hit_rank": raw_result["hit_rank"], + "recalled_contents": raw_result["recalled_contents"], + "ctx_tokens": raw_result["ctx_tokens"], + "recall_frac_20": raw_result["recall_frac_20"], + "recall_all_20": raw_result["recall_all_20"], + "ndcg_20": raw_result["ndcg_20"], + } + enhanced_result["cuebridge_delta"] = { + "raw_rank": raw_result["hit_rank"], + "enhanced_rank": enhanced_result["hit_rank"], + "rescued_at_20": not (0 < raw_result["hit_rank"] <= 20) + and 0 < enhanced_result["hit_rank"] <= 20, + "regressed_from_20": 0 < raw_result["hit_rank"] <= 20 + and not (0 < enhanced_result["hit_rank"] <= 20), + } + record_results.append(enhanced_result) + else: + artifact_metadata = { + "skipped": "all_raw_ranks_within_target_threshold", + "target_rank_threshold": args.cuebridge_target_rank_threshold, + } + record_results = [] + for raw_result in baseline_results: + raw_result["raw_result"] = { + "hit_rank": raw_result["hit_rank"], + "recalled_contents": raw_result["recalled_contents"], + "ctx_tokens": raw_result["ctx_tokens"], + "recall_frac_20": raw_result["recall_frac_20"], + "recall_all_20": raw_result["recall_all_20"], + "ndcg_20": raw_result["ndcg_20"], + } + raw_result["cuebridge_delta"] = { + "raw_rank": raw_result["hit_rank"], + "enhanced_rank": raw_result["hit_rank"], + "rescued_at_20": False, + "regressed_from_20": False, + } + record_results.append(raw_result) + + for scored_result in record_results: + q_type = scored_result["category"] + hit_rank = scored_result["hit_rank"] + recalled_contents = scored_result["recalled_contents"] + ctx_tokens = scored_result["ctx_tokens"] + ctx_chars = scored_result["ctx_chars"] + r5_frac = scored_result["recall_frac_5"] + r10_frac = scored_result["recall_frac_10"] + r20_frac = scored_result["recall_frac_20"] + r5_all = scored_result["recall_all_5"] + r10_all = scored_result["recall_all_10"] + r20_all = scored_result["recall_all_20"] + n5 = scored_result["ndcg_5"] + n10 = scored_result["ndcg_10"] + n20 = scored_result["ndcg_20"] + + if hit_rank == 1: + hit_at_1 += 1 + stats_by_type[q_type]["hit1"] += 1 + if 0 < hit_rank <= 5: + hit_at_5 += 1 + stats_by_type[q_type]["hit5"] += 1 + if 0 < hit_rank <= 10: + hit_at_10 += 1 + stats_by_type[q_type]["hit10"] += 1 + if 0 < hit_rank <= 20: + hit_at_20 += 1 + stats_by_type[q_type]["hit20"] += 1 + stats_by_type[q_type]["hit20_base"] += 1 + else: + final_misses += 1 + stats_by_type[q_type]["final_miss"] += 1 + + sum_recall_frac_5 += r5_frac + sum_recall_frac_10 += r10_frac + sum_recall_frac_20 += r20_frac + sum_recall_all_5 += r5_all + sum_recall_all_10 += r10_all + sum_recall_all_20 += r20_all + sum_ndcg_5 += n5 + sum_ndcg_10 += n10 + sum_ndcg_20 += n20 + context_tokens_by_question.append(ctx_tokens) + + stats_by_type[q_type]["sum_recall_frac_5"] += r5_frac + stats_by_type[q_type]["sum_recall_frac_10"] += r10_frac + stats_by_type[q_type]["sum_recall_frac_20"] += r20_frac + stats_by_type[q_type]["sum_recall_all_5"] += r5_all + stats_by_type[q_type]["sum_recall_all_10"] += r10_all + stats_by_type[q_type]["sum_recall_all_20"] += r20_all + stats_by_type[q_type]["sum_ndcg_5"] += n5 + stats_by_type[q_type]["sum_ndcg_10"] += n10 + stats_by_type[q_type]["sum_ndcg_20"] += n20 + stats_by_type[q_type]["context_tokens"].append(ctx_tokens) + stats_by_type[q_type]["total"] += 1 + total_questions += 1 + + results.append({ + "record_idx": record_idx, + "project_id": project_id, + "sample_id": sample_id, + "settle_status": settle_status, + "cuebridge_compare": cuebridge_enabled, + "cuebridge_compare_mode": cuebridge_mode, + "cuebridge_artifacts": artifact_metadata, + "probing_results": record_results, + }) + save_results(output_path, results) + + if args.delete_project_after_record and not args.recall_only: + try: + delete_project(project_id, args.url) + if args.delete_project_files_after_record: + delete_project_files(project_id, args.snapshots_dir, args.contents_dir) + print(f"Deleted eval project: {project_id}") + except Exception as exc: + print(f"WARNING: Failed to delete eval project {project_id}: {exc}") + + print("\n============== SUMMARY ==============") + print(f"\nTotal Probing Questions Evaluated: {total_questions}") + if total_questions > 0: + print("\n[ Recall_Any (Hit@K) ] - At least one relevant fact retrieved") + print(f"Recall_Any@1: {hit_at_1}/{total_questions} ({(hit_at_1 / total_questions * 100):.1f}%)") + print(f"Recall_Any@5: {hit_at_5}/{total_questions} ({(hit_at_5 / total_questions * 100):.1f}%)") + print(f"Recall_Any@10: {hit_at_10}/{total_questions} ({(hit_at_10 / total_questions * 100):.1f}%)") + print(f"Recall_Any@20: {hit_at_20}/{total_questions} ({(hit_at_20 / total_questions * 100):.1f}%)") + + print("\n[ Recall_All ] - All relevant facts for the query retrieved") + print(f"Recall_All@5: {(sum_recall_all_5 / total_questions * 100):.1f}%") + print(f"Recall_All@10: {(sum_recall_all_10 / total_questions * 100):.1f}%") + print(f"Recall_All@20: {(sum_recall_all_20 / total_questions * 100):.1f}%") + + print("\n[ Recall_Frac ] - Average fraction of relevant facts retrieved") + print(f"Recall_Frac@5: {(sum_recall_frac_5 / total_questions * 100):.1f}%") + print(f"Recall_Frac@10: {(sum_recall_frac_10 / total_questions * 100):.1f}%") + print(f"Recall_Frac@20: {(sum_recall_frac_20 / total_questions * 100):.1f}%") + + print("\n[ NDCG ] - Relevance ranked scoring") + print(f"NDCG@5: {(sum_ndcg_5 / total_questions * 100):.1f}%") + print(f"NDCG@10: {(sum_ndcg_10 / total_questions * 100):.1f}%") + print(f"NDCG@20: {(sum_ndcg_20 / total_questions * 100):.1f}%") + + avg_ctx_tokens = sum(context_tokens_by_question) / total_questions + print("\n[ Retrieved Context Tokens ] - Approx tokens from recalled memory text") + print(f"CtxTokens Avg: {avg_ctx_tokens:.0f}") + print(f"CtxTokens P50: {percentile(context_tokens_by_question, 50)}") + print(f"CtxTokens P95: {percentile(context_tokens_by_question, 95)}") + print(f"CtxTokens P99: {percentile(context_tokens_by_question, 99)}") + print(f"CtxTokens Max: {max(context_tokens_by_question) if context_tokens_by_question else 0}") + + print("\n[ Recall Attempt Attribution @20 ]") + attempt_label = "Selected pass" if cuebridge_enabled else "Base pass" + print(f"{attempt_label} Hit@20: {hit_at_20}/{total_questions}") + print(f"Final misses: {final_misses}/{total_questions}") + + print("\n============== BY QUESTION TYPE ==============") + for q_type, s in stats_by_type.items(): + total = s["total"] + if total == 0: + continue + print(f"{q_type} (Total: {total}):") + print(f" Recall_Any@1: {s['hit1']}/{total} ({(s['hit1'] / total * 100):.1f}%)") + print(f" Recall_Any@5: {s['hit5']}/{total} ({(s['hit5'] / total * 100):.1f}%)") + print(f" Recall_Any@10: {s['hit10']}/{total} ({(s['hit10'] / total * 100):.1f}%)") + print(f" Recall_All@5: {(s['sum_recall_all_5'] / total * 100):.1f}%") + print(f" Recall_All@10: {(s['sum_recall_all_10'] / total * 100):.1f}%") + print(f" Recall_Frac@5: {(s['sum_recall_frac_5'] / total * 100):.1f}%") + print(f" Recall_Frac@10: {(s['sum_recall_frac_10'] / total * 100):.1f}%") + print(f" NDCG@5: {(s['sum_ndcg_5'] / total * 100):.1f}%") + print(f" NDCG@10: {(s['sum_ndcg_10'] / total * 100):.1f}%") + type_ctx_tokens = s["context_tokens"] + print( + " CtxTokens: " + f"avg={(sum(type_ctx_tokens) / total):.0f}, " + f"p95={percentile(type_ctx_tokens, 95)}" + ) + print( + " Hit@20 source: " + f"base={s['hit20_base']}, " + f"final_miss={s['final_miss']}" + ) + + print(f"\nSaved details to {output_path}") + if cuebridge_enabled: + print_cuebridge_delta_summary(results, limit=20) + + # Generate verbose comparison report + report_path = str(Path(output_path).with_name("locomo_comparison_report.md")) + generate_comparison_report(results, report_path) + + +if __name__ == "__main__": + evaluate() diff --git a/evals/harnesses/test_longmemeval_settled.py b/evals/harnesses/test_longmemeval_settled.py new file mode 100644 index 0000000..03206ed --- /dev/null +++ b/evals/harnesses/test_longmemeval_settled.py @@ -0,0 +1,899 @@ +import argparse +import json +import math +import os +import re +import shutil +import subprocess +import time +import urllib.error +import urllib.parse +import urllib.request +from collections import defaultdict +from pathlib import Path + +from cuebridge_eval_utils import ( + add_cuebridge_compare_args, + build_cuebridge_artifacts, + cuebridge_compare_mode, + print_cuebridge_delta_summary, +) + + +DATASET_PATH = str(Path(__file__).resolve().parents[1] / "data" / "longmemeval_s_cleaned.json") +RESULTS_DIR = str(Path(__file__).resolve().parents[1] / "results") + +VARIANTS = ("core",) + + +def clean_output(text: str) -> str: + ansi_escape = re.compile(r"\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])") + return ansi_escape.sub("", text) + + +def normalize_text(text: str) -> str: + text = text.replace("assistant: ", "").replace("user: ", "") + text = re.sub(r"\s+", " ", text) + return text.strip().lower() + + +def approx_token_count(text: str) -> int: + """Cheap model-agnostic estimate for the retrieved context footprint.""" + return len(re.findall(r"\w+|[^\w\s]", text, flags=re.UNICODE)) + + +def context_token_count(contents: list[str], k: int | None = None) -> int: + selected = contents if k is None else contents[:k] + return sum(approx_token_count(content) for content in selected) + + +def percentile(values: list[int], p: float) -> int: + if not values: + return 0 + sorted_values = sorted(values) + idx = math.ceil((p / 100.0) * len(sorted_values)) - 1 + idx = max(0, min(idx, len(sorted_values) - 1)) + return sorted_values[idx] + + +def extract_json_object(text: str) -> dict: + text = clean_output(text) + start = text.find("{") + end = text.rfind("}") + if start == -1 or end == -1 or end < start: + raise ValueError(f"No JSON object found in status output: {text!r}") + return json.loads(text[start : end + 1]) + + +def resolve_cuemap_command(cmd: list[str]) -> list[str]: + """Use the launcher-selected release binary for every CLI call.""" + binary = os.environ.get("CUEMAP_RUST_BIN") + if binary and cmd and Path(cmd[0]).name == "cuemap": + return [binary, *cmd[1:]] + return cmd + + +def run_cmd(cmd: list[str], *, check: bool = False) -> subprocess.CompletedProcess: + resolved_cmd = resolve_cuemap_command(cmd) + result = subprocess.run(resolved_cmd, capture_output=True, text=True) + if check and result.returncode != 0: + raise RuntimeError( + f"Command failed ({result.returncode}): {' '.join(resolved_cmd)}\n" + f"STDOUT:\n{result.stdout}\nSTDERR:\n{result.stderr}" + ) + return result + + +def status_urls(url: str) -> list[str]: + parsed = urllib.parse.urlparse(url) + urls = [url.rstrip("/")] + if parsed.hostname == "localhost": + port = f":{parsed.port}" if parsed.port else "" + replacement = urllib.parse.urlunparse(( + parsed.scheme, + f"127.0.0.1{port}", + parsed.path.rstrip("/"), + "", + "", + "", + )) + urls.append(replacement.rstrip("/")) + return list(dict.fromkeys(urls)) + + +def job_status_via_http(project_id: str, url: str) -> dict: + last_error = None + for base_url in status_urls(url): + endpoint = f"{base_url}/jobs/status" + request = urllib.request.Request(endpoint, headers={"X-Project-ID": project_id}) + try: + with urllib.request.urlopen(request, timeout=10) as response: + return json.loads(response.read().decode("utf-8")) + except urllib.error.HTTPError as exc: + body = exc.read().decode("utf-8", errors="replace") + raise RuntimeError(f"GET {endpoint} failed with HTTP {exc.code}: {body}") from exc + except urllib.error.URLError as exc: + last_error = f"GET {endpoint} failed: {exc}" + raise RuntimeError(last_error or f"GET {url.rstrip('/')}/jobs/status failed") + + +def job_status_via_cli(project_id: str, url: str) -> dict: + commands = [ + ["cuemap", "status", "--jobs", "-p", project_id, "--url", url, "--json"], + ["cuemap", "status", "--jobs", "-p", project_id, "--url", url], + ] + errors = [] + for cmd in commands: + res = run_cmd(cmd) + if res.returncode != 0: + errors.append(f"{' '.join(cmd)} exited {res.returncode}: {res.stderr.strip()}") + continue + try: + return extract_json_object(res.stdout) + except ValueError as exc: + errors.append(str(exc)) + raise RuntimeError("; ".join(errors)) + + +def job_status(project_id: str, url: str) -> dict: + try: + return job_status_via_http(project_id, url) + except RuntimeError as http_error: + try: + return job_status_via_cli(project_id, url) + except RuntimeError as cli_error: + raise RuntimeError(f"{http_error}; CLI fallback failed: {cli_error}") from cli_error + + +def intent_jobs_done(status: dict) -> bool: + if status.get("intent_ready") is not True: + return False + memory_total = int(status.get("intent_memory_total", 0)) + annotated = int(status.get("intent_annotated", 0)) + missing = int(status.get("intent_missing", 0)) + intent_total = int(status.get("intent_total", 0)) + intent_completed = int(status.get("intent_completed", 0)) + intent_failed = int(status.get("intent_failed", 0)) + return ( + missing == 0 + and annotated >= memory_total + and intent_failed == 0 + and (intent_total == 0 or intent_completed >= intent_total) + ) + + +def jobs_done(status: dict) -> bool: + pairs = [("writes_completed", "writes_total")] + return all( + int(status.get(done, 0)) >= int(status.get(total, 0)) for done, total in pairs + ) and intent_jobs_done(status) + + +def progress_counts(status: dict) -> str: + return ( + f"w {status.get('writes_completed', 0)}/{status.get('writes_total', 0)} " + f"j {status.get('intent_completed', 0)}/{status.get('intent_total', 0)} " + f"c {status.get('intent_annotated', 0)}/{status.get('intent_memory_total', 0)}" + ) + + +def wait_for_bg_jobs(project_id: str, url: str, timeout_seconds: int, poll_seconds: float) -> dict: + print("\nWaiting for background jobs to settle", end="", flush=True) + start = time.time() + last_status = {} + while time.time() - start < timeout_seconds: + try: + last_status = job_status(project_id, url) + except RuntimeError as exc: + if time.time() - start < min(timeout_seconds, 30): + print(f"\rWaiting for background jobs to settle status unavailable, retrying: {exc}", end="", flush=True) + time.sleep(poll_seconds) + continue + raise + counts = progress_counts(last_status) + if jobs_done(last_status): + print( + f"\r\033[KWaiting for background jobs to settle " + f"phase={last_status.get('phase', 'unknown')} {counts} Done!" + ) + return last_status + phase = last_status.get("phase", "unknown") + print(f"\r\033[KWaiting for background jobs to settle phase={phase} {counts}", end="", flush=True) + time.sleep(poll_seconds) + raise TimeoutError(f"Timed out waiting for background jobs on {project_id}: {last_status}") + + +def parse_recall_contents(stdout: str) -> list[str]: + lines = clean_output(stdout).split("\n") + recalled_contents = [] + parsing_results = False + current_item_lines = [] + + for line in lines: + if line.startswith("--- RECALL RESULTS"): + parsing_results = True + continue + + if parsing_results: + if line.startswith("- ["): + if current_item_lines: + recalled_contents.append("\n".join(current_item_lines)) + parts = line.split("] ", 2) + current_item_lines = [parts[-1].strip()] if len(parts) >= 2 else [] + elif line.strip() and current_item_lines: + current_item_lines.append(line) + + if current_item_lines: + recalled_contents.append("\n".join(current_item_lines)) + return recalled_contents + + +def calc_match(expected_contexts: list[str], recalled_contents: list[str]) -> tuple[int, list[int]]: + hit_rank = -1 + rel_array = [0] * len(recalled_contents) + + for rank, r_content in enumerate(recalled_contents): + rc_norm = normalize_text(r_content) + for expected in expected_contexts: + expected_norm = normalize_text(expected) + if expected_norm in rc_norm or rc_norm in expected_norm: + rel_array[rank] = 1 + if hit_rank == -1: + hit_rank = rank + 1 + break + + return hit_rank, rel_array + + +def calc_recall_for_contents(expected_contexts: list[str], recalled_contents: list[str], k: int) -> tuple[float, float]: + found = set() + for r_content in recalled_contents[:k]: + rc_norm = normalize_text(r_content) + for idx, expected in enumerate(expected_contexts): + expected_norm = normalize_text(expected) + if expected_norm in rc_norm or rc_norm in expected_norm: + found.add(idx) + total_expected = max(1, len(expected_contexts)) + frac = len(found) / total_expected + all_found = 1.0 if len(found) == len(expected_contexts) else 0.0 + return frac, all_found + + +def calc_ndcg_for_rel(rel_array: list[int], expected_count: int, k: int) -> float: + dcg = sum(rel / math.log2(idx + 2) for idx, rel in enumerate(rel_array[:k])) + idcg = sum(1.0 / math.log2(idx + 2) for idx in range(min(k, expected_count))) + return dcg / idcg if idcg > 0 else 0.0 + + +def score_recall_attempt(attempt: dict, expected_count: int) -> tuple: + hit_rank = attempt["hit_rank"] + recalled_contents = attempt["recalled_contents"] + rel_array = attempt["rel_array"] + r5_frac, r5_all = calc_recall_for_contents(attempt["expected_contexts"], recalled_contents, 5) + r10_frac, r10_all = calc_recall_for_contents(attempt["expected_contexts"], recalled_contents, 10) + r20_frac, r20_all = calc_recall_for_contents(attempt["expected_contexts"], recalled_contents, 20) + n5 = calc_ndcg_for_rel(rel_array, expected_count, 5) + n10 = calc_ndcg_for_rel(rel_array, expected_count, 10) + n20 = calc_ndcg_for_rel(rel_array, expected_count, 20) + + return ( + hit_rank > 0, + -(hit_rank if hit_rank > 0 else 1_000_000), + r5_all, + r5_frac, + n5, + r10_all, + r10_frac, + n10, + r20_all, + r20_frac, + n20, + ) + + +def default_output_path(variant: str) -> str: + return f"{RESULTS_DIR}/longmemeval_s_results_{variant.replace('-', '_')}.json" + + +def save_results(output_path: str, results: list[dict]) -> None: + Path(output_path).parent.mkdir(parents=True, exist_ok=True) + with open(output_path, "w") as f: + json.dump(results, f, indent=2) + + +def delete_project(project_id: str, url: str) -> None: + errors = [] + for base_url in status_urls(url): + endpoint = f"{base_url}/projects/{urllib.parse.quote(project_id, safe='')}" + request = urllib.request.Request(endpoint, method="DELETE") + try: + with urllib.request.urlopen(request, timeout=10) as response: + if 200 <= response.status < 300 or response.status == 404: + return + errors.append(f"DELETE {endpoint} returned HTTP {response.status}") + except urllib.error.HTTPError as exc: + if exc.code == 404: + return + body = exc.read().decode("utf-8", errors="replace") + errors.append(f"DELETE {endpoint} failed with HTTP {exc.code}: {body}") + except urllib.error.URLError as exc: + errors.append(f"DELETE {endpoint} failed: {exc}") + + raise RuntimeError("; ".join(errors) or f"DELETE project {project_id} failed") + + +def delete_project_files(project_id: str, snapshots_dir: str, contents_dir: str) -> None: + snapshots = Path(snapshots_dir) + if snapshots.exists(): + for suffix in (".bin", "_aliases.bin"): + path = snapshots / f"{project_id}{suffix}" + if path.exists(): + path.unlink() + + contents = Path(contents_dir) / project_id + if contents.exists(): + shutil.rmtree(contents) + + +def build_recall_cmd( + args, + project_id: str, + q_type: str, + question: str, + query_time: str | None = None, + *, + cuebridge_artifacts_enabled: bool | None = None, +) -> list[str]: + cmd = ["cuemap", "recall", "-p", project_id, "-l", str(args.limit), "--url", args.url] + cmd.extend(["--semantic-mode", os.environ.get("CUEMAP_SEMANTIC_MODE", "hybrid")]) + if args.enable_alias_expansion: + cmd.append("--enable-alias-expansion") + use_cuebridge_artifacts = ( + args.enable_cuebridge_artifacts + if cuebridge_artifacts_enabled is None + else cuebridge_artifacts_enabled + ) + if not use_cuebridge_artifacts: + cmd.append("--disable-cuebridge-artifacts") + cmd.append("--no-auto-reinforce") + if args.disable_default_cuepacks: + cmd.append("--disable-default-cuepacks") + if args.cuepacks: + cmd.extend(["--cuepacks", args.cuepacks]) + if query_time: + cmd.extend(["--query-time", query_time]) + cmd.append(question) + return cmd + + +def run_recall_attempt( + args, + project_id: str, + q_type: str, + question: str, + query_time: str | None, + expected_contexts: list[str], + *, + name: str, + cuebridge_artifacts_enabled: bool | None = None, +) -> dict: + recall_res = run_cmd( + build_recall_cmd( + args, + project_id, + q_type, + question, + query_time, + cuebridge_artifacts_enabled=cuebridge_artifacts_enabled, + ), + check=True, + ) + recalled_contents = parse_recall_contents(recall_res.stdout) + hit_rank, rel_array = calc_match(expected_contexts, recalled_contents) + return { + "name": name, + "hit_rank": hit_rank, + "rel_array": rel_array, + "recalled_contents": recalled_contents, + "ctx_tokens": context_token_count(recalled_contents), + "expected_contexts": expected_contexts, + } + + +def recall_once( + args, + project_id: str, + q_type: str, + question: str, + query_time: str | None, + expected_contexts: list[str], + *, + name: str = "base", + cuebridge_artifacts_enabled: bool | None = None, +) -> tuple[dict, list[dict]]: + attempts = [ + run_recall_attempt( + args, + project_id, + q_type, + question, + query_time, + expected_contexts, + name=name, + cuebridge_artifacts_enabled=cuebridge_artifacts_enabled, + ) + ] + + return attempts[0], attempts + + +def evaluate(): + parser = argparse.ArgumentParser( + description="Settled/background-aware CueMap LongMemEval harness. Assumes the CueMap server is already running." + ) + parser.add_argument("--variant", choices=VARIANTS, default="core") + parser.add_argument("--dataset", default=DATASET_PATH) + parser.add_argument("--output", default=None) + parser.add_argument("--url", default="http://127.0.0.1:8735") + parser.add_argument("--recall-only", action="store_true") + parser.add_argument("--no-wait-bg", action="store_true") + parser.add_argument("--timeout-seconds", type=int, default=1800) + parser.add_argument("--poll-seconds", type=float, default=1.0) + parser.add_argument("--limit", type=int, default=20) + parser.add_argument("--start-index", type=int, default=0) + parser.add_argument("--max-records", type=int, default=None) + parser.add_argument("--enable-alias-expansion", action="store_true") + parser.add_argument( + "--enable-cuebridge-artifacts", + action="store_true", + help="Allow installed CueBridge artifacts during recall. Disabled by default for core evals.", + ) + parser.add_argument("--no-auto-reinforce", action="store_true") + parser.add_argument( + "--cuepacks", + default=None, + help="Comma-separated CuePacks to pass to cuemap recall, e.g. default,memory-general or off.", + ) + parser.add_argument( + "--disable-default-cuepacks", + action="store_true", + help="Pass --disable-default-cuepacks to cuemap recall.", + ) + parser.add_argument( + "--delete-project-after-record", + action="store_true", + help="Delete each non-recall-only eval project from the running server after scoring it.", + ) + parser.add_argument( + "--delete-project-files-after-record", + action="store_true", + help="Also delete that eval project's snapshot files and disk-backed content directory after scoring it.", + ) + parser.add_argument("--snapshots-dir", default=str(Path.home() / ".cuemap" / "data" / "snapshots")) + parser.add_argument("--contents-dir", default=str(Path.home() / ".cuemap" / "data" / "contents")) + add_cuebridge_compare_args(parser) + args = parser.parse_args() + cuebridge_mode = cuebridge_compare_mode(args) + cuebridge_enabled = cuebridge_mode != "off" + + output_path = args.output or default_output_path(args.variant) + print(f"Variant: {args.variant}") + cuepack_label = "off" if args.disable_default_cuepacks else (args.cuepacks or "default") + print(f"CuePacks: {cuepack_label}") + print("Server management: external (this script does not start or stop CueMap)") + print(f"Dataset: {args.dataset}") + print(f"Output: {output_path}") + if cuebridge_enabled: + print(f"CueBridge compare mode: {cuebridge_mode}") + + with open(args.dataset, "r") as f: + data = json.load(f) + + end_index = len(data) if args.max_records is None else min(len(data), args.start_index + args.max_records) + records_to_test = list(enumerate(data))[args.start_index:end_index] + + project_mapping = {} + if args.recall_only: + if not os.path.exists(output_path): + raise FileNotFoundError(f"{output_path} not found; recall-only needs an existing output file") + with open(output_path, "r") as f: + old_results = json.load(f) + project_mapping = {r["record_idx"]: r["project_id"] for r in old_results} + + results = [] + hit_at_1 = hit_at_5 = hit_at_10 = hit_at_20 = 0 + sum_recall_frac_5 = sum_recall_frac_10 = sum_recall_frac_20 = 0.0 + sum_recall_all_5 = sum_recall_all_10 = sum_recall_all_20 = 0.0 + sum_ndcg_5 = sum_ndcg_10 = sum_ndcg_20 = 0.0 + total_questions = 0 + context_tokens_by_question = [] + abstention_cases = 0 + stats_by_type = defaultdict(lambda: { + "total": 0, "hit1": 0, "hit5": 0, "hit10": 0, "hit20": 0, + "sum_recall_frac_5": 0.0, "sum_recall_frac_10": 0.0, "sum_recall_frac_20": 0.0, + "sum_recall_all_5": 0.0, "sum_recall_all_10": 0.0, "sum_recall_all_20": 0.0, + "sum_ndcg_5": 0.0, "sum_ndcg_10": 0.0, "sum_ndcg_20": 0.0, + "context_tokens": [], + "hit20_base": 0, "final_miss": 0, + }) + abstention_by_type = defaultdict(int) + final_misses = 0 + + for record_idx, record in records_to_test: + q_type = record.get("question_type", "Unknown") + question = record.get("question", "") + is_abstention = record.get("question_id", "").endswith("_abs") + + if is_abstention: + abstention_cases += 1 + abstention_by_type[q_type] += 1 + print(f"\n--- Skipping Record {record_idx + 1}/{len(data)} | Type: {q_type} | Abstention ---") + results.append({ + "record_idx": record_idx, + "project_id": None, + "variant": args.variant, + "settle_status": None, + "question_type": q_type, + "question": question, + "hit_rank": -1, + "selected_recall_attempt": "skipped_abstention", + "cuepacks": cuepack_label, + "cuebridge_artifacts_enabled": args.enable_cuebridge_artifacts, + "recall_attempts": [], + "expected_contexts": [], + "recalled_contents": [], + "ctx_tokens": 0, + "skipped": "abstention", + }) + save_results(output_path, results) + continue + + if args.recall_only: + project_id = project_mapping.get(record_idx) + if not project_id: + continue + else: + project_id = f"eval_small_{args.variant.replace('-', '_')}_{record_idx}_{int(time.time())}" + + mode = "RECALL-ONLY" if args.recall_only else "FULL" + print(f"\n--- Testing Record {record_idx + 1}/{len(data)} | Project: {project_id} | Mode: {mode} | Variant: {args.variant} ---") + + expected_context_lines = [] + sessions = record.get("haystack_sessions", []) + for turn in sessions: + for message in turn: + if message.get("has_answer", False): + expected_context_lines.append(message.get("content", "")) + + settle_status = None + if not args.recall_only: + total_messages = sum(len(turn) for turn in sessions) + print(f"Total messages to ingest for this record: {total_messages}") + ingested_count = 0 + + haystack_dates = record.get("haystack_dates", []) + haystack_session_ids = record.get("haystack_session_ids", []) + for turn_idx, turn in enumerate(sessions): + source_date = haystack_dates[turn_idx] if turn_idx < len(haystack_dates) else None + source_session_id = ( + haystack_session_ids[turn_idx] + if turn_idx < len(haystack_session_ids) + else None + ) + for message in turn: + role = message.get("role", "") + content = message.get("content", "") + text_to_add = f"{role}: {content}" + metadata = {"source_role": role} + if source_date: + metadata["source_date"] = source_date + if source_session_id: + metadata["source_session_id"] = source_session_id + add_cmd = [ + "cuemap", + "add", + "-p", + project_id, + "--url", + args.url, + "--metadata", + json.dumps(metadata, separators=(",", ":")), + ] + if args.disable_default_cuepacks: + add_cmd.append("--disable-default-cuepacks") + if args.cuepacks: + add_cmd.extend(["--cuepacks", args.cuepacks]) + add_cmd.append(text_to_add) + run_cmd(add_cmd, check=True) + + ingested_count += 1 + if ingested_count % 50 == 0: + print(f"Ingested {ingested_count}/{total_messages}...", end="\r", flush=True) + + print(f"\nIngested {total_messages} messages.") + if not args.no_wait_bg: + settle_status = wait_for_bg_jobs(project_id, args.url, args.timeout_seconds, args.poll_seconds) + else: + settle_status = job_status(project_id, args.url) + + if not question: + continue + + artifact_metadata = None + best_recall, recall_attempts = recall_once( + args, + project_id, + q_type, + question, + record.get("question_date"), + expected_context_lines, + name="raw" if cuebridge_enabled else "base", + cuebridge_artifacts_enabled=False if cuebridge_enabled else None, + ) + raw_recall = best_recall + should_build_cuebridge = ( + cuebridge_mode == "product" + or ( + cuebridge_mode in {"oracle", "question_oracle"} + and ( + raw_recall["hit_rank"] <= 0 + or raw_recall["hit_rank"] > args.cuebridge_target_rank_threshold + ) + ) + ) + if should_build_cuebridge: + run_dir = Path(args.cuebridge_run_root).expanduser() / f"longmemeval_{record_idx}_{project_id}" + print(f"Building CueBridge artifacts for project {project_id} in {cuebridge_mode} mode...") + artifact_metadata = build_cuebridge_artifacts( + args, + project_id, + run_dir, + target_texts=expected_context_lines if cuebridge_mode == "oracle" else None, + target_questions=[ + { + "id": f"longmemeval_{record_idx}", + "question": question, + "category": q_type, + "target_texts": expected_context_lines, + } + ] + if cuebridge_mode == "question_oracle" + else None, + ) + if not artifact_metadata.get("skipped"): + best_recall, enhanced_attempts = recall_once( + args, + project_id, + q_type, + question, + record.get("question_date"), + expected_context_lines, + name="cuebridge", + cuebridge_artifacts_enabled=True, + ) + recall_attempts.extend(enhanced_attempts) + elif cuebridge_enabled: + artifact_metadata = { + "skipped": "raw_rank_within_target_threshold", + "raw_rank": raw_recall["hit_rank"], + "target_rank_threshold": args.cuebridge_target_rank_threshold, + } + + recalled_contents = best_recall["recalled_contents"] + hit_rank = best_recall["hit_rank"] + rel_array = best_recall["rel_array"] + ctx_tokens = best_recall["ctx_tokens"] + raw_ctx_tokens = raw_recall["ctx_tokens"] + recall_attempt_summaries = [ + { + "name": attempt["name"], + "hit_rank": attempt["hit_rank"], + "hit_at_20": 0 < attempt["hit_rank"] <= 20, + "ctx_tokens": attempt["ctx_tokens"], + } + for attempt in recall_attempts + ] + + if hit_rank == 1: + hit_at_1 += 1 + stats_by_type[q_type]["hit1"] += 1 + if 0 < hit_rank <= 5: + hit_at_5 += 1 + stats_by_type[q_type]["hit5"] += 1 + if 0 < hit_rank <= 10: + hit_at_10 += 1 + stats_by_type[q_type]["hit10"] += 1 + if 0 < hit_rank <= 20: + hit_at_20 += 1 + stats_by_type[q_type]["hit20"] += 1 + stats_by_type[q_type]["hit20_base"] += 1 + else: + final_misses += 1 + stats_by_type[q_type]["final_miss"] += 1 + + r5_frac, r5_all = calc_recall_for_contents(expected_context_lines, recalled_contents, 5) + r10_frac, r10_all = calc_recall_for_contents(expected_context_lines, recalled_contents, 10) + r20_frac, r20_all = calc_recall_for_contents(expected_context_lines, recalled_contents, 20) + n5 = calc_ndcg_for_rel(rel_array, len(expected_context_lines), 5) + n10 = calc_ndcg_for_rel(rel_array, len(expected_context_lines), 10) + n20 = calc_ndcg_for_rel(rel_array, len(expected_context_lines), 20) + raw_r5_frac, raw_r5_all = calc_recall_for_contents(expected_context_lines, raw_recall["recalled_contents"], 5) + raw_r10_frac, raw_r10_all = calc_recall_for_contents(expected_context_lines, raw_recall["recalled_contents"], 10) + raw_r20_frac, raw_r20_all = calc_recall_for_contents(expected_context_lines, raw_recall["recalled_contents"], 20) + raw_n5 = calc_ndcg_for_rel(raw_recall["rel_array"], len(expected_context_lines), 5) + raw_n10 = calc_ndcg_for_rel(raw_recall["rel_array"], len(expected_context_lines), 10) + raw_n20 = calc_ndcg_for_rel(raw_recall["rel_array"], len(expected_context_lines), 20) + + sum_recall_frac_5 += r5_frac + sum_recall_frac_10 += r10_frac + sum_recall_frac_20 += r20_frac + sum_recall_all_5 += r5_all + sum_recall_all_10 += r10_all + sum_recall_all_20 += r20_all + sum_ndcg_5 += n5 + sum_ndcg_10 += n10 + sum_ndcg_20 += n20 + context_tokens_by_question.append(ctx_tokens) + + stats_by_type[q_type]["sum_recall_frac_5"] += r5_frac + stats_by_type[q_type]["sum_recall_frac_10"] += r10_frac + stats_by_type[q_type]["sum_recall_frac_20"] += r20_frac + stats_by_type[q_type]["sum_recall_all_5"] += r5_all + stats_by_type[q_type]["sum_recall_all_10"] += r10_all + stats_by_type[q_type]["sum_recall_all_20"] += r20_all + stats_by_type[q_type]["sum_ndcg_5"] += n5 + stats_by_type[q_type]["sum_ndcg_10"] += n10 + stats_by_type[q_type]["sum_ndcg_20"] += n20 + stats_by_type[q_type]["context_tokens"].append(ctx_tokens) + stats_by_type[q_type]["total"] += 1 + total_questions += 1 + + print(f"Q: {question}") + if cuebridge_enabled: + raw_rank = raw_recall["hit_rank"] if raw_recall["hit_rank"] > 0 else "MISS" + enhanced_rank = best_recall["hit_rank"] if best_recall["hit_rank"] > 0 else "MISS" + print(f"CueBridge compare: raw_rank={raw_rank} -> enhanced_rank={enhanced_rank}") + if best_recall["name"] != "base": + print(f"Selected recall attempt: {best_recall['name']}") + print( + f"Type: {q_type} | Hit Rank: {hit_rank if hit_rank > 0 else 'MISS'} | " + f"NDCG@10: {n10:.2f} | Recall_Frac@10: {r10_frac:.2f} | " + f"Recall_All@10: {r10_all:.2f} | CtxTokens: {ctx_tokens}" + ) + + results.append({ + "record_idx": record_idx, + "project_id": project_id, + "variant": args.variant, + "settle_status": settle_status, + "question_type": q_type, + "question": question, + "hit_rank": hit_rank, + "selected_recall_attempt": best_recall["name"], + "cuepacks": cuepack_label, + "cuebridge_artifacts_enabled": args.enable_cuebridge_artifacts or cuebridge_enabled, + "cuebridge_compare": cuebridge_enabled, + "cuebridge_compare_mode": cuebridge_mode, + "cuebridge_artifacts": artifact_metadata, + "raw_hit_rank": raw_recall["hit_rank"], + "raw_metrics": { + "recall_frac_5": raw_r5_frac, + "recall_frac_10": raw_r10_frac, + "recall_frac_20": raw_r20_frac, + "recall_all_5": raw_r5_all, + "recall_all_10": raw_r10_all, + "recall_all_20": raw_r20_all, + "ndcg_5": raw_n5, + "ndcg_10": raw_n10, + "ndcg_20": raw_n20, + "ctx_tokens": raw_ctx_tokens, + }, + "enhanced_metrics": { + "recall_frac_5": r5_frac, + "recall_frac_10": r10_frac, + "recall_frac_20": r20_frac, + "recall_all_5": r5_all, + "recall_all_10": r10_all, + "recall_all_20": r20_all, + "ndcg_5": n5, + "ndcg_10": n10, + "ndcg_20": n20, + "ctx_tokens": ctx_tokens, + }, + "raw_recalled_contents": raw_recall["recalled_contents"], + "raw_ctx_tokens": raw_ctx_tokens, + "cuebridge_delta": { + "raw_rank": raw_recall["hit_rank"], + "enhanced_rank": hit_rank, + "rescued_at_20": not (0 < raw_recall["hit_rank"] <= 20) and 0 < hit_rank <= 20, + "regressed_from_20": 0 < raw_recall["hit_rank"] <= 20 and not (0 < hit_rank <= 20), + }, + "recall_attempts": recall_attempt_summaries, + "expected_contexts": expected_context_lines, + "recalled_contents": recalled_contents, + "ctx_tokens": ctx_tokens, + }) + save_results(output_path, results) + + if args.delete_project_after_record and not args.recall_only: + try: + delete_project(project_id, args.url) + if args.delete_project_files_after_record: + delete_project_files(project_id, args.snapshots_dir, args.contents_dir) + print(f"Deleted eval project: {project_id}") + except Exception as exc: + print(f"WARNING: Failed to delete eval project {project_id}: {exc}") + + print("\n============== SUMMARY ==============") + print(f"\nTotal Base Questions: {total_questions} (Excluded {abstention_cases} Abstention Cases)") + print("\n[ Recall_Any (Hit@K) ] - At least one relevant fact retrieved") + print(f"Recall_Any@1: {hit_at_1}/{total_questions} ({(hit_at_1 / total_questions * 100) if total_questions else 0:.1f}%)") + print(f"Recall_Any@5: {hit_at_5}/{total_questions} ({(hit_at_5 / total_questions * 100) if total_questions else 0:.1f}%)") + print(f"Recall_Any@10: {hit_at_10}/{total_questions} ({(hit_at_10 / total_questions * 100) if total_questions else 0:.1f}%)") + print(f"Recall_Any@20: {hit_at_20}/{total_questions} ({(hit_at_20 / total_questions * 100) if total_questions else 0:.1f}%)") + + print("\n[ Recall_All ] - All relevant facts for the query retrieved") + print(f"Recall_All@5: {(sum_recall_all_5 / total_questions * 100) if total_questions else 0:.1f}%") + print(f"Recall_All@10: {(sum_recall_all_10 / total_questions * 100) if total_questions else 0:.1f}%") + print(f"Recall_All@20: {(sum_recall_all_20 / total_questions * 100) if total_questions else 0:.1f}%") + + print("\n[ Recall_Frac ] - Average fraction of relevant facts retrieved") + print(f"Recall_Frac@5: {(sum_recall_frac_5 / total_questions * 100) if total_questions else 0:.1f}%") + print(f"Recall_Frac@10: {(sum_recall_frac_10 / total_questions * 100) if total_questions else 0:.1f}%") + print(f"Recall_Frac@20: {(sum_recall_frac_20 / total_questions * 100) if total_questions else 0:.1f}%") + + print("\n[ NDCG ] - Relevance ranked scoring") + print(f"NDCG@5: {(sum_ndcg_5 / total_questions * 100) if total_questions else 0:.1f}%") + print(f"NDCG@10: {(sum_ndcg_10 / total_questions * 100) if total_questions else 0:.1f}%") + print(f"NDCG@20: {(sum_ndcg_20 / total_questions * 100) if total_questions else 0:.1f}%") + + avg_ctx_tokens = sum(context_tokens_by_question) / total_questions if total_questions else 0 + print("\n[ Retrieved Context Tokens ] - Approx tokens from recalled memory text") + print(f"CtxTokens Avg: {avg_ctx_tokens:.0f}") + print(f"CtxTokens P50: {percentile(context_tokens_by_question, 50)}") + print(f"CtxTokens P95: {percentile(context_tokens_by_question, 95)}") + print(f"CtxTokens P99: {percentile(context_tokens_by_question, 99)}") + print(f"CtxTokens Max: {max(context_tokens_by_question) if context_tokens_by_question else 0}") + + print("\n[ Recall Attempt Attribution @20 ]") + attempt_label = "Selected pass" if cuebridge_enabled else "Base pass" + print(f"{attempt_label} Hit@20: {hit_at_20}/{total_questions}") + print(f"Final misses: {final_misses}/{total_questions}") + + print("\n============== BY QUESTION TYPE ==============") + for q_type, s in stats_by_type.items(): + total = s["total"] + if total == 0: + continue + print(f"{q_type} (Total: {total}):") + print(f" Recall_Any@1: {s['hit1']}/{total} ({(s['hit1'] / total * 100):.1f}%)") + print(f" Recall_Any@5: {s['hit5']}/{total} ({(s['hit5'] / total * 100):.1f}%)") + print(f" Recall_Any@10: {s['hit10']}/{total} ({(s['hit10'] / total * 100):.1f}%)") + print(f" Recall_All@5: {(s['sum_recall_all_5'] / total * 100):.1f}%") + print(f" Recall_All@10: {(s['sum_recall_all_10'] / total * 100):.1f}%") + print(f" Recall_Frac@5: {(s['sum_recall_frac_5'] / total * 100):.1f}%") + print(f" Recall_Frac@10: {(s['sum_recall_frac_10'] / total * 100):.1f}%") + print(f" NDCG@5: {(s['sum_ndcg_5'] / total * 100):.1f}%") + print(f" NDCG@10: {(s['sum_ndcg_10'] / total * 100):.1f}%") + type_ctx_tokens = s["context_tokens"] + print( + " CtxTokens: " + f"avg={(sum(type_ctx_tokens) / total):.0f}, " + f"p95={percentile(type_ctx_tokens, 95)}" + ) + print( + " Hit@20 source: " + f"base={s['hit20_base']}, " + f"final_miss={s['final_miss']}" + ) + if abstention_by_type[q_type] > 0: + print(f" [Abstention Cases Excluded: {abstention_by_type[q_type]}]") + + print(f"\nSaved details to {output_path}") + if cuebridge_enabled: + print_cuebridge_delta_summary(results, limit=20) + save_results(output_path, results) + + +if __name__ == "__main__": + evaluate() diff --git a/evals/locomo/report.md b/evals/locomo/report.md index 9432f36..efe2889 100644 --- a/evals/locomo/report.md +++ b/evals/locomo/report.md @@ -1,6 +1,6 @@ # LoCoMo: Long Conversation Recall With Low Context -`CueMap v0.7.2` `conversation memory` `context expansion` +`CueMap v0.7.3` `conversation memory` `context expansion` LoCoMo stresses long conversations where the answer evidence is often near the recalled turn rather than exactly inside it. CueMap handles this best with engine-level expansion depth, which is a real product feature: return the matching memory plus adjacent conversation turns so an answer model receives the local neighborhood. @@ -14,7 +14,7 @@ LoCoMo stresses long conversations where the answer evidence is often near the r The strong setting reaches 96.1% Hit@20 while still using far less context than many leaderboard-style RAG reports. As a reference point, public Agent Memory Benchmark views show some LoCoMo systems in the 14.7K to 36.2K context-token range. CueMap's lean run averages 3.2K tokens, and the stronger run averages 10.0K. Both reported runs use the wrapper's default **hybrid recall mode** -(`SEMANTIC_MODE=hybrid`), combining lexical and semantic retrieval signals. +(`SEMANTIC_MODE=hybrid`), combining lexical and semantic ranking signals. ## Strong Setting Metrics @@ -100,7 +100,7 @@ Strong LoCoMo run: ```bash EXPANSION_DEPTH=10 \ LIMIT=20 \ -bash evals/locomo/run_locomo.sh +DATASET=/path/to/locomo10.json bash evals/locomo/run_locomo.sh ``` Lean context run: @@ -108,7 +108,7 @@ Lean context run: ```bash EXPANSION_DEPTH=3 \ LIMIT=20 \ -bash evals/locomo/run_locomo.sh +DATASET=/path/to/locomo10.json bash evals/locomo/run_locomo.sh ``` Useful knobs: @@ -120,4 +120,4 @@ Useful knobs: | `SEMANTIC_MODE` | `hybrid` | Retrieval mode: `lexical`, `semantic`, or `hybrid`. | | `DELETE_PROJECTS` | `1` | Delete temporary eval projects after each record. | -The wrapper writes fresh output under `evals/locomo/results/` by default. The metrics above came from the full 1,986-question v0.7.2 rerun on 2026-08-15. +The wrapper writes fresh output under `evals/locomo/results/` by default. The metrics above cover the full 1,986-question run on 2026-08-15. diff --git a/evals/locomo/run_locomo.sh b/evals/locomo/run_locomo.sh index 3315473..961c88a 100644 --- a/evals/locomo/run_locomo.sh +++ b/evals/locomo/run_locomo.sh @@ -2,9 +2,8 @@ set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -CUEMAP_ROOT="$(cd "$SCRIPT_DIR/../../.." && pwd)" CUEMAP_ENGINE_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)" -CUEMAP_EVALS_DIR="${CUEMAP_EVALS_DIR:-$CUEMAP_ROOT/evals}" +CUEMAP_EVALS_DIR="${CUEMAP_EVALS_DIR:-$CUEMAP_ENGINE_ROOT/evals/harnesses}" HARNESS="$CUEMAP_EVALS_DIR/test_locomo_settled.py" # Pin the CLI used by the Python harness. Without this, LoCoMo can recall @@ -28,7 +27,7 @@ if [[ ! -f "$HARNESS" ]]; then exit 1 fi -CUEMAP_URL="${CUEMAP_URL:-http://127.0.0.1:8080}" +CUEMAP_URL="${CUEMAP_URL:-http://127.0.0.1:8735}" LIMIT="${LIMIT:-20}" EXPANSION_DEPTH="${EXPANSION_DEPTH:-10}" MODE="${MODE:-raw}" @@ -49,7 +48,7 @@ esac mkdir -p "$OUT_DIR" args=( - python "$HARNESS" + "${PYTHON:-python3}" "$HARNESS" --url "$CUEMAP_URL" --limit "$LIMIT" --expansion-depth "$EXPANSION_DEPTH" @@ -63,6 +62,10 @@ if [[ "${DELETE_PROJECTS:-1}" == "1" ]]; then args+=(--delete-project-after-record) fi +if [[ -n "${DATASET:-}" ]]; then + args+=(--dataset "$DATASET") +fi + if [[ -n "${START_INDEX:-}" ]]; then args+=(--start-index "$START_INDEX") fi diff --git a/evals/longmemeval/fast_longmemeval.py b/evals/longmemeval/fast_longmemeval.py index a9ea6c8..09a65fe 100644 --- a/evals/longmemeval/fast_longmemeval.py +++ b/evals/longmemeval/fast_longmemeval.py @@ -29,7 +29,7 @@ def _load_harness(): harness_path = os.environ.get(_HARNESS_ENV) if not harness_path: - raise RuntimeError(f"{_HARNESS_ENV} must point to test_longmemeval_settled.py") + harness_path = str(Path(__file__).resolve().parents[1] / "harnesses" / "test_longmemeval_settled.py") path = Path(harness_path).expanduser().resolve() if not path.is_file(): diff --git a/evals/longmemeval/report.md b/evals/longmemeval/report.md index c6830b0..a2ced2d 100644 --- a/evals/longmemeval/report.md +++ b/evals/longmemeval/report.md @@ -1,8 +1,8 @@ # LongMemEval: Compact Long-Memory Recall -`CueMap v0.7.2` `raw hybrid recall` `near-saturated Hit@20` +`CueMap v0.7.3` `raw hybrid recall` `near-saturated Hit@20` -LongMemEval is the cleanest showcase for CueMap's raw engine: compact user memories, compact retrieval depth, and a strong deterministic recall path. CueMap reaches near-saturated Hit@20 while keeping the recall path embedding-free and LLM-free. The latest run uses the wrapper default `SEMANTIC_MODE=hybrid`, combining lexical and semantic retrieval signals. +LongMemEval is the cleanest showcase for CueMap's raw engine: compact user memories, compact retrieval depth, and a strong deterministic recall path. CueMap reaches 96.2% Hit@20 in the reported hybrid run, using lexical and structural candidate generation followed by semantic reranking. The latest run uses the wrapper default `SEMANTIC_MODE=hybrid`, combining lexical and semantic ranking signals. ## Headline @@ -76,7 +76,7 @@ cuemap start Raw run: ```bash -bash evals/longmemeval/run_longmemeval.sh +DATASET=/path/to/longmemeval_s_cleaned.json bash evals/longmemeval/run_longmemeval.sh ``` Useful knobs: @@ -89,4 +89,4 @@ Useful knobs: | `DELETE_PROJECTS` | `1` | Delete temporary eval projects after each record. | | `MODE` | `raw` | `raw`, `question-oracle`, or `product-cuebridge`; BEAM is the recommended CueBridge showcase. | -The wrapper writes fresh output under `evals/longmemeval/results/` by default. The metrics above came from the latest v0.7.2 raw hybrid run: 470 scored questions with 30 abstention cases excluded. +The wrapper writes fresh output under `evals/longmemeval/results/` by default. The metrics above cover a raw hybrid run: 470 scored questions with 30 abstention cases excluded. diff --git a/evals/longmemeval/run_longmemeval.sh b/evals/longmemeval/run_longmemeval.sh index 0e0615c..db77f98 100644 --- a/evals/longmemeval/run_longmemeval.sh +++ b/evals/longmemeval/run_longmemeval.sh @@ -2,9 +2,8 @@ set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -CUEMAP_ROOT="$(cd "$SCRIPT_DIR/../../.." && pwd)" CUEMAP_ENGINE_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)" -CUEMAP_EVALS_DIR="${CUEMAP_EVALS_DIR:-$CUEMAP_ROOT/evals}" +CUEMAP_EVALS_DIR="${CUEMAP_EVALS_DIR:-$CUEMAP_ENGINE_ROOT/evals/harnesses}" HARNESS="$CUEMAP_EVALS_DIR/test_longmemeval_settled.py" # Pin both the adapter and canonical harness CLI calls to the release engine. @@ -27,7 +26,7 @@ if [[ ! -f "$HARNESS" ]]; then exit 1 fi -CUEMAP_URL="${CUEMAP_URL:-http://127.0.0.1:8080}" +CUEMAP_URL="${CUEMAP_URL:-http://127.0.0.1:8735}" LIMIT="${LIMIT:-20}" MODE="${MODE:-raw}" SEMANTIC_MODE="${SEMANTIC_MODE:-hybrid}" @@ -55,7 +54,7 @@ if [[ "$TRACE_TIMING" == "1" ]]; then fi args=( - python + "${PYTHON:-python3}" "${SCRIPT_DIR}/fast_longmemeval.py" --url "$CUEMAP_URL" --limit "$LIMIT" @@ -69,7 +68,7 @@ if [[ "${FAST_INGEST:-1}" == "1" ]]; then echo "Ingestion transport: direct /ingest/content (BEAM-compatible)" else args=( - python "$HARNESS" + "${PYTHON:-python3}" "$HARNESS" --url "$CUEMAP_URL" --limit "$LIMIT" --variant "${VARIANT:-core}" @@ -83,6 +82,10 @@ if [[ "${DELETE_PROJECTS:-1}" == "1" ]]; then args+=(--delete-project-after-record) fi +if [[ -n "${DATASET:-}" ]]; then + args+=(--dataset "$DATASET") +fi + if [[ -n "${START_INDEX:-}" ]]; then args+=(--start-index "$START_INDEX") fi @@ -138,7 +141,7 @@ else fi if [[ "$TRACE_TIMING" == "1" && -s "$TIMING_FILE" ]]; then - python "$CUEMAP_ROOT/evals/beam/report_timing.py" --input "$TIMING_FILE" + "${PYTHON:-python3}" "$CUEMAP_EVALS_DIR/report_timing.py" --input "$TIMING_FILE" echo "Timing samples: $TIMING_FILE" fi diff --git a/evals/requirements.txt b/evals/requirements.txt new file mode 100644 index 0000000..cc10181 --- /dev/null +++ b/evals/requirements.txt @@ -0,0 +1 @@ +datasets>=3,<5 diff --git a/lemma_exceptions.json b/lemma_exceptions.json index e0fc680..8452268 100644 --- a/lemma_exceptions.json +++ b/lemma_exceptions.json @@ -39,7 +39,7 @@ "silly-hows": "silly-how", "estuations": "estuation", "superchrons": "superchron", - "arises": "aris", + "arises": "arise", "transpondians": "transpondian", "veels": "veel", "werehyenas": "werehyena", @@ -2816,7 +2816,7 @@ "hostmasks": "hostmask", "adlibbed": "adlib", "accommodating": "accommodate", - "carouses": "carous", + "carouses": "carouse", "shias": "shia", "amaltheids": "amaltheid", "harpresses": "harpress", @@ -9846,7 +9846,7 @@ "disseizes": "disseize", "tinned": "tin", "binaphthols": "binaphthol", - "imagines": "imago", + "imagines": "imagine", "dayees": "dayee", "gedds": "gedd", "imbarrassments": "imbarrassment", @@ -10668,7 +10668,7 @@ "lauriids": "lauriid", "saggars": "saggar", "bhikshus": "bhikshu", - "interleaves": "interleaf", + "interleaves": "interleave", "pewfuls": "pewful", "mantuamakers": "mantuamaker", "kolachs": "kolach", @@ -14408,7 +14408,7 @@ "percarburets": "percarburet", "feedbackers": "feedbacker", "gradians": "gradian", - "tawses": "taws", + "tawses": "tawse", "worcesterberries": "worcesterberry", "snickometers": "snickometer", "rangpurs": "rangpur", @@ -16790,7 +16790,7 @@ "selenoproteins": "selenoprotein", "magatamas": "magatama", "self-distances": "self-distance", - "canvasses": "canvas", + "canvasses": "canvass", "fugas": "fuga", "counterbores": "counterbore", "counterpropositions": "counterproposition", @@ -19757,7 +19757,7 @@ "sandlings": "sandling", "thioacetals": "thioacetal", "embattling": "embattle", - "uses": "used", + "uses": "use", "sign-outs": "sign-out", "bioswales": "bioswale", "gratulated": "gratulate", @@ -20340,7 +20340,7 @@ "sogers": "soger", "pullies": "pully", "hepatoblastomas": "hepatoblastoma", - "sexes": "sexe", + "sexes": "sex", "kickapoos": "kickapoo", "bhangis": "bhangi", "cinerecordings": "cinerecording", @@ -21042,7 +21042,7 @@ "cercomonadids": "cercomonadid", "abode": "abide", "pinchhits": "pinchhit", - "tries": "trie", + "tries": "try", "outeners": "outener", "danskers": "dansker", "waldorfs": "waldorf", @@ -21765,7 +21765,7 @@ "ovas": "ova", "budbursts": "budburst", "annotatrices": "annotatrix", - "taxes": "taxis", + "taxes": "tax", "spiflicated": "spiflicate", "megaverdicts": "megaverdict", "moodscapes": "moodscape", @@ -22115,7 +22115,7 @@ "plotinists": "plotinist", "reliks": "relik", "cartfuls": "cartful", - "arses": "arsis", + "arses": "arse", "attaches": "attach", "microfacets": "microfacet", "centisteres": "centistere", @@ -22705,7 +22705,7 @@ "fireflaires": "fireflaire", "halpaces": "halpace", "non-relatives": "non-relative", - "companies": "companie", + "companies": "company", "sectants": "sectant", "walds": "wald", "crumblets": "crumblet", @@ -23669,7 +23669,7 @@ "presphenoids": "presphenoid", "abzymes": "abzyme", "rumdums": "rumdum", - "glasses": "glasse", + "glasses": "glass", "upended": "upend", "quereles": "querele", "imidazoquinolines": "imidazoquinoline", @@ -24341,7 +24341,7 @@ "qirans": "qiran", "crichtonites": "crichtonite", "clavagellids": "clavagellid", - "bridges": "bridg", + "bridges": "bridge", "desmopterids": "desmopterid", "embassadors": "embassador", "tokajis": "tokaji", @@ -24399,7 +24399,7 @@ "niddas": "nidda", "antiessentialists": "antiessentialist", "disaccrediting": "disaccredit", - "witnesses": "witnesse", + "witnesses": "witness", "pernts": "pernt", "pondhawks": "pondhawk", "oceanographists": "oceanographist", @@ -24982,7 +24982,7 @@ "nitrilotriacetates": "nitrilotriacetate", "popsters": "popster", "bookrooms": "bookroom", - "teaches": "teache", + "teaches": "teach", "guttering": "gutter", "briefing": "brief", "macrometastases": "macrometastasis", @@ -26814,7 +26814,7 @@ "berlingots": "berlingot", "angiostatins": "angiostatin", "obotrites": "obotrite", - "overemphasises": "overemphasis", + "overemphasises": "overemphasise", "glucofuranosyls": "glucofuranosyl", "etexts": "etext", "rainbowfishes": "rainbowfish", @@ -27304,7 +27304,7 @@ "retained": "retain", "hysterosalpingograms": "hysterosalpingogram", "antediluvians": "antediluvian", - "sises": "sis", + "sises": "sise", "sms": "sm", "rhabdodontids": "rhabdodontid", "hodophiles": "hodophile", @@ -30160,7 +30160,7 @@ "cephalosomes": "cephalosome", "bioparticles": "bioparticle", "boroughmasters": "boroughmaster", - "programming": "programme", + "programming": "program", "neoglycoconjugates": "neoglycoconjugate", "noodleheads": "noodlehead", "stounds": "stound", @@ -32858,7 +32858,7 @@ "teleporters": "teleporter", "spearlets": "spearlet", "aircraftswomen": "aircraftswoman", - "phases": "phasis", + "phases": "phase", "burnishing": "burnish", "sponging-houses": "sponging-house", "squigglers": "squiggler", @@ -33596,7 +33596,7 @@ "great-grandkids": "great-grandkid", "dearborns": "dearborn", "polyprenols": "polyprenol", - "raises": "rais", + "raises": "raise", "cirroteuthids": "cirroteuthid", "stibiopalladinites": "stibiopalladinite", "creolized": "creolize", @@ -34469,7 +34469,7 @@ "synucleinopathies": "synucleinopathy", "diagnosees": "diagnosee", "fill-ins": "fill-in", - "buzzes": "buz", + "buzzes": "buzz", "doublefaulting": "doublefault", "wiggles": "wiggle", "seining": "seine", @@ -34498,7 +34498,7 @@ "glarings": "glaring", "sideromycins": "sideromycin", "canuckistanis": "canuckistani", - "wishes": "wishe", + "wishes": "wish", "cook-ups": "cook-up", "grouping": "group", "chiacks": "chiack", @@ -36615,7 +36615,7 @@ "pteropines": "pteropine", "jellied": "jelly", "melchizedeks": "melchizedek", - "conning": "conn", + "conning": "con", "helioseismologists": "helioseismologist", "wizening": "wizen", "tetrodons": "tetrodon", @@ -37240,7 +37240,7 @@ "chromanones": "chromanone", "dealfishes": "dealfish", "swingling": "swingle", - "judges": "judg", + "judges": "judge", "tailing": "tail", "intrays": "intray", "godroons": "godroon", @@ -39200,7 +39200,7 @@ "saginas": "sagina", "deoxynucleotides": "deoxynucleotide", "gnotobiotas": "gnotobiota", - "stories": "storie", + "stories": "story", "married": "marry", "endpieces": "endpiece", "subbundles": "subbundle", @@ -39218,7 +39218,7 @@ "nashos": "nasho", "encashed": "encash", "gymnotuses": "gymnotus", - "getting": "got", + "getting": "get", "kneepieces": "kneepiece", "retroscapes": "retroscape", "autosamplers": "autosampler", @@ -41189,7 +41189,7 @@ "bixies": "bixie", "oxaphosphines": "oxaphosphine", "oxamidines": "oxamidine", - "putting": "putt", + "putting": "put", "rejuvenesces": "rejuvenesce", "lademen": "lademan", "growling": "growl", @@ -42478,7 +42478,7 @@ "four-tops": "four-top", "hydrazoates": "hydrazoate", "tetracarbonyls": "tetracarbonyl", - "coaxes": "coaxis", + "coaxes": "coax", "cyclopentyls": "cyclopentyl", "interbreeding": "interbreed", "bliauts": "bliaut", @@ -45319,7 +45319,7 @@ "plesiopids": "plesiopid", "batphones": "batphone", "destinatives": "destinative", - "fishing": "fishes", + "fishing": "fish", "letterals": "letteral", "nettlebeds": "nettlebed", "nonswingers": "nonswinger", @@ -46716,7 +46716,7 @@ "antifilms": "antifilm", "osrds": "osrd", "one-up-one-downs": "one-up-one-down", - "premiered": "premier", + "premiered": "premiere", "paralophules": "paralophule", "cunas": "cuna", "colessors": "colessor", @@ -48076,7 +48076,7 @@ "counter-evidences": "counter-evidence", "conciliarists": "conciliarist", "feredetates": "feredetate", - "churches": "churche", + "churches": "church", "perbromates": "perbromate", "prΓ¦positions": "prΓ¦position", "equisetopsids": "equisetopsid", @@ -48910,7 +48910,7 @@ "wauchts": "waucht", "balaamites": "balaamite", "tynes": "tyne", - "frizzes": "friz", + "frizzes": "frizz", "owers": "ower", "phosphorimagers": "phosphorimager", "cosmolines": "cosmoline", @@ -49168,7 +49168,7 @@ "binoxalates": "binoxalate", "opinionatists": "opinionatist", "interpages": "interpage", - "analyzes": "analyzis", + "analyzes": "analyze", "desired": "desire", "ambassadours": "ambassadour", "pepastics": "pepastic", @@ -50991,7 +50991,7 @@ "dumfounding": "dumfound", "ecotopias": "ecotopia", "antipurines": "antipurine", - "paralyzes": "paralyzis", + "paralyzes": "paralyze", "scobberlotchers": "scobberlotcher", "ganglioneuroblastomas": "ganglioneuroblastoma", "podoxenoclavoses": "podoxenoclavosis", @@ -53135,7 +53135,7 @@ "poids": "poid", "adaptometers": "adaptometer", "ecovillages": "ecovillage", - "pickaxes": "pickax", + "pickaxes": "pickaxe", "subdued": "subdue", "homophenes": "homophene", "mandelbulbs": "mandelbulb", @@ -55688,7 +55688,7 @@ "klokards": "klokard", "patrimoieties": "patrimoiety", "octulopyranosides": "octulopyranoside", - "sasses": "sasse", + "sasses": "sass", "autoions": "autoion", "honoured": "honour", "bamars": "bamar", @@ -57049,7 +57049,7 @@ "styrylchromones": "styrylchromone", "palmityls": "palmityl", "gmats": "gmat", - "reaches": "reache", + "reaches": "reach", "moiling": "moil", "danophones": "danophone", "gypsisols": "gypsisol", @@ -58679,7 +58679,7 @@ "thomases": "thomas", "pilumnids": "pilumnid", "taimens": "taimen", - "delves": "delf", + "delves": "delve", "non-strikers": "non-striker", "pentalogies": "pentalogy", "otakus": "otaku", @@ -60433,7 +60433,7 @@ "airbreathers": "airbreather", "macromonomers": "macromonomer", "spirocyclohexanes": "spirocyclohexane", - "compasses": "compasse", + "compasses": "compass", "ninety-fourths": "ninety-fourth", "purfiles": "purfile", "telemids": "telemid", @@ -60632,7 +60632,7 @@ "codebreakers": "codebreaker", "nonaliens": "nonalien", "kneriids": "kneriid", - "phantasies": "phantasie", + "phantasies": "phantasy", "cocolonizations": "cocolonization", "dups": "dup", "holovids": "holovid", @@ -63642,7 +63642,7 @@ "chirosophists": "chirosophist", "chrysidids": "chrysidid", "scenthounds": "scenthound", - "bodies": "bodie", + "bodies": "body", "sheetlines": "sheetline", "chappos": "chappo", "diplodocids": "diplodocid", @@ -64882,7 +64882,7 @@ "lys": "ly", "fisbos": "fisbo", "herlings": "herling", - "pledges": "pledg", + "pledges": "pledge", "blast-offs": "blast-off", "breastfuls": "breastful", "kerslaps": "kerslap", @@ -65813,7 +65813,7 @@ "boeotians": "boeotian", "nonhobbyists": "nonhobbyist", "ginkgolides": "ginkgolide", - "using": "used", + "using": "use", "conglobulations": "conglobulation", "supersalaries": "supersalary", "crediting": "credit", @@ -66180,7 +66180,7 @@ "awaydays": "awayday", "cat-flaps": "cat-flap", "hypersilyls": "hypersilyl", - "curries": "currie", + "curries": "curry", "acetylgalactosaminides": "acetylgalactosaminide", "arsefaces": "arseface", "celebretards": "celebretard", @@ -67645,7 +67645,7 @@ "bloviates": "bloviate", "tetracycles": "tetracycle", "cornua": "cornu", - "divvies": "divvie", + "divvies": "divvy", "roentgen-rays": "roentgen-ray", "swingbridges": "swingbridge", "peelhouses": "peelhouse", @@ -68890,7 +68890,7 @@ "avalanched": "avalanche", "paletas": "paleta", "bakistres": "bakistre", - "curtsies": "curtsey", + "curtsies": "curtsy", "shickarees": "shickaree", "house-sitters": "house-sitter", "pretarsi": "pretarsus", diff --git a/scripts/build-npm-native-packages.sh b/scripts/build-npm-native-packages.sh index 899adce..1e73f28 100755 --- a/scripts/build-npm-native-packages.sh +++ b/scripts/build-npm-native-packages.sh @@ -86,10 +86,10 @@ write_package_json() { os: [os], cpu: [cpu], bin: { cuemap: "bin/cuemap" }, - files: ["bin", "assets", "README.md", "LICENSE"], + files: ["bin", "assets", "README.md", "LICENSE", "NOTICE", "THIRD_PARTY_NOTICES.txt", "LGPL-2.1.txt", "ONNXRUNTIME-LICENSE.txt", "ONNXRUNTIME-NOTICES.txt"], repository: { type: "git", url: "https://github.com/cuemap-dev/cuemap.git" }, author: "Kaan Demirel", - license: "BSL-1.1", + license: "Apache-2.0", publishConfig: { access: "public" }, }; if (os === "linux") manifest.libc = ["glibc"]; @@ -111,6 +111,12 @@ stage_package() { cp "${DIST_DIR}/tokenizer/en_tokenizer.bin" "${package_dir}/assets/en_tokenizer.bin" cp "${ROOT_DIR}/scripts/npm-native-README.md" "${package_dir}/README.md" cp "${ROOT_DIR}/LICENSE" "${package_dir}/LICENSE" + cp "${ROOT_DIR}/NOTICE" "${package_dir}/NOTICE" + cp "${ROOT_DIR}/THIRD_PARTY_NOTICES.txt" "${package_dir}/THIRD_PARTY_NOTICES.txt" + cp "${ROOT_DIR}/LGPL-2.1.txt" "${package_dir}/LGPL-2.1.txt" + cp "${ROOT_DIR}/ONNXRUNTIME-LICENSE.txt" "${package_dir}/ONNXRUNTIME-LICENSE.txt" + cp "${ROOT_DIR}/ONNXRUNTIME-NOTICES.txt" "${package_dir}/ONNXRUNTIME-NOTICES.txt" + chmod 0755 "${package_dir}/bin/cuemap" "${package_dir}/bin/cuemap-native" write_package_json "${package_dir}/package.json" "${package_name}" "${os_name}" "${cpu_name}" diff --git a/scripts/collect-third-party-notices.py b/scripts/collect-third-party-notices.py new file mode 100644 index 0000000..f7e6bd8 --- /dev/null +++ b/scripts/collect-third-party-notices.py @@ -0,0 +1,77 @@ +"""Build a reviewable license inventory from the locked Cargo dependencies.""" +import argparse +import json +import re +import subprocess +import urllib.error +import urllib.parse +import urllib.request +from pathlib import Path + +parser = argparse.ArgumentParser() +parser.add_argument('--output', required=True) +args = parser.parse_args() +root = Path(__file__).resolve().parents[1] +metadata = json.loads(subprocess.check_output( + ['cargo', 'metadata', '--locked', '--format-version', '1'], cwd=root, text=True)) +sections = ['CueMap Cargo dependency notices\n\nThis inventory includes build, test, and platform-specific dependencies.\nBundled model and tokenizer assets are described separately in NOTICE.\n'] +missing = [] +standard_licenses = {} +for package in sorted(metadata['packages'], key=lambda item: (item['name'], item['version'])): + if package['id'] in metadata['workspace_members']: + continue + package_root = Path(package['manifest_path']).parent + files = sorted(path for path in package_root.rglob('*') if path.is_file() + and re.match(r'^(LICENSE|LICENCE|COPYING|COPYRIGHT|NOTICE)([._-]|$)', path.name, re.I)) + if package.get('license_file'): + license_file = package_root / package['license_file'] + if license_file.is_file() and license_file not in files: + files.append(license_file) + texts = [] + for path in files: + try: + text = path.read_text() + except UnicodeDecodeError: + continue + if text.strip(): + texts.append((str(path.relative_to(package_root)), text)) + repository = package.get('repository') or '' + if not texts: + vcs = package_root / '.cargo_vcs_info.json' + revision = json.loads(vcs.read_text()).get('git', {}).get('sha1', '') if vcs.is_file() else '' + match = re.match(r'https://github.com/([^/]+/[^/#]+)', repository) + if match and re.fullmatch('[0-9a-f]{40}', revision): + repo = match[1].removesuffix('.git') + for filename in ['LICENSE', 'LICENSE.md', 'LICENSE.txt', 'COPYING', 'LICENSE-MIT', 'LICENSE-APACHE']: + url = f'https://raw.githubusercontent.com/{repo}/{revision}/{filename}' + try: + with urllib.request.urlopen(url, timeout=15) as response: + text = response.read().decode() + texts.append((url, text)) + break + except (OSError, urllib.error.URLError): + continue + if not texts: + declared = package.get('license') or '' + selected = next((license for license in ['Apache-2.0', 'MIT', 'MPL-2.0'] if license in declared), None) + if selected: + if selected not in standard_licenses: + url = f'https://raw.githubusercontent.com/spdx/license-list-data/v3.26.0/text/{selected}.txt' + with urllib.request.urlopen(url, timeout=30) as response: + standard_licenses[selected] = response.read().decode() + authors = ', '.join(package.get('authors') or []) or 'See the linked source package' + label = f'SPDX {selected} license text; authors declared by package metadata: {authors}' + texts.append((label, standard_licenses[selected])) + if not texts: + missing.append(f"{package['name']} {package['version']} ({package.get('license')})") + sections.append('\n' + '=' * 72 + f"\n{package['name']} {package['version']}\n" + + f"Declared license: {package.get('license')}\nRepository: {repository}\n" + + f"Source: https://crates.io/api/v1/crates/{package['name']}/{package['version']}/download\n") + for label, text in texts: + sections.append(f'\n--- {label} ---\n{text.rstrip()}\n') +output = Path(args.output) +output.parent.mkdir(parents=True, exist_ok=True) +output.write_text('\n'.join(sections)) +print(f'Wrote dependency notice proposal to {output}') +if missing: + raise SystemExit('Missing license texts:\n' + '\n'.join(missing)) diff --git a/scripts/local-release-registry.cjs b/scripts/local-release-registry.cjs new file mode 100644 index 0000000..a060b96 --- /dev/null +++ b/scripts/local-release-registry.cjs @@ -0,0 +1,47 @@ +const { Worker, isMainThread, parentPort, workerData } = require('node:worker_threads'); +const { createServer } = require('node:http'); +const https = require('node:https'); +const fs = require('node:fs'); +const { createHash } = require('node:crypto'); +const { execFileSync } = require('node:child_process'); + +if (!isMainThread) { + const packages = workerData.map((file, index) => { + const manifest = JSON.parse(execFileSync('tar', ['-xOf', file, 'package/package.json'], { encoding: 'utf8' })); + return { file, index, manifest, integrity: `sha512-${createHash('sha512').update(fs.readFileSync(file)).digest('base64')}` }; + }); + const server = createServer((request, response) => { + const pathname = new URL(request.url, 'http://localhost').pathname; + const tarball = /^\/__local_tarballs\/(\d+)\.tgz$/.exec(pathname); + if (tarball) { + const item = packages[Number(tarball[1])]; + if (!item) { response.writeHead(404).end(); return; } + response.writeHead(200, { 'content-type': 'application/octet-stream' }); + fs.createReadStream(item.file).pipe(response); + return; + } + let name; + try { name = decodeURIComponent(pathname.slice(1)); } catch { response.writeHead(400).end(); return; } + const item = packages.find(item => item.manifest.name === name); + if (item) { + const manifest = { ...item.manifest, dist: { integrity: item.integrity, + tarball: `http://127.0.0.1:${server.address().port}/__local_tarballs/${item.index}.tgz` } }; + response.writeHead(200, { 'content-type': 'application/json' }); + response.end(JSON.stringify({ name, 'dist-tags': { latest: manifest.version }, versions: { [manifest.version]: manifest } })); + return; + } + const upstream = https.get(`https://registry.npmjs.org${request.url}`, { headers: { accept: 'application/json' } }, result => { + response.writeHead(result.statusCode, { 'content-type': result.headers['content-type'] || 'application/json' }); + result.pipe(response); + }); + upstream.setTimeout(30000, () => upstream.destroy()); + upstream.on('error', error => { response.writeHead(502).end(error.message); }); + }); + server.listen(0, '127.0.0.1', () => parentPort.postMessage(`http://127.0.0.1:${server.address().port}`)); +} else { + exports.start = files => new Promise((resolve, reject) => { + const worker = new Worker(__filename, { workerData: files }); + worker.once('error', reject); + worker.once('message', url => resolve({ url, close: () => worker.terminate() })); + }); +} diff --git a/scripts/native-package-smoke.cjs b/scripts/native-package-smoke.cjs new file mode 100644 index 0000000..603b581 --- /dev/null +++ b/scripts/native-package-smoke.cjs @@ -0,0 +1,65 @@ +const assert = require('node:assert/strict'); +const fs = require('node:fs'); +const os = require('node:os'); +const path = require('node:path'); +const { spawn } = require('node:child_process'); +const { createServer } = require('node:net'); + +(async () => { + const root = path.resolve(process.argv[2]); + const manifest = JSON.parse(fs.readFileSync(path.join(root, 'package.json'), 'utf8')); + const temp = fs.mkdtempSync(path.join(os.tmpdir(), 'cuemap-native-smoke-')); + const listener = createServer(); + await new Promise((resolve, reject) => { listener.once('error', reject); listener.listen(0, '127.0.0.1', resolve); }); + const port = listener.address().port; + await new Promise(resolve => listener.close(resolve)); + const native = path.join(root, 'bin', process.platform === 'win32' ? 'cuemap-native.exe' : 'cuemap-native'); + const child = spawn(native, ['start', '--disable-snapshots', '--disable-bg-jobs'], { + env: { ...process.env, CUEMAP_HOME: temp, CUEMAP_DATA_DIR: path.join(temp, 'data'), + CUEMAP_HOST: '127.0.0.1', CUEMAP_PORT: String(port), CUEMAP_API_KEY: 'release-test-key', + TOKENIZER_PATH: path.join(root, 'assets', 'en_tokenizer.bin') }, + stdio: ['ignore', 'pipe', 'pipe'], + }); + let logs = ''; + child.stdout.on('data', data => { logs = (logs + data).slice(-16000); }); + child.stderr.on('data', data => { logs = (logs + data).slice(-16000); }); + let spawnError; + child.on('error', error => { spawnError = error; }); + const url = `http://127.0.0.1:${port}`; + const headers = { 'X-API-Key': 'release-test-key', 'Content-Type': 'application/json', 'X-Project-ID': 'release-smoke' }; + try { + const deadline = Date.now() + 30000; + let ready = false; + while (Date.now() < deadline) { + if (spawnError) throw spawnError; + if (child.exitCode !== null) throw new Error(`Engine exited: ${logs}`); + try { ready = (await fetch(`${url}/healthz`)).status === 204; } catch {} + if (ready) break; + await new Promise(resolve => setTimeout(resolve, 100)); + } + assert.ok(ready, `Engine did not start: ${logs}`); + assert.equal((await fetch(`${url}/`)).status, 401); + const info = await (await fetch(`${url}/`, { headers })).json(); + assert.equal(info.version, manifest.version); + assert.ok(info.capabilities.includes('project_sync_v1')); + const added = await fetch(`${url}/memories`, { method: 'POST', headers, + body: JSON.stringify({ content: 'Release verification remembers the cobalt lighthouse.', cues: ['cobalt', 'lighthouse'] }) }); + assert.equal(added.status, 200, await added.text()); + const recalled = await fetch(`${url}/recall`, { method: 'POST', headers, + body: JSON.stringify({ query_text: 'cobalt lighthouse', semantic_mode: 'hybrid', auto_reinforce: false, min_intersection: 1 }) }); + assert.equal(recalled.status, 200); + assert.match(await recalled.text(), /cobalt lighthouse/); + const blocked = await fetch(`${url}/memories`, { method: 'POST', headers: { ...headers, Origin: 'https://untrusted.example' }, body: '{}' }); + assert.equal(blocked.status, 403); + console.log(`Verified native package ${manifest.name}@${manifest.version}`); + } finally { + if (child.exitCode === null) { + const exited = new Promise(resolve => child.once('exit', resolve)); + child.kill(); + const timer = setTimeout(() => child.kill('SIGKILL'), 5000); + await exited; + clearTimeout(timer); + } + fs.rmSync(temp, { recursive: true, force: true }); + } +})().catch(error => { console.error(error); process.exitCode = 1; }); diff --git a/scripts/node-command.cjs b/scripts/node-command.cjs new file mode 100644 index 0000000..03e7ac0 --- /dev/null +++ b/scripts/node-command.cjs @@ -0,0 +1,12 @@ +const fs = require('node:fs'); +const path = require('node:path'); + +exports.commandFor = function commandFor(command, args) { + if (process.platform !== 'win32' || command !== 'npm.cmd') return [command, args]; + // Run npm's JavaScript CLI directly: no cmd.exe interpolation of package paths. + const directories = [path.dirname(process.execPath), ...(process.env.PATH || '').split(path.delimiter)]; + const candidates = [process.env.npm_execpath, ...directories.map(directory => path.join(directory, 'node_modules', 'npm', 'bin', 'npm-cli.js'))]; + const cli = candidates.find(candidate => candidate && /npm-cli\.js$/i.test(candidate) && fs.existsSync(candidate)); + if (!cli) throw new Error('Cannot locate npm-cli.js; install npm alongside Node.js'); + return [process.execPath, [cli, ...args]]; +}; diff --git a/scripts/publish-native-artifacts.cjs b/scripts/publish-native-artifacts.cjs new file mode 100644 index 0000000..97f9afc --- /dev/null +++ b/scripts/publish-native-artifacts.cjs @@ -0,0 +1,36 @@ +const assert = require('node:assert/strict'); +const fs = require('node:fs'); +const path = require('node:path'); +const { createHash } = require('node:crypto'); +const { spawnSync } = require('node:child_process'); + +function publishArtifact(file, run = spawnSync) { + const manifestResult = run('tar', ['-xOf', file, 'package/package.json'], { encoding: 'utf8' }); + if (manifestResult.error) throw manifestResult.error; + assert.equal(manifestResult.status, 0, manifestResult.stderr); + const manifest = JSON.parse(manifestResult.stdout); + assert.match(manifest.name, /^@cuemap-dev\/engine-(linux-(x64|arm64)|darwin-(x64|arm64)|win32-x64)$/); + assert.match(manifest.version, /^\d+\.\d+\.\d+$/); + const integrity = `sha512-${createHash('sha512').update(fs.readFileSync(file)).digest('base64')}`; + const existing = run('npm', ['view', `${manifest.name}@${manifest.version}`, 'dist.integrity', '--json', '--registry=https://registry.npmjs.org'], { encoding: 'utf8' }); + if (existing.error) throw existing.error; + if (existing.status === 0) { + assert.equal(JSON.parse(existing.stdout), integrity, `Published bytes differ for ${manifest.name}@${manifest.version}`); + console.log(`Already published with matching integrity: ${manifest.name}@${manifest.version}`); + return; + } + let error; + try { error = JSON.parse(existing.stdout).error; } catch {} + assert.equal(error?.code, 'E404', `Cannot verify registry state: ${existing.stderr || existing.stdout}`); + const result = run('npm', ['publish', file, '--access', 'public', '--provenance'], { stdio: 'inherit' }); + if (result.error) throw result.error; + assert.equal(result.status, 0, `Publication failed for ${manifest.name}`); +} + +module.exports = { publishArtifact }; +if (require.main === module) { + const directory = process.argv[2]; + const files = fs.readdirSync(directory).filter(file => file.endsWith('.tgz')).sort(); + assert.equal(files.length, 5, 'Expected all five verified native tarballs'); + for (const file of files) publishArtifact(path.join(directory, file)); +} diff --git a/scripts/publish-native-artifacts.test.cjs b/scripts/publish-native-artifacts.test.cjs new file mode 100644 index 0000000..df7c81d --- /dev/null +++ b/scripts/publish-native-artifacts.test.cjs @@ -0,0 +1,30 @@ +const { test } = require('node:test'); +const assert = require('node:assert/strict'); +const fs = require('node:fs'); +const os = require('node:os'); +const path = require('node:path'); +const { createHash } = require('node:crypto'); +const { publishArtifact } = require('./publish-native-artifacts.cjs'); + +for (const scenario of ['same', 'different', 'absent', 'network-error']) { + test(`publication handles ${scenario} registry state`, () => { + const directory = fs.mkdtempSync(path.join(os.tmpdir(), 'cuemap-publish-test-')); + const file = path.join(directory, 'candidate.tgz'); + const bytes = Buffer.from('candidate fixture'); + fs.writeFileSync(file, bytes); + const integrity = `sha512-${createHash('sha512').update(bytes).digest('base64')}`; + let publishes = 0; + const run = (command, args) => { + if (command === 'tar') return { status: 0, stdout: JSON.stringify({name:'@cuemap-dev/engine-linux-x64',version:'0.7.3'}) }; + if (args[0] === 'publish') { publishes++; return { status: 0 }; } + if (scenario === 'same') return { status: 0, stdout: JSON.stringify(integrity) }; + if (scenario === 'different') return { status: 0, stdout: JSON.stringify('sha512-different') }; + return { status: 1, stdout: JSON.stringify({error:{code:scenario === 'absent' ? 'E404' : 'ETIMEDOUT'}}) }; + }; + try { + if (scenario === 'different' || scenario === 'network-error') assert.throws(() => publishArtifact(file, run)); + else publishArtifact(file, run); + assert.equal(publishes, scenario === 'absent' ? 1 : 0); + } finally { fs.rmSync(directory, { recursive:true, force:true }); } + }); +} diff --git a/scripts/release-preflight.cjs b/scripts/release-preflight.cjs new file mode 100644 index 0000000..441ae71 --- /dev/null +++ b/scripts/release-preflight.cjs @@ -0,0 +1,323 @@ +#!/usr/bin/env node + +const assert = require("node:assert/strict"); +const fs = require("node:fs"); +const https = require("node:https"); +const os = require("node:os"); +const path = require("node:path"); +const zlib = require("node:zlib"); +const { spawnSync } = require("node:child_process"); + +const ENGINE_ROOT = path.resolve(__dirname, ".."); +const WORKSPACE_ROOT = process.env.CUEMAP_WORKSPACE_ROOT || path.resolve(ENGINE_ROOT, ".."); +const TOKENIZER_URL = process.env.CUEMAP_TOKENIZER_URL || "https://cuemap.dev/assets/en_tokenizer.bin.gz"; +const TOKENIZER_SHA256 = "f54fd31ec463f8646d0239bb531a64e0210ed1ae02bf5e3b42aeeb9bff8305ba"; + +const REPOSITORIES = { + python: path.join(WORKSPACE_ROOT, "python-sdk"), + typescript: path.join(WORKSPACE_ROOT, "typescript-sdk"), + mcp: path.join(WORKSPACE_ROOT, "mcp-server"), + agent: path.join(WORKSPACE_ROOT, "agent-plugin"), +}; + +function npmCommand() { + return process.platform === "win32" ? "npm.cmd" : "npm"; +} + +function pythonCandidates() { + return process.env.PYTHON + ? [process.env.PYTHON] + : process.platform === "win32" + ? ["python", "py"] + : ["python3", "python", "python3.14", "python3.13", "python3.12", "python3.11", "python3.10"]; +} + +function pythonCommand(tempDir) { + const candidates = pythonCandidates(); + const probeDirectory = process.env.TMPDIR || os.tmpdir(); + let usablePython; + for (const candidate of candidates) { + const result = spawnSync(candidate, ["-c", "import sys"], { + cwd: probeDirectory, + stdio: "ignore", + }); + if (!result.error && result.status === 0) { + usablePython = candidate; + break; + } + } + if (!usablePython) { + throw new Error("No usable Python interpreter found. Install Python 3.8+ or set PYTHON to a configured interpreter."); + } + + const buildProbe = spawnSync(usablePython, ["-c", "import build; import setuptools.build_meta; import wheel; import pytest; import pytest_asyncio"], { + cwd: probeDirectory, + stdio: "ignore", + }); + if (!buildProbe.error && buildProbe.status === 0) return usablePython; + + const environment = path.join(tempDir, "python-build-env"); + console.log("Python packaging tool not found; creating a temporary environment"); + run(usablePython, ["-m", "venv", environment], { cwd: ENGINE_ROOT }); + const environmentPython = process.platform === "win32" + ? path.join(environment, "Scripts", "python.exe") + : path.join(environment, "bin", "python"); + run(environmentPython, [ + "-m", + "pip", + "install", + "--disable-pip-version-check", + "build>=1.0.0", + "setuptools>=61.0", + "wheel", + "pytest", + "pytest-asyncio", + ], { cwd: ENGINE_ROOT }); + const environmentProbe = spawnSync(environmentPython, ["-c", "import build; import setuptools.build_meta; import wheel; import pytest; import pytest_asyncio"], { + cwd: probeDirectory, + stdio: "ignore", + }); + if (!environmentProbe.error && environmentProbe.status === 0) return environmentPython; + throw new Error("Could not prepare a temporary Python environment with the `build` package."); +} + +function run(command, args, options = {}) { + [command, args] = require("./node-command.cjs").commandFor(command, args); + const result = spawnSync(command, args, { + cwd: options.cwd, + env: options.env, + encoding: "utf8", + stdio: options.stdio || "inherit", + }); + if (result.error) throw result.error; + if (result.status !== 0) { + throw new Error(`${command} ${args.join(" ")} exited with status ${result.status}`); + } + return result; +} + +function runCapture(command, args, options = {}) { + return run(command, args, { + ...options, + stdio: ["ignore", "pipe", "inherit"], + }); +} + +function assertFile(filePath, label) { + assert.ok(fs.existsSync(filePath), `${label} is missing: ${filePath}`); + assert.ok(fs.statSync(filePath).size > 0, `${label} is empty: ${filePath}`); +} + +function readJson(filePath) { + return JSON.parse(fs.readFileSync(filePath, "utf8")); +} + +function readVersion(filePath, pattern) { + const match = fs.readFileSync(filePath, "utf8").match(pattern); + assert.ok(match, `Could not read a version from ${filePath}`); + return match[1]; +} + +function assertVersions(expectedVersion) { + const versions = { + "rust_engine/Cargo.toml": readVersion( + path.join(ENGINE_ROOT, "Cargo.toml"), + /^version\s*=\s*"([^"]+)"/m, + ), + "python-sdk/pyproject.toml": readVersion( + path.join(REPOSITORIES.python, "pyproject.toml"), + /^version\s*=\s*"([^"]+)"/m, + ), + "typescript-sdk/package.json": readJson(path.join(REPOSITORIES.typescript, "package.json")).version, + "mcp-server/package.json": readJson(path.join(REPOSITORIES.mcp, "package.json")).version, + "agent-plugin/package.json": readJson(path.join(REPOSITORIES.agent, "package.json")).version, + "agent-plugin/plugin.json": readJson(path.join(REPOSITORIES.agent, "plugin.json")).version, + }; + + for (const [file, version] of Object.entries(versions)) { + assert.equal(version, expectedVersion, `${file} is ${version}, expected ${expectedVersion}`); + } +} + +function download(url) { + return new Promise((resolve, reject) => { + https.get(url, (response) => { + if (response.statusCode >= 300 && response.statusCode < 400 && response.headers.location) { + response.resume(); + download(new URL(response.headers.location, url).toString()).then(resolve, reject); + return; + } + if (response.statusCode !== 200) { + response.resume(); + reject(new Error(`Tokenizer download returned HTTP ${response.statusCode}`)); + return; + } + const chunks = []; + response.on("data", (chunk) => chunks.push(chunk)); + response.on("end", () => resolve(Buffer.concat(chunks))); + response.on("error", reject); + }).on("error", reject); + }); +} + +async function findTokenizer(tempDir) { + const candidates = [ + process.env.CUEMAP_TOKENIZER_PATH, + path.join(ENGINE_ROOT, "dist", "npm-native", "tokenizer", "en_tokenizer.bin"), + ].filter(Boolean); + for (const candidate of candidates) { + if (fs.existsSync(candidate)) return candidate; + } + + console.log(`Downloading checksum-pinned tokenizer from ${TOKENIZER_URL}`); + const compressed = await download(TOKENIZER_URL); + const actual = require("node:crypto").createHash("sha256").update(compressed).digest("hex"); + assert.equal(actual, TOKENIZER_SHA256, `Tokenizer checksum mismatch: ${actual}`); + const output = path.join(tempDir, "en_tokenizer.bin"); + fs.writeFileSync(output, zlib.gunzipSync(compressed)); + return output; +} + +function packDirectory(directory, destination) { + const result = runCapture(npmCommand(), ["pack", "--json", "--pack-destination", destination], { + cwd: directory, + }); + const records = JSON.parse(result.stdout); + assert.ok(Array.isArray(records) && records.length > 0, `npm pack returned no tarball for ${directory}`); + return path.join(destination, records[records.length - 1].filename); +} + +async function createLocalEnginePackage(tempDir, version) { + const packageLabel = `${process.platform}-${process.arch}`; + const packageRoot = path.join(tempDir, `engine-${packageLabel}`); + const binaryName = process.platform === "win32" ? "cuemap.exe" : "cuemap"; + const nativeName = process.platform === "win32" ? "cuemap-native.exe" : "cuemap-native"; + const sourceBinary = path.join(ENGINE_ROOT, "target", "release", binaryName); + assertFile(sourceBinary, "local release engine binary"); + const tokenizer = await findTokenizer(tempDir); + + fs.mkdirSync(path.join(packageRoot, "bin"), { recursive: true }); + fs.mkdirSync(path.join(packageRoot, "assets"), { recursive: true }); + fs.copyFileSync(path.join(ENGINE_ROOT, "scripts", "npm-native-wrapper.cjs"), path.join(packageRoot, "bin", "cuemap")); + fs.copyFileSync(sourceBinary, path.join(packageRoot, "bin", nativeName)); + fs.copyFileSync(tokenizer, path.join(packageRoot, "assets", "en_tokenizer.bin")); + fs.copyFileSync(path.join(ENGINE_ROOT, "scripts", "npm-native-README.md"), path.join(packageRoot, "README.md")); + fs.copyFileSync(path.join(ENGINE_ROOT, "LICENSE"), path.join(packageRoot, "LICENSE")); + fs.copyFileSync(path.join(ENGINE_ROOT, "NOTICE"), path.join(packageRoot, "NOTICE")); + fs.copyFileSync(path.join(ENGINE_ROOT, "THIRD_PARTY_NOTICES.txt"), path.join(packageRoot, "THIRD_PARTY_NOTICES.txt")); + fs.copyFileSync(path.join(ENGINE_ROOT, "LGPL-2.1.txt"), path.join(packageRoot, "LGPL-2.1.txt")); + fs.copyFileSync(path.join(ENGINE_ROOT, "ONNXRUNTIME-LICENSE.txt"), path.join(packageRoot, "ONNXRUNTIME-LICENSE.txt")); + fs.copyFileSync(path.join(ENGINE_ROOT, "ONNXRUNTIME-NOTICES.txt"), path.join(packageRoot, "ONNXRUNTIME-NOTICES.txt")); + + + fs.writeFileSync(path.join(packageRoot, "package.json"), `${JSON.stringify({ + name: `@cuemap-dev/engine-${packageLabel}`, + version, + description: `Pre-compiled CueMap Engine for ${process.platform} ${process.arch}`, + engines: { node: ">=18" }, + os: [process.platform], + cpu: [process.arch], + bin: { cuemap: "bin/cuemap" }, + files: ["bin", "assets", "README.md", "LICENSE", "NOTICE", "THIRD_PARTY_NOTICES.txt", "LGPL-2.1.txt", "ONNXRUNTIME-LICENSE.txt", "ONNXRUNTIME-NOTICES.txt"], + repository: { type: "git", url: "https://github.com/cuemap-dev/cuemap.git" }, + author: "Kaan Demirel", + license: "Apache-2.0", + publishConfig: { access: "public" }, + }, null, 2)}\n`); + + if (process.platform !== "win32") { + fs.chmodSync(path.join(packageRoot, "bin", "cuemap"), 0o755); + fs.chmodSync(path.join(packageRoot, "bin", nativeName), 0o755); + } + run(process.execPath, [path.join(ENGINE_ROOT, "scripts", "native-package-smoke.cjs"), packageRoot]); + return packDirectory(packageRoot, tempDir); +} + +async function main() { + const expectedVersion = readVersion(path.join(ENGINE_ROOT, "Cargo.toml"), /^version\s*=\s*"([^"]+)"/m); + assertVersions(expectedVersion); + for (const directory of Object.values(REPOSITORIES)) { + assert.ok(fs.existsSync(directory), `Missing sibling repository: ${directory}`); + } + + const runtimeTempBase = process.platform === "darwin" ? "/private/tmp" : os.tmpdir(); + const runtimeTempDir = fs.mkdtempSync(path.join(runtimeTempBase, "cuemap-release-runtime-")); + const previousTmpDir = process.env.TMPDIR; + if (process.platform === "darwin") process.env.TMPDIR = runtimeTempDir; + + try { + console.log(`Running CueMap ${expectedVersion} local release preflight`); + const suppliedTarball = process.env.CUEMAP_RELEASE_ENGINE_TARBALL; + let suppliedPackageRoot; + if (suppliedTarball) { + console.log("1/6 Verifying the supplied native release artifact"); + const extracted = path.join(runtimeTempDir, "native-artifact"); + fs.mkdirSync(extracted); + run("tar", ["-xzf", suppliedTarball, "-C", extracted]); + suppliedPackageRoot = path.join(extracted, "package"); + const manifest = readJson(path.join(suppliedPackageRoot, "package.json")); + assert.equal(manifest.version, expectedVersion); + assert.equal(manifest.name, `@cuemap-dev/engine-${process.platform}-${process.arch}`); + run(process.execPath, [path.join(ENGINE_ROOT, "scripts", "native-package-smoke.cjs"), suppliedPackageRoot]); + } else { + console.log("1/6 Building and testing the Rust engine"); + run("cargo", ["build", "--locked", "--release"], { cwd: ENGINE_ROOT }); + run("cargo", ["test", "--locked"], { cwd: ENGINE_ROOT }); + } + + process.env.CUEMAP_E2E = "1"; + process.env.CUEMAP_BIN = suppliedPackageRoot + ? path.join(suppliedPackageRoot, "bin", process.platform === "win32" ? "cuemap-native.exe" : "cuemap-native") + : path.join(ENGINE_ROOT, "target", "release", process.platform === "win32" ? "cuemap.exe" : "cuemap"); + process.env.CUEMAP_E2E_BIN = process.env.CUEMAP_BIN; + process.env.CUEMAP_HOME = path.join(runtimeTempDir, "engine-config"); + process.env.TOKENIZER_PATH = suppliedPackageRoot + ? path.join(suppliedPackageRoot, "assets", "en_tokenizer.bin") + : await findTokenizer(runtimeTempDir); + + console.log("2/6 Building and testing the TypeScript SDK and MCP server"); + run(npmCommand(), ["test"], { cwd: REPOSITORIES.typescript }); + run(npmCommand(), ["test"], { cwd: REPOSITORIES.mcp }); + + console.log("3/6 Verifying the Python SDK package"); + const python = pythonCommand(runtimeTempDir); + run(python, ["scripts/verify_package.py"], { cwd: REPOSITORIES.python }); + + console.log("4/6 Verifying the Agent Plugin package"); + run(process.execPath, ["scripts/verify.cjs"], { cwd: REPOSITORIES.agent }); + + const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "cuemap-release-preflight-")); + try { + console.log("5/6 Packing local consumer artifacts"); + const engineTarball = suppliedTarball || await createLocalEnginePackage(tempDir, expectedVersion); + const sdkTarball = packDirectory(REPOSITORIES.typescript, tempDir); + const mcpTarball = packDirectory(REPOSITORIES.mcp, tempDir); + + console.log("6/6 Installing and exercising the local consumer path"); + run(process.execPath, [ + path.join(ENGINE_ROOT, "scripts", "release-smoke.cjs"), + "--version", + expectedVersion, + "--mcp-tarball", + mcpTarball, + "--sdk-tarball", + sdkTarball, + "--engine-tarball", + engineTarball, + ], { cwd: ENGINE_ROOT }); + } finally { + fs.rmSync(tempDir, { recursive: true, force: true }); + } + + console.log(`Local release preflight passed for CueMap ${expectedVersion} on ${process.platform}-${process.arch}`); + } finally { + if (previousTmpDir === undefined) delete process.env.TMPDIR; + else process.env.TMPDIR = previousTmpDir; + fs.rmSync(runtimeTempDir, { recursive: true, force: true }); + } +} + +main().catch((error) => { + console.error(error.stack || error.message); + process.exitCode = 1; +}); diff --git a/scripts/release-smoke.cjs b/scripts/release-smoke.cjs new file mode 100644 index 0000000..75700ea --- /dev/null +++ b/scripts/release-smoke.cjs @@ -0,0 +1,293 @@ +#!/usr/bin/env node + +const assert = require("node:assert/strict"); +const fs = require("node:fs"); +const os = require("node:os"); +const path = require("node:path"); +const { createRequire } = require("node:module"); +const { execFileSync, spawnSync } = require("node:child_process"); + +const ROOT_DIR = path.resolve(__dirname, ".."); + +function usage() { + console.error( + "Usage: release-smoke.cjs --version [--mcp-tarball --sdk-tarball --engine-tarball ]", + ); + process.exit(2); +} + +function parseArgs(argv) { + const args = {}; + for (let index = 0; index < argv.length; index += 1) { + const argument = argv[index]; + if (!argument.startsWith("--")) usage(); + const key = argument.slice(2); + const value = argv[index + 1]; + if (!value || value.startsWith("--")) usage(); + args[key] = value; + index += 1; + } + return args; +} + +function npmCommand() { + return process.platform === "win32" ? "npm.cmd" : "npm"; +} + +function run(command, args, options = {}) { + [command, args] = require("./node-command.cjs").commandFor(command, args); + const result = spawnSync(command, args, { + encoding: "utf8", + stdio: options.stdio || "inherit", + cwd: options.cwd, + env: options.env, + }); + if (result.error) throw result.error; + if (result.status !== 0) { + throw new Error(`${command} ${args.join(" ")} exited with status ${result.status}`); + } + return result; +} + +function packageLabel() { + return `${process.platform}-${process.arch}`; +} + +function packageName() { + return `@cuemap-dev/engine-${packageLabel()}`; +} + +function assertPackageVersion(manifest, expectedVersion, label) { + assert.equal(manifest.version, expectedVersion, `${label} version mismatch`); +} + +function assertFile(filePath, label) { + assert.ok(fs.existsSync(filePath), `${label} is missing: ${filePath}`); + assert.ok(fs.statSync(filePath).size > 0, `${label} is empty: ${filePath}`); +} + +function resolvePackageManifest(requireFromTemp, packageName) { + try { + return requireFromTemp.resolve(`${packageName}/package.json`); + } catch { + let directory = path.dirname(requireFromTemp.resolve(packageName)); + while (directory !== path.dirname(directory)) { + const manifest = path.join(directory, "package.json"); + if (fs.existsSync(manifest)) return manifest; + directory = path.dirname(directory); + } + throw new Error(`Could not locate package.json for ${packageName}`); + } +} + +function escapeRegExp(value) { + return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); +} + +function verifyCommandVersion(executable, expectedVersion) { + const runThroughNode = process.platform === "win32" + && path.extname(executable).toLowerCase() !== ".exe"; + const command = runThroughNode ? process.execPath : executable; + const args = runThroughNode ? [executable, "--version"] : ["--version"]; + const result = spawnSync(command, args, { encoding: "utf8" }); + if (result.error) throw result.error; + assert.equal(result.status, 0, `packaged cuemap --version failed: ${result.stderr}`); + assert.match( + `${result.stdout}${result.stderr}`, + new RegExp(escapeRegExp(expectedVersion)), + "packaged cuemap did not report the expected version", + ); +} + +function writeMcpClient(tempDir) { + const clientPath = path.join(tempDir, "release-mcp-client.cjs"); + const source = String.raw`const assert = require("node:assert/strict"); +const { createServer } = require("node:http"); +const { Client } = require("@modelcontextprotocol/sdk/client/index.js"); +const { StdioClientTransport } = require("@modelcontextprotocol/sdk/client/stdio.js"); + +async function freePort() { + const server = createServer(); + await new Promise((resolve, reject) => { + server.once("error", reject); + server.listen(0, "127.0.0.1", resolve); + }); + const address = server.address(); + const port = address.port; + await new Promise((resolve, reject) => server.close((error) => error ? reject(error) : resolve())); + return port; +} + +function textOf(result) { + return (result.content || []) + .filter((item) => item.type === "text") + .map((item) => item.text) + .join("\n"); +} + +(async () => { + const [serverPath, expectedVersion, dataDir, logPath] = process.argv.slice(2); + const port = await freePort(); + const project = "release-smoke-" + process.pid; + const client = new Client({ name: "cuemap-release-smoke", version: expectedVersion }); + const env = { + ...process.env, + CUEMAP_PORT: String(port), + CUEMAP_DATA_DIR: dataDir, + CUEMAP_LOG_PATH: logPath, + CUEMAP_PROJECT: project, + CUEMAP_SNAPSHOT_INTERVAL_SECONDS: "3600", + }; + delete env.CUEMAP_BIN; + delete env.CUEMAP_URL; + + const transport = new StdioClientTransport({ + command: process.execPath, + args: [serverPath], + cwd: process.cwd(), + env, + }); + + try { + await client.connect(transport); + const listed = await client.listTools(); + const names = new Set(listed.tools.map((tool) => tool.name)); + for (const required of [ + "cuemap_add", + "cuemap_recall", + "cuemap_stats", + "cuemap_project_load", + "cuemap_project_unload", + ]) { + assert.ok(names.has(required), required + " missing from published MCP server"); + } + + const memory = "Release smoke test stored this memory successfully."; + const added = await client.callTool({ + name: "cuemap_add", + arguments: { + project, + content: memory, + cues: ["release", "smoke", "verification"], + source_key: "release-smoke:" + process.pid, + }, + }); + assert.match(textOf(added), /Stored memory/); + + const recalled = await client.callTool({ + name: "cuemap_recall", + arguments: { + projects: [project], + query: "What did the release smoke test store?", + semantic_mode: "lexical", + limit: 5, + }, + }); + assert.match(textOf(recalled), /Release smoke test stored this memory successfully/); + + const unloaded = await client.callTool({ + name: "cuemap_project_unload", + arguments: { project }, + }); + assert.match(textOf(unloaded), /"loaded": false/); + + const loaded = await client.callTool({ + name: "cuemap_project_load", + arguments: { project }, + }); + assert.match(textOf(loaded), /"loaded": true/); + console.log("MCP published-install smoke passed"); + } finally { + await client.close().catch(() => undefined); + } +})().catch((error) => { + console.error(error.stack || error.message); + process.exitCode = 1; +}); +`; + fs.writeFileSync(clientPath, source); + return clientPath; +} + +async function main() { + const args = parseArgs(process.argv.slice(2)); + const expectedVersion = args.version; + if (!expectedVersion) usage(); + + const localPackages = [args["mcp-tarball"], args["sdk-tarball"], args["engine-tarball"]]; + const usingLocalPackages = localPackages.some(Boolean); + if (usingLocalPackages && localPackages.some((value) => !value)) usage(); + + const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "cuemap-release-smoke-")); + const dataDir = path.join(tempDir, "data"); + const logPath = path.join(tempDir, "engine.log"); + fs.mkdirSync(dataDir); + + const registry = usingLocalPackages ? await require("./local-release-registry.cjs").start(localPackages) : null; + try { + run(npmCommand(), ["init", "-y"], { cwd: tempDir, stdio: "ignore" }); + const installTargets = [`cuemap-mcp@${expectedVersion}`]; + run(npmCommand(), [ + "install", + "--no-save", + "--ignore-scripts", + "--package-lock=false", + "--no-audit", + ...(registry ? ["--registry", registry.url] : []), + ...installTargets, + ], { cwd: tempDir }); + + const requireFromTemp = createRequire(path.join(tempDir, "release-smoke-entry.cjs")); + const engineManifestPath = resolvePackageManifest(requireFromTemp, packageName()); + const engineRoot = path.dirname(engineManifestPath); + const engineManifest = JSON.parse(fs.readFileSync(engineManifestPath, "utf8")); + assertPackageVersion(engineManifest, expectedVersion, packageName()); + assert.equal(engineManifest.license, "Apache-2.0", "native engine license mismatch"); + + const wrapper = path.join(engineRoot, "bin", "cuemap"); + const nativeName = process.platform === "win32" ? "cuemap-native.exe" : "cuemap-native"; + assertFile(wrapper, "native package wrapper"); + assertFile(path.join(engineRoot, "bin", nativeName), "native package executable"); + assertFile(path.join(engineRoot, "assets", "en_tokenizer.bin"), "native package tokenizer"); + assertFile(path.join(engineRoot, "LICENSE"), "native package license"); + assertFile(path.join(engineRoot, "NOTICE"), "native package notice"); + assertFile(path.join(engineRoot, "THIRD_PARTY_NOTICES.txt"), "native package third-party license"); + assertFile(path.join(engineRoot, "LGPL-2.1.txt"), "native package third-party license"); + assertFile(path.join(engineRoot, "ONNXRUNTIME-LICENSE.txt"), "native package third-party license"); + assertFile(path.join(engineRoot, "ONNXRUNTIME-NOTICES.txt"), "native package third-party license"); + + verifyCommandVersion(wrapper, expectedVersion); + + const mcpManifestPath = resolvePackageManifest(requireFromTemp, "cuemap-mcp"); + const sdkManifestPath = resolvePackageManifest(requireFromTemp, "cuemap"); + assertPackageVersion(JSON.parse(fs.readFileSync(mcpManifestPath, "utf8")), expectedVersion, "cuemap-mcp"); + assertPackageVersion(JSON.parse(fs.readFileSync(sdkManifestPath, "utf8")), expectedVersion, "cuemap"); + assert.equal(JSON.parse(fs.readFileSync(mcpManifestPath, "utf8")).license, "MIT"); + assert.equal(JSON.parse(fs.readFileSync(sdkManifestPath, "utf8")).license, "MIT"); + + run(process.execPath, [ + path.join(ROOT_DIR, "scripts", "verify-npm-native-runtime.cjs"), + wrapper, + packageLabel(), + ], { cwd: tempDir }); + + const mcpClient = writeMcpClient(tempDir); + run(process.execPath, [ + mcpClient, + path.join(tempDir, "node_modules", "cuemap-mcp", "build", "index.js"), + expectedVersion, + dataDir, + logPath, + ], { cwd: tempDir }); + + console.log(`Release smoke passed (${usingLocalPackages ? "local packages" : "public registry"}, ${packageLabel()})`); + } finally { + if (registry) await registry.close(); + fs.rmSync(tempDir, { recursive: true, force: true }); + } +} + +main().catch(error => { + console.error(error.stack || error.message); + process.exitCode = 1; +}); diff --git a/scripts/verify-docker-runtime.py b/scripts/verify-docker-runtime.py new file mode 100644 index 0000000..e534cb7 --- /dev/null +++ b/scripts/verify-docker-runtime.py @@ -0,0 +1,62 @@ +"""Exercise an isolated release container, including its configured health check.""" +import argparse +import json +import os +import subprocess +import time +import urllib.error +import urllib.request + +parser = argparse.ArgumentParser() +parser.add_argument('--image', required=True) +parser.add_argument('--version', required=True) +args = parser.parse_args() +name = f'cuemap-release-check-{os.getpid()}' + + +def docker(*args): + return subprocess.check_output(['docker', *args], text=True).strip() + + +def request(endpoint, payload=None, authenticated=True): + headers = {'X-Project-ID': 'release-check', 'Content-Type': 'application/json'} + if authenticated: + headers['X-API-Key'] = 'release-test-key' + data = json.dumps(payload).encode() if payload is not None else None + req = urllib.request.Request(url + endpoint, data=data, headers=headers) + try: + with urllib.request.urlopen(req, timeout=3) as response: + return response.status, response.read().decode() + except urllib.error.HTTPError as error: + return error.code, error.read().decode() + + +docker('run', '--detach', '--rm', '--name', name, '-e', 'CUEMAP_API_KEY=release-test-key', + '-p', '127.0.0.1::8735', args.image) +try: + address = docker('port', name, '8735/tcp').splitlines()[0] + url = 'http://' + address + deadline = time.monotonic() + 90 + while True: + try: + if request('/healthz', authenticated=False)[0] == 204: + break + except (OSError, urllib.error.URLError): + pass + if time.monotonic() > deadline: + raise RuntimeError('Container failed to start: ' + docker('logs', name)) + time.sleep(.5) + assert request('/', authenticated=False)[0] == 401 + status, body = request('/') + assert status == 200 and json.loads(body)['version'] == args.version, body + status, body = request('/memories', {'content': 'The release check remembers a cobalt lighthouse.', 'cues': ['cobalt', 'lighthouse']}) + assert status == 200, body + status, body = request('/recall', {'query_text': 'cobalt lighthouse', 'semantic_mode': 'hybrid', 'min_intersection': 1, 'auto_reinforce': False}) + assert status == 200 and 'cobalt lighthouse' in body, body + while docker('inspect', '--format', '{{.State.Health.Status}}', name) != 'healthy': + if time.monotonic() > deadline: + raise RuntimeError('Docker health check failed: ' + docker('inspect', '--format', '{{json .State.Health}}', name)) + time.sleep(1) + print(f'Authenticated Docker runtime and health check passed: {args.image}') +finally: + docker('stop', '--time', '5', name) diff --git a/scripts/verify-npm-native-runtime.cjs b/scripts/verify-npm-native-runtime.cjs index c01d553..6b40a0d 100755 --- a/scripts/verify-npm-native-runtime.cjs +++ b/scripts/verify-npm-native-runtime.cjs @@ -65,14 +65,21 @@ async function stopChild() { new Promise((resolve) => child.once("exit", resolve)), new Promise((resolve) => setTimeout(resolve, 5_000)), ]); - if (child.exitCode === null) child.kill("SIGKILL"); + if (child.exitCode === null) { + const exited = new Promise((resolve) => child.once("exit", resolve)); + child.kill("SIGKILL"); + await exited; + } } async function main() { const port = await findFreePort(); const baseUrl = `http://127.0.0.1:${port}`; + const windows = process.platform === "win32"; + const spawnExecutable = windows && path.extname(executable).toLowerCase() !== ".exe" + ? path.join(path.dirname(executable), "cuemap-native.exe") : executable; child = spawn( - executable, + spawnExecutable, [ "start", "--port", @@ -84,7 +91,10 @@ async function main() { ], { stdio: ["ignore", "pipe", "pipe"], - env: { ...process.env, TOKENIZER_PATH: "" }, + env: { ...process.env, CUEMAP_HOME: path.join(dataDir, "config"), + CUEMAP_HOST: "127.0.0.1", CUEMAP_API_KEY: "", + TOKENIZER_PATH: windows + ? path.join(path.dirname(path.dirname(spawnExecutable)), "assets", "en_tokenizer.bin") : "" }, }, ); for (const stream of [child.stdout, child.stderr]) { diff --git a/src/agent/chunker.rs b/src/agent/chunker.rs index 0037c6f..0d7ecee 100644 --- a/src/agent/chunker.rs +++ b/src/agent/chunker.rs @@ -68,6 +68,102 @@ const JAVA_QUERY: &str = r#" (import_declaration (scoped_identifier) @imports_module) "#; +const SWIFT_QUERY: &str = r#" +(function_declaration name: (simple_identifier) @defines_function) +(protocol_function_declaration name: (simple_identifier) @defines_method) +(class_declaration declaration_kind: "class" name: (type_identifier) @defines_class) +(class_declaration declaration_kind: "struct" name: (type_identifier) @defines_struct) +(class_declaration declaration_kind: "enum" name: (type_identifier) @defines_enum) +(class_declaration declaration_kind: "actor" name: (type_identifier) @defines_class) +(class_declaration declaration_kind: "extension" name: (type_identifier) @defines_class) +(protocol_declaration name: (type_identifier) @defines_interface) +(call_suffix name: (simple_identifier) @calls_function) +(import_declaration (identifier) @imports_module) +"#; + +const DART_QUERY: &str = r#" +(function_declaration + signature: (function_signature name: (identifier) @defines_function)) +(getter_declaration + signature: (getter_signature name: (identifier) @defines_function)) +(setter_declaration + signature: (setter_signature name: (identifier) @defines_function)) +(class_declaration name: (identifier) @defines_class) +(mixin_declaration (identifier) @defines_class) +(extension_declaration name: (identifier) @defines_class) +(extension_type_declaration name: (extension_type_name (identifier) @defines_class)) +(enum_declaration name: (identifier) @defines_enum) +(method_signature (function_signature name: (identifier) @defines_method)) +(method_signature (getter_signature name: (identifier) @defines_method)) +(method_signature (setter_signature name: (identifier) @defines_method)) +(constructor_signature name: (identifier) @defines_method) +(call_expression function: (identifier) @calls_function) +(call_expression function: (member_expression property: (identifier) @calls_method)) +(call_expression function: (null_aware_member_expression property: (identifier) @calls_method)) +"#; + +const OBJC_QUERY: &str = r#" +(class_interface (identifier) @defines_class) +(class_implementation (identifier) @defines_class) +(protocol_declaration (identifier) @defines_interface) +(method_declaration (method_identifier) @defines_method) +(function_definition declarator: (function_declarator declarator: (identifier) @defines_function)) +(call_expression function: (identifier) @calls_function) +(preproc_include path: (_) @imports_module) +"#; + +const KOTLIN_QUERY: &str = r#" +(class_declaration "class" (type_identifier) @defines_class) +(object_declaration (type_identifier) @defines_class) +(class_declaration "interface" (type_identifier) @defines_interface) +(enum_class_body (enum_entry (simple_identifier) @defines_enum)) +(function_declaration (simple_identifier) @defines_function) +(call_expression (simple_identifier) @calls_function) +(navigation_expression (simple_identifier) @calls_method) +(import_header (identifier) @imports_module) +"#; + +const C_QUERY: &str = r#" +(function_definition declarator: (function_declarator declarator: (_) @defines_function)) +(struct_specifier name: (type_identifier) @defines_struct) +(enum_specifier name: (type_identifier) @defines_enum) +(type_definition declarator: (type_identifier) @defines_type) +(call_expression function: (identifier) @calls_function) +(call_expression function: (field_expression field: (field_identifier) @calls_method)) +(preproc_include path: (_) @imports_module) +"#; + +const CPP_QUERY: &str = r#" +(function_definition declarator: (function_declarator declarator: (_) @defines_function)) +(class_specifier name: (type_identifier) @defines_class) +(struct_specifier name: (type_identifier) @defines_struct) +(enum_specifier name: (type_identifier) @defines_enum) +(namespace_definition name: (_) @defines_namespace) +(call_expression function: (identifier) @calls_function) +(call_expression function: (field_expression field: (field_identifier) @calls_method)) +(preproc_include path: (_) @imports_module) +"#; + +const CSHARP_QUERY: &str = r#" +(class_declaration name: (identifier) @defines_class) +(struct_declaration name: (identifier) @defines_struct) +(interface_declaration name: (identifier) @defines_interface) +(enum_declaration name: (identifier) @defines_enum) +(namespace_declaration name: (_) @defines_namespace) +(method_declaration name: (identifier) @defines_method) +(property_declaration name: (identifier) @defines_property) +(invocation_expression function: (identifier) @calls_function) +(invocation_expression function: (member_access_expression name: (identifier) @calls_method)) +(using_directive (type) @imports_module) +"#; + +const BASH_QUERY: &str = r#" +(function_definition name: (word) @defines_function) +(command name: (command_name) @calls_function) +(for_statement variable: (variable_name) @defines_variable) +(variable_assignment name: (variable_name) @defines_variable) +"#; + struct Parsers { python: Option, rust: Option, @@ -78,6 +174,15 @@ struct Parsers { css: Option, php: Option, java: Option, + swift: Option, + dart: Option, + objc: Option, + kotlin: Option, + c: Option, + cpp: Option, + csharp: Option, + bash: Option, + toml: Option, } impl Parsers { @@ -92,6 +197,15 @@ impl Parsers { css: None, php: None, java: None, + swift: None, + dart: None, + objc: None, + kotlin: None, + c: None, + cpp: None, + csharp: None, + bash: None, + toml: None, } } @@ -184,6 +298,96 @@ impl Parsers { parser }) } + + fn get_swift(&mut self) -> &mut Parser { + self.swift.get_or_insert_with(|| { + let mut parser = Parser::new(); + parser + .set_language(&tree_sitter_swift::LANGUAGE.into()) + .expect("Error loading Swift grammar"); + parser + }) + } + + fn get_dart(&mut self) -> &mut Parser { + self.dart.get_or_insert_with(|| { + let mut parser = Parser::new(); + parser + .set_language(&tree_sitter_dart::LANGUAGE.into()) + .expect("Error loading Dart grammar"); + parser + }) + } + + fn get_objc(&mut self) -> &mut Parser { + self.objc.get_or_insert_with(|| { + let mut parser = Parser::new(); + parser + .set_language(&tree_sitter_objc::LANGUAGE.into()) + .expect("Error loading Objective-C grammar"); + parser + }) + } + + fn get_kotlin(&mut self) -> &mut Parser { + self.kotlin.get_or_insert_with(|| { + let mut parser = Parser::new(); + parser + .set_language(&brokk_tree_sitter_kotlin::LANGUAGE.into()) + .expect("Error loading Kotlin grammar"); + parser + }) + } + + fn get_c(&mut self) -> &mut Parser { + self.c.get_or_insert_with(|| { + let mut parser = Parser::new(); + parser + .set_language(&tree_sitter_c::LANGUAGE.into()) + .expect("Error loading C grammar"); + parser + }) + } + + fn get_cpp(&mut self) -> &mut Parser { + self.cpp.get_or_insert_with(|| { + let mut parser = Parser::new(); + parser + .set_language(&tree_sitter_cpp::LANGUAGE.into()) + .expect("Error loading C++ grammar"); + parser + }) + } + + fn get_csharp(&mut self) -> &mut Parser { + self.csharp.get_or_insert_with(|| { + let mut parser = Parser::new(); + parser + .set_language(&tree_sitter_c_sharp::LANGUAGE.into()) + .expect("Error loading C# grammar"); + parser + }) + } + + fn get_bash(&mut self) -> &mut Parser { + self.bash.get_or_insert_with(|| { + let mut parser = Parser::new(); + parser + .set_language(&tree_sitter_bash::LANGUAGE.into()) + .expect("Error loading Bash grammar"); + parser + }) + } + + fn get_toml(&mut self) -> &mut Parser { + self.toml.get_or_insert_with(|| { + let mut parser = Parser::new(); + parser + .set_language(&tree_sitter_toml_ng::LANGUAGE.into()) + .expect("Error loading TOML grammar"); + parser + }) + } } #[derive(Debug, Clone)] @@ -202,7 +406,7 @@ pub enum ChunkCategory { Code, // Programming languages - structural cues #[default] Prose, // Longform text - sentence/logical-block segmentation - Structured, // CSV, JSON, YAML, XML - key-aware extraction + Structured, // CSV, JSON, YAML, XML, TOML - key-aware extraction ApiSpec, // OpenAPI/Swagger - special handling Conversation, // Chat exports - participant context WebContent, // URLs - metadata extraction @@ -219,11 +423,20 @@ pub enum ChunkerType { Css, Php, Java, + Swift, + Dart, + ObjectiveC, + Kotlin, + C, + Cpp, + CSharp, + Bash, Markdown, Csv, Json, Yaml, Xml, + Toml, Pdf, Office, // DOCX, XLSX, PPTX Text, @@ -296,7 +509,7 @@ impl Chunker { pub fn chunk_file(path: &Path, content: &str) -> Vec { // PRIORITY 1: Path-based type detection (explicit extensions win) - let file_type = match Self::detect_type(path) { + let file_type = match Self::detect_type_for_content(path, content) { Some(t) => t, None => { // PRIORITY 2: Content-based detection for social media exports or other formats without extensions @@ -320,11 +533,20 @@ impl Chunker { ChunkerType::Css => Self::chunk_css(content), ChunkerType::Php => Self::chunk_php(content), ChunkerType::Java => Self::chunk_java(content), + ChunkerType::Swift => Self::chunk_swift(content), + ChunkerType::Dart => Self::chunk_dart(content), + ChunkerType::ObjectiveC => Self::chunk_objc(content), + ChunkerType::Kotlin => Self::chunk_kotlin(content), + ChunkerType::C => Self::chunk_c(content), + ChunkerType::Cpp => Self::chunk_cpp(content), + ChunkerType::CSharp => Self::chunk_csharp(content), + ChunkerType::Bash => Self::chunk_bash(content), ChunkerType::Markdown => Self::chunk_markdown(content), ChunkerType::Csv => Self::chunk_csv(content), ChunkerType::Json => Self::chunk_json(content), ChunkerType::Yaml => Self::chunk_yaml(content), ChunkerType::Xml => Self::chunk_xml(content), + ChunkerType::Toml => Self::chunk_toml(content), ChunkerType::Pdf => Self::chunk_pdf(path), ChunkerType::Office => Self::chunk_office(path), ChunkerType::Text => Self::chunk_text(content), @@ -458,7 +680,22 @@ impl Chunker { return Some(ChunkerType::SocialExport); } - match path.extension().and_then(|s| s.to_str()) { + let file_name = path + .file_name() + .and_then(|s| s.to_str()) + .map(|s| s.to_ascii_lowercase()); + if matches!( + file_name.as_deref(), + Some(".bashrc" | ".bash_profile" | ".bash_login" | ".profile" | "ebuild" | "eclass") + ) { + return Some(ChunkerType::Bash); + } + + let extension = path + .extension() + .and_then(|s| s.to_str()) + .map(|s| s.to_ascii_lowercase()); + match extension.as_deref() { Some("py") => Some(ChunkerType::Python), Some("rs") => Some(ChunkerType::Rust), Some("ts" | "tsx") => Some(ChunkerType::TypeScript), @@ -468,11 +705,23 @@ impl Chunker { Some("css") => Some(ChunkerType::Css), Some("php") => Some(ChunkerType::Php), Some("java") => Some(ChunkerType::Java), + Some("swift") => Some(ChunkerType::Swift), + Some("dart") => Some(ChunkerType::Dart), + Some("m" | "mm") => Some(ChunkerType::ObjectiveC), + Some("h") => Some(Self::classify_header(path, None)), + Some("kt" | "kts") => Some(ChunkerType::Kotlin), + Some("c") => Some(ChunkerType::C), + Some("cc" | "cp" | "cpp" | "cxx" | "c++" | "hh" | "hpp" | "hxx" | "ipp" | "inl") => { + Some(ChunkerType::Cpp) + } + Some("cs" | "csx") => Some(ChunkerType::CSharp), + Some("sh" | "bash" | "zsh" | "bats") => Some(ChunkerType::Bash), Some("md") => Some(ChunkerType::Markdown), Some("csv") => Some(ChunkerType::Csv), Some("json") => Some(ChunkerType::Json), Some("yaml" | "yml") => Some(ChunkerType::Yaml), Some("xml") => Some(ChunkerType::Xml), + Some("toml") => Some(ChunkerType::Toml), Some("pdf") => Some(ChunkerType::Pdf), Some("docx" | "xlsx" | "pptx") => Some(ChunkerType::Office), Some("txt" | "log") => Some(ChunkerType::Text), @@ -480,6 +729,130 @@ impl Chunker { } } + fn detect_type_for_content(path: &Path, content: &str) -> Option { + if path + .extension() + .and_then(|value| value.to_str()) + .map(|value| value.eq_ignore_ascii_case("h")) + .unwrap_or(false) + { + return Some(Self::classify_header(path, Some(content))); + } + + Self::detect_type(path) + } + + /// Headers are the one common extension shared by C, C++, and Objective-C. + /// Use source syntax first, then project markers, while retaining C as the + /// neutral default for non-Apple projects. + fn classify_header(path: &Path, content: Option<&str>) -> ChunkerType { + if let Some(content) = content { + let lower = content.to_ascii_lowercase(); + if Self::looks_like_objective_c(&lower) { + return ChunkerType::ObjectiveC; + } + if Self::looks_like_cpp(&lower) { + return ChunkerType::Cpp; + } + } + + if Self::is_apple_project(path) { + ChunkerType::ObjectiveC + } else { + ChunkerType::C + } + } + + fn looks_like_objective_c(lower_content: &str) -> bool { + [ + "@interface", + "@implementation", + "@protocol", + "@property", + "@selector(", + "#import bool { + [ + "namespace ", + "using namespace ", + "template<", + "template <", + "std::", + "constexpr ", + "nullptr", + "public:", + "private:", + "protected:", + "::", + ] + .iter() + .any(|marker| lower_content.contains(marker)) + || lower_content.lines().any(|line| { + let line = line.trim_start(); + line.starts_with("class ") || line.starts_with("struct ") + }) + } + + fn is_apple_project(path: &Path) -> bool { + let mut current = path.parent(); + while let Some(directory) = current { + if directory.join("project.pbxproj").is_file() + || directory.join("Podfile").is_file() + || directory.join("Cartfile").is_file() + { + return true; + } + + if let Ok(entries) = std::fs::read_dir(directory) { + for entry in entries.flatten() { + let entry_path = entry.path(); + if matches!( + entry_path.extension().and_then(|value| value.to_str()), + Some("xcodeproj" | "xcworkspace" | "playground") + ) { + return true; + } + if entry_path + .file_name() + .and_then(|value| value.to_str()) + .map(|value| value.eq_ignore_ascii_case("Package.swift")) + .unwrap_or(false) + { + if let Ok(package_manifest) = std::fs::read_to_string(&entry_path) { + let lower = package_manifest.to_ascii_lowercase(); + if [ + ".ios(", + ".macos(", + ".maccatalyst(", + ".tvos(", + ".watchos(", + ".visionos(", + ] + .iter() + .any(|marker| lower.contains(marker)) + { + return true; + } + } + } + } + } + + current = directory.parent(); + } + + false + } + fn chunk_python(content: &str) -> Vec { PARSERS.with(|parsers| { let mut parsers = parsers.borrow_mut(); @@ -786,6 +1159,267 @@ impl Chunker { }) } + pub fn chunk_swift(content: &str) -> Vec { + PARSERS.with(|parsers| { + let mut parsers = parsers.borrow_mut(); + let parser = parsers.get_swift(); + Self::chunk_treesitter_with_names( + content, + parser, + &[ + "class_declaration", + "protocol_declaration", + "function_declaration", + "protocol_function_declaration", + "if_statement", + "guard_statement", + "for_statement", + "while_statement", + "repeat_while_statement", + "switch_statement", + "call_expression", + "property_declaration", + "comment", + ], + "lang:swift", + ChunkCategory::Code, + Some(SWIFT_QUERY), + true, + ) + }) + } + + pub fn chunk_dart(content: &str) -> Vec { + PARSERS.with(|parsers| { + let mut parsers = parsers.borrow_mut(); + let parser = parsers.get_dart(); + Self::chunk_treesitter_with_names( + content, + parser, + &[ + "class_declaration", + "mixin_declaration", + "extension_declaration", + "extension_type_declaration", + "enum_declaration", + "function_declaration", + "getter_declaration", + "setter_declaration", + "method_signature", + "constructor_signature", + "if_statement", + "for_statement", + "while_statement", + "do_statement", + "switch_statement", + "call_expression", + "comment", + ], + "lang:dart", + ChunkCategory::Code, + Some(DART_QUERY), + true, + ) + }) + } + + pub fn chunk_objc(content: &str) -> Vec { + PARSERS.with(|parsers| { + let mut parsers = parsers.borrow_mut(); + let parser = parsers.get_objc(); + Self::chunk_treesitter_with_names( + content, + parser, + &[ + "class_interface", + "class_implementation", + "protocol_declaration", + "method_declaration", + "function_definition", + "if_statement", + "for_statement", + "while_statement", + "do_statement", + "compound_statement", + "message_expression", + "call_expression", + "comment", + ], + "lang:objc", + ChunkCategory::Code, + Some(OBJC_QUERY), + true, + ) + }) + } + + pub fn chunk_kotlin(content: &str) -> Vec { + PARSERS.with(|parsers| { + let mut parsers = parsers.borrow_mut(); + let parser = parsers.get_kotlin(); + Self::chunk_treesitter_with_names( + content, + parser, + &[ + "class_declaration", + "object_declaration", + "enum_class_body", + "function_declaration", + "property_declaration", + "if_expression", + "for_statement", + "while_statement", + "do_while_statement", + "when_expression", + "call_expression", + "comment", + ], + "lang:kotlin", + ChunkCategory::Code, + Some(KOTLIN_QUERY), + true, + ) + }) + } + + pub fn chunk_c(content: &str) -> Vec { + PARSERS.with(|parsers| { + let mut parsers = parsers.borrow_mut(); + let parser = parsers.get_c(); + Self::chunk_treesitter_with_names( + content, + parser, + &[ + "function_definition", + "struct_specifier", + "enum_specifier", + "type_definition", + "declaration", + "preproc_include", + "preproc_def", + "preproc_function_def", + "if_statement", + "for_statement", + "while_statement", + "switch_statement", + "expression_statement", + "comment", + ], + "lang:c", + ChunkCategory::Code, + Some(C_QUERY), + true, + ) + }) + } + + pub fn chunk_cpp(content: &str) -> Vec { + PARSERS.with(|parsers| { + let mut parsers = parsers.borrow_mut(); + let parser = parsers.get_cpp(); + Self::chunk_treesitter_with_names( + content, + parser, + &[ + "function_definition", + "class_specifier", + "struct_specifier", + "enum_specifier", + "namespace_definition", + "template_declaration", + "declaration", + "preproc_include", + "preproc_def", + "preproc_function_def", + "if_statement", + "for_statement", + "while_statement", + "switch_statement", + "expression_statement", + "comment", + ], + "lang:cpp", + ChunkCategory::Code, + Some(CPP_QUERY), + true, + ) + }) + } + + pub fn chunk_csharp(content: &str) -> Vec { + PARSERS.with(|parsers| { + let mut parsers = parsers.borrow_mut(); + let parser = parsers.get_csharp(); + Self::chunk_treesitter_with_names( + content, + parser, + &[ + "namespace_declaration", + "class_declaration", + "struct_declaration", + "interface_declaration", + "enum_declaration", + "method_declaration", + "constructor_declaration", + "property_declaration", + "if_statement", + "for_statement", + "foreach_statement", + "while_statement", + "switch_statement", + "local_declaration_statement", + "expression_statement", + "comment", + ], + "lang:csharp", + ChunkCategory::Code, + Some(CSHARP_QUERY), + true, + ) + }) + } + + pub fn chunk_bash(content: &str) -> Vec { + PARSERS.with(|parsers| { + let mut parsers = parsers.borrow_mut(); + let parser = parsers.get_bash(); + Self::chunk_treesitter_with_names( + content, + parser, + &[ + "function_definition", + "command", + "variable_assignment", + "if_statement", + "for_statement", + "while_statement", + "case_statement", + "comment", + ], + "lang:bash", + ChunkCategory::Code, + Some(BASH_QUERY), + true, + ) + }) + } + + pub fn chunk_toml(content: &str) -> Vec { + PARSERS.with(|parsers| { + let mut parsers = parsers.borrow_mut(); + let parser = parsers.get_toml(); + Self::chunk_treesitter_with_names( + content, + parser, + &["table", "table_array_element", "pair"], + "lang:toml", + ChunkCategory::Structured, + None, + true, + ) + }) + } + fn chunk_treesitter_with_names( content: &str, parser: &mut Parser, @@ -904,6 +1538,37 @@ impl Chunker { chunks } + fn find_declarator_name(node: tree_sitter::Node) -> Option { + if matches!( + node.kind(), + "identifier" + | "field_identifier" + | "type_identifier" + | "qualified_identifier" + | "namespace_identifier" + ) { + return Some(node); + } + + if let Some(declarator) = node.child_by_field_name("declarator") { + if let Some(name) = Self::find_declarator_name(declarator) { + return Some(name); + } + } + + let mut cursor = node.walk(); + for child in node.children(&mut cursor) { + if child.kind() == "parameter_list" { + continue; + } + if let Some(name) = Self::find_declarator_name(child) { + return Some(name); + } + } + + None + } + fn visit_nodes_recursive( node: tree_sitter::Node, content: &str, @@ -956,12 +1621,31 @@ impl Chunker { .child_by_field_name("name") .or_else(|| node.child_by_field_name("identifier")) .or_else(|| node.child_by_field_name("selectors")) + .or_else(|| { + if kind == "function_definition" { + node.child_by_field_name("declarator") + .and_then(Self::find_declarator_name) + } else { + None + } + }) .or_else(|| { for i in 0..node.child_count() { let c = node.child(i as u32).unwrap(); if c.kind() == "identifier" + || c.kind() == "type_identifier" + || c.kind() == "simple_identifier" || c.kind() == "tag_name" || c.kind() == "selectors" + || c.kind() == "field_identifier" + || c.kind() == "namespace_identifier" + || c.kind() == "qualified_identifier" + || c.kind() == "word" + || c.kind() == "command_name" + || c.kind() == "variable_name" + || c.kind() == "bare_key" + || c.kind() == "dotted_key" + || c.kind() == "quoted_key" { return Some(c); } @@ -986,13 +1670,25 @@ impl Chunker { .unwrap_or_else(|| node.utf8_text(content.as_bytes()).unwrap_or("")) .to_string(); - let type_cue = kind + let mut type_cue = kind .replace("_declaration", "") .replace("_definition", "") .replace("_item", "") .replace("_rule", "") .replace("_set", ""); + // Swift uses one `class_declaration` node for classes, structs, + // enums, actors, and extensions. Preserve the declaration kind + // as a structural cue instead of collapsing all of them to + // `type:class`. + if lang_tag == "lang:swift" && kind == "class_declaration" { + type_cue = node + .child_by_field_name("declaration_kind") + .and_then(|declaration_kind| declaration_kind.utf8_text(content.as_bytes()).ok()) + .unwrap_or("class") + .to_string(); + } + let name_label = if lang_tag == "lang:css" { "selector" } else { @@ -1971,6 +2667,14 @@ impl Chunker { Some("css") => Self::chunk_css(content), Some("php") => Self::chunk_php(content), Some("java") => Self::chunk_java(content), + Some("swift") => Self::chunk_swift(content), + Some("dart") => Self::chunk_dart(content), + Some("objc" | "objective-c" | "objectivec") => Self::chunk_objc(content), + Some("kotlin" | "kt" | "kts") => Self::chunk_kotlin(content), + Some("c") => Self::chunk_c(content), + Some("cpp" | "c++" | "cxx" | "cc") => Self::chunk_cpp(content), + Some("csharp" | "c#" | "cs") => Self::chunk_csharp(content), + Some("bash" | "shell" | "sh" | "zsh") => Self::chunk_bash(content), _ => Vec::new(), } } @@ -2003,28 +2707,58 @@ impl Chunker { } fn normalize_code_language(language: &str) -> String { - let value = language - .trim() - .to_ascii_lowercase() + let raw = language.trim().to_ascii_lowercase(); + let value = raw + .as_str() .trim_matches(|c: char| !c.is_ascii_alphanumeric()) .to_string(); - match value.as_str() { + match raw.as_str() { + "c#" => "csharp".to_string(), + "c++" => "cpp".to_string(), + "shell" => "bash".to_string(), + _ => match value.as_str() { "py" => "python".to_string(), "rs" => "rust".to_string(), "ts" | "tsx" => "typescript".to_string(), "js" | "jsx" => "javascript".to_string(), "htm" => "html".to_string(), + "m" | "mm" => "objc".to_string(), + "h" => "c".to_string(), + "kt" | "kts" => "kotlin".to_string(), + "c" => "c".to_string(), + "cc" | "cp" | "cpp" | "cxx" | "c++" | "hh" | "hpp" | "hxx" | "ipp" | "inl" => { + "cpp".to_string() + } + "cs" | "csx" => "csharp".to_string(), + "sh" | "bash" | "zsh" | "bats" => "bash".to_string(), + "toml" => "toml".to_string(), _ => value, + }, } } fn is_structured_language(language: Option<&str>) -> bool { - matches!(language, Some("json" | "yaml" | "xml" | "csv")) + matches!(language, Some("json" | "yaml" | "xml" | "csv" | "toml")) } fn infer_code_language(content: &str) -> Option { let lower = content.to_ascii_lowercase(); let trimmed = lower.trim_start(); + if trimmed.starts_with("import ") + && (lower.contains("import foundation") + || lower.contains("import uikit") + || lower.contains("import swiftui")) + { + return Some("swift".to_string()); + } + if trimmed.starts_with("fun ") || trimmed.starts_with("data class ") { + return Some("kotlin".to_string()); + } + if (trimmed.starts_with("class ") || trimmed.starts_with("void main(")) + && (lower.contains("void main(") || lower.contains("widget")) + { + return Some("dart".to_string()); + } if trimmed.starts_with("def ") || trimmed.starts_with("class ") || trimmed.starts_with("from ") @@ -2044,6 +2778,12 @@ impl Chunker { if trimmed.starts_with("package ") || trimmed.starts_with("func ") { return Some("go".to_string()); } + if trimmed.starts_with("@interface") + || trimmed.starts_with("@implementation") + || trimmed.starts_with("@protocol") + { + return Some("objc".to_string()); + } if trimmed.starts_with("#include ") || trimmed.starts_with("public class ") { return Some("java".to_string()); } @@ -2460,12 +3200,21 @@ impl Chunker { | Some(ChunkerType::Html) | Some(ChunkerType::Css) | Some(ChunkerType::Php) - | Some(ChunkerType::Java) => ChunkCategory::Code, + | Some(ChunkerType::Java) + | Some(ChunkerType::C) + | Some(ChunkerType::Cpp) + | Some(ChunkerType::CSharp) + | Some(ChunkerType::Bash) => ChunkCategory::Code, + Some(ChunkerType::Swift) + | Some(ChunkerType::Dart) + | Some(ChunkerType::ObjectiveC) + | Some(ChunkerType::Kotlin) => ChunkCategory::Code, Some(ChunkerType::Csv) | Some(ChunkerType::Json) | Some(ChunkerType::Yaml) - | Some(ChunkerType::Xml) => ChunkCategory::Structured, + | Some(ChunkerType::Xml) + | Some(ChunkerType::Toml) => ChunkCategory::Structured, Some(ChunkerType::ApiSpec) => ChunkCategory::ApiSpec, Some(ChunkerType::SocialExport) => ChunkCategory::Conversation, diff --git a/src/api.rs b/src/api.rs index a59a319..88bfab9 100644 --- a/src/api.rs +++ b/src/api.rs @@ -2,23 +2,35 @@ use crate::auth::AuthConfig; use crate::jobs::{Job, JobQueue}; use crate::intent::IntentTarget; use crate::metrics::MetricsCollector; -use crate::multi_tenant::{validate_project_id, MultiTenantEngine}; +use crate::multi_tenant::{ + validate_project_id, MultiTenantEngine, ProjectReplaceResult, ProjectUnloadResult, +}; use crate::normalization::normalize_cue; use crate::persistence::CloudBackupManager; +use crate::project_package; +use crate::project_sync::{self, SyncAction, SyncRun}; use crate::structures::{LexiconStats, MainStats, MemoryId, MemoryStats}; use crate::taxonomy::validate_cues; use axum::{ + body::Body, extract::{Path, Query, State}, - http::{HeaderMap, StatusCode}, + http::{header, HeaderMap, StatusCode}, middleware, - response::IntoResponse, + response::{IntoResponse, Response}, routing::{delete, get, patch, post}, Json, Router, }; +use futures::StreamExt; use rayon::prelude::*; use serde::{Deserialize, Serialize}; use std::collections::{HashMap, HashSet}; +use std::io; +use std::path::PathBuf; +use std::pin::Pin; use std::sync::Arc; +use std::task::{Context, Poll}; +use tokio::io::{AsyncRead, AsyncWriteExt, ReadBuf}; +use tokio_util::io::ReaderStream; use unicode_segmentation::UnicodeSegmentation; #[derive(Debug, Deserialize, Serialize)] @@ -65,6 +77,10 @@ pub struct AddMemoryBatchRequest { #[derive(Debug, Deserialize, Serialize)] pub struct RecallRequest { + #[serde(default)] + pub response_mode: RecallResponseMode, + #[serde(default = "default_preview_chars")] + pub preview_chars: usize, #[serde(default)] pub cues: Vec, #[serde(default)] @@ -126,6 +142,41 @@ pub struct RecallRequest { pub cuebridge_gap_limit: usize, } +#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Deserialize, Serialize)] +#[serde(rename_all = "snake_case")] +pub enum RecallResponseMode { + #[default] + Full, + Preview, +} + +fn default_preview_chars() -> usize { 200 } + +fn shape_recall_response(mut response: serde_json::Value, mode: RecallResponseMode, limit: usize) -> serde_json::Value { + if mode == RecallResponseMode::Full { return response; } + fn visit(value: &mut serde_json::Value, limit: usize) { + if let Some(results) = value.get_mut("results").and_then(|v| v.as_array_mut()) { + for result in results { visit(result, limit); } + } else if value.get("content").is_some_and(|v| v.is_string()) { + let content = value.as_object_mut().unwrap().remove("content").unwrap(); + let content = content.as_str().unwrap(); + let mut units = 0; + let mut end = 0; + for (offset, ch) in content.char_indices() { + units += ch.len_utf16(); + if units <= limit { end = offset + ch.len_utf8(); } + } + value["preview"] = serde_json::json!(&content[..end]); + value["content_length"] = serde_json::json!(units); + value["content_truncated"] = serde_json::json!(end < content.len()); + } + } + visit(&mut response, limit); + response["response_mode"] = serde_json::json!("preview"); + response["preview_chars"] = serde_json::json!(limit); + response +} + #[derive(Debug, Deserialize, Serialize)] pub struct IntentClassificationRequest { pub text: String, @@ -3724,6 +3775,21 @@ pub struct CreateProjectRequest { pub project_id: String, } +#[derive(Debug, Deserialize, Serialize)] +pub struct ProjectPackagePushRequest { + pub destination: String, +} + +#[derive(Debug, Deserialize, Serialize)] +pub struct ProjectPackagePullRequest { + pub source: String, +} + +#[derive(Debug, Deserialize, Serialize)] +pub struct ProjectSyncRequest { + pub remote: String, +} + #[derive(Debug, Deserialize, Serialize)] pub struct SetWatchDirRequest { pub watch_dir: String, @@ -3805,7 +3871,15 @@ pub fn routes( .route("/stats", get(get_stats)) .route("/projects", get(list_projects).post(create_project)) .route("/recall/grounded", post(recall_grounded)) + + .route("/projects/pull", post(pull_project_package_endpoint)) .route("/projects/:id", delete(delete_project)) + .route("/projects/:id/pack", post(pack_project_endpoint)) + .route("/projects/:id/push", post(push_project_package_endpoint)) + .route("/projects/:id/sync", post(sync_project_endpoint)) + .route("/projects/:id/save", post(save_project_endpoint)) + .route("/projects/:id/load", post(load_project_endpoint)) + .route("/projects/:id/unload", post(unload_project_endpoint)) .route( "/projects/:id/artifacts", get(project_artifacts).post(reload_project_artifacts), @@ -3833,7 +3907,11 @@ pub fn routes( .route("/backup/download", post(backup_download)) .route("/backup/list", get(backup_list)) .route("/backup/:project_id", delete(backup_delete)) - .layer(axum::extract::DefaultBodyLimit::disable()) + .layer(axum::extract::DefaultBodyLimit::max(64 * 1024 * 1024)) + .layer(tower_http::limit::RequestBodyLimitLayer::new(64 * 1024 * 1024)) + .route("/projects/load", post(load_project_package_endpoint) + .layer::<_, std::convert::Infallible>(axum::extract::DefaultBodyLimit::disable()) + .layer(tower_http::limit::RequestBodyLimitLayer::new(1024 * 1024 * 1024))) .with_state(EngineState { mt_engine, read_only, @@ -3848,12 +3926,30 @@ pub fn routes( // Add auth middleware if enabled if auth_config.is_enabled() { router = router.layer(middleware::from_fn_with_state( - auth_config, + auth_config.clone(), crate::auth::auth_middleware, )); } - router + let origins: Vec = auth_config.allowed_origins.iter() + .filter_map(|origin| origin.parse().ok()).collect(); + router.route("/healthz", get(|| async { StatusCode::NO_CONTENT })) + .layer(tower_http::cors::CorsLayer::new() + .allow_origin(origins) + .allow_methods(tower_http::cors::Any) + .allow_headers(tower_http::cors::Any)) + .layer(middleware::from_fn_with_state(auth_config, crate::auth::browser_origin_middleware)) + .layer(middleware::from_fn(move |request: axum::extract::Request, next: middleware::Next| async move { + let path = request.uri().path(); + let project_load = path.starts_with("/projects/") && path.ends_with("/load") && path.split('/').count() == 4; + let safe_post = project_load || matches!(path, "/recall" | "/recall/grounded" | "/recall/web" + | "/intent/classify" | "/debug/analyze-text" | "/ingest/directory/preview"); + if read_only && !matches!(*request.method(), axum::http::Method::GET | axum::http::Method::HEAD | axum::http::Method::OPTIONS) + && !(request.method() == axum::http::Method::POST && safe_post) { + return (StatusCode::FORBIDDEN, Json(serde_json::json!({"error": "Read-only mode"}))).into_response(); + } + next.run(request).await + })) } async fn root() -> impl IntoResponse { @@ -3866,7 +3962,10 @@ async fn root() -> impl IntoResponse { "semantic_retrieval_v1", "chunk_embeddings_v1", "intent_classification_v1", - "intent_job_status_v1" + "intent_job_status_v1", + "project_lifecycle_v1", + "project_packages_v1", + "project_sync_v1" ] })) } @@ -4245,8 +4344,12 @@ async fn add_memories_batch( async fn recall( State(state): State, headers: HeaderMap, - Json(req): Json, + Json(mut req): Json, ) -> (StatusCode, Json) { + req.auto_reinforce = req.auto_reinforce && !state.read_only; + if !(100..=2000).contains(&req.preview_chars) { + return (StatusCode::BAD_REQUEST, Json(serde_json::json!({"error": "preview_chars must be between 100 and 2000"}))); + } use std::time::Instant; let start = Instant::now(); let EngineState { @@ -4672,10 +4775,10 @@ async fn recall( return ( StatusCode::OK, - Json(serde_json::json!({ + Json(shape_recall_response(serde_json::json!({ "results": all_results, "engine_latency": engine_latency_ms - })), + }), req.response_mode, req.preview_chars)), ); } @@ -5535,7 +5638,7 @@ async fn recall( } return ( StatusCode::OK, - Json(response), + Json(shape_recall_response(response, req.response_mode, req.preview_chars)), ); } @@ -5551,7 +5654,7 @@ async fn recall( } ( StatusCode::OK, - Json(response), + Json(shape_recall_response(response, req.response_mode, req.preview_chars)), ) } @@ -5615,10 +5718,17 @@ async fn reinforce_memory( } } +#[derive(Debug, Default, Deserialize)] +struct GetMemoryQuery { + #[serde(default)] + decoded: bool, +} + async fn get_memory( State(state): State, headers: HeaderMap, Path(memory_id): Path, + Query(query): Query, ) -> (StatusCode, Json) { let project_id = match extract_project_id(&headers) { Ok(id) => id, @@ -5629,7 +5739,7 @@ async fn get_memory( ref mt_engine, .. } = &state; - let ctx = match mt_engine.get_or_create_project(project_id) { + let ctx = match mt_engine.get_or_create_project(project_id.clone()) { Ok(c) => c, Err(e) => { return ( @@ -5639,6 +5749,23 @@ async fn get_memory( } }; match ctx.main.get_memory(memory_id) { + Some(memory) if query.decoded => match ctx.main.read_memory_content(&memory) { + Ok(content) => (StatusCode::OK, Json(serde_json::json!({ + "id": memory.id, + "memory_id": memory.id, + "project_id": project_id, + "content": content, + "source_key": memory.source_key, + "metadata": memory.metadata, + "cues": memory.cues, + "created_at": memory.created_at, + "last_accessed": memory.last_accessed + }))), + Err(_) => (StatusCode::INTERNAL_SERVER_ERROR, Json(serde_json::json!({ + "error": "Memory content could not be read", + "memory_id": memory_id + }))), + }, Some(memory) => (StatusCode::OK, Json(serde_json::json!(memory))), None => ( StatusCode::NOT_FOUND, @@ -6003,6 +6130,581 @@ async fn delete_project( } } +async fn load_project_endpoint( + State(state): State, + Path(project_id): Path, +) -> (StatusCode, Json) { + if !validate_project_id(&project_id) { + return ( + StatusCode::BAD_REQUEST, + Json(serde_json::json!({"error": "Invalid project ID format"})), + ); + } + + match state.mt_engine.load_project(&project_id) { + Ok(context) => ( + StatusCode::OK, + Json(serde_json::json!({ + "status": "loaded", + "project_id": project_id, + "loaded": true, + "total_memories": context.total_memories(), + })), + ), + Err(error) => { + let status = if error.starts_with("Snapshot for project") { + StatusCode::NOT_FOUND + } else { + StatusCode::INTERNAL_SERVER_ERROR + }; + (status, Json(serde_json::json!({"error": error}))) + } + } +} + +async fn save_project_endpoint( + State(state): State, + Path(project_id): Path, +) -> (StatusCode, Json) { + if !validate_project_id(&project_id) { + return ( + StatusCode::BAD_REQUEST, + Json(serde_json::json!({"error": "Invalid project ID format"})), + ); + } + if state.read_only { + return ( + StatusCode::FORBIDDEN, + Json(serde_json::json!({"error": "Read-only mode"})), + ); + } + + match state.mt_engine.save_project(&project_id) { + Ok(_) => ( + StatusCode::OK, + Json(serde_json::json!({ + "status": "saved", + "project_id": project_id, + })), + ), + Err(error) => { + let status = if error.starts_with("Project '") && error.ends_with("' not found") { + StatusCode::NOT_FOUND + } else { + StatusCode::INTERNAL_SERVER_ERROR + }; + (status, Json(serde_json::json!({"error": error}))) + } + } +} + +type PackageApiResult = Result; + +struct RemoveOnDropReader { + file: tokio::fs::File, + path: PathBuf, +} + +impl AsyncRead for RemoveOnDropReader { + fn poll_read( + mut self: Pin<&mut Self>, + cx: &mut Context<'_>, + buffer: &mut ReadBuf<'_>, + ) -> Poll> { + Pin::new(&mut self.file).poll_read(cx, buffer) + } +} + +impl Drop for RemoveOnDropReader { + fn drop(&mut self) { + let _ = std::fs::remove_file(&self.path); + } +} + +fn package_error(status: StatusCode, message: impl Into) -> Response { + (status, Json(serde_json::json!({"error": message.into()}))).into_response() +} + +fn package_temp_path(operation: &str) -> PathBuf { + std::env::temp_dir().join(format!( + "cuemap-api-{operation}-{}.cuemap", + uuid::Uuid::new_v4() + )) +} + +async fn create_current_project_package( + state: &EngineState, + project_id: &str, +) -> PackageApiResult<(project_package::ProjectPackageSummary, PathBuf)> { + if !validate_project_id(project_id) { + return Err((StatusCode::BAD_REQUEST, "Invalid project ID format".to_string())); + } + if state.read_only { + return Err((StatusCode::FORBIDDEN, "Read-only mode".to_string())); + } + state.mt_engine.save_project(&project_id.to_string()).map_err(|error| { + let status = if error.starts_with("Project '") && error.ends_with("' not found") { + StatusCode::NOT_FOUND + } else { + StatusCode::INTERNAL_SERVER_ERROR + }; + (status, error) + })?; + + let data_dir = PathBuf::from(&state.data_dir); + let output = package_temp_path("pack"); + let package_output = output.clone(); + let project = project_id.to_string(); + let result = tokio::task::spawn_blocking(move || { + project_package::pack_project(&data_dir, &project, &package_output, false) + }) + .await + .map_err(|error| { + ( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Package task failed: {error}"), + ) + })?; + match result { + Ok(summary) => Ok((summary, output)), + Err(error) => { + let _ = std::fs::remove_file(&output); + Err((StatusCode::INTERNAL_SERVER_ERROR, error)) + } + } +} + +async fn pack_project_endpoint( + State(state): State, + Path(project_id): Path, +) -> Response { + let (summary, package_path) = match create_current_project_package(&state, &project_id).await { + Ok(package) => package, + Err((status, error)) => return package_error(status, error), + }; + let file = match tokio::fs::File::open(&package_path).await { + Ok(file) => file, + Err(error) => { + let _ = std::fs::remove_file(&package_path); + return package_error( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Failed to open generated package: {error}"), + ); + } + }; + let stream = ReaderStream::new(RemoveOnDropReader { + file, + path: package_path, + }); + Response::builder() + .status(StatusCode::OK) + .header(header::CONTENT_TYPE, "application/vnd.cuemap.project") + .header(header::CONTENT_LENGTH, summary.size_bytes.to_string()) + .header( + header::CONTENT_DISPOSITION, + format!("attachment; filename=\"{}.cuemap\"", summary.project_id), + ) + .header("X-CueMap-Project-ID", summary.project_id) + .body(Body::from_stream(stream)) + .unwrap_or_else(|error| { + package_error( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Failed to build package response: {error}"), + ) + }) +} + +async fn write_package_body(body: Body) -> Result { + let path = package_temp_path("load"); + let result = async { + let mut file = tokio::fs::OpenOptions::new() + .write(true) + .create_new(true) + .open(&path) + .await + .map_err(|error| format!("Failed to create package upload: {error}"))?; + let mut stream = body.into_data_stream(); + while let Some(chunk) = stream.next().await { + let chunk = chunk.map_err(|error| format!("Failed to read package upload: {error}"))?; + file.write_all(&chunk) + .await + .map_err(|error| format!("Failed to store package upload: {error}"))?; + } + file.sync_all() + .await + .map_err(|error| format!("Failed to sync package upload: {error}"))?; + Ok::<(), String>(()) + } + .await; + if let Err(error) = result { + let _ = tokio::fs::remove_file(&path).await; + return Err(error); + } + Ok(path) +} + +async fn install_project_package_from_path( + state: &EngineState, + package_path: &std::path::Path, +) -> PackageApiResult { + let inspect_path = package_path.to_path_buf(); + let manifest = tokio::task::spawn_blocking(move || { + project_package::inspect_project_package(&inspect_path) + }) + .await + .map_err(|error| { + ( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Package inspection task failed: {error}"), + ) + })? + .map_err(|error| (StatusCode::BAD_REQUEST, error))?; + + if state + .mt_engine + .list_projects() + .iter() + .any(|project| project.project_id == manifest.project_id) + { + return Err(( + StatusCode::CONFLICT, + format!("Project '{}' already exists", manifest.project_id), + )); + } + + let data_dir = PathBuf::from(&state.data_dir); + let load_path = package_path.to_path_buf(); + let summary = tokio::task::spawn_blocking(move || { + project_package::load_project_package(&data_dir, &load_path, false) + }) + .await + .map_err(|error| { + ( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Package install task failed: {error}"), + ) + })? + .map_err(|error| (StatusCode::BAD_REQUEST, error))?; + + let engine = state.mt_engine.clone(); + let project_id = summary.project_id.clone(); + tokio::task::spawn_blocking(move || engine.load_project(&project_id).map(|_| ())) + .await + .map_err(|error| { + ( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Project load task failed: {error}"), + ) + })? + .map_err(|error| { + ( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Package was installed but could not be loaded: {error}"), + ) + })?; + Ok(summary) +} + +async fn load_project_package_endpoint( + State(state): State, + body: Body, +) -> Response { + if state.read_only { + return package_error(StatusCode::FORBIDDEN, "Read-only mode"); + } + let package_path = match write_package_body(body).await { + Ok(path) => path, + Err(error) => return package_error(StatusCode::BAD_REQUEST, error), + }; + let result = install_project_package_from_path(&state, &package_path).await; + let _ = tokio::fs::remove_file(&package_path).await; + match result { + Ok(summary) => ( + StatusCode::OK, + Json(serde_json::json!({ + "status": "loaded", + "project_id": summary.project_id, + "loaded": true, + "file_count": summary.file_count, + "size_bytes": summary.size_bytes, + })), + ) + .into_response(), + Err((status, error)) => package_error(status, error), + } +} + +async fn push_project_package_endpoint( + State(state): State, + Path(project_id): Path, + Json(request): Json, +) -> Response { + let destination = match project_package::s3_destination(&request.destination, &project_id) { + Ok(destination) => destination, + Err(error) => return package_error(StatusCode::BAD_REQUEST, error), + }; + let (summary, package_path) = match create_current_project_package(&state, &project_id).await { + Ok(package) => package, + Err((status, error)) => return package_error(status, error), + }; + let upload_path = package_path.clone(); + let upload_destination = destination.clone(); + let result = tokio::task::spawn_blocking(move || { + let result = project_package::upload_s3(&upload_path, &upload_destination); + let _ = std::fs::remove_file(upload_path); + result + }) + .await; + match result { + Ok(Ok(())) => ( + StatusCode::OK, + Json(serde_json::json!({ + "status": "pushed", + "project_id": summary.project_id, + "destination": destination, + "file_count": summary.file_count, + "size_bytes": summary.size_bytes, + })), + ) + .into_response(), + Ok(Err(error)) => package_error(StatusCode::BAD_GATEWAY, error), + Err(error) => { + let _ = std::fs::remove_file(package_path); + package_error( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Package upload task failed: {error}"), + ) + } + } +} + +async fn pull_project_package_endpoint( + State(state): State, + Json(request): Json, +) -> Response { + if state.read_only { + return package_error(StatusCode::FORBIDDEN, "Read-only mode"); + } + if let Err(error) = project_package::validate_s3_uri(&request.source, false) { + return package_error(StatusCode::BAD_REQUEST, error); + } + let package_path = package_temp_path("pull"); + let download_path = package_path.clone(); + let source = request.source.clone(); + let download = tokio::task::spawn_blocking(move || { + project_package::download_s3(&source, &download_path) + }) + .await; + match download { + Ok(Ok(())) => {} + Ok(Err(error)) => { + let _ = std::fs::remove_file(package_path); + return package_error(StatusCode::BAD_GATEWAY, error); + } + Err(error) => { + let _ = std::fs::remove_file(package_path); + return package_error( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Package download task failed: {error}"), + ); + } + } + + let result = install_project_package_from_path(&state, &package_path).await; + let _ = tokio::fs::remove_file(&package_path).await; + match result { + Ok(summary) => ( + StatusCode::OK, + Json(serde_json::json!({ + "status": "pulled", + "project_id": summary.project_id, + "source": request.source, + "loaded": true, + "file_count": summary.file_count, + "size_bytes": summary.size_bytes, + })), + ) + .into_response(), + Err((status, error)) => package_error(status, error), + } +} + +fn sync_error_status(error: &str) -> StatusCode { + if error.starts_with("Invalid S3 URI") || error.starts_with("Invalid project ID") { + StatusCode::BAD_REQUEST + } else if error.contains("diverged") + || error.contains("already linked") + || error.contains("changed while sync") + || error.contains("Remote head changed") + { + StatusCode::CONFLICT + } else if error.contains("does not exist locally") && error.contains("no head") { + StatusCode::NOT_FOUND + } else if error.contains("AWS") + || error.contains("S3") + || error.contains("sync object") + || error.contains("remote sync head") + { + StatusCode::BAD_GATEWAY + } else { + StatusCode::INTERNAL_SERVER_ERROR + } +} + +async fn sync_project_endpoint( + State(state): State, + Path(project_id): Path, + Json(request): Json, +) -> Response { + if !validate_project_id(&project_id) { + return package_error(StatusCode::BAD_REQUEST, "Invalid project ID format"); + } + if state.read_only { + return package_error(StatusCode::FORBIDDEN, "Read-only mode"); + } + if let Err(error) = project_package::validate_s3_uri(&request.remote, true) { + return package_error(StatusCode::BAD_REQUEST, error); + } + + if state + .mt_engine + .list_loaded_project_ids() + .iter() + .any(|loaded| loaded == &project_id) + { + let engine = state.mt_engine.clone(); + let save_project_id = project_id.clone(); + let save = tokio::task::spawn_blocking(move || engine.save_project(&save_project_id)).await; + match save { + Ok(Ok(_)) => {} + Ok(Err(error)) => return package_error(StatusCode::INTERNAL_SERVER_ERROR, error), + Err(error) => { + return package_error( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Project save task failed: {error}"), + ) + } + } + } + + let data_dir = PathBuf::from(&state.data_dir); + let run = match project_sync::sync_project(&data_dir, &project_id, &request.remote, false).await { + Ok(run) => run, + Err(error) => return package_error(sync_error_status(&error), error), + }; + + let result = match run { + SyncRun::Complete(result) => { + if result.action == SyncAction::Pulled { + let engine = state.mt_engine.clone(); + let load_project_id = project_id.clone(); + let load = tokio::task::spawn_blocking(move || { + engine.load_project(&load_project_id).map(|_| ()) + }) + .await; + match load { + Ok(Ok(())) => {} + Ok(Err(error)) => { + return package_error(StatusCode::INTERNAL_SERVER_ERROR, error) + } + Err(error) => { + return package_error( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Project load task failed: {error}"), + ) + } + } + } + result + } + SyncRun::PullRequired(prepared) => { + let result = prepared.result().clone(); + let engine = state.mt_engine.clone(); + let replace_project_id = project_id.clone(); + let replace_data_dir = data_dir.clone(); + let replace = tokio::task::spawn_blocking(move || { + engine.replace_project_snapshot(&replace_project_id, || { + project_sync::complete_prepared_pull(&replace_data_dir, &prepared, true) + }) + }) + .await; + match replace { + Ok(Ok(ProjectReplaceResult::Reloaded)) => result, + Ok(Ok(ProjectReplaceResult::Busy)) => { + return package_error( + StatusCode::CONFLICT, + "Project is active; no local state was replaced. Retry sync after current work completes", + ) + } + Ok(Err(error)) => return package_error(sync_error_status(&error), error), + Err(error) => { + return package_error( + StatusCode::INTERNAL_SERVER_ERROR, + format!("Project replacement task failed: {error}"), + ) + } + } + } + }; + + (StatusCode::OK, Json(result)).into_response() +} + +async fn unload_project_endpoint( + State(state): State, + Path(project_id): Path, +) -> (StatusCode, Json) { + if !validate_project_id(&project_id) { + return ( + StatusCode::BAD_REQUEST, + Json(serde_json::json!({"error": "Invalid project ID format"})), + ); + } + if state.read_only { + return ( + StatusCode::FORBIDDEN, + Json(serde_json::json!({"error": "Read-only mode"})), + ); + } + + match state.mt_engine.unload_project(&project_id) { + Ok(ProjectUnloadResult::Unloaded) => ( + StatusCode::OK, + Json(serde_json::json!({ + "status": "unloaded", + "project_id": project_id, + "loaded": false, + })), + ), + Ok(ProjectUnloadResult::AlreadyUnloaded) => ( + StatusCode::OK, + Json(serde_json::json!({ + "status": "already_unloaded", + "project_id": project_id, + "loaded": false, + })), + ), + Ok(ProjectUnloadResult::Busy) => ( + StatusCode::CONFLICT, + Json(serde_json::json!({ + "error": "Project is active; retry unload after current work completes", + "project_id": project_id, + "loaded": true, + })), + ), + Err(error) => { + let status = if error.starts_with("Project '") && error.ends_with("' not found") { + StatusCode::NOT_FOUND + } else if error.starts_with("Project unloading requires") { + StatusCode::SERVICE_UNAVAILABLE + } else { + StatusCode::INTERNAL_SERVER_ERROR + }; + (status, Json(serde_json::json!({"error": error}))) + } + } +} + async fn project_artifacts( State(state): State, Path(project_id): Path, @@ -6055,11 +6757,14 @@ async fn export_project( ); } - let Some(ctx) = state.mt_engine.get_project(&project_id) else { - return ( - StatusCode::NOT_FOUND, - Json(serde_json::json!({"error": "Project not found"})), - ); + let ctx = match state.mt_engine.get_or_create_project(project_id.clone()) { + Ok(context) => context, + Err(error) => { + return ( + StatusCode::SERVICE_UNAVAILABLE, + Json(serde_json::json!({"error": error})), + ) + } }; let limit = query.limit.clamp(1, 10_000); @@ -7520,17 +8225,23 @@ async fn ingest_file( let mut filename = String::new(); let mut file_bytes: Vec = Vec::new(); - while let Ok(Some(field)) = multipart.next_field().await { + loop { + let field = match multipart.next_field().await { + Ok(Some(field)) => field, + Ok(None) => break, + Err(error) => return (error.status(), Json(serde_json::json!({"error": error.to_string()}))), + }; let name = field.name().unwrap_or("").to_string(); - if name == "file" { filename = field.file_name().unwrap_or("upload.bin").to_string(); - if let Ok(bytes) = field.bytes().await { - file_bytes = bytes.to_vec(); + match field.bytes().await { + Ok(bytes) => file_bytes = bytes.to_vec(), + Err(error) => return (error.status(), Json(serde_json::json!({"error": error.to_string()}))), } } else if name == "filename" { - if let Ok(text) = field.text().await { - filename = text; + match field.text().await { + Ok(text) => filename = text, + Err(error) => return (error.status(), Json(serde_json::json!({"error": error.to_string()}))), } } } @@ -7544,38 +8255,24 @@ async fn ingest_file( ); } - // Write to temp file - let temp_dir = std::env::temp_dir(); - let temp_path = temp_dir.join(&filename); - - let mut temp_file = match std::fs::File::create(&temp_path) { - Ok(f) => f, - Err(e) => { - return ( - StatusCode::INTERNAL_SERVER_ERROR, - Json(serde_json::json!({ - "error": format!("Failed to create temp file: {}", e) - })), - ) - } + // Only the extension influences parsing; client filenames never become filesystem paths. + let extension = filename.rsplit(['/', '\\']).next().unwrap_or("upload.bin") + .rsplit_once('.').map(|(_, ext)| ext) + .filter(|ext| ext.len() <= 16 && ext.chars().all(|c| c.is_ascii_alphanumeric())) + .unwrap_or("bin"); + let mut temp_file = match tempfile::Builder::new().prefix("cuemap-upload-") + .suffix(&format!(".{}", extension)).tempfile() { + Ok(file) => file, + Err(e) => return (StatusCode::INTERNAL_SERVER_ERROR, + Json(serde_json::json!({"error": format!("Failed to create upload file: {}", e)}))), }; - if let Err(e) = temp_file.write_all(&file_bytes) { - return ( - StatusCode::INTERNAL_SERVER_ERROR, - Json(serde_json::json!({ - "error": format!("Failed to write temp file: {}", e) - })), - ); + return (StatusCode::INTERNAL_SERVER_ERROR, + Json(serde_json::json!({"error": format!("Failed to write upload file: {}", e)}))); } + let chunks = Chunker::chunk_binary_file(temp_file.path()); drop(temp_file); - // Chunk the file - let chunks = Chunker::chunk_binary_file(&temp_path); - - // Clean up temp file - let _ = std::fs::remove_file(&temp_path); - if chunks.is_empty() { return ( StatusCode::BAD_REQUEST, diff --git a/src/auth.rs b/src/auth.rs index 22865aa..57740f4 100644 --- a/src/auth.rs +++ b/src/auth.rs @@ -14,6 +14,7 @@ use tracing::info; pub struct AuthConfig { api_keys: HashSet, require_auth: bool, + pub allowed_origins: Vec, } impl AuthConfig { @@ -64,6 +65,7 @@ impl AuthConfig { Self { api_keys, require_auth, + allowed_origins: config.allowed_origins.clone(), } } @@ -80,6 +82,26 @@ impl AuthConfig { } } +pub async fn browser_origin_middleware( + State(auth_config): State, + request: Request, + next: Next, +) -> Response { + let headers = request.headers(); + let allowed = if let Some(origin) = headers.get("origin") { + origin.to_str().ok().is_some_and(|origin| { + origin != "null" && auth_config.allowed_origins.iter().any(|allowed| allowed == origin) + }) + } else { + // Browser fetches without Origin must not bypass the origin policy. + headers.get("sec-fetch-site").is_none_or(|site| site == "none") + }; + if !allowed { + return (StatusCode::FORBIDDEN, "Browser origin is not allowed").into_response(); + } + next.run(request).await +} + /// Middleware to validate API keys pub async fn auth_middleware( State(auth_config): State, diff --git a/src/config.rs b/src/config.rs index 25abb97..4bb2fc7 100644 --- a/src/config.rs +++ b/src/config.rs @@ -31,6 +31,8 @@ pub struct ServerConfig { pub tuning: TuningConfig, #[serde(default)] pub semantic: SemanticConfig, + #[serde(default)] + pub project_lifecycle: ProjectLifecycleConfig, } impl Default for ServerConfig { @@ -44,13 +46,16 @@ impl Default for ServerConfig { search: SearchConfig::default(), tuning: TuningConfig::default(), semantic: SemanticConfig::default(), + project_lifecycle: ProjectLifecycleConfig::default(), } } } pub fn get_base_dir() -> PathBuf { - let home = env::var("HOME").unwrap_or_else(|_| ".".to_string()); - let path = PathBuf::from(home).join(".cuemap"); + let path = env::var_os("CUEMAP_HOME").map(PathBuf::from).unwrap_or_else(|| { + let user_dir = env::var_os("HOME").or_else(|| env::var_os("USERPROFILE")); + PathBuf::from(user_dir.unwrap_or_else(|| ".".into())).join(".cuemap") + }); if !path.exists() { let _ = fs::create_dir_all(&path); } @@ -68,23 +73,30 @@ impl ServerConfig { if path.exists() { let content = fs::read_to_string(&path).map_err(|e| e.to_string())?; - let file_config: ServerConfig = - toml::from_str(&content).map_err(|e| format!("Failed to parse config: {}", e))?; - - // Merge file config onto defaults - // Note: This is a shallow merge implementation for simplicity. - // In a robust system, we'd use a crate like `config` to merge fields deeply. - // For now, we trust `toml` to deserialize partially if Option, but since we use structs with defaults, - // `toml::from_str` usually replaces the whole struct if present. - // To do proper layering without `config` crate is verbose. - // Simplified approach: Parsing the file gives us a full config with defaults filled in by serde if missing in file. - // So we just use the file config, but we need to ensure CLI args override it later. - config = file_config; - } else { - // info!("Config file not found at {:?}, using defaults", path); + let overrides: toml::Value = toml::from_str(&content) + .map_err(|e| format!("Failed to parse config: {}", e))?; + let mut merged = toml::Value::try_from(&config).map_err(|e| e.to_string())?; + fn merge(base: &mut toml::Value, overrides: toml::Value) { + match (base, overrides) { + (toml::Value::Table(base), toml::Value::Table(overrides)) => { + for (key, value) in overrides { + match base.get_mut(&key) { + Some(existing) => merge(existing, value), + None => { base.insert(key, value); } + } + } + } + (base, value) => *base = value, + } + } + merge(&mut merged, overrides); + config = merged.try_into().map_err(|e| format!("Failed to parse config: {}", e))?; } // 3. Environment variables overrides (Manual mapping for key fields) + if let Ok(host) = env::var("CUEMAP_HOST") { + config.server.host = host; + } if let Ok(port) = env::var("CUEMAP_PORT") { if let Ok(p) = port.parse() { config.server.port = p; @@ -100,6 +112,16 @@ impl ServerConfig { config.persistence.snapshot_interval_seconds = seconds; } } + if let Ok(inactivity_timeout) = env::var("CUEMAP_PROJECT_INACTIVITY_TIMEOUT_SECONDS") { + if let Ok(seconds) = inactivity_timeout.parse() { + config.project_lifecycle.inactivity_timeout_seconds = seconds; + } + } + if let Ok(check_interval) = env::var("CUEMAP_PROJECT_UNLOAD_CHECK_INTERVAL_SECONDS") { + if let Ok(seconds) = check_interval.parse() { + config.project_lifecycle.unload_check_interval_seconds = seconds; + } + } if let Ok(key) = env::var("CUEMAP_SECRET_KEY") { config.security.secret_key = Some(key); } @@ -238,6 +260,7 @@ impl ServerConfig { } #[derive(Clone, Debug, Serialize, Deserialize)] +#[serde(default)] pub struct ServerSettings { pub port: u16, pub host: String, @@ -252,8 +275,8 @@ pub struct ServerSettings { impl Default for ServerSettings { fn default() -> Self { Self { - port: 8080, - host: "0.0.0.0".to_string(), + port: 8735, + host: "127.0.0.1".to_string(), data_dir: get_base_dir().join("data").to_string_lossy().to_string(), assets_dir: None, log_level: "info".to_string(), @@ -264,7 +287,9 @@ impl Default for ServerSettings { } #[derive(Clone, Debug, Default, Serialize, Deserialize)] +#[serde(default)] pub struct SecurityConfig { + pub allowed_origins: Vec, pub require_auth: bool, pub api_keys: Vec, pub master_key: Option, @@ -281,6 +306,28 @@ pub struct PersistenceConfig { pub cloud: CloudConfig, } +/// Runtime policy for keeping project contexts resident in memory. +/// +/// A zero inactivity timeout disables automatic unloading. Explicit load and +/// unload endpoints remain available regardless of the automatic policy. +#[derive(Clone, Debug, Serialize, Deserialize)] +#[serde(default)] +pub struct ProjectLifecycleConfig { + /// Number of seconds without project activity before an unload is attempted. + pub inactivity_timeout_seconds: u64, + /// How often the engine checks loaded projects for inactivity. + pub unload_check_interval_seconds: u64, +} + +impl Default for ProjectLifecycleConfig { + fn default() -> Self { + Self { + inactivity_timeout_seconds: 24 * 60 * 60, + unload_check_interval_seconds: 60, + } + } +} + impl Default for PersistenceConfig { fn default() -> Self { Self { @@ -407,7 +454,26 @@ mod tests { assert_eq!(benchmark.server.log_level, "warn"); let default = ServerConfig::default_for_profile("unknown"); - assert_eq!(default.server.port, 8080); + assert_eq!(default.server.port, 8735); + } + + #[test] + fn partial_configuration_preserves_read_only_profile() { + let dir = tempfile::tempdir().unwrap(); + let path = dir.path().join("server.toml"); + fs::write(&path, "[server]\nhost = \"::1\"\n").unwrap(); + let config = ServerConfig::load(Some(path), Some("read_only".into())).unwrap(); + assert!(config.server.read_only); + assert!(!config.persistence.enabled); + assert!(!config.jobs.background_processing); + } + + #[test] + fn default_project_lifecycle_timeout_is_one_day() { + assert_eq!( + ProjectLifecycleConfig::default().inactivity_timeout_seconds, + 24 * 60 * 60 + ); } #[test] @@ -423,6 +489,8 @@ mod tests { ("CUEMAP_PORT", "9123"), ("CUEMAP_DATA_DIR", "/tmp/cuemap-test-data"), ("CUEMAP_SNAPSHOT_INTERVAL_SECONDS", "7"), + ("CUEMAP_PROJECT_INACTIVITY_TIMEOUT_SECONDS", "11"), + ("CUEMAP_PROJECT_UNLOAD_CHECK_INTERVAL_SECONDS", "3"), ("CUEMAP_SECRET_KEY", "secret"), ("CUEMAP_SIGNING_PRIVATE_KEY", "signing"), ("CUEMAP_MASTER_KEY", "master"), @@ -457,6 +525,8 @@ mod tests { assert_eq!(loaded.server.port, 9123); assert_eq!(loaded.server.data_dir, "/tmp/cuemap-test-data"); assert_eq!(loaded.persistence.snapshot_interval_seconds, 7); + assert_eq!(loaded.project_lifecycle.inactivity_timeout_seconds, 11); + assert_eq!(loaded.project_lifecycle.unload_check_interval_seconds, 3); assert_eq!(loaded.security.secret_key.as_deref(), Some("secret")); assert_eq!(loaded.security.signing_private_key.as_deref(), Some("signing")); assert_eq!(loaded.security.master_key.as_deref(), Some("master")); @@ -490,6 +560,6 @@ mod tests { Some(value) => std::env::set_var(key, value), None => std::env::remove_var(key), } - assert_eq!(loaded.server.port, 8080); + assert_eq!(loaded.server.port, 8735); } } diff --git a/src/facets.rs b/src/facets.rs index b6517e3..eb05217 100644 --- a/src/facets.rs +++ b/src/facets.rs @@ -20,8 +20,7 @@ use std::sync::OnceLock; const MAX_FACETS: usize = 64; const MAX_ENTITIES: usize = 16; // Keep this explicit so source-role weighting can be benchmark-ablated without -// confusing it with a semantic classifier. The current value preserves the -// established v0.7.2 retrieval behavior. +// confusing it with a semantic classifier. const QUERY_PERSPECTIVE_SOURCE_ROLE_WEIGHT: f64 = 2.0; fn money_re() -> &'static Regex { diff --git a/src/jobs.rs b/src/jobs.rs index 716847d..2aea2ad 100644 --- a/src/jobs.rs +++ b/src/jobs.rs @@ -414,10 +414,7 @@ impl ProjectProvider for MultiTenantEngine { } fn list_active_projects(&self) -> Vec { - self.list_projects() - .into_iter() - .map(|p| p.project_id) - .collect() + self.list_loaded_project_ids() } } diff --git a/src/lib.rs b/src/lib.rs index 243ea6b..e919075 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,6 +14,8 @@ pub mod multi_tenant; pub mod nl; pub mod normalization; pub mod persistence; +pub mod project_package; +pub mod project_sync; pub mod projects; pub mod structures; pub mod taxonomy; diff --git a/src/main.rs b/src/main.rs index 5388e81..19868d8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,7 +10,6 @@ use std::net::SocketAddr; use std::path::{Path, PathBuf}; use std::sync::Arc; use std::time::Duration; -use tower_http::cors::CorsLayer; use tracing::{error, info, warn, Level}; use tracing_subscriber::{self, fmt, prelude::*, Registry}; @@ -26,6 +25,9 @@ struct Cli { #[cfg(test)] mod tests { use super::*; + use cuemap::config::TuningConfig; + use cuemap::multi_tenant::MultiTenantEngine; + use cuemap::structures::MainStats; use std::io::Write; use tokio::io::{AsyncReadExt, AsyncWriteExt}; @@ -58,6 +60,43 @@ mod tests { format!("http://{address}") } + fn shell_command(command: &str) -> (PathBuf, Vec) { + #[cfg(windows)] + { + let shell = std::env::var_os("COMSPEC") + .map(PathBuf::from) + .unwrap_or_else(|| PathBuf::from("cmd.exe")); + return (shell, vec!["/C".to_string(), command.to_string()]); + } + + #[cfg(not(windows))] + { + ( + PathBuf::from("/bin/sh"), + vec!["-c".to_string(), command.to_string()], + ) + } + } + + fn long_running_command() -> std::process::Command { + #[cfg(windows)] + { + let shell = std::env::var_os("COMSPEC") + .map(PathBuf::from) + .unwrap_or_else(|| PathBuf::from("cmd.exe")); + let mut command = std::process::Command::new(shell); + command.args(["/C", "ping 127.0.0.1 -n 31 > NUL"]); + command + } + + #[cfg(not(windows))] + { + let mut command = std::process::Command::new("sleep"); + command.arg("30"); + command + } + } + fn add_args(url: String) -> AddArgs { AddArgs { content: "cli memory".to_string(), @@ -79,7 +118,7 @@ mod tests { semantic_mode: "lexical".to_string(), depth: 1, token_budget: 128, - port: 8080, + port: 8735, no_auto_reinforce: false, min_intersection: None, query_time: None, @@ -380,12 +419,13 @@ mod tests { .is_err()); let spawned_log = root.path().join("spawned.log"); - let shell_args = vec![ - "-c".to_string(), - "printf 'Unstable sorting for speed\\n'".to_string(), - ]; + let (shell, shell_args) = shell_command(if cfg!(windows) { + "echo Unstable sorting for speed" + } else { + "printf 'Unstable sorting for speed\\n'" + }); assert!(spawn_detached_process( - Path::new("/bin/sh"), + &shell, &shell_args, &spawned_log, "Unstable sorting for speed", @@ -394,9 +434,13 @@ mod tests { .await .unwrap()); - let timeout_args = vec!["-c".to_string(), "true".to_string()]; + let (shell, timeout_args) = shell_command(if cfg!(windows) { + "exit 0" + } else { + "true" + }); assert!(!spawn_detached_process( - Path::new("/bin/sh"), + &shell, &timeout_args, &root.path().join("spawn-timeout.log"), "never appears", @@ -404,8 +448,9 @@ mod tests { ) .await .unwrap()); + let missing_executable = root.path().join("definitely-missing-cuemap-child"); assert!(spawn_detached_process( - Path::new("/definitely/missing/cuemap-child"), + &missing_executable, &[], &root.path().join("spawn-error.log"), "ready", @@ -496,16 +541,47 @@ mod tests { let _ = live_task.await; } + #[tokio::test] + async fn configured_read_only_ipv6_server_enforces_auth_and_keeps_health_public() { + let root = tempfile::tempdir().unwrap(); + let port = std::net::TcpListener::bind(("::1", 0)).unwrap().local_addr().unwrap().port(); + let mut config = config::ServerConfig::default(); + config.server.host = "::1".into(); + config.server.port = port; + config.server.read_only = true; + config.server.data_dir = root.path().join("data").to_string_lossy().into(); + config.security.api_keys = vec!["test-key".into()]; + config.security.allowed_origins = vec!["https://trusted.example".into()]; + config.semantic.encoder_enabled = false; + config.semantic.enabled = false; + let task = tokio::spawn(run_server_with_pid_path(config, None, true, root.path().join("pid"))); + let client = reqwest::Client::builder().no_proxy().build().unwrap(); + let url = format!("http://[::1]:{port}"); + tokio::time::timeout(Duration::from_secs(5), async { + while client.get(format!("{url}/healthz")).send().await.is_err() { + tokio::time::sleep(Duration::from_millis(20)).await; + } + }).await.unwrap(); + assert_eq!(client.get(format!("{url}/healthz")).send().await.unwrap().status(), 204); + assert_eq!(client.get(format!("{url}/")).send().await.unwrap().status(), 401); + let trusted = client.get(format!("{url}/")).header("X-API-Key", "test-key") + .header("Origin", "https://trusted.example").send().await.unwrap(); + assert_eq!(trusted.status(), 200); + assert_eq!(trusted.headers()["access-control-allow-origin"], "https://trusted.example"); + assert_eq!(client.post(format!("{url}/memories")).header("X-API-Key", "test-key") + .json(&serde_json::json!({"content": "must not persist"})).send().await.unwrap().status(), 403); + assert!(!root.path().join("data/snapshots").exists()); + task.abort(); + let _ = task.await; + } + #[tokio::test] async fn stop_handler_covers_missing_success_and_failed_pid_paths() { let root = tempfile::tempdir().unwrap(); let missing_path = root.path().join("missing.pid"); handle_stop_at(missing_path).await; - let mut child = std::process::Command::new("sleep") - .arg("30") - .spawn() - .unwrap(); + let mut child = long_running_command().spawn().unwrap(); let pid_path = root.path().join("running.pid"); std::fs::write(&pid_path, child.id().to_string()).unwrap(); handle_stop_at(pid_path.clone()).await; @@ -1160,6 +1236,72 @@ mod tests { .await; } + #[tokio::test] + async fn cli_project_package_handlers_round_trip_offline() { + let source = tempfile::tempdir().unwrap(); + let project_id = "cli-package".to_string(); + let engine = MultiTenantEngine::with_snapshots_dir( + source.path().join("snapshots"), + TuningConfig::default(), + ); + let context = engine.get_or_create_project(project_id.clone()).unwrap(); + context.main.add_memory( + "offline package memory".to_string(), + vec!["package".to_string()], + None, + MainStats::default(), + true, + ); + engine.save_project(&project_id).unwrap(); + + let package = source.path().join("cli-package.cuemap"); + handle_projects(ProjectArgs { + cmd: ProjectCmd::Pack { + project: project_id.clone(), + output: Some(package.clone()), + data_dir: Some(source.path().to_path_buf()), + url: "http://127.0.0.1:1".to_string(), + offline: true, + force: false, + }, + }) + .await; + assert!(package.is_file()); + + let target = tempfile::tempdir().unwrap(); + handle_projects(ProjectArgs { + cmd: ProjectCmd::Load { + package: package.clone(), + data_dir: Some(target.path().to_path_buf()), + url: "http://127.0.0.1:1".to_string(), + force: false, + }, + }) + .await; + assert!(target.path().join("snapshots/cli-package.bin").is_file()); + + // Validation happens before any AWS or server calls for these commands. + handle_projects(ProjectArgs { + cmd: ProjectCmd::Push { + project: project_id.clone(), + destination: "https://example.test/package".to_string(), + data_dir: Some(source.path().to_path_buf()), + url: "http://127.0.0.1:1".to_string(), + offline: true, + }, + }) + .await; + handle_projects(ProjectArgs { + cmd: ProjectCmd::Pull { + source: "https://example.test/package".to_string(), + data_dir: Some(target.path().to_path_buf()), + url: "http://127.0.0.1:1".to_string(), + force: false, + }, + }) + .await; + } + #[test] fn cli_ingest_and_lexicon_server_url_defaults_parse() { let cli = Cli::try_parse_from(["cuemap", "ingest", "file", "note.md", "--project", "p"]) @@ -1167,7 +1309,7 @@ mod tests { match cli.command { Commands::Ingest(IngestArgs { type_: IngestType::File { url, .. }, - }) => assert_eq!(url, "http://localhost:8080"), + }) => assert_eq!(url, "http://localhost:8735"), _ => panic!("expected file ingest command"), } @@ -1176,7 +1318,7 @@ mod tests { match cli.command { Commands::Ingest(IngestArgs { type_: IngestType::Url { server_url, .. }, - }) => assert_eq!(server_url, "http://localhost:8080"), + }) => assert_eq!(server_url, "http://localhost:8735"), _ => panic!("expected URL ingest command"), } @@ -1184,10 +1326,84 @@ mod tests { match cli.command { Commands::Lexicon(LexiconArgs { cmd: LexiconCmd::Inspect { url, .. }, - }) => assert_eq!(url, "http://localhost:8080"), + }) => assert_eq!(url, "http://localhost:8735"), _ => panic!("expected lexicon inspect command"), } } + + #[test] + fn cli_project_package_commands_and_alias_parse() { + let cli = Cli::try_parse_from([ + "cuemap", + "project", + "pack", + "demo-project", + "--offline", + "--output", + "demo.cuemap", + ]) + .unwrap(); + match cli.command { + Commands::Projects(ProjectArgs { + cmd: + ProjectCmd::Pack { + project, + output, + offline, + .. + }, + }) => { + assert_eq!(project, "demo-project"); + assert_eq!(output, Some(PathBuf::from("demo.cuemap"))); + assert!(offline); + } + _ => panic!("expected project pack command"), + } + + let cli = Cli::try_parse_from([ + "cuemap", + "projects", + "pull", + "s3://example-bucket/demo.cuemap", + "--data-dir", + "/tmp/cuemap-package-test", + ]) + .unwrap(); + assert!(matches!( + cli.command, + Commands::Projects(ProjectArgs { + cmd: ProjectCmd::Pull { .. } + }) + )); + + let cli = Cli::try_parse_from([ + "cuemap", + "project", + "sync", + "demo-project", + "s3://example-bucket/team", + "--offline", + ]) + .unwrap(); + assert!(matches!( + cli.command, + Commands::Projects(ProjectArgs { + cmd: ProjectCmd::Sync { + project, + remote, + offline: true, + .. + } + }) if project == "demo-project" && remote == "s3://example-bucket/team" + )); + + assert_eq!( + project_package::s3_destination("s3://example-bucket/team/", "demo-project").unwrap(), + "s3://example-bucket/team/demo-project.cuemap" + ); + assert!(project_package::validate_s3_uri("https://example.com/file", false).is_err()); + assert!(project_package::validate_s3_uri("s3://example-bucket", false).is_err()); + } } #[derive(clap::Subcommand, Debug)] @@ -1213,7 +1429,8 @@ enum Commands { /// Manage individual memories (get/reinforce/delete) Memories(MemoriesArgs), - /// Manage projects + /// Manage projects and portable project packages + #[command(name = "project", visible_alias = "projects")] Projects(ProjectArgs), /// Set default project for CLI commands @@ -1229,7 +1446,7 @@ enum Commands { #[derive(Parser, Debug)] struct StopArgs { /// Server URL (to find the PID via local config if possible) - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] url: String, } @@ -1264,7 +1481,7 @@ struct StatusArgs { #[arg(long)] json: bool, /// Server URL - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] url: String, } @@ -1376,7 +1593,7 @@ struct AddArgs { #[arg(long)] async_ingest: bool, /// Server URL - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] url: String, } @@ -1421,7 +1638,7 @@ enum IngestType { #[arg(long)] segment_max_chunk_chars: Option, /// Server URL - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] url: String, }, /// Ingest a file @@ -1430,7 +1647,7 @@ enum IngestType { #[arg(short, long)] project: Option, /// Server URL - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] url: String, }, /// Ingest a URL @@ -1445,7 +1662,7 @@ enum IngestType { #[arg(long, default_value = "true")] same_domain_only: bool, /// Server URL - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] server_url: String, }, } @@ -1474,7 +1691,7 @@ struct RecallArgs { token_budget: u32, /// Server port (overrides config) - #[arg(long, default_value = "8080")] + #[arg(long, default_value = "8735")] pub port: u16, /// Disable automatic reinforcement during recall #[arg(long)] @@ -1543,7 +1760,7 @@ struct RecallArgs { #[arg(long)] trace_timing: bool, /// Server URL - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] url: String, /// Enable web recall mode @@ -1573,7 +1790,7 @@ enum LexiconCmd { #[arg(short, long)] project: Option, /// Server URL - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] url: String, }, } @@ -1600,7 +1817,7 @@ struct MemoriesArgs { project: Option, /// Server URL - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] url: String, } @@ -1618,7 +1835,7 @@ struct AliasArgs { #[arg(short, long)] weight: Option, /// Server URL - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] url: String, } @@ -1632,14 +1849,14 @@ struct ProjectArgs { enum ProjectCmd { /// List all projects List { - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] url: String, }, /// Create a new project Create { #[arg(short, long)] name: String, - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] url: String, }, /// Set watch directory for a project @@ -1648,8 +1865,88 @@ enum ProjectCmd { project: String, /// Path to watch directory path: String, - #[arg(long, default_value = "http://localhost:8080")] + #[arg(long, default_value = "http://localhost:8735")] + url: String, + }, + /// Package a saved project index as a portable .cuemap file + Pack { + /// Project ID to package + project: String, + /// Output path (defaults to .cuemap) + #[arg(short, long)] + output: Option, + /// CueMap data directory (defaults to configured data directory) + #[arg(long)] + data_dir: Option, + /// Server URL used to flush a current snapshot before packaging + #[arg(long, default_value = "http://localhost:8735")] + url: String, + /// Package the existing on-disk snapshot without contacting the server + #[arg(long)] + offline: bool, + /// Replace an existing output file + #[arg(long)] + force: bool, + }, + /// Install a portable .cuemap package into the local data directory + Load { + /// Package path + package: PathBuf, + /// CueMap data directory (defaults to configured data directory) + #[arg(long)] + data_dir: Option, + /// Running server to warm after installing a new project + #[arg(long, default_value = "http://localhost:8735")] + url: String, + /// Replace an existing offline project + #[arg(long)] + force: bool, + }, + /// Package a project and upload it with the configured AWS CLI + Push { + /// Project ID to package + project: String, + /// S3 object or prefix, for example s3://bucket/team/ + destination: String, + /// CueMap data directory (defaults to configured data directory) + #[arg(long)] + data_dir: Option, + /// Server URL used to flush a current snapshot before packaging + #[arg(long, default_value = "http://localhost:8735")] + url: String, + /// Package the existing on-disk snapshot without contacting the server + #[arg(long)] + offline: bool, + }, + /// Download a .cuemap package with the configured AWS CLI and install it + Pull { + /// S3 object URI, for example s3://bucket/team/project.cuemap + source: String, + /// CueMap data directory (defaults to configured data directory) + #[arg(long)] + data_dir: Option, + /// Running server to warm after installing a new project + #[arg(long, default_value = "http://localhost:8735")] url: String, + /// Replace an existing offline project + #[arg(long)] + force: bool, + }, + /// Fast-forward a project through immutable package history on S3 + Sync { + /// Project ID to synchronize + project: String, + /// S3 sync root, for example s3://bucket/team + remote: String, + /// CueMap data directory (used with --offline) + #[arg(long)] + data_dir: Option, + /// Running CueMap server + #[arg(long, default_value = "http://localhost:8735")] + url: String, + /// Synchronize the saved on-disk project without contacting a server + #[arg(long)] + offline: bool, }, } @@ -1853,11 +2150,24 @@ async fn run_server(config: config::ServerConfig, load_static: Option, _ } async fn run_server_with_pid_path( - config: config::ServerConfig, + mut config: config::ServerConfig, load_static: Option, _is_child: bool, pid_path: PathBuf, ) { + let read_only = load_static.is_some() || config.server.read_only; + if read_only { + config.server.read_only = true; + config.persistence.enabled = false; + config.jobs.background_processing = false; + } + let ip = match config.server.host.parse::() { + Ok(ip) => ip, + Err(error) => { + eprintln!("Invalid server.host {:?}: {}", config.server.host, error); + return; + } + }; // Extract commonly used configs let server_config = &config.server; let auth_config_struct = &config.security; @@ -1950,14 +2260,32 @@ async fn run_server_with_pid_path( } // Setup shutdown handler - if !is_static { + if !read_only { if config.persistence.enabled { setup_multi_tenant_shutdown_handler(mt_engine.clone()).await; mt_engine.start_periodic_snapshots(Duration::from_secs( config.persistence.snapshot_interval_seconds, )); + if config.project_lifecycle.inactivity_timeout_seconds > 0 + && config.project_lifecycle.unload_check_interval_seconds > 0 + { + info!( + "Project auto-unloading enabled: inactive after {}s, checked every {}s", + config.project_lifecycle.inactivity_timeout_seconds, + config.project_lifecycle.unload_check_interval_seconds + ); + mt_engine.start_project_unloader( + Duration::from_secs( + config.project_lifecycle.unload_check_interval_seconds, + ), + Duration::from_secs(config.project_lifecycle.inactivity_timeout_seconds), + ); + } else { + info!("Project auto-unloading disabled by configuration"); + } } else { warn!("Periodic snapshots and shutdown save are DISABLED."); + warn!("Project auto-unloading is disabled because persistence is disabled."); } } @@ -1982,7 +2310,7 @@ async fn run_server_with_pid_path( // Auto-start agents for projects with watch directories configured for proj_stats in mt_engine.list_projects() { if let Ok(meta) = mt_engine.load_project_meta(&proj_stats.project_id) { - if meta.agent_enabled { + if !read_only && meta.agent_enabled { if let Some(watch_dir) = meta.watch_dir { let agent_config = agent::AgentConfig { project_id: meta.project_id.clone(), @@ -2033,15 +2361,14 @@ async fn run_server_with_pid_path( job_queue, metrics, auth_config, - is_static, + read_only, server_config.data_dir.clone(), cloud_backup, context_signer, agent_manager.clone(), - )) - .layer(CorsLayer::permissive()); + )); - let addr = SocketAddr::from(([0, 0, 0, 0], server_config.port)); + let addr = SocketAddr::new(ip, server_config.port); info!("Server listening on {}", addr); let listener = tokio::net::TcpListener::bind(addr).await.unwrap(); @@ -2415,6 +2742,8 @@ async fn handle_recall(args: RecallArgs) { } } else { let payload = api::RecallRequest { + response_mode: api::RecallResponseMode::Full, + preview_chars: 200, cues: args.cues, query_text: Some(args.query), query_embedding: None, @@ -2670,6 +2999,324 @@ async fn handle_projects(args: ProjectArgs) { Err(e) => eprintln!("βœ— Failed: {}", e), } } + ProjectCmd::Pack { + project, + output, + data_dir, + url, + offline, + force, + } => { + let output = output.unwrap_or_else(|| PathBuf::from(format!("{project}.cuemap"))); + match prepare_project_package( + &client, + &project, + &output, + data_dir, + &url, + offline, + force, + ) + .await + { + Ok(summary) => println!( + "βœ“ Packed project '{}' into {} ({} files, {})", + summary.project_id, + summary.path.display(), + summary.file_count, + human_bytes(summary.size_bytes) + ), + Err(error) => eprintln!("βœ— Failed to pack project: {error}"), + } + } + ProjectCmd::Load { + package, + data_dir, + url, + force, + } => match install_project_package(&client, &package, data_dir, &url, force).await { + Ok(summary) => println!( + "βœ“ Loaded project '{}' from {} ({} files, {})", + summary.project_id, + summary.path.display(), + summary.file_count, + human_bytes(summary.size_bytes) + ), + Err(error) => eprintln!("βœ— Failed to load package: {error}"), + }, + ProjectCmd::Push { + project, + destination, + data_dir, + url, + offline, + } => { + let destination = match project_package::s3_destination(&destination, &project) { + Ok(destination) => destination, + Err(error) => { + eprintln!("βœ— Failed to push project: {error}"); + return; + } + }; + let temp = std::env::temp_dir().join(format!( + "cuemap-push-{}-{}.cuemap", + project, + uuid::Uuid::new_v4() + )); + let result = async { + let summary = prepare_project_package( + &client, + &project, + &temp, + data_dir, + &url, + offline, + false, + ) + .await?; + project_package::upload_s3(&temp, &destination)?; + Ok::<_, String>(summary) + } + .await; + let _ = std::fs::remove_file(&temp); + match result { + Ok(summary) => println!( + "βœ“ Pushed project '{}' to {} ({})", + summary.project_id, + destination, + human_bytes(summary.size_bytes) + ), + Err(error) => eprintln!("βœ— Failed to push project: {error}"), + } + } + ProjectCmd::Pull { + source, + data_dir, + url, + force, + } => { + if let Err(error) = project_package::validate_s3_uri(&source, false) { + eprintln!("βœ— Failed to pull project: {error}"); + return; + } + let temp = std::env::temp_dir().join(format!( + "cuemap-pull-{}.cuemap", + uuid::Uuid::new_v4() + )); + let result = async { + project_package::download_s3(&source, &temp)?; + install_project_package(&client, &temp, data_dir, &url, force).await + } + .await; + let _ = std::fs::remove_file(&temp); + match result { + Ok(summary) => println!( + "βœ“ Pulled and loaded project '{}' from {} ({} files, {})", + summary.project_id, + source, + summary.file_count, + human_bytes(summary.size_bytes) + ), + Err(error) => eprintln!("βœ— Failed to pull project: {error}"), + } + } + ProjectCmd::Sync { + project, + remote, + data_dir, + url, + offline, + } => { + if offline { + let data_dir = match configured_project_data_dir(data_dir) { + Ok(data_dir) => data_dir, + Err(error) => { + eprintln!("βœ— Failed to sync project: {error}"); + return; + } + }; + match project_sync::sync_project(&data_dir, &project, &remote, true).await { + Ok(project_sync::SyncRun::Complete(result)) => print_sync_result(&result), + Ok(project_sync::SyncRun::PullRequired(_)) => { + eprintln!("βœ— Failed to sync project: offline pull was not applied") + } + Err(error) => eprintln!("βœ— Failed to sync project: {error}"), + } + } else { + let response = client + .post(format!("{url}/projects/{project}/sync")) + .json(&serde_json::json!({ "remote": remote })) + .send() + .await; + match response { + Ok(response) if response.status().is_success() => { + match response.json::().await { + Ok(result) => print_sync_result(&result), + Err(error) => eprintln!("βœ— Invalid sync response: {error}"), + } + } + Ok(response) => { + let status = response.status(); + let body = response.text().await.unwrap_or_default(); + eprintln!("βœ— Failed to sync project (HTTP {status}): {body}"); + } + Err(error) => eprintln!("βœ— Failed to sync project: {error}"), + } + } + } + } +} + +fn print_sync_result(result: &project_sync::SyncResult) { + let action = match &result.action { + project_sync::SyncAction::Pushed => "pushed", + project_sync::SyncAction::Pulled => "pulled", + project_sync::SyncAction::UpToDate => "up to date", + project_sync::SyncAction::Adopted => "adopted existing remote state", + }; + println!( + "βœ“ Project '{}' {} at generation {} ({})", + result.project_id, + action, + result.generation, + &result.commit_sha256[..12] + ); +} + +async fn prepare_project_package( + client: &reqwest::Client, + project: &str, + output: &Path, + data_dir: Option, + url: &str, + offline: bool, + force: bool, +) -> Result { + if !multi_tenant::validate_project_id(project) { + return Err(format!( + "Invalid project ID '{project}'; use 3-64 letters, numbers, '-' or '_'" + )); + } + if !offline { + flush_project_snapshot(client, project, url).await?; + } + let data_dir = configured_project_data_dir(data_dir)?; + project_package::pack_project(&data_dir, project, output, force) +} + +async fn flush_project_snapshot( + client: &reqwest::Client, + project: &str, + url: &str, +) -> Result<(), String> { + let response = client + .post(format!("{url}/projects/{project}/save")) + .send() + .await + .map_err(|error| { + format!( + "Could not ask the server to save the project: {error}. If the server is stopped and the snapshot is current, retry with --offline" + ) + })?; + if response.status().is_success() { + return Ok(()); + } + let status = response.status(); + let body = response.text().await.unwrap_or_default(); + Err(format!("Server snapshot save failed with HTTP {status}: {body}")) +} + +async fn install_project_package( + client: &reqwest::Client, + package: &Path, + data_dir: Option, + url: &str, + force: bool, +) -> Result { + let manifest = project_package::inspect_project_package(package)?; + let server_has_project = server_project_state(client, url, &manifest.project_id).await; + if force && server_has_project.is_some() { + return Err(format!( + "Refusing to replace project '{}' while a server is reachable at {}. Stop that server and retry, or load into a clean data directory", + manifest.project_id, url + )); + } + if matches!(server_has_project, Some(true)) { + return Err(format!( + "Project '{}' already exists in the running server", + manifest.project_id + )); + } + + let data_dir = configured_project_data_dir(data_dir)?; + let summary = project_package::load_project_package(&data_dir, package, force)?; + + if server_has_project == Some(false) { + let response = client + .post(format!("{url}/projects/{}/load", summary.project_id)) + .send() + .await; + match response { + Ok(response) if response.status().is_success() => {} + Ok(response) => { + let status = response.status(); + let body = response.text().await.unwrap_or_default(); + return Err(format!( + "Package was installed, but the running server could not load it (HTTP {status}: {body}). Restart the server with --data-dir {}", + data_dir.display() + )); + } + Err(error) => { + return Err(format!( + "Package was installed, but the running server could not load it: {error}" + )); + } + } + } + Ok(summary) +} + +/// `Some(true)` means the server knows this project, `Some(false)` means a +/// server is reachable but the project is new, and `None` means no server was +/// reachable. Authentication failures count as a reachable server so forceful +/// replacement is still refused. +async fn server_project_state( + client: &reqwest::Client, + url: &str, + project: &str, +) -> Option { + let response = client.get(format!("{url}/projects")).send().await.ok()?; + if !response.status().is_success() { + return Some(false); + } + let projects: Vec = response.json().await.ok()?; + Some(projects.iter().any(|value| { + value.get("project_id").and_then(|id| id.as_str()) == Some(project) + })) +} + +fn configured_project_data_dir(explicit: Option) -> Result { + if let Some(path) = explicit { + return Ok(path); + } + config::ServerConfig::load(None, None) + .map(|config| PathBuf::from(config.server.data_dir)) + .map_err(|error| format!("Failed to resolve CueMap data directory: {error}")) +} + +fn human_bytes(bytes: u64) -> String { + const KIB: f64 = 1024.0; + const MIB: f64 = KIB * 1024.0; + const GIB: f64 = MIB * 1024.0; + let bytes_f = bytes as f64; + if bytes_f >= GIB { + format!("{:.2} GiB", bytes_f / GIB) + } else if bytes_f >= MIB { + format!("{:.2} MiB", bytes_f / MIB) + } else if bytes_f >= KIB { + format!("{:.2} KiB", bytes_f / KIB) + } else { + format!("{bytes} B") } } @@ -2977,6 +3624,7 @@ async fn handle_stop_at(pid_path: PathBuf) { use std::process::Command; let res = Command::new("taskkill") .arg("/F") + .arg("/T") .arg("/PID") .arg(pid.to_string()) .status(); diff --git a/src/multi_tenant.rs b/src/multi_tenant.rs index cc193ac..52b2085 100644 --- a/src/multi_tenant.rs +++ b/src/multi_tenant.rs @@ -12,11 +12,11 @@ use crate::taxonomy::Taxonomy; use ahash::RandomState; use dashmap::DashMap; use serde::{Deserialize, Serialize}; -use std::collections::HashMap; +use std::collections::{HashMap, HashSet}; use std::fs; use std::path::{Path, PathBuf}; -use std::sync::{Arc, OnceLock, RwLock}; +use std::sync::{Arc, Mutex, OnceLock, RwLock}; use std::time::{Duration, SystemTime, UNIX_EPOCH}; pub type ProjectId = String; @@ -28,12 +28,28 @@ pub struct ProjectStats { pub total_cues: usize, pub created_at: f64, pub last_activity: f64, + pub loaded: bool, +} + +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +pub enum ProjectUnloadResult { + Unloaded, + AlreadyUnloaded, + Busy, +} + +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +pub enum ProjectReplaceResult { + Reloaded, + Busy, } #[derive(Debug, Clone, Serialize, Deserialize)] pub struct ProjectMeta { pub project_id: ProjectId, pub created_at: u64, + #[serde(default)] + pub last_activity: u64, pub watch_dir: Option, pub agent_enabled: bool, #[serde(default)] @@ -52,6 +68,10 @@ impl ProjectMeta { .duration_since(UNIX_EPOCH) .unwrap() .as_secs(), + last_activity: SystemTime::now() + .duration_since(UNIX_EPOCH) + .unwrap() + .as_secs(), watch_dir: None, agent_enabled: false, included_paths: Vec::new(), @@ -69,6 +89,7 @@ pub struct MultiTenantEngine { tuning: Arc, config: crate::config::ServerConfig, semantic_encoder: Arc>, String>>>, + lifecycle_lock: Arc>, } impl MultiTenantEngine { @@ -95,6 +116,7 @@ impl MultiTenantEngine { tuning: Arc::new(tuning), config: crate::config::ServerConfig::default(), semantic_encoder: Arc::new(OnceLock::new()), + lifecycle_lock: Arc::new(Mutex::new(())), } } @@ -102,8 +124,10 @@ impl MultiTenantEngine { mut config: crate::config::ServerConfig, snapshots_dir: PathBuf, ) -> Self { - if let Err(e) = fs::create_dir_all(&snapshots_dir) { - eprintln!("Warning: Failed to create snapshots directory: {}", e); + if !config.server.read_only { + if let Err(e) = fs::create_dir_all(&snapshots_dir) { + eprintln!("Warning: Failed to create snapshots directory: {}", e); + } } config.semantic = config.semantic.resolved(); @@ -115,6 +139,7 @@ impl MultiTenantEngine { tuning: Arc::new(config.tuning.clone()), config, semantic_encoder: Arc::new(OnceLock::new()), + lifecycle_lock: Arc::new(Mutex::new(())), }; if engine.config.semantic.encoder_enabled { if let Err(error) = engine.configured_semantic_encoder() { @@ -141,9 +166,21 @@ impl MultiTenantEngine { &self, project_id: ProjectId, ) -> Result, String> { + // Serialize lookup, load, and insertion so an unload cannot race a + // demand-load and leave two live contexts for the same project. + let _lifecycle_guard = self + .lifecycle_lock + .lock() + .map_err(|_| "Project lifecycle lock poisoned".to_string())?; + if let Some(ctx) = self.projects.get(&project_id) { ctx.touch(); Ok(ctx.clone()) + } else if self.main_snapshot_path(&project_id).exists() { + let ctx = self.load_project_from_disk(&project_id)?; + ctx.touch(); + tracing::info!(project_id = %project_id, "Loaded project on demand"); + Ok(ctx) } else { // Create new project with default config let semantic_encoder = match self.configured_semantic_encoder() { @@ -183,7 +220,7 @@ impl MultiTenantEngine { } } - /// Spawns a background thread to periodically save all project snapshots + /// Spawns a background task to periodically save all loaded project snapshots. pub fn start_periodic_snapshots(&self, interval: Duration) { let engine = self.clone(); tokio::spawn(async move { @@ -204,53 +241,272 @@ impl MultiTenantEngine { }); } + /// Spawns a background task that unloads inactive project contexts. + /// + /// A zero timeout or check interval disables the task. Projects with an + /// active request/worker reference are left loaded and retried later. + pub fn start_project_unloader(&self, check_interval: Duration, inactivity_timeout: Duration) { + if check_interval.is_zero() || inactivity_timeout.is_zero() { + return; + } + + let engine = self.clone(); + tokio::spawn(async move { + let mut ticker = tokio::time::interval(check_interval); + loop { + ticker.tick().await; + let unloaded = engine.unload_inactive_projects(inactivity_timeout); + if !unloaded.is_empty() { + tracing::info!( + projects = ?unloaded, + "Unloaded inactive projects" + ); + } + } + }); + } + + /// Unloads every loaded project whose last activity is older than the + /// supplied timeout. Returns the projects successfully unloaded. + pub fn unload_inactive_projects(&self, inactivity_timeout: Duration) -> Vec { + if inactivity_timeout.is_zero() { + return Vec::new(); + } + + let now = current_unix_seconds(); + let timeout_seconds = inactivity_timeout.as_secs(); + let project_ids = self + .projects + .iter() + .filter(|entry| { + now.saturating_sub(entry.value().get_last_activity()) >= timeout_seconds + }) + .map(|entry| entry.key().clone()) + .collect::>(); + + project_ids + .into_iter() + .filter(|project_id| { + matches!( + self.unload_project(project_id), + Ok(ProjectUnloadResult::Unloaded) + ) + }) + .collect() + } + pub fn get_project(&self, project_id: &ProjectId) -> Option> { - self.projects.get(project_id).map(|e| e.clone()) + let _lifecycle_guard = self.lifecycle_lock.lock().ok()?; + self.projects.get(project_id).map(|entry| { + entry.touch(); + entry.clone() + }) } pub fn list_projects(&self) -> Vec { - self.projects + let _lifecycle_guard = self.lifecycle_lock.lock().ok(); + let mut project_ids = self + .projects .iter() - .map(|entry| { - let project_id = entry.key().clone(); - let ctx = entry.value(); - let stats = ctx.main.get_stats(); + .map(|entry| entry.key().clone()) + .collect::>(); + project_ids.extend(self.list_snapshots()); + + let mut projects = project_ids + .into_iter() + .map(|project_id| { + let loaded_context = self.projects.get(&project_id).map(|entry| entry.clone()); + let (total_memories, total_cues, loaded, last_activity) = + if let Some(ctx) = loaded_context { + let stats = ctx.main.get_stats(); + ( + stats + .get("total_memories") + .and_then(|v| v.as_u64()) + .unwrap_or(0) as usize, + stats + .get("total_cues") + .and_then(|v| v.as_u64()) + .unwrap_or(0) as usize, + true, + ctx.get_last_activity() as f64, + ) + } else { + let (total_memories, total_cues) = self.snapshot_counts(&project_id); + let persisted_meta = self.persisted_project_meta(&project_id); + let last_activity = persisted_meta + .as_ref() + .map(|meta| meta.last_activity) + .filter(|timestamp| *timestamp > 0) + .or_else(|| self.snapshot_modified_at(&project_id)) + .unwrap_or(0) as f64; + (total_memories, total_cues, false, last_activity) + }; + let created_at = self + .persisted_project_meta(&project_id) + .map(|meta| meta.created_at as f64) + .unwrap_or_else(|| current_unix_seconds() as f64); ProjectStats { project_id, - total_memories: stats - .get("total_memories") - .and_then(|v| v.as_u64()) - .unwrap_or(0) as usize, - total_cues: stats - .get("total_cues") - .and_then(|v| v.as_u64()) - .unwrap_or(0) as usize, - created_at: SystemTime::now() - .duration_since(UNIX_EPOCH) - .unwrap() - .as_secs_f64(), - last_activity: SystemTime::now() - .duration_since(UNIX_EPOCH) - .unwrap() - .as_secs_f64(), + total_memories, + total_cues, + created_at, + last_activity, + loaded, } }) - .collect() + .collect::>(); + projects.sort_by(|left, right| left.project_id.cmp(&right.project_id)); + projects + } + + /// Returns only project IDs whose contexts are currently resident in RAM. + /// Background schedulers use this to avoid reloading every snapshot just + /// because an unloaded project still exists on disk. + pub fn list_loaded_project_ids(&self) -> Vec { + let _lifecycle_guard = self.lifecycle_lock.lock().ok(); + let mut project_ids = self + .projects + .iter() + .map(|entry| entry.key().clone()) + .collect::>(); + project_ids.sort(); + project_ids } pub fn delete_project(&self, project_id: &ProjectId) -> bool { - self.projects.remove(project_id).is_some() + self.lifecycle_lock + .lock() + .ok() + .and_then(|_guard| self.projects.remove(project_id)) + .is_some() + } + + /// Unload a project after persisting its current state. + pub fn unload_project( + &self, + project_id: &ProjectId, + ) -> Result { + if !self.config.persistence.enabled { + return Err("Project unloading requires persistence to be enabled".to_string()); + } + + let _lifecycle_guard = self + .lifecycle_lock + .lock() + .map_err(|_| "Project lifecycle lock poisoned".to_string())?; + + let ctx = match self.projects.get(project_id) { + Some(entry) => { + // The map owns one Arc. Any additional strong reference means + // a request, worker, or caller is still using the context. + if Arc::strong_count(entry.value()) > 1 { + return Ok(ProjectUnloadResult::Busy); + } + entry.value().clone() + } + None => { + if self.main_snapshot_path(project_id).exists() { + return Ok(ProjectUnloadResult::AlreadyUnloaded); + } + return Err(format!("Project '{}' not found", project_id)); + } + }; + + self.save_project_context(project_id, &ctx)?; + self.persist_project_activity(project_id, &ctx)?; + + self.projects.remove(project_id); + tracing::info!(project_id = %project_id, "Unloaded project"); + Ok(ProjectUnloadResult::Unloaded) + } + + /// Atomically replace an existing project's persisted files and reload it. + /// + /// The replacement closure should only perform local file work. The + /// lifecycle lock prevents demand loading between removal of the old + /// context and loading the replacement snapshot. + pub fn replace_project_snapshot( + &self, + project_id: &ProjectId, + replace: F, + ) -> Result + where + F: FnOnce() -> Result<(), String>, + { + if !self.config.persistence.enabled { + return Err("Project replacement requires persistence to be enabled".to_string()); + } + + let _lifecycle_guard = self + .lifecycle_lock + .lock() + .map_err(|_| "Project lifecycle lock poisoned".to_string())?; + let previous = match self.projects.get(project_id) { + Some(entry) => { + if Arc::strong_count(entry.value()) > 1 { + return Ok(ProjectReplaceResult::Busy); + } + let context = entry.value().clone(); + self.save_project_context(project_id, &context)?; + self.persist_project_activity(project_id, &context)?; + Some(context) + } + None if self.main_snapshot_path(project_id).is_file() => None, + None => return Err(format!("Project '{}' not found", project_id)), + }; + + self.projects.remove(project_id); + if let Err(error) = replace() { + if let Some(context) = previous { + self.projects.insert(project_id.clone(), context); + } + return Err(error); + } + + let context = self.load_project_from_disk(project_id)?; + context.touch(); + tracing::info!(project_id = %project_id, "Replaced and reloaded project snapshot"); + Ok(ProjectReplaceResult::Reloaded) } /// Save a project snapshot to disk (main, aliases, lexicon) pub fn save_project(&self, project_id: &ProjectId) -> Result { + // Clone under the lifecycle lock, then perform disk I/O after + // releasing it. The temporary Arc prevents an unload from racing this + // save while allowing ordinary requests for other projects to proceed. let ctx = self - .get_project(project_id) - .ok_or_else(|| format!("Project '{}' not found", project_id))?; + .lifecycle_lock + .lock() + .map_err(|_| "Project lifecycle lock poisoned".to_string()) + .and_then(|_guard| { + self.projects + .get(project_id) + .map(|entry| entry.clone()) + .ok_or_else(|| format!("Project '{}' not found", project_id)) + })?; + let main_path = self.save_project_context(project_id, &ctx)?; + self.persist_project_activity(project_id, &ctx)?; + Ok(main_path) + } + + fn persist_project_activity( + &self, + project_id: &ProjectId, + ctx: &ProjectContext, + ) -> Result<(), String> { + let mut meta = self.load_project_meta(project_id)?; + meta.last_activity = ctx.get_last_activity(); + self.save_project_meta(&meta) + } - // Save all 3 engines with suffixes - let main_path = self.snapshots_dir.join(format!("{}.bin", project_id)); + fn save_project_context( + &self, + project_id: &ProjectId, + ctx: &ProjectContext, + ) -> Result { + let main_path = self.main_snapshot_path(project_id); let aliases_path = self .snapshots_dir .join(format!("{}_aliases.bin", project_id)); @@ -267,14 +523,62 @@ impl MultiTenantEngine { PersistenceManager::save_to_path(&ctx.lexicon, &lexicon_path) .map_err(|e| format!("Failed to save lexicon engine: {}", e))?; - tracing::info!("Saved project '{}' (main + aliases + lexicon)", project_id); + tracing::info!(project_id = %project_id, "Saved project (main + aliases + lexicon)"); Ok(main_path) } + fn main_snapshot_path(&self, project_id: &ProjectId) -> PathBuf { + self.snapshots_dir.join(format!("{}.bin", project_id)) + } + + fn project_meta_path(&self, project_id: &ProjectId) -> PathBuf { + self.snapshots_dir.join(format!("{}.meta.json", project_id)) + } + + fn persisted_project_meta(&self, project_id: &ProjectId) -> Option { + if self.project_meta_path(project_id).exists() { + self.load_project_meta(project_id).ok() + } else { + None + } + } + + fn snapshot_counts(&self, project_id: &ProjectId) -> (usize, usize) { + let path = self.main_snapshot_path(project_id); + PersistenceManager::load_from_path::(&path) + .map(|(memories, _, cue_index, _, _)| (memories.len(), cue_index.len())) + .unwrap_or((0, 0)) + } + + fn snapshot_modified_at(&self, project_id: &ProjectId) -> Option { + fs::metadata(self.main_snapshot_path(project_id)) + .ok()? + .modified() + .ok()? + .duration_since(UNIX_EPOCH) + .ok() + .map(|duration| duration.as_secs()) + } + /// Load a project snapshot from disk (main, aliases, lexicon) pub fn load_project(&self, project_id: &ProjectId) -> Result, String> { - let main_path = self.snapshots_dir.join(format!("{}.bin", project_id)); + let _lifecycle_guard = self + .lifecycle_lock + .lock() + .map_err(|_| "Project lifecycle lock poisoned".to_string())?; + if let Some(ctx) = self.projects.get(project_id) { + ctx.touch(); + return Ok(ctx.clone()); + } + + let ctx = self.load_project_from_disk(project_id)?; + ctx.touch(); + Ok(ctx) + } + + fn load_project_from_disk(&self, project_id: &ProjectId) -> Result, String> { + let main_path = self.main_snapshot_path(project_id); let aliases_path = self .snapshots_dir .join(format!("{}_aliases.bin", project_id)); @@ -315,18 +619,12 @@ impl MultiTenantEngine { // Load aliases engine (optional - may not exist for older snapshots) let mut aliases_engine = if aliases_path.exists() { match PersistenceManager::load_from_path::(&aliases_path) { - Ok(( - memories, - source_key_to_id, - cue_index, - next_memory_id, - aliases_counts, - )) => { + Ok((memories, source_key_to_id, cue_index, next_memory_id, aliases_counts)) => { tracing::debug!("Loaded aliases for project '{}'", project_id); let mut local_config = self.config.clone(); local_config.server.store_content_on_disk = false; local_config.semantic = crate::semantic::SemanticConfig::default(); - let engine = CueMapEngine::from_state( + CueMapEngine::from_state( memories, source_key_to_id, cue_index, @@ -334,8 +632,7 @@ impl MultiTenantEngine { aliases_counts, local_config, project_id.clone(), - ); - engine + ) } Err(e) => { tracing::warn!("Failed to load aliases for '{}': {}", project_id, e); @@ -351,18 +648,12 @@ impl MultiTenantEngine { // Load lexicon engine (optional - may not exist for older snapshots) let mut lexicon_engine = if lexicon_path.exists() { match PersistenceManager::load_from_path::(&lexicon_path) { - Ok(( - memories, - source_key_to_id, - cue_index, - next_memory_id, - lex_counts, - )) => { + Ok((memories, source_key_to_id, cue_index, next_memory_id, lex_counts)) => { tracing::debug!("Loaded lexicon for project '{}'", project_id); let mut local_config = self.config.clone(); local_config.server.store_content_on_disk = false; local_config.semantic = crate::semantic::SemanticConfig::default(); - let engine = CueMapEngine::from_state( + CueMapEngine::from_state( memories, source_key_to_id, cue_index, @@ -370,8 +661,7 @@ impl MultiTenantEngine { lex_counts, local_config, project_id.clone(), - ); - engine + ) } Err(e) => { tracing::warn!("Failed to load lexicon for '{}': {}", project_id, e); @@ -384,6 +674,12 @@ impl MultiTenantEngine { lexicon_engine.set_master_key(self.master_key.clone()); lexicon_engine.set_tuning_config(self.tuning.as_ref().clone()); + let last_activity = self + .persisted_project_meta(project_id) + .map(|meta| meta.last_activity) + .filter(|timestamp| *timestamp > 0) + .or_else(|| self.snapshot_modified_at(project_id)) + .unwrap_or_else(current_unix_seconds); let ctx = Arc::new(ProjectContext { main: main_engine, aliases: aliases_engine, @@ -392,12 +688,7 @@ impl MultiTenantEngine { symbol_router_cache: RwLock::new(Default::default()), normalization: NormalizationConfig::default(), taxonomy: Taxonomy::default(), - last_activity: std::sync::atomic::AtomicU64::new( - std::time::SystemTime::now() - .duration_since(std::time::UNIX_EPOCH) - .unwrap() - .as_secs(), - ), + last_activity: std::sync::atomic::AtomicU64::new(last_activity), market_heatmap: Arc::new(RwLock::new(HashMap::new())), tuning: self.tuning.clone(), cuebridge_artifacts: RwLock::new(crate::cuebridge::CueBridgeArtifacts::load_for_project( @@ -433,8 +724,16 @@ impl MultiTenantEngine { for project_id in snapshots { let result = self - .load_project(&project_id) - .map(|_| ()) + .lifecycle_lock + .lock() + .map_err(|_| "Project lifecycle lock poisoned".to_string()) + .and_then(|_guard| { + if self.projects.contains_key(&project_id) { + Ok(()) + } else { + self.load_project_from_disk(&project_id).map(|_| ()) + } + }) .map_err(|e| format!("Failed to load: {}", e)); results.insert(project_id, result); } @@ -463,7 +762,7 @@ impl MultiTenantEngine { /// Load project metadata pub fn load_project_meta(&self, project_id: &ProjectId) -> Result { - let meta_path = self.snapshots_dir.join(format!("{}.meta.json", project_id)); + let meta_path = self.project_meta_path(project_id); if meta_path.exists() { let content = fs::read_to_string(&meta_path).map_err(|e| e.to_string())?; let meta: ProjectMeta = serde_json::from_str(&content).map_err(|e| e.to_string())?; @@ -476,6 +775,9 @@ impl MultiTenantEngine { /// Save project metadata pub fn save_project_meta(&self, meta: &ProjectMeta) -> Result<(), String> { + if self.config.server.read_only { + return Err("Read-only mode".to_string()); + } let meta_path = self .snapshots_dir .join(format!("{}.meta.json", meta.project_id)); @@ -559,9 +861,7 @@ impl MultiTenantEngine { &self, project_id: &ProjectId, ) -> Result { - let ctx = self - .get_project(project_id) - .ok_or_else(|| format!("Project '{}' not found", project_id))?; + let ctx = self.get_or_create_project(project_id.clone())?; Ok(ctx.cuebridge_artifact_summary()) } @@ -574,6 +874,13 @@ impl MultiTenantEngine { } } +fn current_unix_seconds() -> u64 { + SystemTime::now() + .duration_since(UNIX_EPOCH) + .unwrap_or_default() + .as_secs() +} + /// Validate project ID format pub fn validate_project_id(project_id: &str) -> bool { // Allow alphanumeric, hyphens, underscores diff --git a/src/nl.rs b/src/nl.rs index 44b43fd..14049bb 100644 --- a/src/nl.rs +++ b/src/nl.rs @@ -201,6 +201,15 @@ static GO_KEYWORDS: OnceLock> = OnceLock::new(); static JS_KEYWORDS: OnceLock> = OnceLock::new(); static PHP_KEYWORDS: OnceLock> = OnceLock::new(); static JAVA_KEYWORDS: OnceLock> = OnceLock::new(); +static SWIFT_KEYWORDS: OnceLock> = OnceLock::new(); +static DART_KEYWORDS: OnceLock> = OnceLock::new(); +static OBJC_KEYWORDS: OnceLock> = OnceLock::new(); +static KOTLIN_KEYWORDS: OnceLock> = OnceLock::new(); +static C_KEYWORDS: OnceLock> = OnceLock::new(); +static CPP_KEYWORDS: OnceLock> = OnceLock::new(); +static CSHARP_KEYWORDS: OnceLock> = OnceLock::new(); +static BASH_KEYWORDS: OnceLock> = OnceLock::new(); +static TOML_KEYWORDS: OnceLock> = OnceLock::new(); #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum Language { @@ -212,6 +221,15 @@ pub enum Language { Go, Php, Java, + Swift, + Dart, + ObjectiveC, + Kotlin, + C, + Cpp, + CSharp, + Bash, + Toml, Css, Html, } @@ -226,6 +244,15 @@ impl From<&str> for Language { "lang:go" => Language::Go, "lang:php" => Language::Php, "lang:java" => Language::Java, + "lang:swift" => Language::Swift, + "lang:dart" => Language::Dart, + "lang:objc" => Language::ObjectiveC, + "lang:kotlin" => Language::Kotlin, + "lang:c" => Language::C, + "lang:cpp" => Language::Cpp, + "lang:csharp" => Language::CSharp, + "lang:bash" => Language::Bash, + "lang:toml" => Language::Toml, "lang:css" => Language::Css, "lang:html" => Language::Html, _ => Language::Default, @@ -783,6 +810,115 @@ pub fn get_language_stopwords(lang: Language) -> &'static HashSet<&'static str> .into_iter() .collect() }), + Language::Swift => SWIFT_KEYWORDS.get_or_init(|| { + [ + "associatedtype", "class", "deinit", "enum", "extension", "fileprivate", + "func", "import", "init", "inout", "internal", "let", "open", "operator", + "private", "protocol", "public", "static", "struct", "subscript", "typealias", + "var", "break", "case", "continue", "default", "defer", "do", "else", + "fallthrough", "for", "guard", "if", "in", "repeat", "return", "switch", + "where", "while", "as", "catch", "false", "is", "nil", "rethrows", "super", + "self", "throw", "throws", "true", "try", "weak", "unowned", "override", + ] + .into_iter() + .collect() + }), + Language::Dart => DART_KEYWORDS.get_or_init(|| { + [ + "abstract", "as", "assert", "async", "await", "break", "case", "catch", + "class", "const", "continue", "covariant", "default", "deferred", "do", + "dynamic", "else", "enum", "export", "extends", "extension", "external", + "factory", "false", "final", "finally", "for", "function", "get", "hide", + "if", "implements", "import", "in", "interface", "is", "late", "library", + "mixin", "new", "null", "on", "operator", "part", "required", "rethrow", + "return", "set", "show", "static", "super", "switch", "sync", "this", "throw", + "true", "try", "typedef", "var", "void", "while", "with", "yield", + ] + .into_iter() + .collect() + }), + Language::ObjectiveC => OBJC_KEYWORDS.get_or_init(|| { + [ + "auto", "break", "case", "char", "const", "continue", "default", "do", + "double", "else", "enum", "extern", "float", "for", "goto", "if", "inline", + "int", "long", "register", "restrict", "return", "short", "signed", "sizeof", + "static", "struct", "switch", "typedef", "union", "unsigned", "void", + "volatile", "while", "class", "interface", "implementation", "protocol", + "property", "synthesize", "dynamic", "selector", "encode", "end", "import", + "include", "define", "ifdef", "ifndef", "endif", "elif", + ] + .into_iter() + .collect() + }), + Language::Kotlin => KOTLIN_KEYWORDS.get_or_init(|| { + [ + "as", "break", "class", "continue", "do", "else", "false", "for", "fun", + "if", "in", "interface", "is", "null", "object", "package", "return", "super", + "this", "throw", "true", "try", "typealias", "typeof", "val", "var", "when", + "while", "by", "catch", "constructor", "delegate", "dynamic", "field", "file", + "finally", "get", "import", "init", "param", "property", "receiver", "set", + "setparam", "where", "actual", "abstract", "annotation", "companion", "const", + "crossinline", "data", "enum", "expect", "external", "final", "infix", "inline", + "inner", "internal", "lateinit", "noinline", "open", "operator", "out", "override", + "private", "protected", "public", "reified", "sealed", "suspend", "tailrec", "vararg", + ] + .into_iter() + .collect() + }), + Language::C => C_KEYWORDS.get_or_init(|| { + [ + "auto", "break", "case", "char", "const", "continue", "default", "do", + "double", "else", "enum", "extern", "float", "for", "goto", "if", "inline", + "int", "long", "register", "restrict", "return", "short", "signed", "sizeof", + "static", "struct", "switch", "typedef", "union", "unsigned", "void", + "volatile", "while", + ] + .into_iter() + .collect() + }), + Language::Cpp => CPP_KEYWORDS.get_or_init(|| { + [ + "alignas", "alignof", "and", "asm", "auto", "bitand", "bitor", "bool", + "break", "case", "catch", "char", "class", "compl", "concept", "const", + "consteval", "constexpr", "constinit", "const_cast", "continue", "decltype", + "default", "delete", "do", "double", "dynamic_cast", "else", "enum", "explicit", + "export", "extern", "false", "final", "float", "for", "friend", "goto", "if", + "inline", "int", "mutable", "namespace", "new", "noexcept", "not", "nullptr", + "operator", "or", "private", "protected", "public", "register", "reinterpret_cast", + "requires", "return", "short", "signed", "sizeof", "static", "static_assert", + "static_cast", "struct", "switch", "template", "this", "thread_local", "throw", + "true", "try", "typedef", "typeid", "typename", "union", "unsigned", "using", + "virtual", "void", "volatile", "wchar_t", "while", "xor", + ] + .into_iter() + .collect() + }), + Language::CSharp => CSHARP_KEYWORDS.get_or_init(|| { + [ + "abstract", "as", "async", "await", "base", "bool", "break", "byte", "case", + "catch", "char", "checked", "class", "const", "continue", "decimal", "default", + "delegate", "do", "double", "else", "enum", "event", "explicit", "extern", "false", + "finally", "fixed", "float", "for", "foreach", "goto", "if", "implicit", "in", + "int", "interface", "internal", "is", "lock", "long", "namespace", "new", "null", + "object", "operator", "out", "override", "params", "private", "protected", "public", + "readonly", "ref", "return", "sbyte", "sealed", "short", "sizeof", "stackalloc", + "static", "string", "struct", "switch", "this", "throw", "true", "try", "typeof", + "uint", "ulong", "unchecked", "unsafe", "ushort", "using", "virtual", "void", + "volatile", "while", "var", + ] + .into_iter() + .collect() + }), + Language::Bash => BASH_KEYWORDS.get_or_init(|| { + [ + "break", "case", "coproc", "continue", "do", "done", "elif", "else", "esac", + "export", "fi", "for", "function", "if", "in", "local", "readonly", "return", + "select", "set", "then", "time", "typeset", "until", "unset", "while", + ] + .into_iter() + .collect() + }), + Language::Toml => TOML_KEYWORDS.get_or_init(|| ["true", "false"].into_iter().collect()), _ => get_stopwords(), // Fallback to normal stopwords } } diff --git a/src/normalization.rs b/src/normalization.rs index fee8a6e..4b75926 100644 --- a/src/normalization.rs +++ b/src/normalization.rs @@ -62,6 +62,20 @@ pub fn normalize_cue(raw: &str, config: &NormalizationConfig) -> (String, Normal } } + // Collapse repeated values in namespaced cues such as + // `lang:python:python`. This is intentionally applied after custom + // rewrite rules so both forms share the same traceable normalization. + if let Some((prefix, values)) = current.split_once(':') { + let parts: Vec<&str> = values.split(':').collect(); + if parts.len() > 1 && parts.windows(2).all(|pair| pair[0] == pair[1]) { + let deduplicated = format!("{prefix}:{}", parts[0]); + if deduplicated != current { + current = deduplicated; + applied_rules.push("dedupe_prefix".to_string()); + } + } + } + ( current.clone(), NormalizeTrace { diff --git a/src/persistence.rs b/src/persistence.rs index d0b732d..c47d248 100644 --- a/src/persistence.rs +++ b/src/persistence.rs @@ -560,21 +560,38 @@ pub async fn setup_shutdown_handler( + 'static, { tokio::spawn(async move { - // Wait for SIGINT (Ctrl+C) or SIGTERM - let mut sigint = tokio::signal::unix::signal(tokio::signal::unix::SignalKind::interrupt()) + // Unix supports both Ctrl+C and SIGTERM (for example, from Docker). + #[cfg(unix)] + { + let mut sigint = tokio::signal::unix::signal( + tokio::signal::unix::SignalKind::interrupt(), + ) .expect("Failed to create SIGINT handler"); - let mut sigterm = tokio::signal::unix::signal(tokio::signal::unix::SignalKind::terminate()) + let mut sigterm = tokio::signal::unix::signal( + tokio::signal::unix::SignalKind::terminate(), + ) .expect("Failed to create SIGTERM handler"); - tokio::select! { - _ = sigint.recv() => { - info!("Received SIGINT, shutting down gracefully..."); - } - _ = sigterm.recv() => { - info!("Received SIGTERM, shutting down gracefully..."); + tokio::select! { + _ = sigint.recv() => { + info!("Received SIGINT, shutting down gracefully..."); + } + _ = sigterm.recv() => { + info!("Received SIGTERM, shutting down gracefully..."); + } } } + // Windows does not expose Unix signal streams through Tokio; Ctrl+C is + // the portable console shutdown signal there. + #[cfg(not(unix))] + { + tokio::signal::ctrl_c() + .await + .expect("Failed to create Ctrl+C handler"); + info!("Received Ctrl+C, shutting down gracefully..."); + } + // Save final snapshot info!("Saving final snapshot before shutdown..."); if let Err(e) = persistence.save_state(&engine) { diff --git a/src/project_package.rs b/src/project_package.rs new file mode 100644 index 0000000..e9e0106 --- /dev/null +++ b/src/project_package.rs @@ -0,0 +1,1325 @@ +//! Portable, checksummed CueMap project packages. +//! +//! A `.cuemap` file contains the already-built project snapshots plus any +//! disk-backed memory contents and optional CueBridge artifacts. Loading a +//! package installs those files directly; it does not replay ingestion. + +use crate::multi_tenant::validate_project_id; +use crate::persistence::PersistenceManager; +use crate::structures::{LexiconStats, MainStats, MemoryId}; +use serde::{Deserialize, Serialize}; +use sha2::{Digest, Sha256}; +use std::collections::HashSet; +use std::fs::{self, File, OpenOptions}; +use std::io::{self, BufReader, BufWriter, Read, Write}; +use std::path::{Component, Path, PathBuf}; +use std::time::{SystemTime, UNIX_EPOCH}; +use uuid::Uuid; +use walkdir::WalkDir; + +const PACKAGE_MAGIC: &[u8; 8] = b"CUEMAP01"; +const PACKAGE_FORMAT: &str = "cuemap-project"; +const PACKAGE_VERSION: u32 = 1; +const MAX_MANIFEST_BYTES: u64 = 16 * 1024 * 1024; +const MAX_PACKAGE_FILES: usize = 1_000_000; + +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)] +pub struct ProjectPackageFile { + pub path: String, + pub size_bytes: u64, + pub sha256: String, +} + +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)] +pub struct ProjectPackageManifest { + pub format: String, + pub version: u32, + pub engine_version: String, + pub project_id: String, + pub created_at: u64, + pub files: Vec, +} + +#[derive(Debug, Clone, PartialEq, Eq)] +pub struct ProjectPackageSummary { + pub project_id: String, + pub path: PathBuf, + pub file_count: usize, + pub size_bytes: u64, +} + +#[derive(Debug)] +struct SourceFile { + logical_path: String, + source_path: PathBuf, + size_bytes: u64, + sha256: String, +} + +/// Create one portable project package from a CueMap data directory. +pub fn pack_project( + data_dir: &Path, + project_id: &str, + output_path: &Path, + overwrite: bool, +) -> Result { + validate_id(project_id)?; + if output_path.exists() && !overwrite { + return Err(format!( + "Package '{}' already exists; pass --force to replace it", + output_path.display() + )); + } + + let sources = collect_project_files(data_dir, project_id)?; + let files = sources + .iter() + .map(|source| ProjectPackageFile { + path: source.logical_path.clone(), + size_bytes: source.size_bytes, + sha256: source.sha256.clone(), + }) + .collect(); + let manifest = ProjectPackageManifest { + format: PACKAGE_FORMAT.to_string(), + version: PACKAGE_VERSION, + engine_version: env!("CARGO_PKG_VERSION").to_string(), + project_id: project_id.to_string(), + created_at: unix_seconds(), + files, + }; + let manifest_bytes = serde_json::to_vec(&manifest) + .map_err(|error| format!("Failed to encode package manifest: {error}"))?; + if manifest_bytes.len() as u64 > MAX_MANIFEST_BYTES { + return Err("Package manifest is too large".to_string()); + } + + if let Some(parent) = output_path.parent().filter(|path| !path.as_os_str().is_empty()) { + fs::create_dir_all(parent) + .map_err(|error| format!("Failed to create '{}': {error}", parent.display()))?; + } + let temp_path = package_temp_path(output_path); + let write_result = (|| -> Result<(), String> { + let file = OpenOptions::new() + .write(true) + .create_new(true) + .open(&temp_path) + .map_err(|error| { + format!( + "Failed to create temporary package '{}': {error}", + temp_path.display() + ) + })?; + let mut writer = BufWriter::new(file); + writer + .write_all(PACKAGE_MAGIC) + .and_then(|_| writer.write_all(&(manifest_bytes.len() as u64).to_le_bytes())) + .and_then(|_| writer.write_all(&manifest_bytes)) + .map_err(|error| format!("Failed to write package header: {error}"))?; + + for source in &sources { + let mut input = BufReader::new(File::open(&source.source_path).map_err(|error| { + format!("Failed to open '{}': {error}", source.source_path.display()) + })?); + io::copy(&mut input, &mut writer).map_err(|error| { + format!("Failed to package '{}': {error}", source.source_path.display()) + })?; + } + writer + .flush() + .map_err(|error| format!("Failed to flush package: {error}"))?; + writer + .get_ref() + .sync_all() + .map_err(|error| format!("Failed to sync package: {error}"))?; + Ok(()) + })(); + + if let Err(error) = write_result { + let _ = fs::remove_file(&temp_path); + return Err(error); + } + if overwrite && output_path.exists() { + fs::remove_file(output_path).map_err(|error| { + format!("Failed to replace '{}': {error}", output_path.display()) + })?; + } + fs::rename(&temp_path, output_path).map_err(|error| { + let _ = fs::remove_file(&temp_path); + format!( + "Failed to finalize package '{}': {error}", + output_path.display() + ) + })?; + + let size_bytes = fs::metadata(output_path) + .map_err(|error| format!("Failed to inspect package: {error}"))? + .len(); + Ok(ProjectPackageSummary { + project_id: project_id.to_string(), + path: output_path.to_path_buf(), + file_count: sources.len(), + size_bytes, + }) +} + +/// Read and validate only the package header and manifest. +pub fn inspect_project_package(package_path: &Path) -> Result { + let file = File::open(package_path) + .map_err(|error| format!("Failed to open '{}': {error}", package_path.display()))?; + let mut reader = BufReader::new(file); + let manifest = read_manifest(&mut reader)?; + validate_manifest(&manifest)?; + let expected = package_payload_offset(&manifest)? + .checked_add(total_payload_bytes(&manifest)?) + .ok_or_else(|| "Package size overflow".to_string())?; + let actual = fs::metadata(package_path) + .map_err(|error| format!("Failed to inspect '{}': {error}", package_path.display()))? + .len(); + if expected != actual { + return Err(format!( + "Package length mismatch: manifest expects {expected} bytes, file has {actual}" + )); + } + Ok(manifest) +} + +/// Install a `.cuemap` package into a local CueMap data directory. +/// +/// The caller must not replace a project that is currently loaded by a running +/// server. New projects may be installed and then demand-loaded by the server. +pub fn load_project_package( + data_dir: &Path, + package_path: &Path, + overwrite: bool, +) -> Result { + load_project_package_checked(data_dir, package_path, overwrite, None) +} + +/// Install a package only when its normalized queryable state matches the +/// expected sync commit. The check happens in staging before any local file is +/// replaced. +pub fn load_project_package_with_state_hash( + data_dir: &Path, + package_path: &Path, + overwrite: bool, + expected_state_sha256: &str, +) -> Result { + load_project_package_checked( + data_dir, + package_path, + overwrite, + Some(expected_state_sha256), + ) +} + +fn load_project_package_checked( + data_dir: &Path, + package_path: &Path, + overwrite: bool, + expected_state_sha256: Option<&str>, +) -> Result { + fs::create_dir_all(data_dir) + .map_err(|error| format!("Failed to create '{}': {error}", data_dir.display()))?; + let package_file = File::open(package_path) + .map_err(|error| format!("Failed to open '{}': {error}", package_path.display()))?; + let package_size = package_file + .metadata() + .map_err(|error| format!("Failed to inspect package: {error}"))? + .len(); + let mut reader = BufReader::new(package_file); + let manifest = read_manifest(&mut reader)?; + validate_manifest(&manifest)?; + + let expected = package_payload_offset(&manifest)? + .checked_add(total_payload_bytes(&manifest)?) + .ok_or_else(|| "Package size overflow".to_string())?; + if expected != package_size { + return Err(format!( + "Package length mismatch: manifest expects {expected} bytes, file has {package_size}" + )); + } + + let import_root = data_dir + .join(".imports") + .join(format!("{}-{}", manifest.project_id, Uuid::new_v4())); + fs::create_dir_all(&import_root).map_err(|error| { + format!( + "Failed to create import staging directory '{}': {error}", + import_root.display() + ) + })?; + + let stage_result = (|| -> Result<(), String> { + for entry in &manifest.files { + let destination = import_root.join(logical_path(&entry.path)?); + if let Some(parent) = destination.parent() { + fs::create_dir_all(parent).map_err(|error| { + format!("Failed to create '{}': {error}", parent.display()) + })?; + } + let output = OpenOptions::new() + .write(true) + .create_new(true) + .open(&destination) + .map_err(|error| { + format!("Failed to create '{}': {error}", destination.display()) + })?; + copy_exact_and_verify(&mut reader, output, entry)?; + } + let mut trailing = [0_u8; 1]; + if reader + .read(&mut trailing) + .map_err(|error| format!("Failed to finish reading package: {error}"))? + != 0 + { + return Err("Package contains trailing bytes".to_string()); + } + validate_staged_project(&import_root)?; + if let Some(expected) = expected_state_sha256 { + let actual = staged_project_state_sha256(&import_root)?; + if actual != expected { + return Err(format!( + "Package project state hash mismatch: expected {expected}, got {actual}" + )); + } + } + install_staged_project(data_dir, &import_root, &manifest.project_id, overwrite) + })(); + + let _ = fs::remove_dir_all(&import_root); + if let Some(imports) = import_root.parent() { + let _ = fs::remove_dir(imports); + } + stage_result?; + + Ok(ProjectPackageSummary { + project_id: manifest.project_id, + path: package_path.to_path_buf(), + file_count: manifest.files.len(), + size_bytes: package_size, + }) +} + +/// Resolve either an S3 bucket/prefix or a complete object URI for a project. +pub fn s3_destination(value: &str, project: &str) -> Result { + validate_s3_uri(value, true)?; + if value.ends_with('/') { + Ok(format!("{value}{project}.cuemap")) + } else if value.trim_start_matches("s3://").contains('/') { + Ok(value.to_string()) + } else { + Ok(format!("{value}/{project}.cuemap")) + } +} + +/// Validate an S3 URI before handing it to the AWS CLI as one argument. +pub fn validate_s3_uri(value: &str, allow_bucket_only: bool) -> Result<(), String> { + if value.chars().any(char::is_control) { + return Err("S3 URI contains control characters".to_string()); + } + let rest = value + .strip_prefix("s3://") + .ok_or_else(|| "Expected an s3:// URI".to_string())?; + let (bucket, key) = rest.split_once('/').unwrap_or((rest, "")); + if bucket.is_empty() || bucket == "." || bucket == ".." { + return Err("S3 URI must include a bucket".to_string()); + } + if !allow_bucket_only && key.trim_matches('/').is_empty() { + return Err("S3 URI must include an object key".to_string()); + } + Ok(()) +} + +/// Upload a package with the caller's configured AWS CLI credentials. +pub fn upload_s3(source: &Path, destination: &str) -> Result<(), String> { + validate_s3_uri(destination, false)?; + let output = std::process::Command::new("aws") + .args(["s3", "cp"]) + .arg(source) + .arg(destination) + .args(["--only-show-errors", "--no-progress"]) + .output() + .map_err(|error| format!("Failed to run AWS CLI: {error}"))?; + if output.status.success() { + Ok(()) + } else { + Err(format!( + "AWS CLI upload failed: {}", + String::from_utf8_lossy(&output.stderr).trim() + )) + } +} + +/// Download a package with the caller's configured AWS CLI credentials. +pub fn download_s3(source: &str, destination: &Path) -> Result<(), String> { + validate_s3_uri(source, false)?; + let output = std::process::Command::new("aws") + .args(["s3", "cp", source]) + .arg(destination) + .args(["--only-show-errors", "--no-progress"]) + .output() + .map_err(|error| format!("Failed to run AWS CLI: {error}"))?; + if output.status.success() { + Ok(()) + } else { + Err(format!( + "AWS CLI download failed: {}", + String::from_utf8_lossy(&output.stderr).trim() + )) + } +} + +fn collect_project_files(data_dir: &Path, project_id: &str) -> Result, String> { + let snapshots = data_dir.join("snapshots"); + let candidates = [ + ("snapshot/main.bin".to_string(), snapshots.join(format!("{project_id}.bin"))), + ( + "snapshot/aliases.bin".to_string(), + snapshots.join(format!("{project_id}_aliases.bin")), + ), + ( + "snapshot/lexicon.bin".to_string(), + snapshots.join(format!("{project_id}_lexicon.bin")), + ), + ]; + if !candidates[0].1.is_file() { + return Err(format!( + "Project snapshot '{}' was not found; save the project before packing", + candidates[0].1.display() + )); + } + + let mut paths: Vec<(String, PathBuf)> = candidates + .into_iter() + .filter(|(_, path)| path.is_file()) + .collect(); + collect_directory( + &data_dir.join("contents").join(project_id), + "contents", + &mut paths, + )?; + collect_directory( + &data_dir.join("artifacts").join(project_id), + "artifacts", + &mut paths, + )?; + paths.sort_by(|left, right| left.0.cmp(&right.0)); + + paths + .into_iter() + .map(|(logical_path, source_path)| { + let size_bytes = fs::metadata(&source_path) + .map_err(|error| format!("Failed to inspect '{}': {error}", source_path.display()))? + .len(); + let sha256 = file_sha256(&source_path)?; + Ok(SourceFile { + logical_path, + source_path, + size_bytes, + sha256, + }) + }) + .collect() +} + +fn collect_directory( + root: &Path, + logical_root: &str, + paths: &mut Vec<(String, PathBuf)>, +) -> Result<(), String> { + if !root.exists() { + return Ok(()); + } + for entry in WalkDir::new(root).follow_links(false).into_iter() { + let entry = entry.map_err(|error| format!("Failed to walk '{}': {error}", root.display()))?; + if entry.file_type().is_symlink() { + return Err(format!( + "Refusing to package symlink '{}'", + entry.path().display() + )); + } + if !entry.file_type().is_file() { + continue; + } + let relative = entry + .path() + .strip_prefix(root) + .map_err(|error| format!("Failed to resolve package path: {error}"))?; + let relative = portable_relative_path(relative)?; + paths.push((format!("{logical_root}/{relative}"), entry.path().to_path_buf())); + } + Ok(()) +} + +fn read_manifest(reader: &mut impl Read) -> Result { + let mut magic = [0_u8; 8]; + reader + .read_exact(&mut magic) + .map_err(|error| format!("Failed to read package header: {error}"))?; + if &magic != PACKAGE_MAGIC { + return Err("Not a CueMap project package".to_string()); + } + let mut length = [0_u8; 8]; + reader + .read_exact(&mut length) + .map_err(|error| format!("Failed to read package manifest length: {error}"))?; + let manifest_len = u64::from_le_bytes(length); + if manifest_len == 0 || manifest_len > MAX_MANIFEST_BYTES { + return Err(format!("Invalid package manifest length: {manifest_len}")); + } + let manifest_len: usize = manifest_len + .try_into() + .map_err(|_| "Package manifest is too large for this platform".to_string())?; + let mut manifest_bytes = vec![0_u8; manifest_len]; + reader + .read_exact(&mut manifest_bytes) + .map_err(|error| format!("Failed to read package manifest: {error}"))?; + serde_json::from_slice(&manifest_bytes) + .map_err(|error| format!("Invalid package manifest: {error}")) +} + +fn validate_manifest(manifest: &ProjectPackageManifest) -> Result<(), String> { + if manifest.format != PACKAGE_FORMAT { + return Err(format!("Unsupported package format '{}'", manifest.format)); + } + if manifest.version != PACKAGE_VERSION { + return Err(format!( + "Unsupported package version {} (expected {})", + manifest.version, PACKAGE_VERSION + )); + } + validate_id(&manifest.project_id)?; + if manifest.files.is_empty() || manifest.files.len() > MAX_PACKAGE_FILES { + return Err("Package contains an invalid number of files".to_string()); + } + let mut seen = HashSet::new(); + let mut has_main = false; + for entry in &manifest.files { + logical_path(&entry.path)?; + if !seen.insert(entry.path.as_str()) { + return Err(format!("Package contains duplicate path '{}'", entry.path)); + } + if entry.path == "snapshot/main.bin" { + has_main = true; + } + if entry.sha256.len() != 64 + || !entry.sha256.bytes().all(|byte| byte.is_ascii_hexdigit()) + { + return Err(format!("Invalid checksum for '{}'", entry.path)); + } + } + if !has_main { + return Err("Package does not contain snapshot/main.bin".to_string()); + } + Ok(()) +} + +fn logical_path(value: &str) -> Result { + if value.is_empty() || value.len() > 4096 || value.contains('\\') { + return Err(format!("Unsafe package path '{value}'")); + } + let path = Path::new(value); + if path.is_absolute() + || path + .components() + .any(|part| !matches!(part, Component::Normal(_))) + { + return Err(format!("Unsafe package path '{value}'")); + } + let allowed = value == "snapshot/main.bin" + || value == "snapshot/aliases.bin" + || value == "snapshot/lexicon.bin" + || value.starts_with("contents/") + || value.starts_with("artifacts/"); + if !allowed { + return Err(format!("Unsupported package path '{value}'")); + } + Ok(path.to_path_buf()) +} + +fn portable_relative_path(path: &Path) -> Result { + let mut parts = Vec::new(); + for component in path.components() { + match component { + Component::Normal(value) => parts.push( + value + .to_str() + .ok_or_else(|| format!("Non-UTF-8 package path '{}'", path.display()))?, + ), + _ => return Err(format!("Unsafe package path '{}'", path.display())), + } + } + if parts.is_empty() { + return Err("Package file path cannot be empty".to_string()); + } + Ok(parts.join("/")) +} + +fn copy_exact_and_verify( + reader: &mut impl Read, + mut output: File, + entry: &ProjectPackageFile, +) -> Result<(), String> { + let mut remaining = entry.size_bytes; + let mut hasher = Sha256::new(); + let mut buffer = vec![0_u8; 64 * 1024]; + while remaining > 0 { + let wanted = usize::try_from(remaining.min(buffer.len() as u64)).unwrap_or(buffer.len()); + let read = reader + .read(&mut buffer[..wanted]) + .map_err(|error| format!("Failed to read '{}': {error}", entry.path))?; + if read == 0 { + return Err(format!("Package ended while reading '{}'", entry.path)); + } + output + .write_all(&buffer[..read]) + .map_err(|error| format!("Failed to extract '{}': {error}", entry.path))?; + hasher.update(&buffer[..read]); + remaining -= read as u64; + } + output + .sync_all() + .map_err(|error| format!("Failed to sync '{}': {error}", entry.path))?; + let actual = hex::encode(hasher.finalize()); + if actual != entry.sha256.to_ascii_lowercase() { + return Err(format!("Checksum mismatch for '{}'", entry.path)); + } + Ok(()) +} + +fn validate_staged_project(stage: &Path) -> Result<(), String> { + let main_path = stage.join("snapshot/main.bin"); + let (memories, _, _, _, _) = PersistenceManager::load_from_path::(&main_path) + .map_err(|error| format!("Invalid main snapshot: {error}"))?; + let aliases = stage.join("snapshot/aliases.bin"); + if aliases.exists() { + PersistenceManager::load_from_path::(&aliases) + .map_err(|error| format!("Invalid aliases snapshot: {error}"))?; + } + let lexicon = stage.join("snapshot/lexicon.bin"); + if lexicon.exists() { + PersistenceManager::load_from_path::(&lexicon) + .map_err(|error| format!("Invalid lexicon snapshot: {error}"))?; + } + + let missing_contents: Vec = memories + .iter() + .filter_map(|entry| { + let memory = entry.value(); + if memory.disk_backed + && !stage + .join("contents") + .join(format!("{}.bin", memory.id)) + .is_file() + { + Some(memory.id) + } else { + None + } + }) + .take(10) + .collect(); + if !missing_contents.is_empty() { + return Err(format!( + "Package is missing disk-backed content for memories {:?}", + missing_contents + )); + } + Ok(()) +} + +fn install_staged_project( + data_dir: &Path, + stage: &Path, + project_id: &str, + overwrite: bool, +) -> Result<(), String> { + let snapshots = data_dir.join("snapshots"); + fs::create_dir_all(&snapshots) + .map_err(|error| format!("Failed to create '{}': {error}", snapshots.display()))?; + let targets = [ + (stage.join("snapshot/main.bin"), snapshots.join(format!("{project_id}.bin"))), + ( + stage.join("snapshot/aliases.bin"), + snapshots.join(format!("{project_id}_aliases.bin")), + ), + ( + stage.join("snapshot/lexicon.bin"), + snapshots.join(format!("{project_id}_lexicon.bin")), + ), + ( + stage.join("contents"), + data_dir.join("contents").join(project_id), + ), + ( + stage.join("artifacts"), + data_dir.join("artifacts").join(project_id), + ), + ]; + let conflicts: Vec = targets + .iter() + .filter(|(_, target)| target.exists()) + .map(|(_, target)| target.display().to_string()) + .collect(); + if !conflicts.is_empty() && !overwrite { + return Err(format!( + "Project '{}' already exists at {}; pass --force to replace it", + project_id, + conflicts.join(", ") + )); + } + + let backup = data_dir + .join(".imports") + .join(format!("backup-{project_id}-{}", Uuid::new_v4())); + fs::create_dir_all(&backup) + .map_err(|error| format!("Failed to create rollback directory: {error}"))?; + let mut backed_up = Vec::new(); + let mut installed = Vec::new(); + + let install_result = (|| -> Result<(), String> { + for (index, (_, target)) in targets.iter().enumerate() { + if !target.exists() { + continue; + } + let backup_target = backup.join(index.to_string()); + fs::rename(target, &backup_target).map_err(|error| { + format!("Failed to stage existing '{}': {error}", target.display()) + })?; + backed_up.push((backup_target, target.clone())); + } + + // Install the main snapshot last so incomplete installs are not + // discoverable as valid projects during normal startup scanning. + for index in [1_usize, 2, 3, 4, 0] { + let (source, target) = &targets[index]; + if !source.exists() { + continue; + } + if let Some(parent) = target.parent() { + fs::create_dir_all(parent).map_err(|error| { + format!("Failed to create '{}': {error}", parent.display()) + })?; + } + fs::rename(source, target).map_err(|error| { + format!("Failed to install '{}': {error}", target.display()) + })?; + installed.push(target.clone()); + } + Ok(()) + })(); + + if let Err(error) = install_result { + for target in installed.iter().rev() { + remove_path(target); + } + for (source, target) in backed_up.into_iter().rev() { + let _ = fs::rename(source, target); + } + let _ = fs::remove_dir_all(&backup); + return Err(error); + } + fs::remove_dir_all(&backup) + .map_err(|error| format!("Project installed but rollback cleanup failed: {error}"))?; + Ok(()) +} + +fn remove_path(path: &Path) { + if path.is_dir() { + let _ = fs::remove_dir_all(path); + } else { + let _ = fs::remove_file(path); + } +} + +/// Hash a file without buffering it in memory. +pub fn file_sha256(path: &Path) -> Result { + let mut input = BufReader::new( + File::open(path).map_err(|error| format!("Failed to open '{}': {error}", path.display()))?, + ); + let mut hasher = Sha256::new(); + let mut buffer = vec![0_u8; 64 * 1024]; + loop { + let read = input + .read(&mut buffer) + .map_err(|error| format!("Failed to hash '{}': {error}", path.display()))?; + if read == 0 { + break; + } + hasher.update(&buffer[..read]); + } + Ok(hex::encode(hasher.finalize())) +} + +/// Compute a stable hash of the queryable project state. +/// +/// Snapshot timestamps and JSON object iteration order are normalized so an +/// otherwise unchanged project does not appear dirty merely because it was +/// saved again. Disk-backed contents and CueBridge artifacts are included. +pub fn project_state_sha256(data_dir: &Path, project_id: &str) -> Result { + validate_id(project_id)?; + let snapshots = data_dir.join("snapshots"); + let snapshot_files = [ + ("snapshot/main.bin", snapshots.join(format!("{project_id}.bin"))), + ( + "snapshot/aliases.bin", + snapshots.join(format!("{project_id}_aliases.bin")), + ), + ( + "snapshot/lexicon.bin", + snapshots.join(format!("{project_id}_lexicon.bin")), + ), + ]; + if !snapshot_files[0].1.is_file() { + return Err(format!("Project snapshot for '{project_id}' was not found")); + } + + let mut hasher = Sha256::new(); + for (logical_path, path) in snapshot_files { + if path.is_file() { + let bytes = normalized_snapshot_bytes(&path)?; + hash_component(&mut hasher, logical_path.as_bytes(), &bytes); + } + } + + let mut extras = Vec::new(); + collect_directory( + &data_dir.join("contents").join(project_id), + "contents", + &mut extras, + )?; + collect_directory( + &data_dir.join("artifacts").join(project_id), + "artifacts", + &mut extras, + )?; + extras.sort_by(|left, right| left.0.cmp(&right.0)); + for (logical_path, path) in extras { + let bytes = fs::read(&path) + .map_err(|error| format!("Failed to read '{}': {error}", path.display()))?; + hash_component(&mut hasher, logical_path.as_bytes(), &bytes); + } + Ok(hex::encode(hasher.finalize())) +} + +fn staged_project_state_sha256(import_root: &Path) -> Result { + let snapshot_files = [ + ("snapshot/main.bin", import_root.join("snapshot/main.bin")), + ( + "snapshot/aliases.bin", + import_root.join("snapshot/aliases.bin"), + ), + ( + "snapshot/lexicon.bin", + import_root.join("snapshot/lexicon.bin"), + ), + ]; + let mut hasher = Sha256::new(); + for (logical_path, path) in snapshot_files { + if path.is_file() { + let bytes = normalized_snapshot_bytes(&path)?; + hash_component(&mut hasher, logical_path.as_bytes(), &bytes); + } + } + + let mut extras = Vec::new(); + collect_directory(&import_root.join("contents"), "contents", &mut extras)?; + collect_directory(&import_root.join("artifacts"), "artifacts", &mut extras)?; + extras.sort_by(|left, right| left.0.cmp(&right.0)); + for (logical_path, path) in extras { + let bytes = fs::read(&path) + .map_err(|error| format!("Failed to read '{}': {error}", path.display()))?; + hash_component(&mut hasher, logical_path.as_bytes(), &bytes); + } + Ok(hex::encode(hasher.finalize())) +} + +fn normalized_snapshot_bytes(path: &Path) -> Result, String> { + let raw = fs::read(path) + .map_err(|error| format!("Failed to read snapshot '{}': {error}", path.display()))?; + let decoded = if crate::crypto::is_compressed(&raw) { + zstd::stream::decode_all(io::Cursor::new(raw)).map_err(|error| { + format!("Failed to decode snapshot '{}': {error}", path.display()) + })? + } else { + raw + }; + let mut value: serde_json::Value = match serde_json::from_slice(&decoded) { + Ok(value) => value, + Err(_) => return Ok(decoded), + }; + if let Some(object) = value.as_object_mut() { + object.remove("saved_at"); + } + serde_json::to_vec(&value) + .map_err(|error| format!("Failed to normalize snapshot '{}': {error}", path.display())) +} + +fn hash_component(hasher: &mut Sha256, name: &[u8], data: &[u8]) { + hasher.update((name.len() as u64).to_le_bytes()); + hasher.update(name); + hasher.update((data.len() as u64).to_le_bytes()); + hasher.update(data); +} + +fn package_payload_offset(manifest: &ProjectPackageManifest) -> Result { + let encoded = serde_json::to_vec(manifest) + .map_err(|error| format!("Failed to encode package manifest: {error}"))?; + Ok(PACKAGE_MAGIC.len() as u64 + 8 + encoded.len() as u64) +} + +fn total_payload_bytes(manifest: &ProjectPackageManifest) -> Result { + manifest.files.iter().try_fold(0_u64, |total, entry| { + total + .checked_add(entry.size_bytes) + .ok_or_else(|| "Package payload size overflow".to_string()) + }) +} + +fn package_temp_path(output_path: &Path) -> PathBuf { + let name = output_path + .file_name() + .and_then(|value| value.to_str()) + .unwrap_or("project.cuemap"); + output_path.with_file_name(format!(".{name}.{}.tmp", Uuid::new_v4())) +} + +fn validate_id(project_id: &str) -> Result<(), String> { + if validate_project_id(project_id) { + Ok(()) + } else { + Err(format!( + "Invalid project ID '{project_id}'; use 3-64 letters, numbers, '-' or '_'" + )) + } +} + +fn unix_seconds() -> u64 { + SystemTime::now() + .duration_since(UNIX_EPOCH) + .unwrap_or_default() + .as_secs() +} + +#[cfg(test)] +mod tests { + use super::*; + use crate::engine::CueMapEngine; + use crate::structures::MainStats; + use tempfile::TempDir; + + fn create_snapshot(data_dir: &Path, project_id: &str, content: &str) { + let snapshots = data_dir.join("snapshots"); + fs::create_dir_all(&snapshots).unwrap(); + let engine = CueMapEngine::::new(); + engine.add_memory( + content.to_string(), + vec!["portable".to_string()], + None, + MainStats::default(), + true, + ); + PersistenceManager::save_to_path( + &engine, + &snapshots.join(format!("{project_id}.bin")), + ) + .unwrap(); + } + + #[test] + fn package_round_trip_preserves_snapshot() { + let source = TempDir::new().unwrap(); + let target = TempDir::new().unwrap(); + let package_dir = TempDir::new().unwrap(); + let package = package_dir.path().join("tiny.cuemap"); + create_snapshot(source.path(), "tiny_project", "portable memory"); + let contents = source.path().join("contents/tiny_project"); + let artifacts = source.path().join("artifacts/tiny_project/nested"); + fs::create_dir_all(&contents).unwrap(); + fs::create_dir_all(&artifacts).unwrap(); + fs::write(contents.join("sidecar.bin"), b"disk-backed content").unwrap(); + fs::write(artifacts.join("bridge.json"), b"{\"edge\":1}").unwrap(); + + let packed = pack_project(source.path(), "tiny_project", &package, false).unwrap(); + assert_eq!(packed.file_count, 3); + let manifest = inspect_project_package(&package).unwrap(); + assert_eq!(manifest.project_id, "tiny_project"); + + let loaded = load_project_package(target.path(), &package, false).unwrap(); + assert_eq!(loaded.project_id, "tiny_project"); + let (memories, _, _, _, _) = PersistenceManager::load_from_path::( + &target.path().join("snapshots/tiny_project.bin"), + ) + .unwrap(); + assert_eq!(memories.len(), 1); + assert_eq!( + memories.iter().next().unwrap().value().access_content(None).unwrap(), + "portable memory" + ); + assert_eq!( + fs::read(target.path().join("contents/tiny_project/sidecar.bin")).unwrap(), + b"disk-backed content" + ); + assert_eq!( + fs::read(target.path().join("artifacts/tiny_project/nested/bridge.json")).unwrap(), + b"{\"edge\":1}" + ); + } + + #[test] + fn package_detects_payload_corruption() { + let source = TempDir::new().unwrap(); + let target = TempDir::new().unwrap(); + let package_dir = TempDir::new().unwrap(); + let package = package_dir.path().join("tiny.cuemap"); + create_snapshot(source.path(), "tiny_project", "portable memory"); + pack_project(source.path(), "tiny_project", &package, false).unwrap(); + + let mut bytes = fs::read(&package).unwrap(); + let last = bytes.len() - 1; + bytes[last] ^= 0xff; + fs::write(&package, bytes).unwrap(); + let error = load_project_package(target.path(), &package, false).unwrap_err(); + assert!(error.contains("Checksum mismatch")); + } + + #[test] + fn package_refuses_overwrite_without_force() { + let source = TempDir::new().unwrap(); + let target = TempDir::new().unwrap(); + let package_dir = TempDir::new().unwrap(); + let package = package_dir.path().join("tiny.cuemap"); + create_snapshot(source.path(), "tiny_project", "new memory"); + create_snapshot(target.path(), "tiny_project", "old memory"); + pack_project(source.path(), "tiny_project", &package, false).unwrap(); + + let error = load_project_package(target.path(), &package, false).unwrap_err(); + assert!(error.contains("already exists")); + load_project_package(target.path(), &package, true).unwrap(); + let (memories, _, _, _, _) = PersistenceManager::load_from_path::( + &target.path().join("snapshots/tiny_project.bin"), + ) + .unwrap(); + assert_eq!( + memories.iter().next().unwrap().value().access_content(None).unwrap(), + "new memory" + ); + } + + #[test] + fn sync_state_hash_is_checked_before_package_installation() { + let source = TempDir::new().unwrap(); + let accepted = TempDir::new().unwrap(); + let rejected = TempDir::new().unwrap(); + let package_dir = TempDir::new().unwrap(); + let package = package_dir.path().join("tiny.cuemap"); + create_snapshot(source.path(), "tiny_project", "new memory"); + create_snapshot(rejected.path(), "tiny_project", "old memory"); + pack_project(source.path(), "tiny_project", &package, false).unwrap(); + + let expected = project_state_sha256(source.path(), "tiny_project").unwrap(); + load_project_package_with_state_hash( + accepted.path(), + &package, + false, + &expected, + ) + .unwrap(); + + let error = load_project_package_with_state_hash( + rejected.path(), + &package, + true, + &"f".repeat(64), + ) + .unwrap_err(); + assert!(error.contains("project state hash mismatch")); + let (memories, _, _, _, _) = PersistenceManager::load_from_path::( + &rejected.path().join("snapshots/tiny_project.bin"), + ) + .unwrap(); + assert_eq!( + memories.iter().next().unwrap().value().access_content(None).unwrap(), + "old memory" + ); + } + + #[test] + fn manifest_rejects_unsafe_paths() { + let manifest = ProjectPackageManifest { + format: PACKAGE_FORMAT.to_string(), + version: PACKAGE_VERSION, + engine_version: "test".to_string(), + project_id: "safe_project".to_string(), + created_at: 0, + files: vec![ProjectPackageFile { + path: "contents/../../escape".to_string(), + size_bytes: 0, + sha256: "0".repeat(64), + }], + }; + assert!(validate_manifest(&manifest).is_err()); + } + + #[test] + fn s3_uris_resolve_without_accepting_non_s3_sources() { + assert_eq!( + s3_destination("s3://example-bucket/team/", "demo-project").unwrap(), + "s3://example-bucket/team/demo-project.cuemap" + ); + assert_eq!( + s3_destination("s3://example-bucket", "demo-project").unwrap(), + "s3://example-bucket/demo-project.cuemap" + ); + assert!(validate_s3_uri("https://example.com/file", false).is_err()); + assert!(validate_s3_uri("s3://example-bucket", false).is_err()); + } + + #[test] + fn project_state_hash_ignores_snapshot_save_time_but_tracks_content() { + let source = TempDir::new().unwrap(); + create_snapshot(source.path(), "hash_project", "first memory"); + let before = project_state_sha256(source.path(), "hash_project").unwrap(); + + let snapshot = source.path().join("snapshots/hash_project.bin"); + let raw = fs::read(&snapshot).unwrap(); + let decoded = zstd::stream::decode_all(io::Cursor::new(raw)).unwrap(); + let mut value: serde_json::Value = serde_json::from_slice(&decoded).unwrap(); + value["saved_at"] = serde_json::json!(9_999_999_999_u64); + let encoded = serde_json::to_vec(&value).unwrap(); + fs::write( + &snapshot, + zstd::stream::encode_all(io::Cursor::new(encoded), 3).unwrap(), + ) + .unwrap(); + assert_eq!( + project_state_sha256(source.path(), "hash_project").unwrap(), + before + ); + + create_snapshot(source.path(), "hash_project", "different memory"); + assert_ne!( + project_state_sha256(source.path(), "hash_project").unwrap(), + before + ); + } + + fn minimal_manifest() -> ProjectPackageManifest { + ProjectPackageManifest { + format: PACKAGE_FORMAT.to_string(), + version: PACKAGE_VERSION, + engine_version: "test".to_string(), + project_id: "safe_project".to_string(), + created_at: 0, + files: vec![ProjectPackageFile { + path: "snapshot/main.bin".to_string(), + size_bytes: 0, + sha256: "0".repeat(64), + }], + } + } + + #[test] + fn manifest_validation_covers_format_version_identity_and_file_rules() { + let original = minimal_manifest(); + let mut invalid = original.clone(); + invalid.format = "other".to_string(); + assert!(validate_manifest(&invalid).unwrap_err().contains("format")); + let mut invalid = original.clone(); + invalid.version = 2; + assert!(validate_manifest(&invalid).unwrap_err().contains("version")); + let mut invalid = original.clone(); + invalid.project_id = "bad project".to_string(); + assert!(validate_manifest(&invalid).is_err()); + let mut invalid = original.clone(); + invalid.files.clear(); + assert!(validate_manifest(&invalid).unwrap_err().contains("number of files")); + let mut invalid = original.clone(); + invalid.files.push(invalid.files[0].clone()); + assert!(validate_manifest(&invalid).unwrap_err().contains("duplicate")); + let mut invalid = original.clone(); + invalid.files[0].path = "contents/sidecar.bin".to_string(); + assert!(validate_manifest(&invalid).unwrap_err().contains("snapshot/main")); + let mut invalid = original.clone(); + invalid.files[0].sha256 = "not-a-checksum".to_string(); + assert!(validate_manifest(&invalid).unwrap_err().contains("checksum")); + let mut invalid = original.clone(); + invalid.files[0].path = "other/file".to_string(); + assert!(validate_manifest(&invalid).is_err()); + } + + #[test] + fn package_reader_and_path_helpers_reject_malformed_input() { + use std::io::Cursor; + + assert!(read_manifest(&mut Cursor::new(Vec::::new())).is_err()); + assert!(read_manifest(&mut Cursor::new(b"BADMAGIC".to_vec())) + .unwrap_err() + .contains("Not a CueMap")); + let mut zero_len = PACKAGE_MAGIC.to_vec(); + zero_len.extend_from_slice(&0_u64.to_le_bytes()); + assert!(read_manifest(&mut Cursor::new(zero_len)).unwrap_err().contains("length")); + let mut huge_len = PACKAGE_MAGIC.to_vec(); + huge_len.extend_from_slice(&(MAX_MANIFEST_BYTES + 1).to_le_bytes()); + assert!(read_manifest(&mut Cursor::new(huge_len)).is_err()); + let mut truncated = PACKAGE_MAGIC.to_vec(); + truncated.extend_from_slice(&4_u64.to_le_bytes()); + truncated.extend_from_slice(b"{} "); + assert!(read_manifest(&mut Cursor::new(truncated)).is_err()); + let mut invalid_json = PACKAGE_MAGIC.to_vec(); + invalid_json.extend_from_slice(&3_u64.to_le_bytes()); + invalid_json.extend_from_slice(b"bad"); + assert!(read_manifest(&mut Cursor::new(invalid_json)) + .unwrap_err() + .contains("manifest")); + + assert!(logical_path("").is_err()); + assert!(logical_path("snapshot\\main.bin").is_err()); + assert!(logical_path("../escape").is_err()); + assert!(logical_path("unsupported/file").is_err()); + assert_eq!(logical_path("contents/nested/file.bin").unwrap(), PathBuf::from("contents/nested/file.bin")); + assert!(portable_relative_path(Path::new("")).is_err()); + assert!(portable_relative_path(Path::new("../escape")).is_err()); + assert_eq!(portable_relative_path(Path::new("nested/file.bin")).unwrap(), "nested/file.bin"); + } + + #[test] + fn payload_copy_and_size_helpers_cover_success_and_failures() { + use std::io::Cursor; + + let dir = TempDir::new().unwrap(); + let output_path = dir.path().join("out.bin"); + let content = b"payload"; + let entry = ProjectPackageFile { + path: "contents/payload.bin".to_string(), + size_bytes: content.len() as u64, + sha256: hex::encode(Sha256::digest(content)), + }; + copy_exact_and_verify( + &mut Cursor::new(content.to_vec()), + File::create(&output_path).unwrap(), + &entry, + ) + .unwrap(); + assert_eq!(fs::read(&output_path).unwrap(), content); + + let short = ProjectPackageFile { size_bytes: 10, ..entry.clone() }; + assert!(copy_exact_and_verify( + &mut Cursor::new(content.to_vec()), + File::create(dir.path().join("short.bin")).unwrap(), + &short, + ) + .unwrap_err() + .contains("ended")); + let bad_hash = ProjectPackageFile { sha256: "f".repeat(64), ..entry.clone() }; + assert!(copy_exact_and_verify( + &mut Cursor::new(content.to_vec()), + File::create(dir.path().join("bad.bin")).unwrap(), + &bad_hash, + ) + .unwrap_err() + .contains("Checksum")); + + let overflow = ProjectPackageManifest { + files: vec![ + ProjectPackageFile { size_bytes: u64::MAX, ..entry.clone() }, + ProjectPackageFile { path: "contents/second".to_string(), size_bytes: 1, ..entry }, + ], + ..minimal_manifest() + }; + assert!(total_payload_bytes(&overflow).unwrap_err().contains("overflow")); + assert!(file_sha256(&dir.path().join("missing")).is_err()); + assert!(project_state_sha256(dir.path(), "safe_project").is_err()); + } + + #[test] + fn staged_project_validation_checks_snapshots_and_disk_backed_content() { + let stage = TempDir::new().unwrap(); + fs::create_dir_all(stage.path().join("snapshot")).unwrap(); + let mut engine = CueMapEngine::::new(); + let mut config = engine.config.clone(); + config.server.data_dir = stage.path().to_string_lossy().to_string(); + config.server.store_content_on_disk = true; + engine.config = config; + engine.project_id = "staged_project".to_string(); + let memory_id = engine.add_memory( + "disk content".to_string(), + vec!["disk".to_string()], + None, + MainStats::default(), + true, + ); + PersistenceManager::save_to_path( + &engine, + &stage.path().join("snapshot/main.bin"), + ) + .unwrap(); + let error = validate_staged_project(stage.path()).unwrap_err(); + assert!(error.contains("disk-backed content")); + let generated_content = stage + .path() + .join("contents/staged_project") + .join(format!("{memory_id}.bin")); + assert!(generated_content.is_file()); + fs::rename( + &generated_content, + stage.path().join(format!("contents/{memory_id}.bin")), + ) + .unwrap(); + fs::remove_dir(stage.path().join("contents/staged_project")).unwrap(); + assert!(validate_staged_project(stage.path()).is_ok()); + + let invalid_stage = TempDir::new().unwrap(); + fs::create_dir_all(invalid_stage.path().join("snapshot")).unwrap(); + fs::write(invalid_stage.path().join("snapshot/main.bin"), b"invalid").unwrap(); + assert!(validate_staged_project(invalid_stage.path()) + .unwrap_err() + .contains("Invalid main snapshot")); + + let raw_json = TempDir::new().unwrap(); + let raw_path = raw_json.path().join("snapshot.json"); + fs::write(&raw_path, br#"{"saved_at": 123, "value": 1}"#).unwrap(); + let normalized = normalized_snapshot_bytes(&raw_path).unwrap(); + assert!(!String::from_utf8_lossy(&normalized).contains("saved_at")); + let raw_bytes = raw_json.path().join("raw.bin"); + fs::write(&raw_bytes, b"not json").unwrap(); + assert_eq!(normalized_snapshot_bytes(&raw_bytes).unwrap(), b"not json"); + } + + #[test] + fn package_and_s3_validation_cover_missing_and_unsafe_inputs() { + let data = TempDir::new().unwrap(); + let output = data.path().join("package.cuemap"); + assert!(pack_project(data.path(), "bad project", &output, false).is_err()); + assert!(pack_project(data.path(), "safe_project", &output, false) + .unwrap_err() + .contains("snapshot")); + assert!(validate_s3_uri("s3://bucket/\u{7f}", true).is_err()); + assert!(validate_s3_uri("s3://", true).is_err()); + assert!(validate_s3_uri("s3://.", true).is_err()); + assert!(validate_s3_uri("s3://..", true).is_err()); + assert!(validate_s3_uri("s3://bucket///", false).is_err()); + assert_eq!( + s3_destination("s3://bucket/existing/object.cuemap", "ignored").unwrap(), + "s3://bucket/existing/object.cuemap" + ); + assert!(download_s3("https://bad", &data.path().join("x")).is_err()); + assert!(upload_s3(data.path(), "https://bad").is_err()); + } + + #[cfg(unix)] + #[test] + fn packaging_refuses_symlinked_content() { + use std::os::unix::fs::symlink; + let root = TempDir::new().unwrap(); + let target = root.path().join("target"); + let link = root.path().join("link"); + fs::write(&target, b"target").unwrap(); + symlink(&target, &link).unwrap(); + let mut paths = Vec::new(); + assert!(collect_directory(root.path(), "contents", &mut paths) + .unwrap_err() + .contains("symlink")); + } +} diff --git a/src/project_sync.rs b/src/project_sync.rs new file mode 100644 index 0000000..5114de3 --- /dev/null +++ b/src/project_sync.rs @@ -0,0 +1,1416 @@ +//! Git-like, object-store-backed synchronization for portable CueMap projects. +//! +//! Project packages and commit records are immutable. A small `HEAD.json` is +//! advanced with an S3 conditional write, preventing stale replicas from +//! silently overwriting one another. + +use crate::multi_tenant::validate_project_id; +use crate::project_package; +use bytes::Bytes; +use object_store::aws::{AmazonS3Builder, S3ConditionalPut}; +use object_store::path::Path as ObjectPath; +use object_store::{ObjectStore, PutMode, PutPayload, UpdateVersion}; +use serde::{Deserialize, Serialize}; +use sha2::{Digest, Sha256}; +use std::collections::HashSet; +use std::fs::{self, OpenOptions}; +use std::io::Write; +use std::path::{Path, PathBuf}; +use std::process::Command; +use std::sync::Arc; +use std::time::{SystemTime, UNIX_EPOCH}; +use uuid::Uuid; + +const COMMIT_FORMAT: &str = "cuemap-sync-commit"; +const STATE_FORMAT: &str = "cuemap-sync-state"; +const SYNC_VERSION: u32 = 1; +const MAX_ANCESTRY_DEPTH: usize = 10_000; + +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)] +pub struct SyncCommit { + pub format: String, + pub version: u32, + pub project_id: String, + pub generation: u64, + pub commit_sha256: String, + pub package_sha256: String, + pub state_sha256: String, + pub parent_commit_sha256: Option, + pub package_key: String, + pub writer_id: String, + pub created_at: u64, +} + +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)] +struct LocalSyncState { + format: String, + version: u32, + project_id: String, + remote: String, + generation: u64, + commit_sha256: String, + package_sha256: String, + state_sha256: String, +} + +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)] +#[serde(rename_all = "snake_case")] +pub enum SyncAction { + Pushed, + Pulled, + UpToDate, + Adopted, +} + +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)] +pub struct SyncResult { + pub action: SyncAction, + pub project_id: String, + pub remote: String, + pub generation: u64, + pub commit_sha256: String, + pub package_sha256: String, +} + +#[derive(Debug)] +pub enum SyncRun { + Complete(SyncResult), + PullRequired(PreparedSyncPull), +} + +#[derive(Debug)] +pub struct PreparedSyncPull { + result: SyncResult, + package_path: PathBuf, + commit: SyncCommit, + remote_uri: String, + expected_local_state_sha256: Option, +} + +impl PreparedSyncPull { + pub fn result(&self) -> &SyncResult { + &self.result + } +} + +impl Drop for PreparedSyncPull { + fn drop(&mut self) { + let _ = fs::remove_file(&self.package_path); + } +} + +#[derive(Debug, Clone)] +struct RemoteCommit { + commit: SyncCommit, + e_tag: Option, + version: Option, +} + +struct S3SyncRemote { + canonical_uri: String, + bucket: String, + prefix: String, + store: Arc, +} + +#[derive(Debug, Deserialize)] +struct AwsProcessCredentials { + #[serde(rename = "AccessKeyId")] + access_key_id: String, + #[serde(rename = "SecretAccessKey")] + secret_access_key: String, + #[serde(rename = "SessionToken")] + session_token: Option, +} + +#[derive(Debug, Clone, PartialEq, Eq)] +enum SyncDecision { + Push { generation: u64 }, + Pull, + UpToDate, + Adopt, + Diverged, + Missing, +} + +impl S3SyncRemote { + fn new(uri: &str) -> Result { + let (canonical_uri, bucket, prefix) = parse_remote_uri(uri)?; + let credentials = export_aws_credentials()?; + let region = resolve_bucket_region(&bucket)?; + let mut builder = AmazonS3Builder::from_env() + .with_bucket_name(&bucket) + .with_region(region) + .with_access_key_id(credentials.access_key_id) + .with_secret_access_key(credentials.secret_access_key) + .with_conditional_put(S3ConditionalPut::ETagMatch); + if let Some(token) = credentials.session_token { + builder = builder.with_token(token); + } + let store = builder + .build() + .map_err(|error| format!("Failed to configure S3 sync remote: {error}"))?; + Ok(Self { + canonical_uri, + bucket, + prefix, + store: Arc::new(store), + }) + } + + fn project_root(&self, project_id: &str) -> String { + let suffix = format!(".cuemap-sync/v1/projects/{project_id}"); + if self.prefix.is_empty() { + suffix + } else { + format!("{}/{suffix}", self.prefix) + } + } + + fn head_key(&self, project_id: &str) -> String { + format!("{}/HEAD.json", self.project_root(project_id)) + } + + fn commit_key(&self, project_id: &str, commit_sha256: &str) -> String { + format!( + "{}/commits/{commit_sha256}.json", + self.project_root(project_id) + ) + } + + fn package_key(&self, project_id: &str, package_sha256: &str) -> String { + format!( + "{}/objects/{package_sha256}.cuemap", + self.project_root(project_id) + ) + } + + fn object_uri(&self, key: &str) -> String { + format!("s3://{}/{}", self.bucket, key) + } + + async fn head(&self, project_id: &str) -> Result, String> { + self.read_commit(&self.head_key(project_id), true).await + } + + async fn commit( + &self, + project_id: &str, + commit_sha256: &str, + ) -> Result, String> { + self.read_commit(&self.commit_key(project_id, commit_sha256), false) + .await + } + + async fn read_commit( + &self, + key: &str, + allow_missing: bool, + ) -> Result, String> { + let object_path = ObjectPath::from(key); + let result = match self.store.get(&object_path).await { + Ok(result) => result, + Err(object_store::Error::NotFound { .. }) if allow_missing => return Ok(None), + Err(object_store::Error::NotFound { .. }) => { + return Err(format!("Sync history object '{key}' is missing")) + } + Err(error) => return Err(format!("Failed to read sync object '{key}': {error}")), + }; + let e_tag = result.meta.e_tag.clone(); + let version = result.meta.version.clone(); + let bytes = result + .bytes() + .await + .map_err(|error| format!("Failed to download sync object '{key}': {error}"))?; + let commit: SyncCommit = serde_json::from_slice(&bytes) + .map_err(|error| format!("Invalid sync commit '{key}': {error}"))?; + validate_commit(&commit)?; + let expected_package_key = self.package_key(&commit.project_id, &commit.package_sha256); + if commit.package_key != expected_package_key { + return Err(format!( + "Sync commit '{}' references an unexpected package key", + commit.commit_sha256 + )); + } + if key != self.head_key(&commit.project_id) + && key != self.commit_key(&commit.project_id, &commit.commit_sha256) + { + return Err(format!( + "Sync commit '{}' is stored under the wrong key", + commit.commit_sha256 + )); + } + Ok(Some(RemoteCommit { + commit, + e_tag, + version, + })) + } + + async fn is_descendant( + &self, + head: &SyncCommit, + ancestor_commit_sha256: &str, + ) -> Result { + if head.commit_sha256 == ancestor_commit_sha256 { + return Ok(true); + } + let mut current = head.clone(); + let mut seen = HashSet::new(); + for _ in 0..MAX_ANCESTRY_DEPTH { + if !seen.insert(current.commit_sha256.clone()) { + return Err("Sync history contains a cycle".to_string()); + } + let Some(parent) = current.parent_commit_sha256.as_deref() else { + return Ok(false); + }; + if parent == ancestor_commit_sha256 { + return Ok(true); + } + let next = self + .commit(¤t.project_id, parent) + .await? + .ok_or_else(|| format!("Sync history commit '{parent}' is missing"))? + .commit; + if next.project_id != current.project_id + || next.generation.checked_add(1) != Some(current.generation) + { + return Err("Sync history has an invalid generation chain".to_string()); + } + current = next; + } + Err(format!( + "Sync history exceeds the maximum depth of {MAX_ANCESTRY_DEPTH}" + )) + } + + async fn put_commit(&self, commit: &SyncCommit) -> Result<(), String> { + let key = self.commit_key(&commit.project_id, &commit.commit_sha256); + let bytes = serde_json::to_vec(commit) + .map_err(|error| format!("Failed to encode sync commit: {error}"))?; + let path = ObjectPath::from(key.clone()); + match self + .store + .put_opts( + &path, + PutPayload::from_bytes(Bytes::from(bytes.clone())), + PutMode::Create.into(), + ) + .await + { + Ok(_) => Ok(()), + Err(object_store::Error::AlreadyExists { .. }) => { + let existing = self + .commit(&commit.project_id, &commit.commit_sha256) + .await? + .ok_or_else(|| format!("Sync commit '{key}' disappeared"))?; + if existing.commit == *commit { + Ok(()) + } else { + Err(format!("Immutable sync commit collision at '{key}'")) + } + } + Err(error) => Err(format!("Failed to publish sync commit '{key}': {error}")), + } + } + + async fn advance_head( + &self, + commit: &SyncCommit, + expected: Option<&RemoteCommit>, + ) -> Result<(), String> { + let bytes = serde_json::to_vec(commit) + .map_err(|error| format!("Failed to encode sync head: {error}"))?; + let mode = match expected { + Some(previous) => PutMode::Update(UpdateVersion { + e_tag: previous.e_tag.clone(), + version: previous.version.clone(), + }), + None => PutMode::Create, + }; + let key = self.head_key(&commit.project_id); + let result = self + .store + .put_opts( + &ObjectPath::from(key), + PutPayload::from_bytes(Bytes::from(bytes)), + mode.into(), + ) + .await; + match result { + Ok(_) => Ok(()), + Err( + object_store::Error::AlreadyExists { .. } + | object_store::Error::Precondition { .. }, + ) => Err( + "Remote head changed during sync; no remote state was overwritten. Run sync again" + .to_string(), + ), + Err(error) => Err(format!("Failed to advance remote sync head: {error}")), + } + } +} + +pub async fn sync_project( + data_dir: &Path, + project_id: &str, + remote_uri: &str, + allow_local_replace: bool, +) -> Result { + if !validate_project_id(project_id) { + return Err(format!("Invalid project ID '{project_id}'")); + } + fs::create_dir_all(data_dir) + .map_err(|error| format!("Failed to create '{}': {error}", data_dir.display()))?; + let remote_uri_owned = remote_uri.to_string(); + let remote = tokio::task::spawn_blocking(move || S3SyncRemote::new(&remote_uri_owned)) + .await + .map_err(|error| format!("Sync remote setup task failed: {error}"))??; + sync_project_with_remote(data_dir, project_id, remote, allow_local_replace).await +} + +async fn sync_project_with_remote( + data_dir: &Path, + project_id: &str, + remote: S3SyncRemote, + allow_local_replace: bool, +) -> Result { + let local_state = load_local_state(data_dir, project_id)?; + if let Some(state) = &local_state { + if state.remote != remote.canonical_uri { + return Err(format!( + "Project '{project_id}' is already linked to {}; refusing to reuse its sync base for {}", + state.remote, remote.canonical_uri + )); + } + } + + let main_snapshot = data_dir + .join("snapshots") + .join(format!("{project_id}.bin")); + let local_exists = main_snapshot.is_file(); + let local_hash = if local_exists { + Some(project_package::project_state_sha256(data_dir, project_id)?) + } else { + None + }; + let remote_head = remote.head(project_id).await?; + if let Some(head) = &remote_head { + if head.commit.project_id != project_id { + return Err(format!( + "Remote head belongs to project '{}', not '{project_id}'", + head.commit.project_id + )); + } + } + + let descendant = match (&local_state, &remote_head) { + (Some(state), Some(head)) + if state.commit_sha256 != head.commit.commit_sha256 => + { + Some( + remote + .is_descendant(&head.commit, &state.commit_sha256) + .await?, + ) + } + _ => None, + }; + let decision = decide_sync( + local_hash.as_deref(), + local_state.as_ref(), + remote_head.as_ref().map(|head| &head.commit), + descendant, + ); + + match decision { + SyncDecision::Missing => Err(format!( + "Project '{project_id}' does not exist locally and the remote has no head" + )), + SyncDecision::Diverged => Err(format!( + "Project '{project_id}' has diverged from {}. No data was changed; restore one side to the common base or use a separate project/remote", + remote.canonical_uri + )), + SyncDecision::UpToDate => { + let head = remote_head.expect("up-to-date decision requires remote head"); + Ok(SyncRun::Complete(sync_result( + SyncAction::UpToDate, + &remote, + &head.commit, + ))) + } + SyncDecision::Adopt => { + let head = remote_head.expect("adopt decision requires remote head"); + save_local_state(data_dir, &remote, &head.commit)?; + Ok(SyncRun::Complete(sync_result( + SyncAction::Adopted, + &remote, + &head.commit, + ))) + } + SyncDecision::Push { generation } => { + let state_sha256 = local_hash.expect("push decision requires local project"); + push_local_project( + data_dir, + project_id, + &remote, + remote_head.as_ref(), + generation, + state_sha256, + ) + .await + } + SyncDecision::Pull => { + let head = remote_head.expect("pull decision requires remote head"); + let prepared = prepare_remote_project( + project_id, + &remote, + &head.commit, + local_hash.clone(), + ) + .await?; + if local_exists && !allow_local_replace { + return Ok(SyncRun::PullRequired(prepared)); + } + let result = prepared.result.clone(); + complete_prepared_pull(data_dir, &prepared, local_exists)?; + Ok(SyncRun::Complete(result)) + } + } +} + +async fn push_local_project( + data_dir: &Path, + project_id: &str, + remote: &S3SyncRemote, + previous: Option<&RemoteCommit>, + generation: u64, + state_sha256: String, +) -> Result { + let package_path = std::env::temp_dir().join(format!( + "cuemap-sync-push-{project_id}-{}.cuemap", + Uuid::new_v4() + )); + let operation = async { + let pack_data_dir = data_dir.to_path_buf(); + let pack_project_id = project_id.to_string(); + let pack_path = package_path.clone(); + let (package_sha256, writer_id) = tokio::task::spawn_blocking(move || { + project_package::pack_project(&pack_data_dir, &pack_project_id, &pack_path, false)?; + Ok::<_, String>(( + project_package::file_sha256(&pack_path)?, + writer_id(&pack_data_dir)?, + )) + }) + .await + .map_err(|error| format!("Sync package task failed: {error}"))??; + let package_key = remote.package_key(project_id, &package_sha256); + let upload_path = package_path.clone(); + let upload_uri = remote.object_uri(&package_key); + tokio::task::spawn_blocking(move || project_package::upload_s3(&upload_path, &upload_uri)) + .await + .map_err(|error| format!("Sync upload task failed: {error}"))??; + let mut commit = SyncCommit { + format: COMMIT_FORMAT.to_string(), + version: SYNC_VERSION, + project_id: project_id.to_string(), + generation, + commit_sha256: String::new(), + package_sha256, + state_sha256, + parent_commit_sha256: previous + .map(|head| head.commit.commit_sha256.clone()), + package_key, + writer_id, + created_at: unix_seconds(), + }; + commit.commit_sha256 = calculate_commit_hash(&commit)?; + remote.put_commit(&commit).await?; + remote.advance_head(&commit, previous).await?; + save_local_state(data_dir, remote, &commit)?; + Ok::(SyncRun::Complete(sync_result( + SyncAction::Pushed, + remote, + &commit, + ))) + } + .await; + let _ = fs::remove_file(package_path); + operation +} + +async fn prepare_remote_project( + project_id: &str, + remote: &S3SyncRemote, + commit: &SyncCommit, + expected_local_state_sha256: Option, +) -> Result { + let package_path = std::env::temp_dir().join(format!( + "cuemap-sync-pull-{project_id}-{}.cuemap", + Uuid::new_v4() + )); + let download_uri = remote.object_uri(&commit.package_key); + let validate_path = package_path.clone(); + let expected_package_sha256 = commit.package_sha256.clone(); + let expected_project_id = project_id.to_string(); + let operation = tokio::task::spawn_blocking(move || -> Result<(), String> { + project_package::download_s3(&download_uri, &validate_path)?; + let package_sha256 = project_package::file_sha256(&validate_path)?; + if package_sha256 != expected_package_sha256 { + return Err(format!( + "Downloaded package hash mismatch: expected {}, got {package_sha256}", + expected_package_sha256 + )); + } + let manifest = project_package::inspect_project_package(&validate_path)?; + if manifest.project_id != expected_project_id { + return Err(format!( + "Downloaded package belongs to '{}', not '{}'", + manifest.project_id, expected_project_id + )); + } + Ok(()) + }) + .await + .map_err(|error| format!("Sync download task failed: {error}"))?; + if let Err(error) = operation { + let _ = fs::remove_file(package_path); + return Err(error); + } + Ok(PreparedSyncPull { + result: sync_result(SyncAction::Pulled, remote, commit), + package_path, + commit: commit.clone(), + remote_uri: remote.canonical_uri.clone(), + expected_local_state_sha256, + }) +} + +pub fn complete_prepared_pull( + data_dir: &Path, + prepared: &PreparedSyncPull, + overwrite: bool, +) -> Result<(), String> { + if overwrite { + if let Some(expected) = prepared.expected_local_state_sha256.as_deref() { + let current = + project_package::project_state_sha256(data_dir, &prepared.commit.project_id)?; + if current != expected { + return Err( + "Local project changed while sync was preparing the pull; no local state was replaced. Run sync again" + .to_string(), + ); + } + } + } + project_package::load_project_package_with_state_hash( + data_dir, + &prepared.package_path, + overwrite, + &prepared.commit.state_sha256, + )?; + save_local_state_for_uri(data_dir, &prepared.remote_uri, &prepared.commit) +} + +fn decide_sync( + local_hash: Option<&str>, + local_state: Option<&LocalSyncState>, + remote_head: Option<&SyncCommit>, + remote_descends_from_base: Option, +) -> SyncDecision { + match (local_hash, remote_head) { + (None, None) => SyncDecision::Missing, + (Some(_), None) => SyncDecision::Push { generation: 1 }, + (None, Some(_)) => SyncDecision::Pull, + (Some(local), Some(remote)) => match local_state { + None if local == remote.state_sha256 => SyncDecision::Adopt, + None => SyncDecision::Diverged, + Some(base) + if base.generation == remote.generation + && base.commit_sha256 == remote.commit_sha256 => + { + if local == base.state_sha256 { + SyncDecision::UpToDate + } else { + SyncDecision::Push { + generation: remote.generation.saturating_add(1), + } + } + } + Some(_) if local == remote.state_sha256 => SyncDecision::Adopt, + Some(base) if local == base.state_sha256 && remote_descends_from_base == Some(true) => { + SyncDecision::Pull + } + Some(_) => SyncDecision::Diverged, + }, + } +} + +fn sync_result(action: SyncAction, remote: &S3SyncRemote, commit: &SyncCommit) -> SyncResult { + SyncResult { + action, + project_id: commit.project_id.clone(), + remote: remote.canonical_uri.clone(), + generation: commit.generation, + commit_sha256: commit.commit_sha256.clone(), + package_sha256: commit.package_sha256.clone(), + } +} + +fn state_path(data_dir: &Path, project_id: &str) -> PathBuf { + data_dir.join("sync").join(format!("{project_id}.json")) +} + +fn load_local_state(data_dir: &Path, project_id: &str) -> Result, String> { + let path = state_path(data_dir, project_id); + if !path.exists() { + return Ok(None); + } + let bytes = fs::read(&path) + .map_err(|error| format!("Failed to read sync state '{}': {error}", path.display()))?; + let state: LocalSyncState = serde_json::from_slice(&bytes) + .map_err(|error| format!("Invalid sync state '{}': {error}", path.display()))?; + if state.format != STATE_FORMAT + || state.version != SYNC_VERSION + || state.project_id != project_id + || !valid_hash(&state.commit_sha256) + || !valid_hash(&state.package_sha256) + || !valid_hash(&state.state_sha256) + { + return Err(format!("Invalid sync state '{}': unsupported or corrupt", path.display())); + } + Ok(Some(state)) +} + +fn save_local_state( + data_dir: &Path, + remote: &S3SyncRemote, + commit: &SyncCommit, +) -> Result<(), String> { + save_local_state_for_uri(data_dir, &remote.canonical_uri, commit) +} + +fn save_local_state_for_uri( + data_dir: &Path, + remote_uri: &str, + commit: &SyncCommit, +) -> Result<(), String> { + let state = LocalSyncState { + format: STATE_FORMAT.to_string(), + version: SYNC_VERSION, + project_id: commit.project_id.clone(), + remote: remote_uri.to_string(), + generation: commit.generation, + commit_sha256: commit.commit_sha256.clone(), + package_sha256: commit.package_sha256.clone(), + state_sha256: commit.state_sha256.clone(), + }; + let path = state_path(data_dir, &commit.project_id); + let parent = path.parent().expect("sync state has a parent"); + fs::create_dir_all(parent) + .map_err(|error| format!("Failed to create '{}': {error}", parent.display()))?; + let temp = path.with_extension(format!("json.{}.tmp", Uuid::new_v4())); + let bytes = serde_json::to_vec_pretty(&state) + .map_err(|error| format!("Failed to encode sync state: {error}"))?; + let result = (|| -> Result<(), String> { + let mut file = OpenOptions::new() + .write(true) + .create_new(true) + .open(&temp) + .map_err(|error| format!("Failed to create '{}': {error}", temp.display()))?; + file.write_all(&bytes) + .and_then(|_| file.sync_all()) + .map_err(|error| format!("Failed to persist sync state: {error}"))?; + #[cfg(windows)] + if path.exists() { + fs::remove_file(&path) + .map_err(|error| format!("Failed to replace '{}': {error}", path.display()))?; + } + fs::rename(&temp, &path) + .map_err(|error| format!("Failed to finalize '{}': {error}", path.display()))?; + Ok(()) + })(); + if result.is_err() { + let _ = fs::remove_file(temp); + } + result +} + +fn writer_id(data_dir: &Path) -> Result { + let sync_dir = data_dir.join("sync"); + fs::create_dir_all(&sync_dir) + .map_err(|error| format!("Failed to create '{}': {error}", sync_dir.display()))?; + let path = sync_dir.join("writer-id"); + if let Ok(existing) = fs::read_to_string(&path) { + let existing = existing.trim(); + if Uuid::parse_str(existing).is_ok() { + return Ok(existing.to_string()); + } + return Err(format!("Invalid sync writer ID in '{}'", path.display())); + } + let value = Uuid::new_v4().to_string(); + match OpenOptions::new().write(true).create_new(true).open(&path) { + Ok(mut file) => { + file.write_all(value.as_bytes()) + .and_then(|_| file.sync_all()) + .map_err(|error| format!("Failed to save sync writer ID: {error}"))?; + Ok(value) + } + Err(error) if error.kind() == std::io::ErrorKind::AlreadyExists => { + let existing = fs::read_to_string(&path) + .map_err(|read_error| format!("Failed to read sync writer ID: {read_error}"))?; + let existing = existing.trim(); + Uuid::parse_str(existing) + .map_err(|_| format!("Invalid sync writer ID in '{}'", path.display()))?; + Ok(existing.to_string()) + } + Err(error) => Err(format!("Failed to create sync writer ID: {error}")), + } +} + +fn parse_remote_uri(value: &str) -> Result<(String, String, String), String> { + project_package::validate_s3_uri(value, true)?; + let rest = value.trim_end_matches('/').trim_start_matches("s3://"); + let (bucket, prefix) = rest.split_once('/').unwrap_or((rest, "")); + let prefix = prefix.trim_matches('/').to_string(); + let canonical = if prefix.is_empty() { + format!("s3://{bucket}") + } else { + format!("s3://{bucket}/{prefix}") + }; + Ok((canonical, bucket.to_string(), prefix)) +} + +fn validate_commit(commit: &SyncCommit) -> Result<(), String> { + if commit.format != COMMIT_FORMAT + || commit.version != SYNC_VERSION + || !validate_project_id(&commit.project_id) + || commit.generation == 0 + || !valid_hash(&commit.commit_sha256) + || !valid_hash(&commit.package_sha256) + || !valid_hash(&commit.state_sha256) + || commit + .parent_commit_sha256 + .as_deref() + .is_some_and(|hash| !valid_hash(hash)) + || commit.package_key.starts_with('/') + || commit.package_key.split('/').any(|part| part == "..") + || Uuid::parse_str(&commit.writer_id).is_err() + { + return Err("Unsupported or corrupt CueMap sync commit".to_string()); + } + if calculate_commit_hash(commit)? != commit.commit_sha256 { + return Err("CueMap sync commit hash does not match its contents".to_string()); + } + Ok(()) +} + +fn calculate_commit_hash(commit: &SyncCommit) -> Result { + let mut unhashed = commit.clone(); + unhashed.commit_sha256.clear(); + let bytes = serde_json::to_vec(&unhashed) + .map_err(|error| format!("Failed to encode sync commit for hashing: {error}"))?; + let mut hasher = Sha256::new(); + hasher.update(bytes); + Ok(format!("{:x}", hasher.finalize())) +} + +fn valid_hash(value: &str) -> bool { + value.len() == 64 && value.bytes().all(|byte| byte.is_ascii_hexdigit()) +} + +fn export_aws_credentials() -> Result { + let output = Command::new("aws") + .args(["configure", "export-credentials", "--format", "process"]) + .output() + .map_err(|error| format!("Failed to run AWS CLI credential export: {error}"))?; + if !output.status.success() { + return Err(format!( + "AWS CLI credential export failed: {}", + String::from_utf8_lossy(&output.stderr).trim() + )); + } + serde_json::from_slice(&output.stdout) + .map_err(|error| format!("AWS CLI returned invalid credential JSON: {error}")) +} + +fn resolve_bucket_region(bucket: &str) -> Result { + let output = Command::new("aws") + .args([ + "s3api", + "get-bucket-location", + "--bucket", + bucket, + "--query", + "LocationConstraint", + "--output", + "text", + ]) + .output() + .map_err(|error| format!("Failed to resolve S3 bucket region: {error}"))?; + if output.status.success() { + let value = String::from_utf8_lossy(&output.stdout).trim().to_string(); + return Ok(match value.as_str() { + "" | "None" | "null" => "us-east-1".to_string(), + "EU" => "eu-west-1".to_string(), + _ => value, + }); + } + if let Ok(region) = std::env::var("AWS_REGION").or_else(|_| std::env::var("AWS_DEFAULT_REGION")) { + if !region.trim().is_empty() { + return Ok(region); + } + } + let configured = Command::new("aws") + .args(["configure", "get", "region"]) + .output() + .map_err(|error| format!("Failed to read AWS CLI region: {error}"))?; + if configured.status.success() { + let region = String::from_utf8_lossy(&configured.stdout).trim().to_string(); + if !region.is_empty() { + return Ok(region); + } + } + Err(format!( + "Could not resolve the AWS region for bucket '{bucket}': {}", + String::from_utf8_lossy(&output.stderr).trim() + )) +} + +fn unix_seconds() -> u64 { + SystemTime::now() + .duration_since(UNIX_EPOCH) + .unwrap_or_default() + .as_secs() +} + +#[cfg(test)] +mod tests { + use super::*; + + fn test_remote() -> S3SyncRemote { + remote_with_store(Arc::new(object_store::memory::InMemory::new())) + } + + fn remote_with_store(store: Arc) -> S3SyncRemote { + S3SyncRemote { + canonical_uri: "s3://bucket/team".to_string(), + bucket: "bucket".to_string(), + prefix: "team".to_string(), + store, + } + } + + fn hash(value: char) -> String { + value.to_string().repeat(64) + } + + fn commit(generation: u64, package: char, state: char) -> SyncCommit { + let mut commit = SyncCommit { + format: COMMIT_FORMAT.to_string(), + version: SYNC_VERSION, + project_id: "sync-project".to_string(), + generation, + commit_sha256: String::new(), + package_sha256: hash(package), + state_sha256: hash(state), + parent_commit_sha256: None, + package_key: format!("objects/{}.cuemap", hash(package)), + writer_id: Uuid::nil().to_string(), + created_at: 1, + }; + commit.commit_sha256 = calculate_commit_hash(&commit).unwrap(); + commit + } + + fn state(commit: &SyncCommit) -> LocalSyncState { + LocalSyncState { + format: STATE_FORMAT.to_string(), + version: SYNC_VERSION, + project_id: "sync-project".to_string(), + remote: "s3://bucket/team".to_string(), + generation: commit.generation, + commit_sha256: commit.commit_sha256.clone(), + package_sha256: commit.package_sha256.clone(), + state_sha256: commit.state_sha256.clone(), + } + } + + #[test] + fn sync_decision_fast_forwards_and_rejects_divergence() { + let current = commit(1, 'a', '1'); + let base = state(¤t); + assert_eq!( + decide_sync(Some(&hash('1')), Some(&base), Some(¤t), None), + SyncDecision::UpToDate + ); + assert_eq!( + decide_sync(Some(&hash('2')), Some(&base), Some(¤t), None), + SyncDecision::Push { generation: 2 } + ); + + let advanced = commit(2, 'b', '2'); + assert_eq!( + decide_sync(Some(&hash('1')), Some(&base), Some(&advanced), Some(true)), + SyncDecision::Pull + ); + assert_eq!( + decide_sync(Some(&hash('3')), Some(&base), Some(&advanced), Some(true)), + SyncDecision::Diverged + ); + assert_eq!( + decide_sync(Some(&hash('1')), Some(&base), Some(&advanced), Some(false)), + SyncDecision::Diverged + ); + } + + #[test] + fn first_sync_adopts_only_identical_remote_state() { + let remote = commit(4, 'd', '7'); + assert_eq!( + decide_sync(Some(&hash('7')), None, Some(&remote), None), + SyncDecision::Adopt + ); + assert_eq!( + decide_sync(Some(&hash('8')), None, Some(&remote), None), + SyncDecision::Diverged + ); + assert_eq!( + decide_sync(None, None, Some(&remote), None), + SyncDecision::Pull + ); + assert_eq!( + decide_sync(Some(&hash('8')), None, None, None), + SyncDecision::Push { generation: 1 } + ); + } + + #[test] + fn commit_hash_detects_history_tampering() { + let mut value = commit(3, 'c', '4'); + assert!(validate_commit(&value).is_ok()); + value.generation = 4; + assert!(validate_commit(&value).is_err()); + } + + #[test] + fn prepared_pull_refuses_a_local_project_changed_after_decision() { + use crate::config::TuningConfig; + use crate::multi_tenant::MultiTenantEngine; + use crate::structures::MainStats; + + let data_dir = tempfile::tempdir().unwrap(); + let snapshots = data_dir.path().join("snapshots"); + fs::create_dir_all(&snapshots).unwrap(); + let engine = MultiTenantEngine::with_snapshots_dir(&snapshots, TuningConfig::default()); + let project_id = "sync-stale-local".to_string(); + let context = engine.get_or_create_project(project_id.clone()).unwrap(); + context.main.add_memory( + "changed locally".to_string(), + vec!["changed".to_string()], + None, + MainStats::default(), + false, + ); + drop(context); + engine.save_project(&project_id).unwrap(); + + let mut remote_commit = commit(2, 'b', '2'); + remote_commit.project_id = project_id; + remote_commit.commit_sha256 = calculate_commit_hash(&remote_commit).unwrap(); + let prepared = PreparedSyncPull { + result: SyncResult { + action: SyncAction::Pulled, + project_id: remote_commit.project_id.clone(), + remote: "s3://bucket/team".to_string(), + generation: remote_commit.generation, + commit_sha256: remote_commit.commit_sha256.clone(), + package_sha256: remote_commit.package_sha256.clone(), + }, + package_path: data_dir.path().join("unused.cuemap"), + commit: remote_commit, + remote_uri: "s3://bucket/team".to_string(), + expected_local_state_sha256: Some(hash('f')), + }; + let error = complete_prepared_pull(data_dir.path(), &prepared, true).unwrap_err(); + assert!(error.contains("changed while sync")); + } + + #[test] + fn remote_uri_is_canonicalized() { + assert_eq!( + parse_remote_uri("s3://bucket/team/").unwrap(), + ( + "s3://bucket/team".to_string(), + "bucket".to_string(), + "team".to_string() + ) + ); + } + + fn remote_commit(remote: &S3SyncRemote, generation: u64, package: char, state: char) -> SyncCommit { + let mut value = commit(generation, package, state); + value.package_key = remote.package_key(&value.project_id, &value.package_sha256); + value.commit_sha256 = calculate_commit_hash(&value).unwrap(); + value + } + + #[tokio::test] + async fn in_memory_remote_publishes_immutable_commits_and_conditional_heads() { + let remote = test_remote(); + assert!(remote.head("sync-project").await.unwrap().is_none()); + let first = remote_commit(&remote, 1, 'a', '1'); + remote.put_commit(&first).await.unwrap(); + // Publishing the exact same immutable object is idempotent. + remote.put_commit(&first).await.unwrap(); + let stored = remote + .commit("sync-project", &first.commit_sha256) + .await + .unwrap() + .unwrap(); + assert_eq!(stored.commit, first); + remote.advance_head(&first, None).await.unwrap(); + let head = remote.head("sync-project").await.unwrap().unwrap(); + assert_eq!(head.commit, first); + assert!(head.e_tag.is_some()); + + let mut second = remote_commit(&remote, 2, 'b', '2'); + second.parent_commit_sha256 = Some(first.commit_sha256.clone()); + second.commit_sha256 = calculate_commit_hash(&second).unwrap(); + remote.put_commit(&second).await.unwrap(); + remote.advance_head(&second, Some(&head)).await.unwrap(); + assert_eq!(remote.head("sync-project").await.unwrap().unwrap().commit, second); + + let stale = remote + .advance_head(&first, Some(&head)) + .await + .unwrap_err(); + assert!(stale.contains("Remote head changed")); + let create_existing = remote.advance_head(&first, None).await.unwrap_err(); + assert!(create_existing.contains("Remote head changed")); + } + + #[tokio::test] + async fn remote_reader_rejects_missing_malformed_and_misplaced_objects() { + let remote = test_remote(); + let missing = remote + .read_commit("missing.json", true) + .await + .unwrap(); + assert!(missing.is_none()); + let missing_error = remote + .read_commit("missing.json", false) + .await + .unwrap_err(); + assert!(missing_error.contains("is missing")); + + let head_key = remote.head_key("sync-project"); + remote + .store + .put( + &ObjectPath::from(head_key.clone()), + PutPayload::from_bytes(Bytes::from_static(b"not json")), + ) + .await + .unwrap(); + let malformed = remote.read_commit(&head_key, true).await.unwrap_err(); + assert!(malformed.contains("Invalid sync commit")); + + let mut wrong_package = remote_commit(&remote, 1, 'c', '3'); + wrong_package.package_key = "wrong/object.cuemap".to_string(); + wrong_package.commit_sha256 = calculate_commit_hash(&wrong_package).unwrap(); + remote + .store + .put( + &ObjectPath::from(remote.head_key("sync-project")), + PutPayload::from_bytes(Bytes::from(serde_json::to_vec(&wrong_package).unwrap())), + ) + .await + .unwrap(); + let wrong_package_error = remote + .read_commit(&remote.head_key("sync-project"), true) + .await + .unwrap_err(); + assert!(wrong_package_error.contains("unexpected package key")); + + let valid = remote_commit(&remote, 1, 'd', '4'); + let misplaced_key = "team/.cuemap-sync/v1/projects/sync-project/wrong.json"; + remote + .store + .put( + &ObjectPath::from(misplaced_key), + PutPayload::from_bytes(Bytes::from(serde_json::to_vec(&valid).unwrap())), + ) + .await + .unwrap(); + let misplaced = remote.read_commit(misplaced_key, true).await.unwrap_err(); + assert!(misplaced.contains("stored under the wrong key")); + } + + #[tokio::test] + async fn remote_ancestry_checks_fast_forward_and_history_integrity() { + let remote = test_remote(); + let first = remote_commit(&remote, 1, 'a', '1'); + remote.put_commit(&first).await.unwrap(); + let mut second = remote_commit(&remote, 2, 'b', '2'); + second.parent_commit_sha256 = Some(first.commit_sha256.clone()); + second.commit_sha256 = calculate_commit_hash(&second).unwrap(); + remote.put_commit(&second).await.unwrap(); + let mut third = remote_commit(&remote, 3, 'c', '3'); + third.parent_commit_sha256 = Some(second.commit_sha256.clone()); + third.commit_sha256 = calculate_commit_hash(&third).unwrap(); + remote.put_commit(&third).await.unwrap(); + + assert!(remote.is_descendant(&third, &first.commit_sha256).await.unwrap()); + assert!(remote.is_descendant(&third, &third.commit_sha256).await.unwrap()); + assert!(!remote.is_descendant(&third, &hash('f')).await.unwrap()); + + let mut missing_parent = remote_commit(&remote, 2, 'e', '5'); + missing_parent.parent_commit_sha256 = Some(hash('9')); + missing_parent.commit_sha256 = calculate_commit_hash(&missing_parent).unwrap(); + let error = remote.is_descendant(&missing_parent, &hash('0')).await.unwrap_err(); + assert!(error.contains("missing")); + + let mut invalid_generation = remote_commit(&remote, 9, 'f', '6'); + invalid_generation.parent_commit_sha256 = Some(first.commit_sha256.clone()); + invalid_generation.commit_sha256 = calculate_commit_hash(&invalid_generation).unwrap(); + remote.put_commit(&invalid_generation).await.unwrap(); + let error = remote + .is_descendant(&invalid_generation, &hash('0')) + .await + .unwrap_err(); + assert!(error.contains("invalid generation")); + } + + #[test] + fn local_state_and_writer_id_are_persistent_and_validate_corruption() { + let data_dir = tempfile::tempdir().unwrap(); + let remote = test_remote(); + let commit = remote_commit(&remote, 1, 'a', '1'); + assert!(load_local_state(data_dir.path(), "sync-project").unwrap().is_none()); + save_local_state(data_dir.path(), &remote, &commit).unwrap(); + let loaded = load_local_state(data_dir.path(), "sync-project").unwrap().unwrap(); + assert_eq!(loaded.commit_sha256, commit.commit_sha256); + let writer = writer_id(data_dir.path()).unwrap(); + assert_eq!(writer, writer_id(data_dir.path()).unwrap()); + + fs::write(state_path(data_dir.path(), "sync-project"), b"{").unwrap(); + assert!(load_local_state(data_dir.path(), "sync-project") + .unwrap_err() + .contains("Invalid sync state")); + fs::write(data_dir.path().join("sync/writer-id"), b"not-a-uuid").unwrap(); + assert!(writer_id(data_dir.path()).unwrap_err().contains("Invalid sync writer ID")); + } + + #[test] + fn commit_and_remote_uri_validation_rejects_unsafe_values() { + let original = commit(1, 'a', '1'); + let invalids: &[fn(&mut SyncCommit)] = &[ + |value: &mut SyncCommit| value.format = "wrong".to_string(), + |value: &mut SyncCommit| value.version = 99, + |value: &mut SyncCommit| value.project_id = "no spaces".to_string(), + |value: &mut SyncCommit| value.generation = 0, + |value: &mut SyncCommit| value.commit_sha256 = "bad".to_string(), + |value: &mut SyncCommit| value.package_sha256 = "bad".to_string(), + |value: &mut SyncCommit| value.state_sha256 = "bad".to_string(), + |value: &mut SyncCommit| value.parent_commit_sha256 = Some("bad".to_string()), + |value: &mut SyncCommit| value.package_key = "/absolute".to_string(), + |value: &mut SyncCommit| value.package_key = "../escape".to_string(), + |value: &mut SyncCommit| value.writer_id = "not-a-uuid".to_string(), + ]; + for mutate in invalids { + let mut value = original.clone(); + mutate(&mut value); + assert!(validate_commit(&value).is_err()); + } + assert!(parse_remote_uri("https://bucket/path").is_err()); + assert!(parse_remote_uri("s3://").is_err()); + assert_eq!(valid_hash(&hash('a')), true); + assert!(!valid_hash("short")); + assert!(!valid_hash(&"g".repeat(64))); + } + + #[tokio::test] + async fn injected_remote_exercises_missing_adopt_uptodate_and_diverged_decisions() { + let data_dir = tempfile::tempdir().unwrap(); + fs::create_dir_all(data_dir.path().join("snapshots")).unwrap(); + let empty_store: Arc = Arc::new(object_store::memory::InMemory::new()); + let missing = sync_project_with_remote( + data_dir.path(), + "sync-project", + remote_with_store(empty_store), + false, + ) + .await + .unwrap_err(); + assert!(missing.contains("does not exist locally")); + + fs::write( + data_dir.path().join("snapshots/sync-project.bin"), + b"local state", + ) + .unwrap(); + let local_hash = project_package::project_state_sha256(data_dir.path(), "sync-project") + .unwrap(); + let store: Arc = Arc::new(object_store::memory::InMemory::new()); + let remote = remote_with_store(store.clone()); + let mut first = remote_commit(&remote, 1, 'a', '1'); + first.state_sha256 = local_hash.clone(); + first.commit_sha256 = calculate_commit_hash(&first).unwrap(); + remote.put_commit(&first).await.unwrap(); + remote.advance_head(&first, None).await.unwrap(); + + let adopted = sync_project_with_remote( + data_dir.path(), + "sync-project", + remote_with_store(store.clone()), + false, + ) + .await + .unwrap(); + assert!(matches!(adopted, SyncRun::Complete(SyncResult { action: SyncAction::Adopted, .. }))); + let up_to_date = sync_project_with_remote( + data_dir.path(), + "sync-project", + remote_with_store(store.clone()), + false, + ) + .await + .unwrap(); + assert!(matches!(up_to_date, SyncRun::Complete(SyncResult { action: SyncAction::UpToDate, .. }))); + + fs::write( + data_dir.path().join("snapshots/sync-project.bin"), + b"local divergent state", + ) + .unwrap(); + let head = remote.head("sync-project").await.unwrap().unwrap(); + let mut second = remote_commit(&remote, 2, 'b', '2'); + second.parent_commit_sha256 = Some(first.commit_sha256.clone()); + second.commit_sha256 = calculate_commit_hash(&second).unwrap(); + remote.put_commit(&second).await.unwrap(); + remote.advance_head(&second, Some(&head)).await.unwrap(); + let diverged = sync_project_with_remote( + data_dir.path(), + "sync-project", + remote_with_store(store.clone()), + false, + ) + .await + .unwrap_err(); + assert!(diverged.contains("diverged")); + + save_local_state_for_uri(data_dir.path(), "s3://other/team", &first).unwrap(); + let linked_elsewhere = sync_project_with_remote( + data_dir.path(), + "sync-project", + remote_with_store(store), + false, + ) + .await + .unwrap_err(); + assert!(linked_elsewhere.contains("already linked")); + } + + #[test] + fn sync_helpers_cover_prefixes_results_cleanup_and_public_errors() { + let empty_prefix = S3SyncRemote { + canonical_uri: "s3://bucket".to_string(), + bucket: "bucket".to_string(), + prefix: String::new(), + store: Arc::new(object_store::memory::InMemory::new()), + }; + assert_eq!( + empty_prefix.project_root("sync-project"), + ".cuemap-sync/v1/projects/sync-project" + ); + assert_eq!( + empty_prefix.object_uri("objects/demo.cuemap"), + "s3://bucket/objects/demo.cuemap" + ); + let commit = remote_commit(&empty_prefix, 1, 'a', '1'); + let result = sync_result(SyncAction::Pushed, &empty_prefix, &commit); + assert_eq!(result.action, SyncAction::Pushed); + assert_eq!(result.remote, "s3://bucket"); + + let data_dir = tempfile::tempdir().unwrap(); + let package_path = data_dir.path().join("prepared.cuemap"); + fs::write(&package_path, b"temporary").unwrap(); + let prepared = PreparedSyncPull { + result: result.clone(), + package_path: package_path.clone(), + commit, + remote_uri: result.remote.clone(), + expected_local_state_sha256: None, + }; + assert_eq!(prepared.result(), &result); + drop(prepared); + assert!(!package_path.exists()); + } + + #[tokio::test] + async fn sync_project_reports_validation_and_local_filesystem_errors_before_aws() { + let data_dir = tempfile::tempdir().unwrap(); + let invalid_id = sync_project(data_dir.path(), "bad project", "s3://bucket", false) + .await + .unwrap_err(); + assert!(invalid_id.contains("Invalid project ID")); + let invalid_uri = sync_project(data_dir.path(), "sync-project", "https://bucket", false) + .await + .unwrap_err(); + assert!(invalid_uri.contains("s3://")); + + let file_path = data_dir.path().join("not-a-directory"); + fs::write(&file_path, b"file").unwrap(); + let filesystem_error = sync_project(&file_path, "sync-project", "s3://bucket", false) + .await + .unwrap_err(); + assert!(filesystem_error.contains("Failed to create")); + } + + #[test] + fn complete_prepared_pull_installs_package_and_records_sync_base() { + use crate::engine::CueMapEngine; + use crate::persistence::PersistenceManager; + use crate::structures::MainStats; + + let source = tempfile::tempdir().unwrap(); + let target = tempfile::tempdir().unwrap(); + fs::create_dir_all(source.path().join("snapshots")).unwrap(); + let engine = CueMapEngine::::new(); + engine.add_memory( + "prepared memory".to_string(), + vec!["prepared".to_string()], + None, + MainStats::default(), + true, + ); + PersistenceManager::save_to_path( + &engine, + &source.path().join("snapshots/sync-project.bin"), + ) + .unwrap(); + let package = source.path().join("prepared.cuemap"); + project_package::pack_project(source.path(), "sync-project", &package, false).unwrap(); + let package_sha = project_package::file_sha256(&package).unwrap(); + let state_sha = project_package::project_state_sha256(source.path(), "sync-project").unwrap(); + let remote = test_remote(); + let mut commit = remote_commit(&remote, 1, 'a', '1'); + commit.package_sha256 = package_sha; + commit.state_sha256 = state_sha; + commit.package_key = remote.package_key("sync-project", &commit.package_sha256); + commit.commit_sha256 = calculate_commit_hash(&commit).unwrap(); + let staged = target.path().join("staged.cuemap"); + fs::copy(&package, &staged).unwrap(); + let prepared = PreparedSyncPull { + result: sync_result(SyncAction::Pulled, &remote, &commit), + package_path: staged, + commit, + remote_uri: remote.canonical_uri, + expected_local_state_sha256: None, + }; + complete_prepared_pull(target.path(), &prepared, false).unwrap(); + assert!(target.path().join("snapshots/sync-project.bin").is_file()); + assert!(load_local_state(target.path(), "sync-project").is_ok()); + } +} diff --git a/tests/agent/chunker/mod.rs b/tests/agent/chunker/mod.rs index 2bacb45..8b80594 100644 --- a/tests/agent/chunker/mod.rs +++ b/tests/agent/chunker/mod.rs @@ -25,6 +25,32 @@ fn test_yaml_chunking() { assert!(chunks.iter().any(|c| c.content.contains("cuemap"))); } +#[test] +fn test_toml_chunking() { + let content = r#" +title = "CueMap" + +[package] +name = "cuemap" +version = "0.7.3" + +[[bin]] +name = "cuemap" +path = "src/main.rs" +"#; + let chunks = Chunker::chunk_file(std::path::Path::new("Cargo.toml"), content); + + assert!(!chunks.is_empty()); + assert!(chunks.iter().any(|chunk| { + chunk.category == ChunkCategory::Structured + && chunk.structural_cues.contains(&"lang:toml".to_string()) + && chunk.context == "table:package" + })); + assert!(chunks + .iter() + .any(|chunk| chunk.context == "table_array_element:bin")); +} + #[test] fn test_html_chunking() { let content = "

Test

"; @@ -65,6 +91,92 @@ fn test_css_chunking() { assert_eq!(chunks[0].context, "rule_set:.selector"); } +#[test] +fn mainstream_tree_sitter_languages_emit_structural_cues() { + let cases = [ + ( + "point.c", + "#include \nstruct Point { int x; };\nint distance(struct Point point) { printf(\"%d\", point.x); return point.x; }", + "lang:c", + "defines_function:distance", + ), + ( + "engine.cpp", + "#include \nnamespace cuemap { class Engine { public: void run() {} }; }", + "lang:cpp", + "defines_namespace:cuemap", + ), + ( + "Engine.cs", + "using System;\nnamespace CueMap { public class Engine { public void Run() { Console.WriteLine(\"ok\"); } } }", + "lang:csharp", + "defines_class:Engine", + ), + ( + "build.sh", + "#!/usr/bin/env bash\nset -euo pipefail\ngreet() { echo \"hello\"; }\ngreet", + "lang:bash", + "defines_function:greet", + ), + ]; + + for (filename, content, lang, semantic_cue) in cases { + let chunks = Chunker::chunk_file(std::path::Path::new(filename), content); + assert!(!chunks.is_empty(), "Failed to chunk {filename}"); + assert!( + chunks + .iter() + .any(|chunk| chunk.structural_cues.contains(&lang.to_string())), + "{filename} missing language cue: {chunks:?}" + ); + assert!( + chunks + .iter() + .any(|chunk| chunk.structural_cues.contains(&semantic_cue.to_string())), + "{filename} missing semantic cue: {chunks:?}" + ); + } +} + +#[test] +fn headers_use_project_and_content_context_for_classification() { + use tempfile::tempdir; + + let plain_header = PathBuf::from("include/config.h"); + assert_eq!( + Chunker::detect_type(&plain_header), + Some(cuemap::agent::chunker::ChunkerType::C) + ); + + let cpp_header = Chunker::chunk_file( + std::path::Path::new("include/engine.h"), + "#pragma once\nnamespace cuemap { class Engine { public: void run(); }; }", + ); + assert!(cpp_header + .iter() + .any(|chunk| chunk.structural_cues.contains(&"lang:cpp".to_string()))); + + let apple_root = tempdir().unwrap(); + std::fs::create_dir(apple_root.path().join("CueMap.xcodeproj")).unwrap(); + std::fs::write( + apple_root.path().join("CueMap.xcodeproj/project.pbxproj"), + "// !$*UTF8*$!", + ) + .unwrap(); + let apple_header = apple_root.path().join("Engine.h"); + assert_eq!( + Chunker::detect_type(&apple_header), + Some(cuemap::agent::chunker::ChunkerType::ObjectiveC) + ); + let apple_chunks = Chunker::chunk_file( + &apple_header, + "#import \n@interface Engine : NSObject\n@end", + ); + assert!(apple_chunks + .iter() + .any(|chunk| chunk.structural_cues.contains(&"lang:objc".to_string()))); +} + #[test] fn test_detect_type() { use cuemap::agent::chunker::ChunkerType; @@ -85,6 +197,105 @@ fn test_detect_type() { Chunker::detect_type(&PathBuf::from("test.docx")), Some(ChunkerType::Office) ); + assert_eq!( + Chunker::detect_type(&PathBuf::from("ViewController.SWIFT")), + Some(ChunkerType::Swift) + ); + assert_eq!( + Chunker::detect_type(&PathBuf::from("home.dart")), + Some(ChunkerType::Dart) + ); + assert_eq!( + Chunker::detect_type(&PathBuf::from("LegacyView.m")), + Some(ChunkerType::ObjectiveC) + ); + assert_eq!( + Chunker::detect_type(&PathBuf::from("MainActivity.kt")), + Some(ChunkerType::Kotlin) + ); + assert_eq!( + Chunker::detect_type(&PathBuf::from("Cargo.toml")), + Some(ChunkerType::Toml) + ); + assert_eq!( + Chunker::detect_type(&PathBuf::from("Engine.cs")), + Some(ChunkerType::CSharp) + ); + assert_eq!( + Chunker::detect_type(&PathBuf::from("engine.cpp")), + Some(ChunkerType::Cpp) + ); + assert_eq!( + Chunker::detect_type(&PathBuf::from("point.c")), + Some(ChunkerType::C) + ); + assert_eq!( + Chunker::detect_type(&PathBuf::from("build.sh")), + Some(ChunkerType::Bash) + ); +} + +#[test] +fn mobile_language_chunkers_emit_structural_cues() { + let cases = [ + ( + "View.swift", + "import Foundation\nstruct Greeter {\n func greet() {}\n}", + "lang:swift", + "type:struct", + "name:Greeter", + "defines_struct:Greeter", + ), + ( + "home.dart", + "class HomeScreen {\n void build() {}\n}", + "lang:dart", + "type:class", + "name:HomeScreen", + "defines_class:HomeScreen", + ), + ( + "LegacyView.m", + "@interface LegacyView : NSObject\n@end", + "lang:objc", + "type:class_interface", + "name:LegacyView", + "defines_class:LegacyView", + ), + ( + "MainActivity.kt", + "class MainActivity {\n fun render() {}\n}", + "lang:kotlin", + "type:class", + "name:MainActivity", + "defines_class:MainActivity", + ), + ]; + + for (filename, content, lang, type_cue, name, semantic_cue) in cases { + let chunks = Chunker::chunk_file(std::path::Path::new(filename), content); + assert!(!chunks.is_empty(), "Failed to chunk {filename}"); + assert!( + chunks.iter().any(|chunk| chunk.structural_cues.contains(&lang.to_string())), + "{filename} missing language cue: {chunks:?}" + ); + assert!( + chunks + .iter() + .any(|chunk| chunk.structural_cues.contains(&type_cue.to_string())), + "{filename} missing type cue: {chunks:?}" + ); + assert!( + chunks.iter().any(|chunk| chunk.structural_cues.contains(&name.to_string())), + "{filename} missing name cue: {chunks:?}" + ); + assert!( + chunks + .iter() + .any(|chunk| chunk.structural_cues.contains(&semantic_cue.to_string())), + "{filename} missing semantic cue: {chunks:?}" + ); + } } #[test] diff --git a/tests/chunker_structural_test.rs b/tests/chunker_structural_test.rs index a4333ec..c1b542d 100644 --- a/tests/chunker_structural_test.rs +++ b/tests/chunker_structural_test.rs @@ -34,6 +34,26 @@ fn test_all_formats_structural_cues() { "public class App {}", vec!["lang:java", "type:class", "name:App"], ), + ( + "View.swift", + "struct Greeter {}", + vec!["lang:swift", "type:struct", "name:Greeter"], + ), + ( + "home.dart", + "class HomeScreen {}", + vec!["lang:dart", "type:class", "name:HomeScreen"], + ), + ( + "LegacyView.m", + "@interface LegacyView : NSObject\n@end", + vec!["lang:objc", "type:class_interface", "name:LegacyView"], + ), + ( + "MainActivity.kt", + "class MainActivity {}", + vec!["lang:kotlin", "type:class", "name:MainActivity"], + ), ( "test.php", "", diff --git a/tests/data/nouns.csv b/tests/data/nouns.csv new file mode 100644 index 0000000..e94ff33 --- /dev/null +++ b/tests/data/nouns.csv @@ -0,0 +1,141897 @@ +007,007s +0,0s +0-10-0,0-10-0s +0-10-2,0-10-2s +0-12-0,0-12-0s +0-2-2,0-2-2s +0-4-0+0-4-0,0-4-0+0-4-0s +0-4-0,0-4-0s +0-4-2,0-4-2s +0-4-4-0,0-4-4-0s +0-4-4,0-4-4s +0-4-4-2,0-4-4-2s +0-6-0,0-6-0s +0-6-2,0-6-2s +0-6-4,0-6-4s +0-6-6-0,0-6-6-0s +0-8-0,0-8-0s +0800 number,0800 numbers +0-8-2,0-8-2s +0-8-4,0-8-4s +0-8-8-0,0-8-8-0s +0TLP,0TLPs +$100 hamburger,$100 hamburgers +10-20,10-20s +1040,1040s +109,109s +1099,1099s +10Base5,10Base5s +11-plus examination,11-plus examinations +11th hour,11th hours +120-cell,120-cells +1-2-3 block,1-2-3 blocks +12-foot,12-foots +12mo,12mos +147,147s +163rd game,163rd games +16-cell,16-cells +16mo,16mos +180,180s +18mo,18mos +18-wheeler,18-wheelers +18-yard box,18-yard boxes +1B,1Bs +1BH,1BHs +1D,1Ds +1-D RCM,1-D RCMs +1-H,1-Hs +2-10-0,2-10-0s +2-10-10-2,2-10-10-2s +2-10-2,2-10-2s +2-10-4,2-10-4s +2-12-0,2-12-0s +2-12-2,2-12-2s +2-12-4,2-12-4s +2+1 road,2+1 roads +2-2-0,2-2-0s +2-2-2,2-2-2s +2-2-4,2-2-4s +2-4-0,2-4-0s +2-4-2,2-4-2s +2-4-4-2,2-4-4-2s +2-4-4,2-4-4s +2-4-6 block,2-4-6 blocks +24-cell,24-cells +24mo,24mos +2-6-0+0-6-2,2-6-0+0-6-2s +2-6-0,2-6-0s +2-6-2,2-6-2s +2-6-4,2-6-4s +2-6-6-0,2-6-6-0s +2-6-6-2,2-6-6-2s +2-6-6,2-6-6s +2-6-6-4,2-6-6-4s +2-6-6-6,2-6-6-6s +2-6-8-0,2-6-8-0s +2-8-0+0-8-2,2-8-0+0-8-2s +2-8-0,2-8-0s +2-8-2,2-8-2s +2-8-4,2-8-4s +2-8-6,2-8-6s +2-8-8-0,2-8-8-0s +2-8-8-2,2-8-8-2s +2-8-8-4,2-8-8-4s +2-8-8-8-2,2-8-8-8-2s +2-8-8-8-4,2-8-8-8-4s +2 L,2 Ls +2L,2Ls +2-methylpropane,2-methylpropanes +β„– 2 pencil,β„– 2 pencils +2x4,2x4s +32mo,32mos +32nd note,32nd notes +33,33s,33's +3/4 brother,3/4 brothers +3/4 sibling,3/4 siblings +3/4 sister,3/4 sisters +360,360s +360 backflip,360 backflips +3 card monte,3 card montes +3-card monte,3-card montes +3D job,3D jobs +3D printer,3D printers +3D scanner,3D scanners +3' end,3' ends +3P,3Ps +3rd grade,3rd grades +404 page,404 pages +4-10-0,4-10-0s +4-10-2,4-10-2s +4-12-2,4-12-2s +4-14-4,4-14-4s +419,419s +419 fraud,419 frauds +419 scam,419 scams +419 scammer,419 scammers +4-2-0,4-2-0s +420,420s +4-2-2,4-2-2s +4-3 suspension,4-3 suspensions +4-4-0,4-4-0s +4-4-4-4,4-4-4-4s +4-4-4,4-4-4s +4-4-6-4,4-4-6-4s +45,45s,45's +4-6-0,4-6-0s +4-6-2+2-6-4,4-6-2+2-6-4s +4-6-2,4-6-2s +4-6-4-4,4-6-4-4s +4-6-4,4-6-4s +4-6-6-2,4-6-6-2s +4-6-6-4,4-6-6-4s +470,470s +4-8-0,4-8-0s +4-8-2,4-8-2s +4-8-4+4-8-4,4-8-4+4-8-4s +4-8-4,4-8-4s +4-8-6,4-8-6s +4-8-8-2,4-8-8-2s +4-8-8-4,4-8-8-4s +49er,49ers +4D ultrasound,4D ultrasounds +4-H Club,4-H Clubs +4-H'er,4-H'ers +4ktro,4ktros +4rum,4rums +4to,4tos +4x2,4x2s +4x2,4x2s +4x4,4x4s +4x4,4x4s +4x4x4,4x4x4s +50-50,50-50s +50-gon,50-gons +527,527s +540,540s +56k,56ks +5' cap,5' caps +5-cell,5-cells +5' end,5' ends +5 o'clock shadow,5 o'clock shadows +5 percenter,5 percenters +5 second delay,5 second delays +5-second delay,5-second delays +600-cell,600-cells +6-2-0,6-2-0s +6-4-4-6,6-4-4-6s +64mo,64mos +64-pounder,64-pounders +64th note,64th notes +6,6s +6-8-6,6-8-6s +69,69s +6mo,6mos +6to,6tos +6x6,6x6s +7-11,7-11s +720,720s +737,737s +747,747s +757,757s +7-6 suspension,7-6 suspensions +777,777s +78,78s,78's +7 second delay,7 second delays +7-second delay,7-second delays +800 number,800 numbers +800-pound gorilla,800-pound gorillas +88,88s +8-cell,8-cells +8-track,8-tracks +8vo,8vos +8x8,8x8s +900,900s +900 number,900 numbers +90-day wonder,90-day wonders +9-1-1,9-1-1s +9/11,9/11s +911,911s +9-8 suspension,9-8 suspensions +9 to 5,9 to 5s +A-106,A-106s +A-109,A-109s +A-1,A-1s +A1/C,A1/Cs +A1C,A1Cs +A20 gate,A20 gates +A-2,A-2s +A2/c,A2/cs +A2/C,A2/Cs +A2C,A2Cs +A2S,A2Ss +A-32,A-32s +A-3,A-3s +A/3c,A/3cs +A/3C,A/3Cs +A3C,A3Cs +A-4,A-4s +A-5,A-5s +A-60,A-60s +A-6,A-6s +A-7,A-7s +AAAA,AAAAs +A/A,A/As +AA,AAs +AAAI,AAAIs +AAAID,AAAIDs +AAAIP,AAAIPs +AAAIS,AAAISs +AAALAC,AAALACs +AAAOC,AAAOCs +AAAR,AAARs +AAARC,AAARCs +AAAV,AAAVs +aab,aabs +AAB,AABs +aabfs,aabfss +AABNCP,AABNCPs +aabp,aabps +aabshil,aabshils +aac,aacs +AAC,AACs +A.A.C.C.A.,A.A.C.C.A.s +aacc,aaccs +aace,aaces +AACFT,AACFTs +aacm,aacms +AACO,AACOs +AACOM,AACOMs +AACS,AACSs +AACSM,AACSMs +aacu,aacus +AA cup,AA cups +AACV,AACVs +aada,aadas +AADA,AADAs +aad,aads +AAD,AADs +AADC,AADCs +AADCCS,AADCCSs +AADCP,AADCPs +aad wife,aad wives +a**,a**es +aah,aahs +aal,aals +aalii,aaliis +aam,aams +AAM,AAMs +aandblom,aandbloms +aapa,aapas +AAP,AAPs +aard-vark,aard-varks +aardvark,aardvarks +aard-wolf,aard-wolves +aardwolf,aardwolves +Aaronite,Aaronites +Aaron's beard,Aaron's beards +Aaron's-beard,Aaron's-beards +Aaron's beard cactus,Aaron's beard cacti +Aaron's-beard cactus,Aaron's-beard cacti +aarthi,aarthis +aarti,aartis +A-,A-'s +A+,A+'s +Aβ™―,Aβ™―s +Aβˆ’,Aβˆ’'s +A*,A*'s,A*s +a,a's,as,aes +aasvoel,aasvoels +aasvogel,aasvogels +AAV,AAVs +aazaan,aazaans +aba,abas +aba,abas +abab,ababs +ab,abs +ab,abs +ab,abs +Ab,Abs +Ab,Abs +abac,abacs +abacate,abacates +abacaxi,abacaxis +abacination,abacinations +abaciscus,abacisci,abaciscuses +abacist,abacists +aback,abacks +abacost,abacosts +abactor,abactors +abaculus,abaculi +abacus,abaci,abacuses +abada,abadas +Abadite,Abadites +abagun,abaguns +abaisance,abaisances +abaiser,abaisers +abaisse,abaisses +abaka,abakas +abakΓ‘,abakΓ‘s +abalienation,abalienations +abamp,abamps +abampere,abamperes +A band,A bands +abandon,abandons +abandoned property,abandoned properties +abandonee,abandonees +abandoner,abandoners +abandoning,abandonings +abandonment,abandonments +AbaΓ±eeme,AbaΓ±eemes +abanet,abanets +abanga,abangas +abannation,abannations +abaptiston,abaptistons +abarthrosis,abarthroses +abarticulation,abarticulations +abas,abas +abasement,abasements +abaser,abasers +abashment,abashments +abasi,abasis +abassi,abassis +abatage,abatages +abate,abates +abate,abates +abatee,abatees +abatelement,abatelements +abatement,abatements +abatement,abatements +abater,abaters +abatis,abatis,abatises +abatjour,abatjours +abaton,abatons +abator,abators +abator,abators +abatsons,abatsons +abattage,abattages +A battery,A batteries +abattis,abattis,abattises +abattoir,abattoirs +abature,abatures +abat-vent,abat-vents +abat-voix,abat-voix +abatvoix,abatvoix +abax,abaxes +abaya,abayas +abay,abays +abazi,abazis +Abazin,Abazins +abba,abbas +abba,abbas +Abba,Abbas +abb,abbs +abbacy,abbacies +Abbadid,Abbadids +abbaser,abbasers +abbasi,abbasis +Abbasid,Abbasids +Abbassid,Abbassids +Abbasside,Abbassides +abbatess,abbetesses +abbatie,abbaties +abbe,abbes +abbΓ©,abbΓ©s +Abbe condenser,Abbe condensers +Abbe number,Abbe numbers +Abbe refractometer,Abbe refractometers +abbess,abbesses +Abbethdin,Abbethdins +abbey,abbeys +abbey-lubber,abbey-lubbers +abbeystead,abbeysteads +abbeystede,abbeystedes +Abbe-Zeiss apparatus,Abbe-Zeiss apparatuses +abbot,abbots +abbotcy,abbotcies +abbotess,abbotesses +abbot general,abbots general +Abbot of Misrule,Abbots of Misrule +abbot of the people,abbots of the people +Abbot of Unreason,Abbot of Unreasons +abbot primate,abbots primate,abbot primates +abbotric,abbotrics +abbotrick,abbotricks +abbotship,abbotships +Abbott-Miller tube,Abbott-Miller tubes +Abbott's booby,Abbott's boobies +abbozzo,abbozzi +abbr,abbrs +abbrev,abbrevs,abbrev +abbreviate,abbreviates +abbreviated number,abbreviated numbers +abbreviater,abbreviaters +abbreviation,abbreviations +abbreviator,abbreviators +abbreviature,abbreviatures +abbrevn,abbrevns +ABC,ABCs +ABC book,ABC books +abcoulomb,abcoulombs +abdal,abdals +Abderian,Abderians +Abderite,Abderites +abdicant,abdicants +abdication,abdications +abdicative,abdicatives +abdicator,abdicators +abditory,abditories +abdomen,abdomens,abdomina +abdominal,abdominals +abdominal cavity,abdominal cavities +abdominal decompression,abdominal decompressions +abdominal evisceration,abdominal eviscerations +abdominal fin,abdominal fins +abdominal gestation,abdominal gestations +abdominal inguinal ring,abdominal inguinal rings +abdominal muscle,abdominal muscles +abdominal pouch,abdominal pouches +abdominal quadrant,abdominal quadrants +abdominal reflex,abdominal reflexes +abdominal region,abdominal regions +abdominal rib,abdominal ribs +abdominal ring,abdominal rings +abdominal section,abdominal sections +abdominal-thrust maneuver,abdominal-thrust maneuvers +abdominal wall,abdominal walls +abdominocardiac reflex,abdominocardiac reflexes +abdominocentesis,abdominocenteses +abdominohysterectomy,abdominohysterectomies +abdominohysterotomy,abdominohysterotomies +abdominoperineal resection,abdominoperineal resections +abdominoplasty,abdominoplasties +abdominoscrotal muscle,abdominoscrotal muscles +abdominothoracic arch,abdominothoracic archs +abdominouterotomy,abdominouterotomies) +abducens,abducentes +abducens labiorum,abducens labiorums +abducens muscle,abducens muscles +abducens nerve,abducens nerves +abducent,abducents +abducent nerve,abducent nerves +abductee,abductees +abduction,abductions +abductor,abductors +abductor,abductors,abductores +Abe,Abes +abear,abears +abearing,abearings +abecedarian,abecedarians +Abecedarian,Abecedarians +abecedarium,abecedaria +abecedarius,abecedariuses +abecedary,abecedaries +abecediary,abecediaries +abecedism,abecedisms +Abelam,Abelam,Abelams +abele,abeles +abelia,abelias +Abelian,Abelians +abelian algebra,abelian algebras +Abelian algebra,Abelian algebras +abelian group,abelian groups +Abelian group,Abelian groups +abelianisation,abelianisations +abelianization,abelianizations +abelisaur,abelisaurs +abelisaurid,abelisaurids +abelisaurus,abelisauruses +abelite,abelites +Abelite,Abelites +abelmosk,abelmosks +abelmusk,abelmusks +Abelonian,Abelonians +Abel test,Abel tests +Abenaki,Abenakis,Abenaki +abend,abends +ABEND,ABENDs +abendmusik,abendmusiken +abeng,abengs +abequose,abequoses +aberdavine,aberdavines +Aberdeen,Aberdeens +Aberdeen hook,Aberdeen hooks +Aberdeen Terrier,Aberdeen Terriers +aber-de-vine,aber-de-vines +aberdevine,aberdevines +Aberdonian,Aberdonians +aberduvine,aberduvines +Aberginian,Aberginians +abernathyite,abernathyites +Abernethy,Abernethies +Abernethy biscuit,Abernethy biscuits +Abernethy's fascia,Abernethy's fascias +Abernethy's sarcoma,Abernethy's sarcomas,Abernethy's sarcomata +aberrance,aberrances +aberrancy,aberrancies +aberrant,aberrants +aberrant conduction,aberrant conductions +aberration,aberrations +aberrometer,aberrometers +Abert's finch,Abert's finches +Abert's pipilo,Abert's pipilos +Abert's squirrel,Abert's squirrels +Abert's towhee,Abert's towhees +aberuncator,aberuncators +abessive,abessives +abessive case,abessive cases +abet,abets +abetment,abetments +abettal,abettals +abettance,abettances +abettee,abettees +abetter,abetters +abettor,abettors +abevacuation,abevacuations +abeyance,abeyances +abeyancy,abeyancies +abfarad,abfarads +Abgesang,Abgesangs +abgusht,abgushts +abhal,abhals +abhenry,abhenries,abhenrys +abhesive,abhesives +abhinaya,abhinayas +abhiseka,abhisekas +abhisheka,abhishekas +abhomination,abhominations +abhorrence,abhorrences +abhorrency,abhorrencies +abhorrer,abhorrers +abhurite,abhurites +abhydrolase,abhydrolases +abid,abids +abidance,abidances +abider,abiders +abiding,abidings +abiding place,abiding places +abiding-place,abiding-places +Abidjani,Abidjanis +Abidjanian,Abidjanians +abience,abiences +abietate,abietates +abietene,abietenes +abietin,abietins +abietine,abietines +abigail,abigails +abigailship,abigailships +abilao,abilaos +abiliment,abiliments +ability-to-pay,ability-to-pays +abilla,abillas +abilo,abilos +abime,abimes +abiocen,abiocens +abiogenesis,abiogeneses +abiogenist,abiogenists +abioseston,abiosestons +abiotrophy,abiotrphies +AbipΓ³n,AbipΓ³n,Abipones +abir,abirs +abirritant,abirritants +abirritation,abirritations +abisetaoshi,abisetaoshis +Abitibi,Abitibi,Abitibis +abitur,abiturs +Abitur,Abiturs +Abiturient,Abiturienten,Abiturients +abiturient,abiturients +abiu,abius +abiyuch,abiyuches +abjad,abjads +abjad numeral,abjad numerals +abject,abjects +abjection,abjections +abjudication,abjudications +abjueror,abjuerors +abjugation,abjugations +abjunction,abjunctions +abjuration,abjurations +abjuration oath,abjuration oaths +abjurement,abjurements +abjurer,abjurers +abkar,abkars +abkari,abkaris +Abkhas,Abkhas +Abkhasian,Abkhasians +Abkhaz,Abkhaz +Abkhazian,Abkhazians +ablach,ablachs +ablactation,ablactations +ablation,ablations +ablative,ablatives +ablative absolute,ablative absolutes +ablative case,ablative cases +ablator,ablators +ablaut,ablauts +able-bodied seaman,able-bodied seamen +ablegate,ablegates +ablegation,ablegations +ableist,ableists +ablen,ablens +able rating,able ratings +able seaman,able seamen +ablet,ablets +abluent,abluents +ablution,ablutions +ablutomania,ablutomanias +ablutophilia,ablutophilias +ablutophiliac,ablutophiliacs +abmho,abmhos +abmigration,abmigrations +abnegation,abnegations +abnegator,abnegators +abnet,abnets +Abney level,Abney levels +abnormal,abnormals +abnormalcy,abnormalcies +abnormity,abnormities +abo,abos +Abo,Abos +abocclusion,abocclusions +abococket,abocockets +abodance,abodances +abode,abodes +abode,abodes +abodement,abodements +aboding,abodings +Abodrite,Abodrites +abogado,abogados +abohm,abohms +aboideau,aboideaux,aboideaus +aboiement,aboiements +aboiteau,aboiteaux +abolement,abolements +abolisher,abolishers +abolishment,abolishments +abolition,abolitions +abolitiondom,abolitiondoms +abolitionism,abolitionisms +abolitionist,abolitionists +aboma,abomas +abomasum,abomasa +abomasus,abomasi +A-bomb,A-bombs +A-bomber,A-bombers +abominable snowman,abominable snowmen +abominacioun,abominaciouns +abomination,abominations +abominator,abominators +abondance,abondances +Abongo,Abongo,Abongos +abonnΓ©,abonnΓ© +abonnement,abonnements +Abor,Abor,Abors +abord,abords +abordage,abordages +aboriculturist,aboriculturists +aborigin,aborigins +aboriginal,aboriginals +Aboriginal,Aboriginals +Aboriginal American,Aboriginal Americans +aboriginality,aboriginalities +aborsement,aborsements +abort,aborts +abortation,abortations +abortee,abortees +aborter,aborters +aborticide,aborticides +abortient,abortients +abortifacient,abortifacients +abortin,abortins +abortion,abortions +abortionist,abortionists +abortion pill,abortion pills +abortive,abortives +abortment,abortments +abortogenic,abortogenics +abortorium,abortoria +abortuary,abortuaries +abortus,abortuses,aborti +Abotrite,Abotrites +aboundance,aboundances +aboundaunce,aboundaunces +abounder,abounders +About box,About boxes +about face,about faces +about-face,about-faces +aboutness,aboutnesses +about page,about pages +about sledge,about sledges +about-sledge,about-sledges +about turn,about turns +about-turn,about-turns +abozzo,abozzi +abracadabra,abracadabras +abrachia,abrachias +abrachiocephaly,abrachiocephalies +abradant,abradants +abrader,abraders +Abrahamist,Abrahamists +Abraham Lincoln,Abraham Lincolns +Abraham man,Abraham men +Abraham-man,Abraham-men +Abrahamman,Abrahammen +Abram cove,Abram coves +Abram man,Abram men +Abram-man,Abram-men +Abramman,Abrammen +abranchialism,abranchialisms +Abrasax stone,Abrasax stones +abraser,abrasers +abrasin oil,abrasin oils +abrasiometer,abrasiometers +abrasion,abrasions +abrasion platform,abrasion platforms +abrasive,abrasives +abrasive disc,abrasive discs +abrazo,abrazos +abreaction,abreactions +abrecock,abrecocks +abrenunciation,abrenunciations +abreption,abreptions +abreuvoir,abreuvoirs +abri,abris +abricock,abricocks +abridgement,abridgements +abridger,abridgers +abridgment,abridgments +abrocome,abrocomes +abrocomid,abrocomids +abrogation,abrogations +abrogator,abrogators +abronia,abronias +abrosia,abrosias +abrotanum,abrotanums +abrotine,abrotines +abrupt,abrupts +abruption,abruptions +abruptio placentae,abruptio placentarum,abruptiones placentarum +abruptness,abruptnesses +absalonism,absalonisms +Absaroka,Absarokas,Absaroka +Absaroke,Absaroke,Absarokes +Absarokee,Absarokee,Absarokees +ABS brake,ABS brakes +abscess,abscesses +abscession,abscessions +abscisate,abscisates +abscisin,abscisins +abscision,abscisions +abscissa,abscissas,abscissae,abscissΓ¦ +absciss,abscisses +abscissio infiniti,abscissiones infiniti +abscission,abscissions +abscission layer,abscission layers +abscission zone,abscission zones +absciss layer,absciss layers +abscondence,abscondences +absconder,absconders +absconding,abscondings +abscondment,abscondments +absconsion,absconsions +ABSD,ABSDs +abseil,abseils +abseiler,abseilers +absence seizure,absence seizures +absency,absencies +absent,absents +absentation,absentations +absentee,absentees +absentee ballot,absentee ballots +absenteeism,absenteeisms +absenteeship,absenteeships +absentee vote,absentee votes +absentee voter,absentee voters +absenter,absenters +absent-minded professor,absent-minded professors +absent referent,absent referents +absent treatment,absent treatments +absent voter,absent voters +absey,abseys +absey book,absey books +absey-book,absey-books +absidiole,absidioles +absinth,absinths +absinthate,absinthates +absinthe,absinthes +absinthium,absinthium +absis,absides +absistence,absistences +absolute,absolutes +Absolute,Absolutes +absolute address,absolute addresses +absolute advantage,absolute advantages +absolute altimeter,absolute altimeters +absolute assembler,absolute assemblers +absolute ceiling,absolute ceilings +absolute code,absolute codes +absolute complement,absolute complements +absolute constant,absolute constants +absolute deviation,absolute deviations +absolute drought,absolute droughts +absolute ego,absolute egos +absolute endorsement,absolute endorsements +absolute error,absolute errors +absolute form,absolute forms +absolute idea,absolute ideas +absolute idealism,absolute idealisms +absolute impediment,absolute impediments +absolute instruction,absolute instructions +absolute instrument,absolute instruments +absolute loader,absolute loaders +absolute magnitude,absolute magnitudes +absolute majority,absolute majorities +absolute mean,absolute means +absolute monarchy,absolute monarchies +absolute personal equation,absolute personal equations +absolute pin,absolute pins +absolute privilege,absolute privileges +absolute reality,absolute realities +absolute right,absolute rights +absolute state,absolute states +absolute superlative,absolute superlatives +absolute term,absolute terms +absolute threshold,absolute thresholds +absolute unit,absolute units +absolute value,absolute values +absolute weight,absolute weights +absolute zero,absolute zeros +absolution,absolutions +absolutisation,absolutisations +absolutism,absolutisms +absolutist,absolutists +absolutive case,absolutive cases +absolutization,absolutizations +absolvent,absolvents +absolver,absolvers +absorbability,absorbabilities +absorbance,absorbances +absorbancy,absorbancies +absorbant,absorbants +absorbate,absorbates +absorbed dose,absorbed doses +absorbency,absorbencies +absorbent,absorbents +absorbent ground,absorbent grounds +absorbent paper,absorbent papers +absorber,absorbers +absorberman,absorbermen +absorbition,absorbitions +absorbtance,absorbtances +absorbtivity,absorbtivities +absorptance,absorptances +absorptiometer,absorptiometers +absorption,absorptions +absorption band,absorption bands +absorption cell,absorption cells +absorption coefficient,absorption coefficients +absorption costing,absorption costings +absorption dynamometer,absorption dynamometers +absorption edge,absorption edges +absorption factor,absorption factors +absorption hygrometer,absorption hygrometers +absorption line,absorption lines +absorption nebula,absorption nebulas,absorption nebulae +absorption of radiation,absorptions of radiation +absorption pipette,absorption pipettes +absorption spectrum,absorption spectra,absorption spectrums +absorption system,absorption systems +absorptivity,absorptivities +absquatulation,absquatulations +absquatulator,absquatulators +abstainer,abstainers +abstainment,abstainments +abstenance,abstenances +abstention,abstentions +abstention doctrine,abstention doctrines +abstentionism,abstentionisms +abstentionist,abstentionists +abstergent,abstergents +abstersion,abstersions +abstersive,abstersives +abstinence of war,abstinences of war +abstinence syndrome,abstinence syndromes +abstinent,abstinents +Abstinent,Abstinents +abstract,abstracts +abstract class,abstract classes +abstract data type,abstract data types +abstracter,abstracters +abstract expressionist,abstract expressionists +abstract factory class,abstract factory classes +abstract factory pattern,abstract factory patterns +abstracticism,abstracticisms +abstract idea,abstract ideas +abstractification,abstractifications +abstract interface,abstract interfaces +abstractionist,abstractionists +abstract method,abstract methods +abstract model,abstract models +abstractness,abstractnesses +abstract noun,abstract nouns +abstract number,abstract numbers +abstract of title,abstracts of title +abstractor,abstractors +abstract term,abstract terms +abstract type,abstract types +abstractum,abstracta +abstract universal,abstract universals +abstract verb,abstract verbs +abstriction,abstrictions +abstrusion,abstrusions +abstrusity,abstrusities +absurd,absurds +absurdist,absurdists +absurdness,absurdnesses +absurdum,absurda +abswurmbachite,abswurmbachites +absynthe,absynthes +Abt system,Abt systems +abugida,abugidas +abukumalite,abukumalites +abulia,abulias +abuna,abunas +abundance,abundances +abundancy,abundancies +abundant number,abundant numbers +abundant year,abundant years +abundary,abundaries +abundaunce,abundaunces +abura,aburas +aburachan seed,aburachan seeds +aburagiri,aburagiris +abusage,abusages +abuse,abuses +abusee,abusees +abusement,abusements +abuse of discretion,abuses of discretion +abuser,abusers +abusion,abusions +abusua,abusuas +abutilon,abutilons +abutment,abutments +abuttal,abuttals +abutter,abutters +abvolt,abvolts +abwab,abwabs +abwatt,abwatts +abydocomist,abydocomists +abylid,abylids +abyme,abymes +abysm,abysms +abyss,abysses +abyssal fish,abyssal fishes +abyssal plain,abyssal plains +abyssal rock,abyssal rocks +Abyssin,Abyssins +Abyssinian,Abyssinians +Abyssinian banana,Abyssinian bananas +Abyssinian cat,Abyssinian cats +Abyssinian primrose,Abyssinian primroses +abyssolith,abyssoliths +abyssomicin,abyssomicins +abzyme,abzymes +AC45,AC45s +AC72,AC72s +AC90,AC90s +acacatechin,acacatechins +acacetin,acacetins +acacia,acacias +acacia veld,acacia velds +acaciin,acaciins +acad,acads +academe,academes +academian,academians +academic,academics +Academic,Academics +academical,academicals +academic bulimia,academic bulimias +academic costume,academic costumes +academic discipline,academic disciplines +academician,academicians +academicianship,academicianships +academic institution,academic institutions +academicism,academicisms +Academicism,Academicisms +academick,academicks +academic year,academic years +academism,academisms +academist,academists +academy,academies +Academy Award,Academy Awards +academy board,academy boards +academy figure,academy figures +Academy of Sciences,Academies of Sciences +academy school,academy schools +acadialite,acadialites +Acadian chickadee,Acadian chickadees +Acadian flycatcher,Acadian flycatchers +Acadian owl,Acadian owls +acai,acais +aΓ§ai,aΓ§ais +aΓ§aΓ­,aΓ§aΓ­s +acai berry,acai berries +acajou,acajous +acalculiac,acalculiacs +acaleph,acalephs +acalephan,acalephans +acalyptrate,acalyptrates +acamprosate,acamprosates +acana,acanas +acanaloniid,acanaloniids +acantha,acanthas +acanth,acanths +acanthamebiasis,acanthamebiases +acanthamoeba,acanthamoebae +acanthamoebiasis,acanthamoebiases +acantharian,acantharians +acanthella,acanthellas,acanthellae +acanthiomeatal line,acanthiomeatal lines +acanthisittid,acanthisittids +acanthizid,acanthizids +acanthocephalan,acanthocephalans +acanthocephaliasis,acanthocephaliases +acanthocephalid,acanthocephalids +acanthoceratid,acanthoceratids +acanthochitonid,acanthochitonids +acanthoclinid,acanthoclinids +acanthocyte,acanthocytes +acanthocytosis,acanthocytoses +acanthodean,acanthodeans +acanthodian,acanthodians +acanthodrilid,acanthodrilids +acanthokeratodermia,acanthokeratodermias +acanthology,acanthologies +acanthoma,acanthomas,acanthomata +acanthometrid,acanthometrids +acanthonotozomatid,acanthonotozomatids +acanthopodium,acanthopodia +acanthopore,acanthopores +acanthopt,acanthopts +acanthopteran,acanthopterans +acanthopterygian,acanthopterygians +acanthor,acanthors +acanthorrhexis,acanthorrhexes +acanthosis,acanthoses +acanthosoma,acanthosomas,acanthosomata +acanthosomatid,acanthosomatids +acanthostyle,acanthostyles +acanthrocyte,acanthrocytes +acanthrocytosis,acanthrocytoses +acanthurid,acanthurids +acanthus,acanthuses,acanthi +acapu,acapus +acapulcoite,acapulcoites +acaricide,acaricides +acarid,acarids +acaridan,acaridans +acaridiasis,acaridiases +acarinosis,acarinoses +Acarnanian,Acarnanians +acarodomatium,acarodomatiums +acaroid resin,acaroid resins +acarologist,acarologists +acarus,acari +acaryote,acaryotes +acastid,acastids +acatalectic,acatalectics +acataleptic,acataleptics +acater,acaters +acault,acaults +acavid,acavids +Accadian,Accadians +accedence,accedences +acceder,acceders +accelerando,accelerandos +accelerant,accelerants +accelerated graphics port,accelerated graphics ports +accelerated motion,accelerated motions +accelerating force,accelerating forces +acceleration clause,acceleration clauses +accelerator,accelerators +accelerator key,accelerator keys +accelerogram,accelerograms +accelerograph,accelerographs +accelerometer,accelerometers +acceleron,accelerons +accension,accensions +accensor,accensors +accent,accents +accent mark,accent marks +accentor,accentors +accentuation,accentuations +accentuator,accentuators +acceptance,acceptances +acceptance test,acceptance tests +acceptation,acceptations +acceptaunce,acceptaunces +accepted pairing,accepted pairings +acceptee,acceptees +accepter,accepters +acceptilation,acceptilations +acception,acceptions +acceptor,acceptors +acceptour,acceptours +accessability,accessabilities +accessary,accessaries +accessary after the fact,accessaries after the fact +accessary before the fact,accessaries before the fact +access code,access codes +access control list,access control lists +access course,access courses +accession,accessions +accession country,accession countries +accessit,accessits +access modifier,access modifiers +accessor,accessors +accessorial,accessorials +accessory,accessories +accessory after the fact,accessories after the fact +accessory before the fact,accessories before the fact +accessory cloud,accessory clouds +accessory fruit,accessory fruits +accessory mineral,accessory minerals +accessory nerve,accessory nerves +accessory pigment,accessory pigments +accessory shoe,accessory shoes +access point,access points +access road,access roads +access specifier,access specifiers +access time,access times +access token,access tokens +accessway,accessways +acciacatura,acciacaturas +acciaccatura,acciaccaturas,acciaccature +accidence,accidences +accidental abortion,accidental abortions +accidental,accidentals +accidental chord,accidental chords +accidental color,accidental colors +accidental colour,accidental colours +accidentalist,accidentalists +accidental light,accidental lights +accidental point,accidental points +accident blackspot,accident blackspots +accident of birth,accidents of birth +accident waiting to happen,accidents waiting to happen +accipient,accipients +accipitary,accipitaries +accipiter,accipiters +accipitrary,accipitraries +accipitrid,accipitrids +accipitrine,accipitrines +acclaim,acclaims +acclaimer,acclaimers +acclamation,acclamations +acclimatation,acclimatations +acclimatement,acclimatements +acclimation,acclimations +acclimatisation,acclimatisations +acclimatisation society,acclimatisation societies +acclimatization,acclimatizations +acclimatizer,acclimatizers +acclimator,acclimators +acclivity,acclivities +accolade,accolades +accombination,accombinations +accommodation address,accommodation addresss +accommodation bill,accommodation bills +accommodationist,accommodationists +accommodation ladder,accommodation ladders +accommodation paper,accommodation papers +accommodation train,accommodation trains +accommodator,accommodators +accomodator,accomodators +accompagnato,accompagnatos +accompanier,accompaniers +accompaniment,accompaniments +accompanist,accompanists +accompanying,accompanyings +accompanyist,accompanyists +accomplice,accomplices +accomplisher,accomplishers +accomplishment,accomplishments +accompt,accompts +accomptant,accomptants +accomptaunt,accomptaunts +accord,accords +accordance,accordances +accordaunce,accordaunces +accorder,accorders +accordion,accordions +accordion file,accordion files +accordionist,accordionists +accordion player,accordion players +accordment,accordments +accost,accosts +accosting,accostings +accostment,accostments +accouchement,accouchements +accoucheur,accoucheurs +accoucheuse,accoucheuses +accountability partner,accountability partners +accountable cryptomaterial,accountable cryptomaterials +accountable depot,accountable depots +accountable disbursing officer,accountable disbursing officers +accountable mail,accountable mails +accountable officer,accountable officers +accountable property officer's bond,accountable property officer's bonds +account,accounts +accountant,accountants +accountant general,accountants general +accountantship,accountantships +accountant's lien,accountant's liens +account book,account books +account code,account codes +accounter,accounters +account executive,account executives +accountholder,accountholders +accounting cost,accounting costs +accounting machine,accounting machines +accounting profit,accounting profits +account manager,account managers +accountment,accountments +account payable,accounts payable +account receivable,accounts receivable +account statement,account statements +accouplement,accouplements +accouri,accouris +accouterment,accouterments +accoutrement,accoutrements +accrease,accreases +accreditment,accreditments +accreditor,accreditors +accrementition,accrementitions +accreter,accreters +accretion,accretions +accretionary wedge,accretionary wedges +accretion disc,accretion discs +accretion disk,accretion disks +accretion shock,accretion shocks +accretor,accretors +accrimination,accriminations +accroachment,accroachments +accrual,accruals +accrual bond,accrual bonds +accrue,accrues +accruement,accruements +accrument,accruments +acct,accts +accumulatio,accumulatios +accumulation,accumulations +accumulation point,accumulation points +accumulator,accumulators +accuracy,accuracies +accusal,accusals +accusant,accusants +accusation,accusations +accusative,accusatives +accusative case,accusative cases +accusator,accusators +accusatour,accusatours +accusatrix,accusatrices +accuse,accuses +accused,accused +accusement,accusements +accuser,accusers +accusor,accusors +accusour,accusours +accustom,accustoms +accustomance,accustomances +accustomization,accustomizations +ace,aces +ACE inhibitor,ACE inhibitors +ace in the hole,aces in the hole +aceldama,aceldamas +acellularization,acellularizations +acenaphthene,acenaphthenes +acene,acenes +ace of aces,aces of aces +ace of clubs,aces of clubs +ace of diamonds,aces of diamonds +ace of hearts,aces of hearts +ace of spades,aces of spades +acephal,acephals +acephalan,acephalans +acephalist,acephalists +Acephalite,Acephalites +acephalocyst,acephalocysts +acequia,acequias +acer,acers +acerate,acerates +acerathere,aceratheres +acerbation,acerbations +acerbitude,acerbitudes +acerbity,acerbities +acerentomid,acerentomids +acerola,acerolas +acerra,acerras +acervatio,acervatios +acervation,acervations +acervulus,acervuli +acescence,acescences +acescent,acescents +acesulfame,acesulfames +acesulphame,acesulphames +acetable,acetables +acetabulectomy,acetabulectomies +acetabuloplasty,acetabuloplasties +acetabulum,acetabula,acetabulums +acetal,acetals +acetaldoxime,acetaldoximes +acetalization,acetalizations +acetamidine,acetamidines +acetamido,acetamidos +acetamidoacrylate,acetamidoacrylates +acetamidobenzoate,acetamidobenzoates +acetamidocinnamate,acetamidocinnamates +acetaminophen,acetaminophens +acetate,acetates +acetenyl,acetenyls +acetic anhydride,acetic anhydrides +aceticoceptor,aceticoceptors +acetifier,acetifiers +acetimeter,acetimeters +acetoacetate,acetoacetates +acetoacetyl,acetoacetyls +acetoarsenite,acetoarsenites +acetobacter,acetobacters +acetogen,acetogens +acetogenin,acetogenins +acetokinase,acetokinases +acetolactate,acetolactates +acetolactic acid,acetolactic acids +acetolysis,acetolyses +acetometer,acetometers +acetonaphthone,acetonaphthones +acetonide,acetonides +acetophenide,acetophenides +acetotartrate,acetotartrates +acetoxy,acetoxys +acetoxymethyl,acetoxymethyls +acetract,acetracts +acetrizoate,acetrizoates +aceturate,aceturates +acetylacetonate,acetylacetonates +acetyl,acetyls +acetylamino,acetylaminos +acetylaminopeptidase,acetylaminopeptidases +acetylase,acetylases +acetylation,acetylations +acetylchitooligosaccharide,acetylchitooligosaccharides +acetylcholine receptor,acetylcholine receptors +acetyldigitoxin,acetyldigitoxins +acetylesterase,acetylesterases +acetylgalactosamine,acetylgalactosamines +acetylgalactosaminide,acetylgalactosaminides +acetylgalactosaminyl,acetylgalactosaminyls +acetylgalactosaminyltransferase,acetylgalactosaminyltransferases +acetylglucosamine,acetylglucosamines +acetylglucosaminidase,acetylglucosaminidases +acetylglucosaminylation,acetylglucosaminylations +acetylglucosaminylglycopeptide,acetylglucosaminylglycopeptides +acetylglucosaminyltransferase,acetylglucosaminyltransferases +acetylhexosaminidase,acetylhexosaminidases +acetylhydrolase,acetylhydrolases +acetylide,acetylides +acetylisoquinoline,acetylisoquinolines +acetyllactosamine,acetyllactosamines +acetyllysine,acetyllysines +acetylmannosaminyltransferase,acetylmannosaminyltransferases +acetylmethadol,acetylmethadols +acetylmuramidase,acetylmuramidases +acetylneuraminate,acetylneuraminates +acetylneuraminic acid,acetylneuraminic acids +acetylome,acetylomes +acetyloxy,acetyloxys +acetylpolyamine,acetylpolyamines +acetylproteome,acetylproteomes +acetylpyridine,acetylpyridines +acetylsalicylate,acetylsalicylates +acetyltransferase,acetyltransferases +ace up one's sleeve,aces up one's sleeve +acey-deucey,acey-deuceys +ach,achs +Achaean,Achaeans +AchΓ¦an,AchΓ¦ans +Achaemenian,Achaemenians +AchΓ¦menian,AchΓ¦menians +achaemenid,achaemenids +AchΓ¦menid,AchΓ¦menids +Achaemenid,Achaemenids,Achaemenidae,Achaemenides +Achaian,Achaians +achar,achars +acharya,acharyas +achate,achates +achate,achates +achatinellid,achatinellids +achatine snail,achatine snails +achatinid,achatinids +achatour,achatours +ache,aches +ache,aches +ache,aches +Achean,Acheans +acheiropoieton,acheiropoieta +achelor,achelors +achene,achenes +achenium,acheniums,achenia +acher,achers +Acheulian,Acheulians +achievability,achievabilities +achievance,achievances +achieved status,achieved statuses +achievement,achievements +achiever,achievers +achieving,achievings +achillea,achilleas +Achilles heel,Achilles heels +Achilles' heel,Achilles' heels +Achilles tendon,Achilles tendons +Achilles' tendon,Achilles' tendons +achillobursitis,achillobursites +achillorrhaphy,achillorrhaphies +achillotenotomy,achillotenotomies +achillotomy,achillotomies +achimenes,achimenes +achiote,achiotes +achirid,achirids +ach-laut,ach-lauts +achondrite,achondrites +achondrogenesis,achondrogeneses +achoresis,achoreses +achroacyte,achroacytes +achroacytosis,achroacytoses +achromacyte,achromacytes +achromasia,achromasias +achromat,achromats +achromatic lens,achromatic lenses +achromatocyte,achromatocytes +achromatophil,achromatophils +achromatopia,achromatopias +achromia,achromias +achromocyte,achromocytes +achromophil,achromophils +acicula,aciculae +acid,acids +acid anhydride,acid anhydrides +acidanthera,acidantheras +acid-base equilibrium,acid-base equilibriums +acid-base indicator,acid-base indicators +acid dissociation constant,acid dissociation constants +acid drop,acid drops +acidhead,acidheads +acidifier,acidifiers +acidimeter,acidimeters +acidimetre,acidimetres +acidity,acidities +acidity function,acidity functions +acidity regulator,acidity regulators +acidness,acidnesses +acidocyte,acidocytes +acidol,acidols +acidolysis,acidolyses +acidophil,acidophils +acidophile,acidophiles +acidophyte,acidophytes +acidopore,acidopores +acidosis,acidoses +acidosteophyte,acidosteophytes +acid rain,acid rains +acid test,acid tests +acidulant,acidulants +aciduria,acidurias +acidyl,acidyls +acieration,acierations +acinaces,acinaci +acinetobacter,acinetobacters +acinitis,acinites +acinus,acini +acipenserid,acipenserids +acise,acises +aciurgy,aciurgies +ack,acks +ACK,ACKs +ackee,ackees +acker,ackers +acker,ackers +acknowledgement,acknowledgements +acknowledger,acknowledgers +acknowledgment,acknowledgments +ACL,ACLs +acleistocardia,acleistocardias +aclerdid,aclerdids +acmaeid,acmaeids +acme,acmes +acmeist,acmeists +Acmeist,Acmeists +ACMI lease,ACMI leases +acne,acnes +acnistin,acnistins +acnode,acnodes +ACOD,ACODs +acoel,acoels +acoelomate,acoelomates +a cold day in Hell,cold days in Hell +acolothist,acolothists +acoloutha,acolouthas +acolyte,acolytes +acolythist,acolythists +aconitate,aconitates +aconite,aconites +aconitum,aconitums +acontia,acontias +acorn,acorns +acorn nut,acorn nuts +acorn-shell,acorn-shells +acorn squash,acorn squashes +acorn woodpecker,acorn woodpeckers +acosmist,acosmists +acotyledon,acotyledons +acoumeter,acoumeters +acoumetry,acoumetries +acousma,acousma +acoustic,acoustics +acoustic coupler,acoustic couplers +acoustic emission,acoustic emissions +acoustic energy,acoustic energies +acoustic guitar,acoustic guitars +acoustic guitarist,acoustic guitarists +acoustician,acousticians +acoustic jamming,acoustic jammings +acoustic mirror,acoustic mirrors +acoustic neuroma,acoustic neuromas +acquaintance,acquaintances +acquaintance rape,acquaintance rapes +acquaintant,acquaintants +acquaintaunce,acquaintaunces +acquest,acquests +acquiescency,acquiescencies +acquiesence,acquiesences +acquihire,acquihires +acquired taste,acquired tastes +acquiree,acquirees +acquirement,acquirements +acquirer,acquirers +acquiring financial institution,acquiring financial institutions +acquiry,acquiries +acquisition,acquisitions +acquisition debt,acquisition debts +acquisitor,acquisitors +acquist,acquists +acquitment,acquitments +acquittal,acquittals +acquittance,acquittances +acquittaunce,acquittaunces +acquitter,acquitters +acracy,acracies +acrasid,acrasids +acre,acres +acreage,acreages +Acre antshrike,Acre antshrikes +acre foot,acre feet +acre-foot,acre-feet +acreman,acremen +acremonium,acremonia +acridarsine,acridarsines +acridid,acridids +acridinium,acridiniums +acridinyl,acridinyls +acridity,acridities +acridone,acridones +acridophosphine,acridophosphines +acrimony,acrimonies +acrisol,acrisols +acritarch,acritarchs +acroaesthesia,acroaesthesias +acroagnosis,acroagnoses +acroama,acroamata +acrobat,acrobats +acrobatid,acrobatids +acroblast,acroblasts +acrocentric,acrocentrics +acrocephalic,acrocephalics +acrocerid,acrocerids +acrochordid,acrochordids +acrochordon,acrochordons +acrocirrid,acrocirrids +acrocontracture,acrocontractures +acrocoracohumeral ligament,acrocoracohumeral ligaments +acrocoracoid,acrocoracoids +acrocoracoid process,acrocoracoid processes +acrodermatitis,acrodermatitides +acrodermatosis,acrodermatoses +acrodont,acrodonts +acrodysostosis,acrodysostoses +acroedema,acroedemas,acroedemata +acroesthesia,acroesthesias +acrogen,acrogens +acrognosis,acrognoses +acrohyperhidrosis,acrohyperhidroses +acrokeratoelastoidosis,acrokeratoelastoidoses +acrokeratosis,acrokeratoses +acrolect,acrolects +acroleukopathy,acroleukopathies +acrolith,acroliths +acromegalic,acromegalics +acromegaloidism,acromegaloidisms +acromegaly,acromegalies +acromicria,acromicrias +acromioclavicular joint,acromioclavicular joints +acromion,acromions,acromia +acromioplasty,acromiopasties +acronictionary,acronictionaries +acronym,acronyms +acronymist,acronymists +acronymization,acronymizations +acrophase,acrophases +acrophobe,acrophobes +acrophobia,acrophobias +acrophone,acrophones +acrophony,acrophonies +acrophore,acrophores +acrophyll,acrophylls +acrophyte,acrophytes +acropodium,acropodia +acropolis,acropolises,acropoleis +acropomatid,acropomatids +acroporid,acroporids +acropsin,acropsins +acrosome,acrosomes +acrospire,acrospires +acrospiroma,acrospiromas +acrospore,acrospores +across,acrosses +across variable,across variables +acrostic,acrostics +acrotarsium,acrotarsia +acroteleutic,acroteleutics +acroter,acroters +acroterion,acroterions,acroteria +acroterium,acroteria +acroyl,acroyls +acryl,acryls +acrylate,acrylates +acrylation,acrylations +acrylic,acrylics +acrylic fiber,acrylic fibers +acrylic resin,acrylic resins +acryloyl,acryloyls +actant,actants +acte gratuit,acte gratuits +actelyglucosamine,actelyglucosamines +acteme,actemes +Acteon,Acteons +acteonellid,acteonellids +acteonid,acteonids +acter,acters +actigraph,actigraphs +acting,actings +acting scrum-half,acting scrum-halves +actinia,actinias +actinian,actinians +actinic keratosis,actinic keratoses +actinide,actinides +actinin,actinins +actinobacterium,actinobacteria +actinoceratid,actinoceratids +actinodin,actinodins +actinogram,actinograms +actinograph,actinographs +actinoid,actinoids +actinolepid,actinolepids +actinologist,actinologists +actinomere,actinomeres +actinometer,actinometers +actinomycete,actinomycetes +actinon,actinons +actinophage,actinophages +actinopod,actinopods +actinopterygian,actinopterygians +actinorhiza,actinorhizas +actinosome,actinosomes +actinosporean,actinosporeans +actinost,actinosts +actinostele,actinosteles +actinostome,actinostomes +actinote,actinotes +actinotrichium,actinotrichia +actinozoon,actinozoa +actinula,actinulae +action,actions +action adventure,action adventures +actionary,actionaries +action doll,action dolls +actionee,actionees +actioner,actioners +actionfest,actionfests +action figure,action figures +action film,action films +action group,action groups +action hero,action heroes +actionism,actionisms +actionist,actionists +action item,action items +action man,action men +action movie,action movies +action noun,action nouns +action plan,action plans +action potential,action potentials +action song,action songs +action star,action stars +action verb,action verbs +activated complex,activated complexes +activater,activaters +activation,activations +activation analysis,activation analyses +activation energy,activation energies +activationist,activationists +activation record,activation records +activator,activators +active,actives +active couple,active couples +active dry yeast,active dry yeasts +active fault,active faults +active front,active fronts +active galactic nucleus,active galactic nuclei +active galaxy,active galaxies +active ingredient,active ingredients +active matrix,active matrices +active power,active powers +active vocabulary,active vocabularies +active volcano,active volcanos,active volcanoes +activin,activins +activism,activisms +activist,activists +activist judge,activist judges +activist justice,activist justices +activity,activities +activity trap,activity traps +act of Congress,acts of Congress +act of God,acts of God +Act of God,Acts of God +act of independent significance,acts of independent significance +act of parliament,acts of parliament +Act of Parliament,Acts of Parliament +Act of Parliament clock,Act of Parliament clocks +acton,actons +actor,actors +actoress,actoresses +actour,actours +actress,actresses +actual,actuals +actualisation,actualisations +actualism,actualisms +actualist,actualists +actuality,actualities +actualization,actualizations +actual parameter,actual parameters +actuary,actuaries +actuator,actuators +actus reus,actus rei +acuariid,acuariids +acuity,acuities +aculeus,aculei +acumen,acumens +acumination,acuminations +acuminite,acuminites +A cup,A cups +acupoint,acupoints +acupressurist,acupressurists +acupuncturation,acupuncturations +acupuncture,acupunctures +acupuncturist,acupuncturists +acushla,acushlas +a cut above,cuts above +acute accent,acute accents +acute,acutes +acute-angled triangle,acute-angled triangles +acute lymphoblastic leukemia,acute lymphoblastic leukemias +acute sedge,acute sedges +acute triangle,acute triangles +ACV,ACVs +acyl,acyls +acylal,acylals +acylamide,acylamides +acylamido,acylamidos +acylamino,acylaminos +acyl anhydride,acyl anhydrides +acylanilide,acylanilides +acylase,acylases +acylation,acylations +acyl bromide,acyl bromides +acyl chloride,acyl chlorides +acyldepsipeptide,acyldepsipeptides +acylethanolamine,acylethanolamines +acyl fluoride,acyl fluorides +acylfulvene,acylfulvenes +acylglycerol,acylglycerols +acylglycerophosphate,acylglycerophosphates +acylglycerophosphocholine,acylglycerophosphocholines +acylglycerophosphoethanolamine,acylglycerophosphoethanolamines +acylglycerophosphoglucose,acylglycerophosphoglucoses +acylglycerophosphoglycerol,acylglycerophosphoglycerols +acylglycerophosphoinositol,acylglycerophosphoinositols +acylglycerophosphoserine,acylglycerophosphoserines +acyl halide,acyl halides +acylimine,acylimines +acyliminium,acyliminiums +acyl iodide,acyl iodides +acylium,acyliums +acyloin,acyloins +acyloxy,acyloxys +acyloxyl,acyloxyls +acylphosphatidylethanolamine,acylphosphatidylethanolamines +acylpyridine,acylpyridines +acylpyrrole,acylpyrroles +acylsilane,acylsilanes +acyltransferase,acyltransferases +acyrologia,acyrologias +ADA,ADAs +ad.,ad.,ads.,ad.'s +ad,ads +ad,ads +adage,adages +adagietto,adagiettos +adagio,adagios +adamant,adamants +adamantane,adamantanes +adamantanethiol,adamantanethiols +adamantinoma,adamantinomas +adamantoblast,adamantoblasts +adamantoma,adamantomas +adamantyl,adamantyls +adamantylamine,adamantylamines +adamite,adamites +Adamite,Adamites +Adam's apple,Adam's apples +Adam Tiler,Adam Tilers +adansonia,adansonias +adapid,adapids +adapiform,adapiforms +adapisoricid,adapisoricids +adapoid,adapoids +adaptationist,adaptationists +adaptee,adaptees +adapter,adapters +adapter pattern,adapter patterns +adaptin,adaptins +adaption,adaptions +adaptive-control function,adaptive-control functions +adaptive enzyme,adaptive enzymes +adaptive immune system,adaptive immune systems +adaptive zone,adaptive zones +adaptogen,adaptogens +adaptometer,adaptometers +adaptor,adaptors +adaptor,adaptors +adat,adats +adatom,adatoms +ad banner,ad banners +add,adds +addax,addaxes,addax +addend,addends +addendum,addenda,addendums +adder,adders +adder,adders +adder fly,adder flies +adder's tongue,adder's tongues +adder's-tongue,adder's-tongues +adderwort,adderworts +addice,addices +Addick,Addicks +addict,addicts +addiction,addictions +addictionologist,addictionologists +addictive,addictives +addictive personality,addictive personalities +addictologist,addictologists +add-in,add-ins +adding machine,adding machines +additament,additaments +additional accompaniment,additional accompaniments +additional,additionals +additionality,additionalities +addition polymerisation,addition polymerisations +addition polymerization,addition polymerizations +addition reaction,addition reactions +additive,additives +additive function,additive functions +additive group,additive groups +additive identity,additive identities +additive inverse,additive inverses +additive operation,additive operations +additur,additurs +addle,addles +addle,addles +addle-brain,addle-brains +addlehead,addleheads +addle pate,addle pates +addlepate,addlepates +addling,addlings +addolorato,addoloratos +add on,add ons +add-on,add-ons +addon,addons +addressability,addressabilities +address,addresses +address bar,address bars +address book,address books +addressee,addressees +addresser,addressers +addression,addressions +addressivity,addressivities +address message,address messages +address of record,addresses of record +addressograph,addressographs +address space,address spaces +address verification service,address verification services +adducer,adducers +adducin,adducins +adduct,adducts +adduction,adductions +adductome,adductomes +adductor,adductors +addy,addies +ade,ades +Adelaidean,Adelaideans +Adelaidian,Adelaidians +adelantadillo,adelantadillos +adelantado,adelantados,adelantadoes +adelaster,adelasters +adele,adeles +adelgid,adelgids +adelid,adelids +Adelie penguin,Adelie penguins +AdΓ©lie penguin,AdΓ©lie penguins +adeling,adelings +adelite,adelites +adelogyrinid,adelogyrinids +adelopod,adelopods +adelopode,adelopodes +adelphia,adelphias +adenectomy,adenectomies +adenitis,adenitises,adenitides +adenoacanthoma,adenoacanthomas +adenoameloblastoma,adenoameloblastomas +adenoblast,adenoblasts +adenocarcinoma,adenocarcinomas +adenochondroma,adenochondromas +adenocystoma,adenocystomas +adenocyte,adenocytes +adenodiastasis,adenodiastases +adenodynia,adenodynias +adenoepithelioma,adenoepitheliomas +adenofibroma,adenofibromas +adenofibromyoma,adenofibromyomas +adenohypophysis,adenohypophyses +adenoid,adenoids +adenoidectomy,adenoidectomies +adenoiditis,adenoiditises +adenolymphoma,adenolymphomas,adenolymphomata +adenoma,adenomas,adenomata +adenomatosis,adenomatoses +adenomegaly,adenomegalies +adenomere,adenomeres +adenomyoma,adenomyomas,adenomyomata +adenopathy,adenopathies +adenosarcoma,adenosarcomas,adenosarcomata +adenosine,adenosines +adenosine monophosphate,adenosine monophosphates +adenosinetriphosphatase,adenosinetriphosphatases +adenosis,adenoses +adenosyl,adenosyls +adenosyltransferase,adenosyltransferases +adenotomy,adenotomies +adenotonsillectomy,adenotonsillectomies +adenovector,adenovectors +adenovirus,adenoviruses +adenyl,adenyls +adenylate,adenylates +adenylation,adenylations +adenyltransferase,adenyltransferases +adenylyltransferase,adenylyltransferases +adept,adepts +adeptist,adeptists +adequacy,adequacies +adequation,adequations +aderid,aderids +Adessenarian,Adessenarians +adessive,adessives +adessive case,adessive cases +ADF,ADFs +adfix,adfixes +adhΓ¦rent,adhΓ¦rents +adhan,adhans +adherend,adherends +adherens junction,adherens junctions +adherent,adherents +adherer,adherers +adhesin,adhesins +adhesiotomy,adhesiotomies +adhesive,adhesives +adhesive tape,adhesive tapes +adhibition,adhibitions +ad hocery,ad hoceries +adhocery,adhoceries +ad-hocism,ad-hocisms +ad hockery,ad hockeries +ad-hockery,ad-hockeries +adhockery,adhockeries +ad-hoc polymorphism,ad-hoc polymorphisms +adhocracy,adhocracies +Adhola,Adhola +ad hominem,ad hominems +ad hominem argument,ad hominem arguments +adhortation,adhortations +adiabat,adiabats +adiabatic lapse rate,adiabatic lapse rates +adiabatic wall,adiabatic walls +adiabolist,adiabolists +adiantum,adiantums,adianta +adiaphorist,adiaphorists +Adiaphorite,Adiaphorites +adiaphoron,adiaphora +adiathermancy,adiathermancies +adicity,adicities +Adidas,Adidas,Adidases +adieu,adieux,adieus +Adi Granth,Adi Granths +adi-guru,adi-gurus +adinkra,adinkras,adinkra +adipate,adipates +adipic acid,adipic acids +adipimidate,adipimidates +adipocire,adipocires +adipocyte,adipocytes +adipocytokine,adipocytokines +adipokine,adipokines +adipokinin,adipokinins +adiponectinemia,adiponectinemias +adiponitrile,adiponitriles +adipose fin,adipose fins +adiposis,adiposes +adiposity,adiposities +adiposome,adiposomes +adipoyl,adipoyls +adipyl,adipyls +Adirondack,Adirondacks +Adirondack,Adirondacks +Adirondack chair,Adirondack chairs +Adirondacker,Adirondackers +Adirondack lean-to,Adirondack lean-tos +adit,adits +aditus,aditus +Adivasi,Adivasis,Adivasi +adjacent,adjacents +adj,adjs +Adjaran,Adjarans +Adjarian,Adjarians +adjection,adjections +adjectival,adjectivals +adjectival noun,adjectival nouns +adjectival phrase,adjectival phrases +adjective,adjectives +adjective phrase,adjective phrases +adjoint,adjoints +adjourner,adjourners +adjournment,adjournments +AdjP,AdjPs +adjudger,adjudgers +adjudgment,adjudgments +adjudication,adjudications +adjudicator,adjudicators +adjudicatrix,adjudicatrices +adjudicature,adjudicatures +adjugate,adjugates +adjument,adjuments +adjunct,adjuncts +adjunction,adjunctions +adjunctive,adjunctives +adjuration,adjurations +adjurer,adjurers +adjuror,adjurors +adjustable spanner,adjustable spanners +adjustable wrench,adjustable wrenches +adjustage,adjustages +adjuster,adjusters +adjustment,adjustments +adjustment disorder,adjustment disorders +adjustor,adjustors +adjutage,adjutages +adjutancy,adjutancies +adjutant,adjutants +adjutant general,adjutant generals +adjutant-general,adjutant-generals +adjutant stork,adjutant storks +adjutator,adjutators +adjutor,adjutors +adjutrix,adjutrices +adjuvant,adjuvants +ADL,ADLs +adlayer,adlayers +adle,adles +adlib,adlibs +ad-libber,ad-libbers +adlocution,adlocutions +ad-man,ad-men +adman,admen +admeasurement,admeasurements +admeasurer,admeasurers +admensuration,admensurations +admin,admins +adminicle,adminicles +adminisphere,adminispheres +administering,administerings +administrant,administrants +administrativia,administrativia +administrator,administrators +administratorship,administratorships +administratour,administratours +administratrix,administratrices,administratixes +administrivia,administrivia +adminship,adminships +admin vortex,admin vortices +admiral,admirals +admiralcy,admiralcies +Admiraless,Admiralesses +admiral of the fleet,admirals of the fleet +admiral's barge,admiral's barges +Admiral's eighth,Admiral's eighths +admiralship,admiralships +admiration,admirations +admirer,admirers +admissability,admissabilities +admissibility,admissibilities +admission,admissions +admittance,admittances +admittatur,admittaturs +admittaunce,admittaunces +admitter,admitters +admittivity,admittivities +admixtion,admixtions +admixture,admixtures +admonisher,admonishers +admonishment,admonishments +admonition,admonitions +admonitioner,admonitioners +admonitor,admonitors +admonitrix,admonitrices +admontite,admontites +aDNA,aDNAs +adnation,adnations +adnexectomy,adnexectomies +adnominal,adnominals +adnominalizer,adnominalizers +adnoun,adnouns +adobo,adobos +adocid,adocids +adolescent,adolescents +Adonic,Adonics +Adonis,Adonises +Adonis belt,Adonis belts +adonis blue,adonis blues +adonist,adonists +adoptee,adoptees +adopter,adopters +adoption,adoptions +adoptionist,adoptionists +adoptive father,adoptive fathers +adoptive mother,adoptive mothers +adoptive sibling,adoptive siblings +adoptor,adoptors +adoration,adorations +adoratrice,adoratrices +adorcism,adorcisms +adorer,adorers +adorner,adorners +adornment,adornments +adpaper,adpapers +adperson,adpersons,adpeople +adposition,adpositions +adprep,adpreps +adpromissor,adpromissors +adrenal,adrenals +adrenal artery,adrenal arteries +adrenal cortex,adrenal cortexes +adrenal gland,adrenal glands +adrenaline junkie,adrenaline junkies +adrenaline rush,adrenaline rushes +adrenalin rush,adrenalin rushes +adrenergic receptor,adrenergic receptors +adrenoceptor,adrenoceptors +adrenocortical hormone,adrenocortical hormones +adrenocorticotropic hormone,adrenocorticotropic hormones +adrenoreceptor,adrenoreceptors +adrianichthyid,adrianichthyids +adrianitid,adrianitids +Adrianopolitan,Adrianopolitans +adrogation,adrogations +adscript,adscripts +adscription,adscriptions +adsorbability,adsorbabilities +adsorbate,adsorbates +adsorbent,adsorbents +adsorber,adsorbers +adsorption,adsorptions +adstratum,adstrata +adstriction,adstrictions +adsuki bean,adsuki beans +ad truck,ad trucks +aduantage,aduantages +aduant garde,aduant gardes +aduenture,aduentures +aduki bean,aduki beans +adularia,adularias +adulation,adulations +adulator,adulators +adulescent,adulescents +Adullamite,Adullamites +adult,adults +adult content,adult contents +adulterant,adulterants +adulteration,adulterations +adulterator,adulterators +adulterer,adulterers +adulteress,adulteresses +adulterine,adulterines +adultery,adulteries +adultescent,adultescents +adulticide,adulticides +adult movie,adult movies +adultoid,adultoids +adultress,adultresses +adult third culture kid,adult third culture kids +adumbration,adumbrations +adunation,adunations +adustion,adustions +adv,advs +ad valorem tax,ad valorem taxes +advance,advances +advanced degree,advanced degrees +advanced green,advanced greens +advanced pawn,advanced pawns +advance fee scam,advance fee scams +advance guard,advance guards +advance-guard,advance-guards +advance man,advance men +advancement,advancements +advancemente,advancementes +advance payment,advance payments +advance person,advance persons +advancer,advancers +advance woman,advance women +advantage,advantages +advaunce,advaunces +advauncement,advauncements +advauncemente,advauncementes +advauncer,advauncers +advauntage,advauntages +advection fog,advection fogs +advenement,advenements +advent,advents +Advent calendar,Advent calendars +Adventist,Adventists +adventure,adventures +adventure education,adventure educations +adventure game,adventure games +adventurer,adventurers +adventuress,adventuresses +adventuring,adventurings +adventurist,adventurists +adverb,adverbs +adverbial,adverbials +adverbial case,adverbial cases +adverbial clause,adverbial clauses +adverbial genitive,adverbial genitives +adverbialization,adverbializations +adverbializer,adverbializers +adverbial number,adverbial numbers +adverbial participle,adverbial participles +adverbial phrase,adverbial phrases +adverb phrase,adverb phrases +ad verecundiam,ad verecundiams +advergame,advergames +adversarial system,adversarial systems +adversary,adversaries +adversative,adversatives +adverse effect,adverse effects +adverse impact,adverse impacts +adverse party,adverse parties +adverse witness,adverse witnesses +advert,adverts +advertainment,advertainments +advertence,advertences +adverticle,adverticles +advertique,advertiques +advertisement,advertisements +advertiser,advertisers +advertizement,advertizements +advertizer,advertizers +advertorial,advertorials +advice animal,advice animals +advice boat,advice boats +adviceline,advicelines +advisee,advisees +advisement,advisements +adviser,advisers +advisership,adviserships +adviso,advisos,advisoes +advisor,advisors +advisory,advisories +advisory opinion,advisory opinions +advocaat,advocaats +advocacy,advocacies +advocacy group,advocacy groups +advocate,advocates +advocateship,advocateships +advocation,advocations +advocator,advocators +advolution,advolutions +advoutrer,advoutrers +advoutress,advoutresses +advoutry,advoutries +advowee,advowees +advowson,advowsons +advowsonage,advowsonages +advowtry,advowtries +advoyer,advoyers +AdvP,AdvPs +advt,advts +adward,adwards +adwoman,adwomen +adynamia,adynamias +adynaton,adynata,adynatons +adyt,adyts +adytum,adytums,adyta +adz,adzes +adze,adzes +adzebill,adzebills +adzuki,adzukis +adzuki bean,adzuki beans +aeacid,aeacids +a**e,a**es +aechmea,aechmeas +aecidium,aecidia,aecidiums +aeciospore,aeciospores +Γ¦ciospore,Γ¦ciospores +aecium,aecia,aeciums +Γ¦cium,Γ¦cia,Γ¦ciums +aedeagus,aedeagi +aΓ«des,aΓ«des +aedicula,aediculae +aedicule,aedicules +Γ¦dicule,Γ¦dicules +Γ¦dification,Γ¦difications +Γ¦difice,Γ¦difices +aedile,aediles +Γ¦dile,Γ¦diles +aedileship,aedileships +Γ¦gagrus,Γ¦gagri +aegeriid,aegeriids +aegicrane,aegicranes +aegid,aegids +aegilops,aegilopses +Aeginetan,Aeginetans +aegipan,aegipans,aegipanes +aegir,aegirs +Γ¦gis,Γ¦gides +aegis,aegises,aegides +Aegis class cruiser,Aegis class cruisers +Aegis cruiser,Aegis cruisers +aeglid,aeglids +aegothelid,aegothelids +aegrotat,aegrotats +Γ†gyptian,Γ†gyptians +aelurophil,aelurophils +aelurophile,aelurophiles +aelurophobe,aelurophobes +Γ¦lurophobe,Γ¦lurophobes +AEMT,AEMTs +Γ¦nigma,Γ¦nigmas,Γ¦nigmata +Γ¦nigmatist,Γ¦nigmatists +aeolian attachment,aeolian attachments +aeolian harp,aeolian harps +Γ¦olian harp,Γ¦olian harps +aeolianite,aeolianites +aeolipile,aeolipiles +aeolipyle,aeolipyles +aeolist,aeolists +aeolothripid,aeolothripids +aeon,aeons +Γ¦on,Γ¦ons +aeonium,aeoniums +aepyornithid,aepyornithids +Γ¦qual,Γ¦quals +Γ¦quality,Γ¦qualities +Γ¦quall,Γ¦qualls +Γ¦quanimity,Γ¦quanimities +Γ¦quation,Γ¦quations +Γ¦quative,Γ¦quatives +Γ¦quator,Γ¦quators +Aequian,Aequians +Γ†quian,Γ†quians +Γ¦quidistance,Γ¦quidistances +Γ¦quilateral,Γ¦quilaterals +Γ¦quilibrium,Γ¦quilibria +Γ¦quinoctial,Γ¦quinoctials +Γ¦quinox,Γ¦quinoxes,Γ¦quinoctes +Γ¦quipoise,Γ¦quipoises +Γ¦quison,Γ¦quisons +Γ¦quivalent,Γ¦quivalents +Γ¦quivocation,Γ¦quivocations +Γ¦ra,Γ¦ras +aerarian,aerarians +aeration,aerations +aΓ«ration,aΓ«rations +aeration zone,aeration zones +aerator,aerators +aerenchyma,aerenchymas,aerenchymae +aerial,aerials +aerial camera,aerial cameras +aerialist,aerialists +aerial railway,aerial railways +aerial root,aerial roots +aerial runway,aerial runways +aerial survey,aerial surveys +aerie,aeries +aerification,aerifications +aeroallergen,aeroallergens +aeroatelectasis,aeroatelectases +aerobat,aerobats +aerobeacon,aerobeacons +aerobe,aerobes +aerobiologist,aerobiologists +aerobiosis,aerobioses +aerobot,aerobots +aerobrake,aerobrakes +aerobridge,aerobridges +aeroclub,aeroclubs +aerocraft,aerocrafts,aerocraft +aerocyst,aerocysts +aerodontalgia,aerodontalgias +aerodrome,aerodromes +aeroduct,aeroducts +aerodynamicist,aerodynamicists +aerodyne,aerodynes +aeroembolism,aeroembolisms +aeroemphysema,aeroemphysemas +aero engine,aero engines +aerofoil,aerofoils +aerogen,aerogens +aerogram,aerograms +aerogramme,aerogrammes +aerographer,aerographers +aerolite,aerolites +aerolith,aeroliths +aerologist,aerologists +aeromancer,aeromancers +aeromechanic,aeromechanics +aeromete,aerometes +aerometer,aerometers +aeromodeller,aeromodellers +aeronaut,aeronauts +aΓ«ronaut,aΓ«ronauts +aeroneurosis,aeroneuroses +aeropause,aeropauses +aerophare,aerophares +aerophilatelist,aerophilatelists +aerophile,aerophiles +aerophone,aerophones +aerophyte,aerophytes +aeroplane,aeroplanes +aΓ«roplane,aΓ«roplanes +aeroplankton,aeroplankton +aeroport,aeroports +aeropulse,aeropulses +aeroscope,aeroscopes +aeroshell,aeroshells +aerosiderite,aerosiderites +aerosil,aerosils +aerosol,aerosols +aerosol can,aerosol cans +aerosolization,aerosolizations +aerosphere,aerospheres +aerospike,aerospikes +aerostat,aerostats +aerostructure,aerostructures +aerotitis,aerotitides +aerotrain,aerotrains +aerotrekker,aerotrekkers +aerotropism,aerotropisms +aΓ«rotropism,aΓ«rotropisms +aerovane,aerovanes +aeruginosin,aeruginosins +aerugite,aerugites +aery,aeries +Γ¦sc,Γ¦scas +aeschynite,aeschynites +aesculapian staff,aesculapian staffs +aeshnid,aeshnids +aesthenosphere,aesthenospheres +Γ¦sthesia,Γ¦sthesiΓ¦,Γ¦sthesias +aesthesia,aesthesias +aesthesiometer,aesthesiometers +Γ¦sthesiometer,Γ¦sthesiometers +aesthesioneuroblastoma,aesthesioneuroblastomas +aesthesis,aestheses +Γ¦sthesis,Γ¦stheses +aesthetasc,aesthetascs +aesthete,aesthetes +Γ¦sthete,Γ¦sthetes +aesthetic,aesthetics +Γ¦sthetic,Γ¦sthetics +aesthetican,aestheticans +aesthetician,aestheticians +Γ¦sthetician,Γ¦stheticians +aestheticism,aestheticisms +aestheticist,aestheticists +Γ¦stheticist,Γ¦stheticists +Γ¦stheticization,Γ¦stheticizations +aesthetic surgeon,aesthetic surgeons +aesthetic surgery,aesthetic surgeries +Γ¦stimate,Γ¦stimates +aestivation,aestivations +Γ¦stivation,Γ¦stivations +Γ¦stuary,Γ¦stuaries +Aeta,Aetas,Aeta +aetheogam,aetheogams +aΓ«theogam,aΓ«theogams +Γ†thiop,Γ†thiops +Γ†thiopian,Γ†thiopians +aethrioscope,aethrioscopes +Γ¦thrioscope,Γ¦thrioscopes +Γ¦tiologist,Γ¦tiologists +Γ¦tiology,Γ¦tiologies +aetiopathogenesis,aetiopathogeneses +Aetolian,Aetolians +aetosaur,aetosaurs +aett,aettir,aetts +aeviternity,aeviternities +affability,affabilities +affabulation,affabulations +AFF,AFFs +affair,affairs +affaire d'honneur,affaires d'honneur +affect,affects +affectation,affectations +affectationist,affectationists +affect display,affect displays +affected,affecteds +affectee,affectees +affecter,affecters +affectionado,affectionados +affection,affections +affective disorder,affective disorders +affeerer,affeerers +affeerment,affeerments +Affenpinscher,Affenpinschers +afferent,afferents +affiance,affiances +affiancer,affiancers +affiant,affiants +affibody,affibodies +afficionado,afficionados +affidavit,affidavits +affiliate,affiliates +affiliate network,affiliate networks +affiliation,affiliations +affination,affinations +affine,affines +affine combination,affine combinations +affine group,affine groups +affine space,affine spaces +affine transformation,affine transformations +affineur,affineurs +affine variety,affine varieties +affinity,affinities +affinity card,affinity cards +affinity reagent,affinity reagents +affinization,affinizations +affinor,affinors +affirmant,affirmants +affirmation,affirmations +affirmative,affirmatives +affirmative defense,affirmative defenses +affirmative sentence,affirmative sentences +affirmer,affirmers +affix,affixes +affixation,affixations +affixative,affixatives +affixer,affixers +affixoid,affixoids +affixture,affixtures +afflation,afflations +afflatus,afflatuses +afflicter,afflicters +affliction,afflictions +affluent,affluents +affluential,affluentials +afflux,affluxes +affluxion,affluxions +affogato,affogati,affogatos +afforcement,afforcements +afforciament,afforciaments +affordable luxury,affordable luxuries +affordance,affordances +affordment,affordments +afformative,afformatives +affray,affrays +affrayer,affrayers +affreighter,affreighters +affreightment,affreightments +affret,affrets +affricate,affricates +affricative,affricatives +affriction,affrictions +affright,affrights +affrighter,affrighters +affront,affronts +affrontee,affrontees +affronter,affronters +affusion,affusions +affy,affies +afghan,afghans +Afghan,Afghans +Afghan hound,Afghan hounds +Afghan Hound,Afghan Hounds +afghani,afghanis +Afghani,Afghanis +Afghanisation,Afghanisations +Afghanistani,Afghanistanis +afghanite,afghanites +Afghanization,Afghanizations +afib,afibs +aficionada,aficionadas +aficionado,aficionados,aficionadi +afikoman,afikomans +afikomen,afikomens +aflagellate,aflagellates +A-flat,A-flats +aflatoxin,aflatoxins +AFOL,AFOLs +afoo yam,afoo yams +A-frame,A-frames +afreet,afreets +African,Africans +African American,African Americans +African-American,African-Americans +African anteater,African anteaters +African buffalo,African buffalos +African cherry orange,African cherry oranges +African clawed frog,African clawed frogs +African crake,African crakes +Africander,Africanders +African elephant,African elephants +African forest elephant,African forest elephants +African hunting dog,African hunting dogs +Africanism,Africanisms +Africanist,Africanists +Africanist dance,Africanist dances +African lily,African lilies +African mole cricket,African mole crickets +African penguin,African penguins +African sacred ibis,African sacred ibis,African sacred ibises +African savannah elephant,African savannah elephants +African traditionalist,African traditionalists +African violet,African violets +African wildcat,African wildcats +African wild dog,African wild dogs +Africoon,Africoons +Afrikaner,Afrikaners +Afrikanerism,Afrikanerisms +afrit,afrits +afrite,afrites +afro,afros +Afro-American,Afro-Americans +Afro-Argentine,Afro-Argentines +Afro-Argentinian,Afro-Argentinians +Afro-Caribbean,Afro-Caribbeans +Afro-Ecuadorian,Afro-Ecuadorians +Afro-Indian,Afro-Indians +Afrophile,Afrophiles +afrormosia,afrormosias +afrothere,afrotheres +afrotherian,afrotherians +AFSM,AFSMs +aftcastle,aftcastles +after-acquired title,after-acquired titles +afterbay,afterbays +afterbear,afterbears +afterbeat,afterbeats +afterbirth,afterbirths +afterbite,afterbites +after body,after bodies +afterbody,afterbodies +afterburden,afterburdens +afterburner,afterburners +afterburthen,afterburthens +after-cast,after-casts +aftercast,aftercasts +aftercastle,aftercastles +aftercataract,aftercataracts +after-clap,after-claps +afterclap,afterclaps +aftercome,aftercomes +after-comer,after-comers +aftercomer,aftercomers +aftercoming,aftercomings +aftercooler,aftercoolers +aftercourse,aftercourses +aftercrime,aftercrimes +aftercrop,aftercrops +afterdeal,afterdeals +afterdeck,afterdecks +afterdele,afterdeles +after-dinner speech,after-dinner speeches +afterdischarge,afterdischarges +after-effect,after-effects +afteregg,aftereggs +afterfeather,afterfeathers +aftergame,aftergames +after-glow,after-glows +afterglow,afterglows +aftergrowth,aftergrowths +afterguard,afterguards +after-image,after-images +afterimage,afterimages +after-impression,after-impressions +afterimpression,afterimpressions +afterlife,afterlives +afterling,afterlings +afterload,afterloads +aftermarket,aftermarkets +aftermath,aftermaths +aftermind,afterminds +afternoon,afternoons +afternoone,afternoones +afternoon tea,afternoon teas +afternote,afternotes +afterpain,afterpains +afterpart,afterparts +after-party,after-parties +afterparty,afterparties +afterpeak,afterpeaks +afterpiece,afterpieces +after-potential,after-potentials +afterpotential,afterpotentials +afterpulse,afterpulses +after-sail,after-sails +after school special,after school specials +after-school special,after-school specials +afterset,aftersets +aftershaft,aftershafts +after-shave,after-shaves +aftershave,aftershaves +aftershock,aftershocks +afterslip,afterslips +aftertale,aftertales +after taste,after tastes +after-taste,after-tastes +aftertaste,aftertastes +afterthought,afterthoughts +after-time,after-times +aftertime,aftertimes +after-wit,after-wits +afterword,afterwords +afterworld,afterworlds +AFV,AFVs +afwillite,afwillites +aga,agas +Aga,Agas +AGA cooker,AGA cookers +againrising,againrisings +againsaw,againsaws +againstism,againstisms +agal,agals +agama,agamas +A game,A games +agamete,agametes +agami,agamis +agamid,agamids +agamist,agamists +agammaglobulinaemia,agammaglobulinaemias +agammaglobulinemia,agammaglobulinemias +A-gang,A-gangs +agaonid,agaonids +agapanthus,agapanthuses +agape,agapae +agar-agar,agar-agars +agaric,agarics +agariciid,agariciids +agarick,agaricks +agaricologist,agaricologists +agaropectin,agaropectins +agarophyte,agarophytes +agarose,agaroses +Aga saga,Aga sagas +AGA saga,AGA sagas +agathodaemon,agathodaemons +agathodaimon,agathodaimons +agathodemon,agathodemons +agave,agaves +A-gay,A-gays +agbada,agbada,agbadas +age,ages +age distribution,age distributions +aged R-value,aged R-values +age group,age groups +ageing,ageings +ageist,ageists +agelast,agelasts +agelastatin,agelastatins +agelenid,agelenids +age limit,age limits +age-mate,age-mates +agemate,agemates +agency,agencies +agency credit memo,agency credit memos +agency debit memo,agency debit memos +agency shop,agency shops +agenda,agendas +agend,agends +agendum,agenda,agendums +ageneiosid,ageneiosids +agenesis,ageneses +agent,agents +agente provocateuse,agentes provocateuses +agente provocatrice,agentes provocatrices +agent general,agents general +agentive,agentives +a gentleman and a scholar,gentlemen and scholars +agent noun,agent nouns +agent participle,agent participles +agent provocateur,agents provocateurs +agentry,agentries +age of consent,ages of consent +age of majority,ages of majority +ager,agers +age rating,age ratings +ageratum,ageratums +age standardized rate,age standardized rates +ageusia,ageusias +ageusiac,ageusiacs +ageustia,ageustias +Aggadah,Aggadahs,Aggadah,Aggadot +aggeneration,aggenerations +agger,aggers +aggeration,aggerations +aggie,aggies +Aggie,Aggies +agglomerate,agglomerates +agglomeration,agglomerations +agglutin,agglutins +agglutinant,agglutinants +agglutination,agglutinations +agglutinin,agglutinins +agglutinogen,agglutinogens +aggradation,aggradations +aggrandisement,aggrandisements +aggrandization,aggrandizations +aggrandizement,aggrandizements +aggrandizer,aggrandizers +aggravation,aggravations +aggravative,aggravatives +aggrecanase,aggrecanases +aggregability,aggregabilities +aggregate,aggregates +aggregate fruit,aggregate fruits +aggregate species,aggregate species +aggregation,aggregations +aggregation number,aggregation numbers +aggregator,aggregators +aggregometer,aggregometers +aggresome,aggresomes +aggressin,aggressins +aggression,aggressions +aggressor,aggressors +aggrievance,aggrievances +aggriever,aggrievers +aggroupment,aggroupments +aggrupation,aggrupations +agha,aghas +agiary,agiaries +agile gibbon,agile gibbons +agile wallaby,agile wallabies +aginator,aginators +aging,agings +agio,agios +agiotage,agiotages +agio-toponym,agio-toponyms +agistator,agistators +agister,agisters +agistment,agistments +agistor,agistors +agitation,agitations +agitato,agitatos +agitator,agitators +agitatrix,agitatrices +agito,agitos +aglajid,aglajids +aglaonema,aglaonemas +aglet,aglets +aglycon,aglycons +aglycone,aglycones +aglyph,aglyphs +AGM,AGMs +AGN,AGNs +agnail,agnails +agnate,agnates +agnatha,agnathas +agnath,agnaths +agnathan,agnathans +agnihotra,agnihotras +agnomen,agnomina +agnomination,agnominations +agnosia,agnosias +agnostic,agnostics +agnostid,agnostids +agnus castus,agnus castuses +Agnus Dei,Agnus Deis,Agnus Dei +agoge,agoges +agogic,agogics +agogo,agogos +agogo bell,agogo bells +agogwe,agogwes +agon,agons,agones +agonic line,agonic lines +agonid,agonids +agonism,agonisms +agonist,agonists +agonistic monoclonal antibody,agonistic monoclonal antibodies +agonization,agonizations +agonothete,agonothetes +agonoxenid,agonoxenids +agony,agonies +agony aunt,agony aunts +agony box,agony boxes +agony uncle,agony uncles +agora,agorae,agoras +agora,agoroth +agoraphobe,agoraphobes +agoraphobia,agoraphobias +agoraphobiac,agoraphobiacs +agoraphobic,agoraphobics +agouara,agouaras +agouta,agoutas +agouti,agoutis +agouty,agouties +AGP,AGPs +agpaite,agpaites +agraff,agraffs +agraffe,agraffes +agrammatist,agrammatists +agranulocyte,agranulocytes +agrarian,agrarians +agrarian party,agrarian parties +agreeable,agreeables +agreement in principle,agreements in principle +agreer,agreers +agri-business,agri-businesses +agribusiness,agribusinesses +agribusinessman,agribusinessmen +agrichemical,agrichemicals +agricolist,agricolists +agricultor,agricultors +agricultural biodiversity,agricultural biodiversities +agricultural density,agricultural densities +agriculturalist,agriculturalists +agricultural lien,agricultural liens +agricultural revolution,agricultural revolutions +agricultural shot,agricultural shots +agriculture,agricultures +agriculturist,agriculturists +agriforest,agriforests +agriglyph,agriglyphs +agrimi,agrimis +agrimony,agrimonies +agrin,agrins +agriolimacid,agriolimacids +agriologist,agriologists +agrion,agrions +agriotype,agriotypes +agriproduct,agriproducts +agrisystem,agrisystems +agritourist,agritourists +agrobacterium,agrobacteria +agrobiologist,agrobiologists +agrochemical,agrochemicals +agrochemist,agrochemists +agroecosystem,agroecosystems +agroforest,agroforests +agrogorod,agrogorods +agroindustry,agroindustries +agroinfiltration,agroinfiltrations +agromyzid,agromyzids +agronomist,agronomists +agronomy,agronomies +agropastoralist,agropastoralists +agrophyte,agrophytes +agrostologist,agrostologists +agrosystem,agrosystems +agrotechnician,agrotechnicians +agroterrorist,agroterrorists +agroupment,agroupments +agrypnocoma,agrypnocomas +agrypnotic,agrypnotics +Agta,Agtas,Agta +agua de jamaica,agua de jamaicas +agua fresca,agua frescas +aguardiente,aguardientes +aguayo,aguayos +ague,agues +agueweed,agueweeds +aguilla,aguillas +agyrtid,agyrtids +AHA,AHAs +ah,ahs +ahamkara,ahamkaras +aha moment,aha moments +aha! moment,aha! moments +AHB,AHBs +a-h conduction time,a-h conduction times +ahem,ahems +ahemeral day,ahemeral days +aheylite,aheylites +ahh,ahhs +ahi,ahis +Ahl al-Quran,Ahl al-Qurans +Ahle Qur'an,Ahle Qur'ans +Ahle Quran,Ahle Qurans +Ahle-Quran,Ahle-Qurans +Ahli Quran,Ahli Qurans +ahlspiess,ahlspiessen +Ahlu Quran,Ahlu Qurans +Ahmadi,Ahmadis +Ahmadiyya,Ahmadiyyas +Ahmedabadi,Ahmedabadis +ahold,aholds +a-hole,a-holes +a**hole,a**holes +aholehole,aholehole,aholeholes +ahool,ahools +ahu,ahus +ahu,ahus +aia,aias +Ai,Ais +ai,ais,ai +aid,aids +aidance,aidances +aid-de-camp,aids-de-camp +aide,aides +aide-de-camp,aides-de-camp +aide dog,aide dogs +aide-mΓ©moire,aide-mΓ©moires +aider,aiders +aidid,aidids +aid-major,aid-majors +aidman,aidmen +AIDS baby,AIDS babies +AIDS cocktail,AIDS cocktails +AIDS ribbon,AIDS ribbons +aid worker,aid workers +aiel,aiels +aigialosaur,aigialosaurs +aiglet,aiglets +aigret,aigrets +aigrette,aigrettes +aiguille,aiguilles +aiguillette,aiguillettes +aigulet,aigulets +aikidoka,aikidoka +ail,ails +ail,ails +ailanthus,ailanthuses +ailantus,ailantuses +aileron,ailerons +ailette,ailettes +ailing,ailings +aillt,aillts +ailment,ailments +ailourophil,ailourophils +ailourophile,ailourophiles +ailurid,ailurids +ailurophil,ailurophils +ailurophile,ailurophiles +ailurophobe,ailurophobes +aim,aims +aimbot,aimbots +aimer,aimers +aioli,aiolis +air ambulance,air ambulances +airan,airans +air bag,air bags +airbag,airbags +air ball,air balls +airball,airballs +air base,air bases +airbase,airbases +air bed,air beds +airbed,airbeds +airbill,airbills +air bladder,air bladders +airblast,airblasts +air-blown asphalt,air-blown asphalts +airboat,airboats +airborne,airbornes,airborne +air bounce,air bounces +airbox,airboxes +air brake,air brakes +airbrake,airbrakes +airbreather,airbreathers +airbreathing catfish,airbreathing catfish,airbreathing catfishes +air brick,air bricks +airbrick,airbricks +air bridge,air bridges +airbridge,airbridges +air brush,air brushes +air-brush,air-brushes +airbrush,airbrushes +airbrusher,airbrushers +air bubble,air bubbles +air burst,air bursts +airburst,airbursts +airbus,airbusses,airbuses +air cadet,air cadets +aircar,aircars +air carrier,air carriers +air cell,air cells +air chamber,air chambers +aircheck,airchecks +Air Chief Marshal,Air Chief Marshals +air cleaner,air cleaners +air commodore,air commodores +Air Commodore,Air Commodores +air compressor,air compressors +air conditioner,air conditioners +air-conditioner,air-conditioners +airconditioner,airconditioners +air corridor,air corridors +aircraft,aircraft +aircraft attitude,aircraft attitudes +aircraft carrier,aircraft carriers +aircraft engine,aircraft engines +aircraftman,aircraftmen +aircraftsman,aircraftsmen +aircraftswoman,aircraftswomen +aircraftwoman,aircraftwomen +aircrane,aircranes +aircrew,aircrews +aircrewman,aircrewmen +air cushion,air cushions +air cushion vehicle,air cushion vehicles +air-cushion vehicle,air-cushion vehicles +'aircut,'aircuts +airdate,airdates +air display,air displays +airdock,airdocks +air drill,air drills +airdrome,airdromes +air-drop,air-drops +airdrop,airdrops +air duct,air ducts +aire,aires +airedale,airedales +Airedale,Airedales +Airedale Terrier,Airedale Terriers +air embolism,air embolisms +airer,airers +airfield,airfields +air filter,air filters +air flow,air flows +airflow,airflows +airfoil,airfoils +air force,air forces +airforce,airforces +airframe,airframes +airframer,airframers +air freshener,air fresheners +airgap,airgaps +airglow,airglows +air guitar,air guitars +air guitarist,air guitarists +air gun,air guns +airgun,airguns +airhead,airheads +airhead,airheads +air hole,air holes +airhole,airholes +airhorn,airhorns +air hostess,air hostesses +airing cupboard,airing cupboards +air intake,air intakes +air jacket,air jackets +air kiss,air kisses +air lane,air lanes +airlane,airlanes +air letter,air letters +airletter,airletters +air level,air levels +airlift,airlifts +airline,airlines +airliner,airliners +airling,airlings +airlock,airlocks +airmail,airmails +airman,airmen +air marshal,air marshals +Air Marshal,Air Marshals +air mass,air masses +airmass,airmasses +airmass source region,airmass source regions +air mattress,air mattresses +air mile,air miles +airmiss,airmisses +airometer,airometers +air parcel,air parcels +airpark,airparks +airpath,airpaths +airphone,airphones +air photo,air photos +airpipe,airpipes +air pirate,air pirates +air pistol,air pistols +airplane,airplanes +airplane mode,airplane modes +air plant,air plants +air pocket,air pockets +air pollutant,air pollutants +airport,airports +airport book,airport books +airport novel,airport novels +air potato,air potatoes +airprox,airproxes +air pump,air pumps +air-pump,air-pumps +air purifier,air purifiers +air quote,air quotes +air raid,air raids +air-raid shelter,air-raid shelters +air raid siren,air raid sirens +air-raid warden,air-raid wardens +air ride,air rides +air rifle,air rifles +airscoop,airscoops +air scooter,air scooters +airscrew,airscrews +air shaft,air shafts +airshaft,airshafts +air shed,air sheds +airshed,airsheds +airship,airships +air-shot,air-shots +air show,air shows +airshow,airshows +air shower,air showers +airshower,airshowers +airsickness,airsicknesses +air sign,air signs +air sock,air socks +air space,air spaces +airspace,airspaces +airspeed,airspeeds +airspeed indicator,airspeed indicators +air sport,air sports +airstair,airstairs +airstone,airstones +air stove,air stoves +airstream,airstreams +air strike,air strikes +airstrike,airstrikes +airstrip,airstrips +air superiority,air superiorities +air supremacy,air supremacies +air suspension,air suspensions +air tanker,air tankers +air taxi,air taxis +airtel,airtels +air terminal,air terminals +air ticket,air tickets +air time,air times +air-to-air missile,air-to-air missiles +air-to-surface missile,air-to-surface missiles +air traffic controller,air traffic controllers +air turborocket,air turborockets +air vent,air vents +air vice-marshal,air vice-marshals +Air Vice Marshal,Air Vice Marshals +Air Vice-Marshal,Air Vice-Marshals +airview,airviews +airwall,airwalls +airwave,airwaves +airway,airways +airwaybill,airwaybills +airwoman,airwomen +Airy beam,Airy beams +Airy equation,Airy equations +Airy function,Airy functions +aisle,aisles +ait,aits +aitch,aitches +aitchbone,aitchbones +aitiology,aitiologies +ajaraca,ajaracas +Ajar,Ajars +ajowan,ajowans +ajutage,ajutages +ajwain,ajwains +AK-47,AK-47s +AK47,AK47s +akaganΓ©ite,akaganΓ©ites +akageneite,akageneites +AK,AKs +akaryocyte,akaryocytes +akaryote,akaryotes +akashvani,akashvanis +Akbari,Akbaris +akdalaite,akdalaites +akebia,akebias +akee,akees +akela,akelas +Akela,Akelas +akene,akenes +akepiro,akepiros +aker,akers +akerid,akerids +aketon,aketons +Akhaian,Akhaians +akhara,akharas +akhtenskite,akhtenskites +akhund,akhunds +akiapolaau,akiapolaaus +akimotoite,akimotoites +Akkadian,Akkadians +Aklanon,Aklanons +akoasm,akoasms +akonting,akontings +akousma,akousmata +AKR,AKRs +akropolis,akropolises,akropoleis +akroposthion,akroposthions +aksaite,aksaites +Akubra,Akubras +akvavit,akvavits +akysid,akysids +Alaafin,Alaafins +ala,alae,alΓ¦ +Alabaman,Alabamans +Alabama wind chime,Alabama wind chimes +Alabamian,Alabamians +alabastron,alabastra +alabastrum,alabastra +alacrity,alacrities +Aladinist,Aladinists +alalonga,alalongas +alamethicin,alamethicins +alamo,alamos +alamode,alamodes +alan,alans +alanate,alanates +Γ…lander,Γ…landers +alane,alanes +alanine,alanines +alanylation,alanylations +alaph,alaphs +alar,alars +alar canal,alar canals +alar foramen,alar foramens +alarm bell,alarm bells +alarm-bell,alarm-bells +alarm clock,alarm clocks +alarmer,alarmers +alarmin,alarmins +alarmist,alarmists +alarm substance,alarm substances +alarm system,alarm systems +alarum,alarums +alas,alases,alasses +Alaska hand,Alaska hands +Alaskan,Alaskans +Alaskan Malamute,Alaskan Malamutes +alatae,alataes +alate,alates +alatern,alaterns +alaternus,alaternuses +alation,alations +alaudid,alaudids +alaunt,alaunts +Alawi,Alawis +Alawite,Alawites +alba,albas +alba,albas +albacore,albacores +alb,albs +albanerpetontid,albanerpetontids +Albanian,Albanians +Albanian,Albanians +Albanian,Albanians +Albanologist,Albanologists +albarello,albarelli +albaspine,albaspines +albatross,albatross,albatrosses +albedo,albedos +albedo feature,albedo features +albedometer,albedometers +albeluvisol,albeluvisols +albendazole,albendazoles +Alberta clipper,Alberta clippers +Albertan,Albertans +Albert chain,Albert chains +albertosaurine,albertosaurines +albertosaurus,albertosauruses +albertype,albertypes +albescence,albescences +albicore,albicores +albification,albifications +Albigeois,Albigeois +albiness,albinesses +albino,albinos,albinoes +albinoism,albinoisms +albite,albites +ALBM,ALBMs +alboll,albolls +albondiga,albondigas +Albright knot,Albright knots +albugo,albugos +albularyo,albularyos +albulid,albulids +album,albums,alba +albumenization,albumenizations +albumenoid,albumenoids +albumin,albumins +albuminate,albuminates +albuminimeter,albuminimeters +albuminization,albuminizations +albuminoid,albuminoids +albuminose,albuminoses +albumose,albumoses +album track,album tracks +albuneid,albuneids +Albuquerquean,Albuquerqueans +alburn,alburns +alcade,alcades +alcaic,alcaics +alcaid,alcaids +alcaide,alcaides +alcalde,alcaldes +alcalimeter,alcalimeters +alcarraza,alcarrazas +alcatote,alcatotes +alcavala,alcavalas +alcayde,alcaydes +alcazar,alcazars +alcedinid,alcedinids +alcelaphine,alcelaphines +alchemilla,alchemillas +alchemist,alchemists +alchie,alchies +alchymist,alchymists +alchymy,alchymies +alcid,alcids +alcmaeonid,alcmaeonids +alcmeonid,alcmeonids +alco,alcos +alcoate,alcoates +alcohate,alcohates +alcoholaemia,alcoholaemias +alcoholate,alcoholates +alcoholature,alcoholatures +alcohol-dependent,alcohol-dependents +alco-holic,alco-holics +alcoholic,alcoholics +alcoholist,alcoholists +alcoholization,alcoholizations +alcoholmeter,alcoholmeters +alcoholometer,alcoholometers +alcolock,alcolocks +Alcoranist,Alcoranists +alcove,alcoves +Alcubierre metric,Alcubierre metrics +alcyon,alcyons +alcyonarian,alcyonarians +alcyoniid,alcyoniids +alcyonium,alcyoniums +alcyonoid,alcyonoids +aldaric acid,aldaric acids +aldazine,aldazines +aldehyde,aldehydes +aldehyde oxidase,aldehyde oxidases +alder,alders +alderfly,alderflies +alderman,aldermen +aldermancy,aldermancies +aldermaness,aldermanesses +aldermanship,aldermanships +alderperson,alderpeople +alderwoman,alderwomen +aldgate,aldgates +aldimine,aldimines +alditol,alditols +aldofuranose,aldofuranoses +aldoheptonic acid,aldoheptonic acids +aldoheptose,aldoheptoses +aldohexonic acid,aldohexonic acids +aldohexose,aldohexoses +aldoketose,aldoketoses +aldol,aldols +aldolase,aldolases +aldolate,aldolates +aldolization,aldolizations +aldonate,aldonates +aldonic acid,aldonic acids +aldopentonic acid,aldopentonic acids +aldopentose,aldopentoses +aldopyranose,aldopyranoses +aldose,aldoses +aldosterone,aldosterones +aldosulose,aldosuloses +aldotetronic acid,aldotetronic acids +aldotetrose,aldotetroses +aldotrionic acid,aldotrionic acids +aldotriose,aldotrioses +aldoxime,aldoximes +alebench,alebenches +ale-bush,ale-bushes +alec,alecs +aleconner,aleconners +alec sauce,alec sauces +ale-draper,ale-drapers +alef,alefs +ale-house,ale-houses +alehouse,alehouses +ale-knight,ale-knights +alembic,alembics +alembication,alembications +alembick,alembicks +alendronate,alendronates +aleph,alephs +aleph number,aleph numbers +aleph-one,aleph-ones +alepidote,alepidotes +alΓ©pine,alΓ©pines +alepisaurid,alepisaurids +alepocephalid,alepocephalids +alepole,alepoles +ale post,ale posts +alerion,alerions +alert,alerts +aleshop,aleshops +alestake,alestakes +alestid,alestids +aletaster,aletasters +alethophobia,alethophobias +alethoscope,alethoscopes +aletophyte,aletophytes +aleurometer,aleurometers +aleuron,aleurons +aleuronaplast,aleuronaplasts +aleurone,aleurones +aleuroplast,aleuroplasts +Aleut,Aleuts +Aleutian,Aleutians +Aleutian Islander,Aleutian Islanders +A level,A levels +A-level,A-levels +alevin,alevins +alew,alews +alewife,alewives +alewife,alewives +alexander,alexanders +alexanders,alexanders +Alexander's band,Alexander's bands +Alexandrian Wiccan,Alexandrian Wiccans +alexandrine,alexandrines +alexin,alexins +alexine,alexines +alexipharmacum,alexipharmaca +alexipharmic,alexipharmics +alexiteric,alexiterics +aleyrodid,aleyrodids +alfa,alfas +alfalfa weevil,alfalfa weevils +'alf,'alves +alferes,alferes +alfet,alfets +alfisol,alfisols +Alford plea,Alford pleas +alforja,alforjas +AlfvΓ©n wave,AlfvΓ©n waves +alga,algae +algaculture,algacultures +algaecide,algaecides +algΓ¦cide,algΓ¦cides +algal,algals +algal bloom,algal blooms +algal mat,algal mats +algaroba,algarobas +algazel,algazels +algebraic closure,algebraic closures +algebraic equation,algebraic equations +algebraic function,algebraic functions +algebraic geometer,algebraic geometers +algebraic geometry,algebraic geometries +algebraic integer,algebraic integers +algebraic number,algebraic numbers +algebraic number field,algebraic number fields +algebraic structure,algebraic structures +algebraist,algebraists +algebraization,algebraizations +algebrization,algebrizations +algebroid,algebroids +Algerian,Algerians +Algerine,Algerines +algesia,algesias +algesimeter,algesimeters +algicide,algicides +algin,algins +alginate,alginates +alginic acid,alginic acids +algolagniac,algolagniacs +algologist,algologists +algometer,algometers +Algonkin,Algonkins +Algonquin,Algonquins +algophilia,algophilias +algophilist,algophilists +algorism,algorisms +algorithm,algorithms +algotherapist,algotherapists +alguazil,alguazils +alhajia,alhajias +alhaji,alhajis +alias,aliases +aliasing,aliasings +alibi,alibis +alicant,alicants +ALICE,ALICEs +Alice band,Alice bands +Alice B. Toklas brownie,Alice B. Toklas brownies +alickadoo,alickadoos +alicorn,alicorns +alicorn,alicorns +alicycle,alicycles +alidade,alidades +alief,aliefs +alien abduction,alien abductions +alien,aliens +alienans,alienantes,alienans +alienate,alienates +alienator,alienators +alienee,alienees +aliener,alieners +alienist,alienists +alien nucleic acid,alien nucleic acids +alienor,alienors +alien priory,alien priories +aliettite,aliettites +alif,alifs +a life of its own,lives of their own +A-lifer,A-lifers +aligner,aligners +alignment,alignments +alignment chart,alignment charts +alignment diagram,alignment diagrams +alikreukel,alikreukel +alim,alims +aliment,aliments +alimentary canal,alimentary canals +alimentation,alimentations +alimony,alimonies +A-line,A-lines +alineation,alineations +alinement,alinements +aliner,aliners +aliped,alipeds +aliphatic,aliphatics +aliphatic PVA,aliphatic PVAs +aliquant,aliquants +aliquot,aliquots +alismatid,alismatids +alisol,alisols +alisphenoid,alisphenoids +alist,alists +A-lister,A-listers +aliterate,aliterates +alitrunk,alitrunks +aliya,aliyas,aliyot +aliyah,aliyahs,aliyot +alizarin,alizarins +ALJ,ALJs +alkadiene,alkadienes +alkadienyl,alkadienyls +alkalamide,alkalamides +alkali,alkalies,alkalis +alkali flat,alkali flats +alkali metal,alkali metals +alkalimeter,alkalimeters +alkalimetry,alkalimetries +alkaline air,alkaline airs +alkaline,alkalines +alkaline battery,alkaline batteries +alkaline earth,alkaline earths +alkaline-earth,alkaline-earths +alkaline earth metal,alkaline earth metals +alkaline-earth metal,alkaline-earth metals +alkaline phosphatase,alkaline phosphatases +alkalinity,alkalinities +alkalinization,alkalinizations +alkalinophile,alkalinophiles +alkaliphile,alkaliphiles +alkalization,alkalizations +alkaloid,alkaloids +alkalophile,alkalophiles +alkane,alkanes +alkanediyl,alkanediyls +alkanethiol,alkanethiols +alkanium,alkaniums +alkanium ion,alkanium ions +alkanoate,alkanoates +alkanoic acid,alkanoic acids +alkanol,alkanols +alkanoyl,alkanoyls +alkatriene,alkatrienes +alkekengi,alkekengis +alkene,alkenes +alkenoate,alkenoates +alkenol,alkenols +alkenone,alkenones +alkenyl,alkenyls +alkenylation,alkenylations +alkie,alkies +alkoxide,alkoxides +alkoxyalcohol,alkoxyalcohols +alkoxy,alkoxys +alkoxyaluminum,alkoxyaluminums +alkoxyamine,alkoxyamines +alkoxylate,alkoxylates +alkoxylation,alkoxylations +alkoxysilane,alkoxysilanes +alky,alkies +alkyd,alkyds +alkyl,alkyls +alkylamine,alkylamines +alkylammonium,alkylammoniums +alkylarene,alkylarenes +alkylation,alkylations +alkylator,alkylators +alkylbenzene,alkylbenzenes +alkylborane,alkylboranes +alkylene,alkylenes +alkylglycine,alkylglycines +alkylidene,alkylidenes +alkylidyne,alkylidynes +alkyllysinase,alkyllysinases +alkylmetal,alkylmetals +alkylnitrate,alkylnitrates +alkyl nitrite,alkyl nitrites +alkyloxonium,alkyloxoniums +alkylphenol,alkylphenols +alkyl phosphate,alkyl phosphates +alkylphosphine,alkylphosphines +alkylpurine,alkylpurines +alkylsilane,alkylsilanes +alkylstibine,alkylstibines +alkyltransferase,alkyltransferases +alkylurea,alkylureas +alkynal,alkynals +alkynamide,alkynamides +alkyne,alkynes +alkynoate,alkynoates +alkynoic acid,alkynoic acids +alkynol,alkynols +alkynyl,alkynyls +alkynylation,alkynylations +all-American,all-Americans +allanite,allanites +allantoate,allantoates +allantoid,allantoids +allantoin,allantoins +allantoinase,allantoinases +allantois,allantoises,allantoides +allatectomy,allatectomies +allative,allatives +allative case,allative cases +allatostatin,allatostatins +allayer,allayers +allayment,allayments +all-day sucker,all-day suckers +allecret,allecrets +allectation,allectations +allective,allectives +allee,allees +allΓ©e,allΓ©es +allegation,allegations +allegator,allegators +allegeance,allegeances +allegeaunce,allegeaunces +allegement,allegements +alleger,allegers +allegiance,allegiances +allegiaunce,allegiaunces +allegorist,allegorists +allegorizer,allegorizers +allegory,allegories +allegretto,allegrettos +allegro,allegros +allele,alleles +allelicity,allelicities +allelochemical,allelochemicals +allelomorph,allelomorphs +alleluia,alleluias +alleluiah,alleluiahs +allemande,allemandes +Allemande Left,Allemande Lefts +allemontite,allemontites +Allen bolt,Allen bolts +allene,allenes +Allen key,Allen keys +allenoate,allenoates +allenoic acid,allenoic acids +allenol,allenols +allenolate,allenolates +Allen screw,Allen screws +Allen wrench,Allen wrenches +allenyl,allenyls +allenylamine,allenylamines +allenylidene,allenylidenes +allenylphosphine,allenylphosphines +allenylphosphonate,allenylphosphonates +allenylsilane,allenylsilanes +allenylthiol,allenylthiols +allergen,allergens +allergic,allergics +allergic response,allergic responses +allergin,allergins +allergist,allergists +allergologist,allergologists +allergology,allergologies +allergy,allergies +allerion,allerions +allethrin,allethrins +alleviant,alleviants +alleviation,alleviations +alleviative,alleviatives +alleviator,alleviators +alley,alleys +alley,alleys +alley cat,alley cats +alleycat,alleycats +alley oop,alley oops +alleyway,alleyways +All Fools' Day,All Fools' Days +allheal,allheals +alliant,alliants +alliaphage,alliaphages +alliaunce,alliaunces +allice,allices +alligation,alligations +alligator,alligators +alligator,alligators +alligator clip,alligator clips +alligator gar,alligator gars +alligatorid,alligatorids +alligatoroid,alligatoroids +alligator pear,alligator pears +all in,all ins +all-in,all-ins +all-in-one,all-in-ones +allision,allisions +alliteration,alliterations +alliterator,alliterators +allium,alliums +allmouth,allmouths +all nations,all nations +all-nighter,all-nighters +allnighter,allnighters +all-night-man,all-night-men +alloantibody,alloantibodies +alloantigen,alloantigens +allobar,allobars +allocatee,allocatees +allocation,allocations +allocator,allocators +allocatur,allocaturs +allochem,allochems +allocher,allochers +allocution,allocutions +allocyathin,allocyathins +allocycle,allocycles +allod,allods +allodial,allodials +allodialist,allodialists +allodial title,allodial titles +allodiary,allodiaries +allodium,allodia +allodizing,allodizings +alloenzyme,alloenzymes +allΕ“osis,allΕ“oses +allofam,allofams +alloform,alloforms +allograft,allografts +allograph,allographs +alloimmunity,alloimmunities +alloimmunization,alloimmunizations +allomone,allomones +allomorph,allomorphs +allomother,allomothers +allonge,allonges +allonym,allonyms +alloparent,alloparents +allopath,allopaths +allopathist,allopathists +allophone,allophones +allophycocyanin,allophycocyanins +allophycocyanine,allophycocyanines +alloplastic,alloplastics +alloploid,alloploids +allopolyploid,allopolyploids +allopolyploidisation,allopolyploidisations +allopolyploidization,allopolyploidizations +alloposid,alloposids +allopyranoside,allopyranosides +alloquy,alloquies +alloreactivity,alloreactivities +allosaur,allosaurs +allosaurid,allosaurids +allosauroid,allosauroids +allosaurus,allosauruses +allosome,allosomes +allotetraploid,allotetraploids +allothreonine,allothreonines +allotment,allotments +allotmenteer,allotmenteers +alloton,allotons +allotope,allotopes +allotopy,allotopies +allotransplant,allotransplants +allotransplantation,allotransplantations +allotriomorph,allotriomorphs +allotrope,allotropes +allotroph,allotrophs +allotropism,allotropisms +allotropy,allotropies +allottee,allottees +allotter,allotters +allottery,allotteries +allotype,allotypes +all-outer,all-outers +allowance,allowances +allowaunce,allowaunces +allower,allowers +alloxanate,alloxanates +alloy,alloys +alloying element,alloying elements +alloy wheel,alloy wheels +allozyme,allozymes +all-points bulletin,all-points bulletins +all rounder,all rounders +all-rounder,all-rounders +allrounder,allrounders +all-seater stadium,all-seater stadiums +allseed,allseeds +all-seeing eye,all-seeing eyes +all-star,all-stars +all the world,all the world +alluaudite,alluaudites +allumette,allumettes +alluminor,alluminors +all-up service,all-up services +all-up weight,all-up weights +allurement,allurements +allurer,allurers +alluring,allurings +allusion,allusions +alluvial,alluvials +alluvial fan,alluvial fans +alluvial plain,alluvial plains +alluviation,alluviations +alluvium,alluviums,alluvia +ally,allies +ally,allies +allyboration,allyborations +allyl,allyls +allylamine,allylamines +allylamino,allylaminos +allylate,allylates +allylation,allylations +allylborane,allylboranes +allylboration,allylborations +allylnickel,allylnickels +allylpalladium,allylpalladiums +allylphenol,allylphenols +allylphosphine,allylphosphines +allylsilane,allylsilanes +allylzinc,allylzincs +alma,almas,alma +almacantar,almacantars +almadia,almadias +almadie,almadies +almadraba,almadrabas +almagest,almagests +almah,almahs,almah +Almain,Almains +alma mater,almae matres,alma maters +almanac,almanacs +almanack,almanacks +almandine,almandines +almandite,almandites +alme,almes +almeh,almehs +almendron,almendrons +almery,almeries +almid,almids +almiqui,almiquis +almirah,almirahs +almner,almners +almond furnace,almond furnaces +almondine,almondines +almond tree,almond trees +almoner,almoners +almonry,almonries +almose,almoses +almost,almosts +almry,almries +alms,alms +almsdeed,almsdeeds +almsgiver,almsgivers +almsgiving,almsgivings +almshouse,almshouses +almsman,almsmen +almswoman,almswomen +almucantar,almucantars +almuce,almuces +almude,almudes +alnage,alnages +alnager,alnagers +alnico,alnicos +alocasia,alocasias +alodyne,alodynes +aloe,aloes +aloeid,aloeids +aloetic,aloetics +Alogian,Alogians +aloha,alohas +aloha shirt,aloha shirts +aloid,aloids +alongshoreman,alongshoremen +aloo,aloos +aloo gosht,aloo goshts +alopiid,alopiids +alosa,alosas +alose,aloses +alouatte,alouattes +alpaca,alpaca,alpacas +alpaco,alpacos +alp,alps +alpenglow,alpenglows +alpenhorn,alpenhorns +alpenrose,alpenroses +alpenstock,alpenstocks +alpha-amino acid,alpha-amino acids +alphabet,alphabets +alphabetarian,alphabetarians +alphabeticalism,alphabeticalisms +alphabetical order,alphabetical orders +alphabetician,alphabeticians +alphabetisation,alphabetisations +alphabetiser,alphabetisers +alphabetism,alphabetisms +alphabetist,alphabetists +alphabetization,alphabetizations +alphabetizer,alphabetizers +alphabet soup,alphabet soups +alpha-blocker,alpha-blockers +alpha carbon,alpha carbons +alpha channel,alpha channels +alpha decay,alpha decays +alpha-d-galactosidase,alpha-d-galactosidases +alpha dog,alpha dogs +alpha emitter,alpha emitters +alpha error,alpha errors +alpha female,alpha females +alpha geek,alpha geeks +alphagram,alphagrams +alpha helix,alpha helixes,alpha helices +alphaherpesvirus,alphaherpesviruses +alpha-hydroxy acid,alpha-hydroxy acids +alpha-lactam,alpha-lactams +alpha male,alpha males +alphametic,alphametics +alphanumeric,alphanumerics +alpha particle,alpha particles +alpha privative,alpha privatives +alpha privativum,alpha privata +alphaproteobacterium,alphaproteobacteria +alpha ray,alpha rays +alphasyllabary,alphasyllabaries +alpha version,alpha versions +alphavirus,alphaviruses +alpha wave,alpha waves +alpheid,alpheids +alpheid shrimp,alpheid shrimps +alphette,alphettes +alphorn,alphorns +alpine,alpines +alpine bullhead,alpine bullheads +alpine chough,alpine choughs +alpine newt,alpine newts +alpinist,alpinists +alsatian,alsatians +Alsatian,Alsatians +alsike,alsikes +also-ran,also-rans +alt,alts +Alt,Alts +altarage,altarages +altar,altars +altar bell,altar bells +altar boy,altar boys +altar card,altar cards +altar girl,altar girls +altarist,altarists +altarpiece,altarpieces +altar poem,altar poems +altar screen,altar screens +altar wine,altar wines +altazimuth,altazimuths +altbier,altbiers +altcoin,altcoins +altepetl,altepetls +alterable,alterables +alterant,alterants +alteration,alterations +alterative,alteratives +altercation,altercations +altered,altereds +alter ego,alter egos +alter-ego,alter-egos +alterer,alterers +alternant,alternants +alternanthera,alternantheras +alternate,alternates +alterna-teen,alterna-teens +alternateen,alternateens +alternate generation,alternate generations +alternate universe,alternate universes +alternating current,alternating currents +alternating function,alternating functions +alternating group,alternating groups +alternating knot,alternating knots +alternation,alternations +alternative algebra,alternative algebras +alternative,alternatives +alternative hypothesis,alternative hypotheses +alternative lifestyle,alternative lifestyles +alternative RNA splicing,alternative RNA splicings +alternative universe,alternative universes +alternative vote,alternative votes +alternator,alternators +alternity,alternities +althea,altheas +althorn,althorns +altie,alties +altigraph,altigraphs +altimeter,altimeters +altimetre,altimetres +altiplanation,altiplanations +altiplano,altiplanos +altiscope,altiscopes +altissimo,altissimos +altitude,altitudes +alt key,alt keys +alto,altos +alto clef,alto clefs +altocumulus,altocumuli +altohyrtin,altohyrtins +altoist,altoists +altometer,altometers +alto-relievo,alto-relievos +alto-rilievo,alto-rilievos +alto saxophone,alto saxophones +altostratus,altostrati +altrigenderism,altrigenderisms +altropyranoside,altropyranosides +altrose,altroses +altruism,altruisms +altruist,altruists +alt-weekly,alt-weeklies +alucitid,alucitids +aludel,aludels +alula,alulae,alulas +alum,alums +alum,alums +alumina,aluminas +aluminate,aluminates +aluminide,aluminides +aluminium bronze,aluminium bronzes +aluminium gallium arsenide,aluminium gallium arsenides +aluminium shower,aluminium showers +aluminium silicate,aluminium silicates +aluminocopiapite,aluminocopiapites +aluminophosphate,aluminophosphates +aluminosilicate,aluminosilicates +aluminotype,aluminotypes +aluminoxane,aluminoxanes +aluminum foil,aluminum foils +aluminum hydroxide,aluminum hydroxides +aluminum shower,aluminum showers +aluminum silicate,aluminum silicates +alumna,alumnae +alumn,alumns +alumni association,alumni associations +alumnus,alumni +alumosilicate,alumosilicates +alumroot,alumroots +alum stone,alum stones +alunqua,alunquas +alure,alures +Aluredian,Aluredians +alvarezsaurian,alvarezsaurians +alvarezsaurid,alvarezsaurids +alvarezsauroid,alvarezsauroids +alveary,alvearies +alveolar,alveolars +alveolar bone,alveolar bones +alveolar ridge,alveolar ridges +alveolate,alveolates +alveole,alveoles +alveolinid,alveolinids +alveoloplasty,alveoloplasties +alveolus,alveoli +alveus,alvei +alvinellid,alvinellids +alvinocarid,alvinocarids +alvite,alvites +alydid,alydids +alysoid,alysoids +alyssum,alyssums +ama,amas +amacrine,amacrines +amadan,amadans +amadavat,amadavats +amadawn,amadawns +Amadori compound,Amadori compounds +amaduvad,amaduvads +amah,amahs +Amalekite,Amalekites +amalgam,amalgams +amalgamation,amalgamations +amalgamator,amalgamators +amalgam tattoo,amalgam tattoos +amaltheid,amaltheids +Amami rabbit,Amami rabbits +'am,'ams +amandine,amandines +amanita,amanitas +amanitin,amanitins +amanitine,amanitines +amantadine,amantadines +amanuensis,amanuenses +amapakati,amapakatis +amarant,amarants +amaranth,amaranths +amaranthus,amaranthuses +amaretto sour,amaretto sours +amaryllis,amaryllises +amass,amasses +amasser,amassers +amastigote,amastigotes +amastrid,amastrids +amate,amates +amateur,amateurs +amateur hour,amateur hours +amateur night,amateur nights +Amati,Amatis +amatoxin,amatoxins +amaurobiid,amaurobiids +amaurosis,amauroses +amauti,amautis +amavadin,amavadins +Amazigh,Amazighs +amazon,amazons +Amazon,Amazons +Amazon,Amazons +Amazonian,Amazonians +Amazonian antshrike,Amazonian antshrikes +amazonite,amazonites +Amazon lily,Amazon lilies +Amazon milk frog,Amazon milk frogs +Amazonomachy,Amazonomachies +amazonstone,amazonstones +ambage,ambages +amb,ambs +amban,ambans,ambasa +ambarella,ambarellas +ambassade,ambassades +ambassador,ambassadors +ambassador of Morocco,ambassadors of Morocco +ambassadorship,ambassadorships +ambassadour,ambassadours +ambassadress,ambassadresses +ambassadrix,ambassadrices +ambassid,ambassids +ambassy,ambassies +amber alert,amber alerts +amberfish,amberfishes,amberfish +amber gambler,amber gamblers +amberjack,amberjacks +amber light,amber lights +amber seed,amber seeds +amber tree,amber trees +ambiance,ambiances +ambidexter,ambidexters +ambience,ambiences +ambient,ambients +ambient device,ambient devices +ambient findability,ambient findabilities +ambient pressure,ambient pressures +ambifix,ambifixes +ambigram,ambigrams +ambigu,ambigus +ambiguation,ambiguations +ambiguine,ambiguines +ambiloquy,ambiloquies +ambiposition,ambipositions +ambisexual,ambisexuals +ambit,ambits +ambit claim,ambit claims +ambitionist,ambitionists +ambitus,ambituses +ambiversion,ambiversions +ambivert,ambiverts +amble,ambles +ambler,amblers +amblycipitid,amblycipitids +amblyope,amblyopes +amblyopia,amblyopias +amblyopsid,amblyopsids +amblyopy,amblyopies +amblyoscope,amblyoscopes +amblypygid,amblypygids +amblystomid,amblystomids +ambo,ambos +ambo,ambos,ambones +amboceptor,amboceptors +ambodexter,ambodexters +ambon,ambons +ambonoclast,ambonoclasts +Ambot,Ambots +amboyna,amboynas +ambreate,ambreates +ambrette,ambrettes +ambrosin,ambrosins +ambrotype,ambrotypes +ambry,ambries +ambulacral,ambulacrals +ambulacrum,ambulacrums,ambulacra +ambulance,ambulances +ambulance chaser,ambulance chasers +ambulanceman,ambulancemen +ambulancewoman,ambulancewomen +ambulation,ambulations +ambulator,ambulators +ambulatory,ambulatories +ambulette,ambulettes +ambulocetid,ambulocetids +ambury,amburies +ambuscade,ambuscades +ambuscader,ambuscaders +ambuscado,ambuscados,ambuscadoes +ambush,ambushes +ambushee,ambushees +ambusher,ambushers +ambushing,ambushings +ambushment,ambushments +ambustion,ambustions +amby,ambies +ambystomatid,ambystomatids +ambystomid,ambystomids +amdram,amdrams +ameba,amebas,amebae +amebiasis,amebiases +amebicide,amebicides +amebocyte,amebocytes +ameboma,amebomas,amebomata +Ameche,Ameches +ameer,ameers +ameerate,ameerates +amel,amels +amelanosis,amelanoses +ameliorant,ameliorants +amelioration,ameliorations +ameliorator,ameliorators +ameloblast,ameloblasts +ameloblastin,ameloblastins +ameloblastoma,ameloblastomas,ameloblastomata +amelogenesis,amelogeneses +amelotin,amelotins +amelus,ameli +amenability,amenabilities +amen,amens +amen curler,amen curlers +amendation,amendations +amender,amenders +amendment,amendments +amenity,amenities +amenorrheic,amenorrheics +amenorrhoeic,amenorrhoeics +ament,aments +amentum,amenta +Amerasian,Amerasians +amercement,amercements +amercement royal,amercements royal +amercer,amercers +amerciament,amerciaments +American,Americans +American badger,American badgers +American basswood,American basswoods +American beaver,American beavers +American beech,American beeches +American bison,American bison,American bisons +American bittern,American bitterns +American black vulture,American black vultures +American Bobtail,American Bobtails +American breakfast,American breakfasts +American Bulldog,American Bulldogs +American cocker spaniel,American cocker spaniels +American cockroach,American cockroaches +American Curl,American Curls +American dun-bar,American dun-bars +American eagle,American eagles +American golden plover,American golden plovers +Americanian,Americanians +American Indian,American Indians +Americanisation,Americanisations +Americanist,Americanists +americanization,americanizations +Americanization,Americanizations +Americanizer,Americanizers +American jay,American jays +American kestrel,American kestrels +American Keuda,American Keudas +American laurel,American laurels +American mink,American minks,American mink +American night heron,American night herons +americano,americanos +Americanologist,Americanologists +American option,American options +American ostrich,American ostriches +American painted lady,American painted ladies +American planetree,American planetrees +American robin,American robins +American Saddlebred,American Saddlebreds +American Shorthair,American Shorthairs +American sweetgum,American sweetgums +American sycamore,American sycamores +American white birch,American white birches +American widgeon,American widgeons +American Wirehair,American Wirehairs +American woodcock,American woodcocks +Americophile,Americophiles +Americunt,Americunts +americyl,americyls +Amerikkkan,Amerikkkans +Amerind,Amerinds +Amerindian,Amerindians +amero,ameros +ameroseiid,ameroseiids +Amesha Spenta,Amesha Spenta,Amesha Spentas +amess,amesses +amethodist,amethodists +amethyst,amethysts +ametrine,ametrines +ametropia,ametropias +amfetamine,amfetamines +amia,amias +AMI,AMIs +amicable number,amicable numbers +amicable suit,amicable suits +amic acid,amic acids +amice,amices +amicicide,amicicides +amicus,amici +amicus curiae,amici curiae +amidation,amidations +amide,amides +amide hydrazone,amide hydrazones +amidification,amidifications +amidine,amidines +amidino,amidinos +amidinotransferase,amidinotransferases +amidium ion,amidium ions +amido,amidos +amidoamine,amidoamines +amidocuprate,amidocuprates +amidoligase,amidoligases +amidotransferase,amidotransferases +amidoxime,amidoximes +amidrazone,amidrazones +amigurumi,amigurumi +amiid,amiids +amillennialist,amillennialists +amimia,amimias +aminadab,aminadabs +aminal,aminals +aminase,aminases +amination,aminations +amine,amines +aminediyl,aminediyls +amine imide,amine imides +amine oxide,amine oxides +amine scrubber,amine scrubbers +amine ylide,amine ylides +aminimide,aminimides +aminium,aminiums +aminium ion,aminium ions +aminoacetonitrile,aminoacetonitriles +amino acid,amino acids +aminoacid,aminoacids +aminoacidemia,aminoacidemias +aminoacyl,aminoacyls +aminoacylate,aminoacylates +aminoacylation,aminoacylations +aminoacyl tRNA synthetase,aminoacyl tRNA synthetases +aminoadenosine,aminoadenosines +aminoadipate,aminoadipates +aminoadipic acid,aminoadipic acids +amino alcohol,amino alcohols +amino aldehyde,amino aldehydes +aminoalkoxy,aminoalkoxys +aminoalkyl,aminoalkyls +aminoamide,aminoamides +aminoarabinose,aminoarabinoses +aminobenzoate,aminobenzoates +aminobenzoic acid,aminobenzoic acids +aminobutanoate,aminobutanoates +aminobutyl,aminobutyls +aminobutyrate,aminobutyrates +aminocaproic acid,aminocaproic acids +amino carbohydrate,amino carbohydrates +aminocarbonyl,aminocarbonyls +aminochromone,aminochromones +aminocyclopropanecarboxylate,aminocyclopropanecarboxylates +aminodeoxysugar,aminodeoxysugars +aminodiphosphine,aminodiphosphines +aminoester,aminoesters +aminoethoxy,aminoethoxys +aminoethyl,aminoethyls +aminoglycan,aminoglycans +aminoglycoside,aminoglycosides +aminogram,aminograms +aminohexanoate,aminohexanoates +aminohexanoic acid,aminohexanoic acids +aminohexyl,aminohexyls +aminohydrolase,aminohydrolases +aminohydroxylation,aminohydroxylations +aminoimidazole,aminoimidazoles +aminoindanol,aminoindanols +aminoindazole,aminoindazoles +aminoisobutyric acid,aminoisobutyric acids +aminolaevulinic acid,aminolaevulinic acids +aminolevulinate,aminolevulinates +aminolevulinic acid,aminolevulinic acids +aminolysis,aminolyses +aminomethoxy,aminomethoxys +aminomethyl,aminomethyls +aminomethylation,aminomethylations +aminomethyltransferase,aminomethyltransferases +aminonaphthol,aminonaphthols +aminonicotinamide,aminonicotinamides +aminonitrene,aminonitrenes +aminonitrile,aminonitriles +aminonucleoside,aminonucleosides +aminooxy,aminooxys +aminopenicillin,aminopenicillins +aminopeptidase,aminopeptidases +aminophenanthrene,aminophenanthrenes +aminophenol,aminophenols +aminophenyl,aminophenyls +aminophosphine,aminophosphines +aminophospholipid,aminophospholipids +aminophosphonate,aminophosphonates +aminoplastic,aminoplastics +aminopropanal,aminopropanals +aminopropanol,aminopropanols +aminopropyl,aminopropyls +aminopyridine,aminopyridines +aminopyrimidine,aminopyrimidines +A-minor,A-minors +aminosaccharide,aminosaccharides +aminosalicylate,aminosalicylates +aminosalicylic acid,aminosalicylic acids +aminoshikimate,aminoshikimates +aminosiloxydiene,aminosiloxydienes +aminosteroid,aminosteroids +aminosterol,aminosterols +amino sugar,amino sugars +aminosugar,aminosugars +aminotetralin,aminotetralins +aminotransferase,aminotransferases +aminoxide,aminoxides +aminoxyl,aminoxyls +aminoxylation,aminoxylations +aminoxyl radical,aminoxyl radicals +A minus,A minuses +aminyl,aminyls +aminylene,aminylenes +aminyl oxide,aminyl oxides +aminyl radical,aminyl radicals +amioid,amioids +amir,amirs +amirate,amirates +amiss,amisses +amitosis,amitoses +amitryptiline,amitryptilines +amity,amities +amla,amlas +amlah,amlahs +amma,ammas +amma,ammas +'ammer,'ammers +ammer,ammers +ammeter,ammeters +ammetre,ammetres +ammine,ammines +ammiral,ammirals +ammocoete,ammocoetes +ammodyte,ammodytes +ammodytid,ammodytids +ammolite,ammolites +ammoniate,ammoniates +ammoniation,ammoniations +ammonifier,ammonifiers +ammonite,ammonites +Ammonite,Ammonites +ammonium carbamate,ammonium carbamates +ammonium imine,ammonium imines +ammonium phosphatide,ammonium phosphatides +ammoniumyl,ammoniumyls +ammonium ylide,ammonium ylides +ammonoid,ammonoids +ammonolysis,ammonylyses +ammotrechid,ammotrechids +ammoxenid,ammoxenids +ammoxidation,ammoxidations +AMN,AMNs +amnesia,amnesias,amnesiΓ¦ +amnesiac,amnesiacs +amnesic,amnesics +amnesty,amnesties +amnicolid,amnicolids +amnicolist,amnicolists +amnihook,amnihooks +amniocentesis,amniocenteses +amniochorion,amniochorions +amniocyte,amniocytes +amnioinfusion,amnioinfusions +amnion,amnions,amnia +amnioscope,amnioscopes +amnioscopy,amnioscopies +amniote,amniotes +amniotic fluid,amniotic fluids +amniotic fluid embolism,amniotic fluid embolisms +amniotic sac,amniotic sacs +amniotomy,amniotomies +amoeba,amoebae,amoebas +amΕ“ba,amΕ“bas,amΕ“bΓ¦ +amoebaeum,amoebaea +amoebian,amoebians +amoebiasis,amoebiases +amoebicide,amoebicides +amΕ“bicide,amΕ“bicides +amoebid,amoebids +amoebocyte,amoebocytes +amΕ“bocyte,amΕ“bocytes +amoeboflagellate,amoeboflagellates +amoeboid,amoeboids +amΕ“boid,amΕ“boids +amoeboma,amoebomas,amoebomata +amoebozoan,amoebozoans +amΕ“bula,amΕ“bulas,amΕ“bulΓ¦ +amΕ“nity,amΕ“nities +amok,amoks +amole,amoles +amomum,amomums +amontillado,amontillados +amoralist,amoralists +amorality,amoralities +Amor,Amors +amoret,amorets +amorette,amorettes +amoretto,amorettos,amoretti +amorist,amorists +Amorite,Amorites +amorosa,amorosas +amoroso,amorosos,amorosi +amorpha,amorphas +amorph,amorphs +amorphisation,amorphisations +amorphism,amorphisms +amorphization,amorphizations +amorphoscelid,amorphoscelids +amortisation,amortisations +amortisseur winding,amortisseur windings +amosite,amosites +amount,amounts +amour,amours +amourist,amourists +ampacity,ampacities +ampakine,ampakines +ampallang,ampallangs +amp,amps +ampeliscid,ampeliscids +ampelite,ampelites +ampelographer,ampelographers +ampelopsin,ampelopsins +ampelopsis,ampelopsis +amperage,amperages +amper,ampers +ampere,amperes +ampΓ¨re,ampΓ¨res +ampere-hour,ampere-hours +amperemeter,amperemeters +amperemetre,amperemetres +ampere-turn,ampere-turns +amperometer,amperometers +ampersand,ampersands +ampersat,ampersats +ampharetid,ampharetids +amphenicol,amphenicols +amphiarthrosis,amphiarthroses +amphiaster,amphiasters +amphibamid,amphibamids +amphibian,amphibians +amphibious car,amphibious cars +amphibium,amphibiums,amphibia +amphibole,amphiboles +amphibolid,amphibolids +amphibolite,amphibolites +amphibology,amphibologies +amphiboly,amphibolies +amphibrach,amphibrachs +amphicrania,amphicranias +Amphictyon,Amphictyons +amphictyony,amphictyonies +amphicyonid,amphicyonids +amphid,amphids +amphidinolide,amphidinolides +amphidiploid,amphidiploids +amphidisc,amphidiscs +amphidontid,amphidontids +amphientomid,amphientomids +amphigen,amphigens +amphignathodontid,amphignathodontids +amphigory,amphigories +amphilestid,amphilestids +amphiliid,amphiliids +amphilinid,amphilinids +amphilochid,amphilochids +amphilogy,amphilogies +amphimacer,amphimacers +amphinectid,amphinectids +amphinomid,amphinomids +amphioxus,amphioxuses,amphioxi +amphipath,amphipaths +amphiphile,amphiphiles +amphiphysin,amphiphysins +amphiphyte,amphiphytes +amphipod,amphipods +amphiprostyle,amphiprostyles +amphipsocid,amphipsocids +amphipterygid,amphipterygids +amphisbΓ¦na,amphisbΓ¦nΓ¦,amphisbΓ¦nas +amphisbaena,amphisbaenas +amphisbaenid,amphisbaenids +amphiscian,amphiscians +amphisome,amphisomes +amphitheater,amphitheaters +amphitheatre,amphitheatres +amphitheriid,amphitheriids +amphitretid,amphitretids +amphitrite,amphitrites +amphiuma,amphiumas +amphiumid,amphiumids +amphiurid,amphiurids +amphizoid,amphizoids +amphoion,amphoions +ampholyte,ampholytes +amphophile,amphophiles +amphora,amphorae,amphoras +amphoriscid,amphoriscids +amphotericin,amphotericins +amp-hr,amp-hrs +amphtrack,amphtracks +ampliation,ampliations +amplicon,amplicons +amplidyne,amplidynes +amplificant,amplificants +amplification,amplifications +amplifier,amplifiers +amplimer,amplimers +&lit,&lits +amplitude,amplitudes +amplitude modulation,amplitude modulations +amplituhedron,amplituhedrons +ampoule,ampoules +ampul,ampuls +ampule,ampules +ampulicid,ampulicids +ampulla,ampullas,ampullae +ampulla of Lorenzini,ampullae of Lorenzini +ampulla of Vater,ampullas of Vater,ampullae of Vater +ampullar abortion,ampullar abortions +ampullariid,ampullariids +ampullinid,ampullinids +amputation,amputations +amputator,amputators +amputee,amputees +amrell,amrells +Amsterdamer,Amsterdamers +Amsterdam pound,Amsterdam pounds +amtrac,amtracs +amtrak,amtraks +amulet,amulets +amulette,amulettes +amurca,amurcas +Amur leopard,Amur leopards +amusement arcade,amusement arcades +amusement park,amusement parks +amuser,amusers +amusette,amusettes +amusia,amusias +AMV,AMVs +amygdala,amygdalas,amygdalae +amygdalohippocampectomy,amygdalohippocampectomies +amygdaloid,amygdaloids +amygdalotomy,amygdalotomies +amygdule,amygdules +Amy-John,Amy-Johns +amyl,amyls +amylase,amylases +amylate,amylates +amylene,amylenes +amylobacter,amylobacters +amyloglucosidase,amyloglucosidases +amyloid,amyloids +amyloidosis,amyloidoses +amylopectin,amylopectins +amyloplast,amyloplasts +amylopsin,amylopsins +amylopullulanase,amylopullulanases +amylose,amyloses +amynodontid,amynodontids +amyotrophy,amyotrophies +Amyraldism,Amyraldisms +amyrin,amyrins +amyss,amysses +ana,anas +anabantid,anabantids +anabantoid,anabantoids +anabaptist,anabaptists +Anabaptist,Anabaptists +Anabaptistry,Anabaptistries +anabasis,anabases +anabathrid,anabathrids +anabatic wind,anabatic winds +anabiosis,anabioses +anablepid,anablepids +anabolic,anabolics +anabolic steroid,anabolic steroids +anabranch,anabranches +anacanthobatid,anacanthobatids +anacardic acid,anacardic acids +anacathartic,anacathartics +anachoret,anachorets +anachorete,anachoretes +anachorite,anachorites +anachronism,anachronisms +anaclasis,anaclases +anaclastic glass,anaclastic glasses +anaclitism,anaclitisms +anacolouthon,anacoloutha,anacolouthons +anacoluthia,anacoluthias +anacoluthon,anacolutha,anacoluthons +anaconda,anacondas +anacoracid,anacoracids +anacreontic,anacreontics +Anacreontic,Anacreontics +anacronym,anacronyms +anacrusis,anacruses +anadem,anadems +anadrom,anadroms +anadrome,anadromes +anaerobe,anaerobes +anaerobicide,anaerobicides +anaerobiosis,anaerobioses +anaesthesiologist,anaesthesiologists +anaesthete,anaesthetes +anΓ¦sthete,anΓ¦sthetes +anaesthetic,anaesthetics +anΓ¦sthetic,anΓ¦sthetics +anaesthetician,anaestheticians +anΓ¦sthetician,anΓ¦stheticians +anaesthetist,anaesthetists +anΓ¦sthetist,anΓ¦sthetists +anaesthetization,anaesthetizations +anΓ¦sthetization,anΓ¦sthetizations +anagen,anagens +anaglyph,anaglyphs +anaglyphic,anaglyphics +anaglypta,anaglyptas +anagnorisis,anagnorises +anagoge,anagoges +anagogy,anagogies +anagram,anagrams +anagram dictionary,anagram dictionaries +anagrammatism,anagrammatisms +anagrammatist,anagrammatists +anagramme,anagrammes +anagraph,anagraphs +anagrind,anagrinds +anaheim,anaheims +anal bead,anal beads +anal cleft,anal clefts +analemma,analemmas,analemmata +analepsis,analepses +analeptic,analeptics +anal fin,anal fins +analgesia,analgesias +analgesic,analgesics +analgetic,analgetics +anal gland,anal glands +anality,analities +analog,analogs +analog clock,analog clocks +analog computer,analog computers +Analogeticist,Analogeticists +analogism,analogisms +analogist,analogists +analogization,analogizations +analogon,analoga +analogous pole,analogous poles +analog signal,analog signals +analog-to-digital converter,analog-to-digital converters +analogue,analogues +analogue watch,analogue watches +analog watch,analog watches +analogy,analogies +analphabet,analphabets +anal pore,anal pores +anal sac expression,anal sac expressions +anal sphincter,anal sphincters +analysand,analysands +analyser,analysers +analyst,analysts +analyst programmer,analyst programmers +analyte,analytes +analytical engine,analytical engines +analytical entry,analytical entries +analytic continuation,analytic continuations +analytic function,analytic functions +analyzand,analyzands +analyzer,analyzers +analyzis,analyzes +anamixid,anamixids +anamonic,anamonics +anamorph,anamorphs +anamorphism,anamorphisms +anamorphoscope,anamorphoscopes +anamorphosis,anamorphoses +ananas,ananasses +anancy,anancies +anangeon,anangea,anageons +an,ans +ananym,ananyms +anapaest,anapaests +anapΓ¦st,anapΓ¦sts +anapaestic,anapaestics +anapest,anapests +anapestic,anapestics +anaphase,anaphases +anaphase-promoting complex,anaphase-promoting complexes +anaphora,anaphoras,anaphors,anaphora +anaphor,anaphors,anaphora +anaphrodisiac,anaphrodisiacs +anaphylactic shock,anaphylactic shocks +anaphylactogen,anaphylactogens +anaphylatoxin,anaphylatoxins +anaphylaxis,anaphylaxes +anapid,anapids +anaplerosis,anapleroses +anaplerotic,anaplerotics +anapnograph,anapnographs +anapole,anapoles +anapophysis,anapophyses +anaprotaspis,anaprotaspides +anapsid,anapsids +anaptychus,anaptychi +anaptyxis,anaptyxes +anarch,anarchs +anarchist,anarchists +anarcho-capitalist,anarcho-capitalists +anarchocapitalist,anarchocapitalists +anarcho-syndicalist,anarcho-syndicalists +anarchosyndicalist,anarchosyndicalists +anarchy symbol,anarchy symbols +anarhichadid,anarhichadids +anarsa,anarsas +anasarca,anasarcas +Anasazi,Anasazis,Anasazi +anaspidid,anaspidids +anastasis,anastases +anastate,anastates +anastigmat,anastigmats +anastomosis,anastomoses +anastrophe,anastrophes +anasyrma,anasyrmata +anathema,anathemas,anathemata +anathematiser,anathematisers +anathematism,anathematisms +anathematization,anathematizations +anathematizer,anathematizers +anatid,anatids +anation,anations +anatman,anatmans +Anatolian,Anatolians +anatomid,anatomids +anatomist,anatomists +anatomization,anatomizations +anatomizer,anatomizers +anatomy,anatomies +anatopism,anatopisms +anatoxin,anatoxins +anaxyelid,anaxyelids +anberry,anberries +anbury,anburies +ancestor,ancestors +ancestour,ancestours +ancestral chart,ancestral charts +ancestral name,ancestral names +ancestress,ancestresses +ancestrie,ancestries +ancestrix,ancestrices,ancestrixes +ancestry,ancestries +anchariid,anchariids +anchimeric assistance,anchimeric assistances +anchisaurid,anchisaurids +ancho,anchos +anchorage,anchorages +anchor,anchors +anchor baby,anchor babies +anchor buoy,anchor buoys +anchoress,anchoresses +anchoret,anchorets +anchorhold,anchorholds +anchorite,anchorites +anchoritess,anchoritesses +anchor line,anchor lines +anchorman,anchormen +anchor nut,anchor nuts +anchorperson,anchorpersons,anchorpeople +anchor pylon,anchor pylons +anchorwoman,anchorwomen +anchour,anchours +anchoveta,anchovetas +anchovy,anchovies +anchovy pear,anchovy pears +anchovy toast,anchovy toasts +anchress,anchresses +anchusa,anchusas +ancien rΓ©gime,anciens rΓ©gimes +ancient,ancients +ancient astronaut,ancient astronauts +ancient document,ancient documents +ancient Greek,ancient Greeks +Ancient Greek,Ancient Greeks +ancient pyramid,ancient pyramids +Ancient Roman,Ancient Romans +ancientry,ancientries +ancile,anciles +ancilla,ancillae +ancillary,ancillaries +ancille,ancilles +ancillula,ancillulas +ancome,ancomes +Ancona,Anconas +ancona,anconas,ancone +ancon,ancones,ancons +ancony,anconies +ancorinid,ancorinids +ancylid,ancylids +ancylite,ancylites +ancyloceratid,ancyloceratids +ancylostomatid,ancylostomatids +Andalusian,Andalusians +and,ands +AND,ANDs +andante,andantes +Andean,Andeans +Andean cat,Andean cats +Andean flamingo,Andean flamingos +Andean tinamou,Andean tinamous +anderoon,anderoons +Anderson shelter,Anderson shelters +andesite,andesites +andesyte,andesytes +and finally,and finallys,and finallies +andiron,andirons +andisol,andisols +Andorran,Andorrans +andosol,andosols +andouille,andouilles +andradite,andradites +andrenid,andrenids +andrewsarchus,andrewsarchuses +androcracy,androcracies +androecium,androecia +androgen,androgens +androgenic hair,androgenic hairs +androgyne,androgynes +androgyny,androgynies +android,androids +andrologist,andrologists +andron,androns +andronym,andronyms +androphile,androphiles +androphore,androphores +androsphinx,androsphinxes +androspore,androspores +androstanedione,androstanediones +androstenediol,androstenediols +anecdote,anecdotes +anecdotist,anecdotists +anecdoton,anecdota +anecdotum,anecdota +anecophyte,anecophytes +aΓ±ejo,aΓ±ejos +anelace,anelaces +anelectric,anelectrics +anelectrode,anelectrodes +anembryonic pregnancy,anembryonic pregnancies +anemochore,anemochores +anemogram,anemograms +anemograph,anemographs +anemometer,anemometers +anemometre,anemometres +anemometrograph,anemometrographs +anemone,anemones +anemonefish,anemonefishes +anemony,anemonies +anemophyte,anemophytes +anemorumbometer,anemorumbometers +anemoscope,anemoscopes +anencephalus,anencephali +anencephaly,anencephalies +aneroid,aneroids +aneroid barometer,aneroid barometers +anesis,aneses +anesthesiologist,anesthesiologists +anesthetic,anesthetics +anesthetist,anesthetists +anesthetization,anesthetizations +anesthetizer,anesthetizers +anetoderma,anetodermas +aneugen,aneugens +aneuploid,aneuploids +aneurism,aneurisms +aneurysm,aneurysms +anfracture,anfractures +angakkuq,angakkuqs +angakok,angakoks +angariation,angariations +angekkok,angekkoks +angekok,angekoks +angekut,angekuts +angel,angels +angel dust,angel dusts +Angeleno,Angelenos +angelet,angelets +angelfish,angelfish,angelfishes +angelica,angelicas,angelica +angelicin,angelicins +Angelina,Angelinas +Angelino,Angelinos +angel investor,angel investors +angelique,angeliques +angell,angells +angel of death,angels of death +angel of mercy,angels of mercy +angelologist,angelologists +angelonia,angelonias +angelophany,angelophanies +angelot,angelots +angel's advocate,angel's advocates,angels' advocates +angel shark,angel sharks +Angelus,Angeluses +angelus bell,angelus bells +angelwing,angelwings +Angevin,Angevins +Angevine,Angevines +angiitis,angiitises +angioarchitecture,angioarchitectures +angioblast,angioblasts +angioblastoma,angioblastomas,angioblastomata +angiofibroma,angiofibromas +angiogenesis,angiogeneses +angiogram,angiograms +angiogramme,angiogrammes +angiograph,angiographs +angiographer,angiographers +angiography,angiographies +angiokeratoma,angiokeratomas,angiokeratomata +angioleiomyoma,angioleiomyomas,angioleiomyomata +angiolipoma,angiolipomas,angiolipomata +angioma,angiomas,angiomata +angiomyolipoma,angiomyolipomas,angiomyolipomata +angiomyxoma,angiomyxomas,angiomyxomata +angiopathy,angiopathies +angioplasty,angioplasties +angiopoiesis,angiopoieses +angiopoietin,angiopoietins +angiosarcoma,angiosarcomas +angioscope,angioscopes +angiosperm,angiosperms +angiostatin,angiostatins +angiotensin,angiotensins +angiotensinase,angiotensinases +angiotensin converting enzyme,angiotensin converting enzymes +angiotensinogen,angiotensinogens +angiotensinogenase,angiotensinogenases +angiya,angiyas +angle,angles +angle,angles +Angle,Angles +angleberry,angleberries +angle bisector,angle bisectors +angle bracket,angle brackets +angledog,angledogs +angledozer,angledozers +angle grinder,angle grinders +angle iron,angle irons +anglemeter,anglemeters +angle of attack,angles of attack +angle of incidence,angles of incidence +angle of reflection,angles of reflection +angle of refraction,angles of refraction +anglepoise,anglepoises +angle quote,angle quotes +angler,anglers +angler fish,angler fish,angler fishes +anglerfish,anglerfish,anglerfishes +anglewing,anglewings +anglewitch,anglewitches +angleworm,angleworms +Anglian,Anglians +Anglican,Anglicans +anglicism,anglicisms +Anglicism,Anglicisms +Anglicist,Anglicists +anglicizer,anglicizers +Anglo-American,Anglo-Americans +anglo,anglos +Anglo,Anglos +Anglo-Catholic,Anglo-Catholics +Anglo-Indian,Anglo-Indians +Anglomania,Anglomanias +Anglomaniac,Anglomaniacs +Anglo-Norman,Anglo-Normans +anglophile,anglophiles +Anglophile,Anglophiles +anglophobe,anglophobes +Anglophobe,Anglophobes +anglophone,anglophones +Anglophone,Anglophones +Anglo-Saxon,Anglo-Saxons +ang moh,ang mohs +Angolan,Angolans +angon,angons +angora,angoras +angoricity,angoricities +angostura,angosturas +Angoumois moth,Angoumois moths +angrez,angrez +Angrez,Angrez +angrite,angrites +angry fruit salad,angry fruit salads +angryphone,angryphones +Angry Young Man,Angry Young Men +angst bunny,angst bunnies +angstbunny,angstbunnies +angstrom,angstroms +Γ₯ngstrom,Γ₯ngstroms +angstrΓΆm,angstrΓΆms +Γ₯ngstrΓΆm,Γ₯ngstrΓΆms +angstrom unit,angstrom units +angucycline,angucyclines +anguid,anguids +Anguillan,Anguillans +anguillid,anguillids +anguimorph,anguimorphs +anguinea,anguineas +angular,angulars +angular frequency,angular frequencies +angularity,angularities +angular mil,angular mils +angular momentum,angular momenta +angular unconformity,angular unconformities +angular velocity,angular velocities +angulometer,angulometers +angwantibo,angwantibos +anhanguerid,anhanguerids +anharmonicity,anharmonicities +anhedral,anhedrals +anhemitonic pentatonic scale,anhemitonic pentatonic scales +an hero,an heroes,an heros +anhidrotic,anhidrotics +anhima,anhimas +anhimid,anhimids +anhinga,anhingas +anhingid,anhingids +anhydrase,anhydrases +anhydrate,anhydrates +anhydride,anhydrides +anhydrobiote,anhydrobiotes +anhydrosugar,anhydrosugars +anhydrovinblastine,anhydrovinblastines +ani,anis +anigif,anigifs +anil,anils +anilid,anilids +anilide,anilides +aniliid,aniliids +aniline,anilines +anilinguist,anilinguists +anilinium,aniliniums +anilinopyrimidine,anilinopyrimidines +anima,animas +animacy,animacies +animadversion,animadversions +animadverter,animadverters +animal,animals +animal cracker,animal crackers +animalcule,animalcules +animalculist,animalculists +animalculum,animalcula +animal fat,animal fats +animal feed,animal feeds +animalist,animalists +animality,animalities +animalization,animalizations +animal pole,animal poles +animal product,animal products +animal shelter,animal shelters +animal tester,animal testers +animal welfarist,animal welfarists +animat,animats +animated cartoon,animated cartoons +animater,animaters +animatic,animatics +animation,animations +animatism,animatisms +animator,animators +animΓ©,animΓ©s +animeverse,animeverses +animism,animisms +animist,animists +animosity,animosities +anion,anions +anionic,anionics +anionic detergent,anionic detergents +anionotropy,anionotropies +aniridia,aniridias +anisakid,anisakids +anise,anises +aniseikonia,aniseikonias +anisembiid,anisembiids +anisic acid,anisic acids +anisidine,anisidines +anisoceratid,anisoceratids +anisoeikonia,anisoeikonias +anisogammarid,anisogammarids +anisolabidid,anisolabidids +anisol,anisols +anisole,anisoles +anisometropia,anisometropias +anisonogamist,anisonogamists +anisopodid,anisopodids +anisotropicity,anisotropicities +anisoyl,anisoyls +anisyl,anisyls +Aniwan,Aniwans +anker,ankers +ankerite,ankerites +ankh,ankhs +ankle,ankles +ankle-biter,ankle-biters +anklebone,anklebones +ankle boot,ankle boots +ankle bracelet,ankle bracelets +ankle lock,ankle locks +anklelock,anklelocks +ankle monitor,ankle monitors +ankle slapper,ankle slappers +ankle sock,ankle socks +anklet,anklets +anklewarmer,anklewarmers +ankus,ankuses +ankylosaur,ankylosaurs +ankylosaurid,ankylosaurids +ankylosaurus,ankylosauri,ankylosauruses +ankylosis,ankyloses +ankyrin,ankyrins +anlace,anlaces +anlage,anlages +anlaut,anlauts +anna,annas +annal,annals +annalist,annalists +Annamite,Annamites +ann,anns +annat,annats +annate,annates +annealer,annealers +annealing,annealings +annelation,annelations +annelid,annelids +annellation,annellations +anneloid,anneloids +annet,annets +annex,annexes +annexation,annexations +annexationist,annexationists +annexe,annexes +annexer,annexers +annexin,annexins +annexion,annexions +annexionist,annexionists +annexment,annexments +annexure,annexures +annidation,annidations +anniellid,anniellids +annihilation,annihilations +annihilationist,annihilationists +annihilator,annihilators +anniseed,anniseeds +annite,annites +anniversary,anniversaries +anniverse,anniverses +annomination,annominations +annotated bibliography,annotated bibliographies +annotation,annotations +annotationist,annotationists +annotator,annotators +annotatrix,annotatrices +announcement,announcements +announcer,announcers +annoy,annoys +annoybot,annoybots +annoyer,annoyers +annoyment,annoyments +annual aberration,annual aberrations +annual,annuals +annual general meeting,annual general meetings +annualist,annualists +annual report,annual reports +annual ring,annual rings +annuary,annuaries +annueler,annuelers +annuitant,annuitants +annuity,annuities +annular eclipse,annular eclipses +annulariid,annulariids +annular zone,annular zones +annulate,annulates +annulation,annulations +annulene,annulenes +annulenylidene,annulenylidenes +annuler,annulers +annulet,annulets +annullation,annullations +annuller,annullers +annulment,annulments +annuloplasty,annuloplasties +annulosan,annulosans +annulus,annuluses,annuli +annunciation,annunciations +annunciator,annunciators +annus mirabilis,anni mirabiles +anoa,anoas +anobiid,anobiids +anocracy,anocracies +anoctamin,anoctamins +anode,anodes +anode slime,anode slimes +anodon,anodons +anodyne,anodynes +anointed,anointeds +anointer,anointers +anointment,anointments +anole,anoles +anomal,anomals +anomalepid,anomalepids +anomalepidid,anomalepidids +anomalistic year,anomalistic years +anomalocarid,anomalocarids +anomalocaridid,anomalocaridids +anomalomyid,anomalomyids +anomalopid,anomalopids +anomaloscope,anomaloscopes +anomalous phenomenon,anomalous phenomena +anomalure,anomalures +anomalurid,anomalurids +anomaly,anomalies +anomer,anomers +anomiid,anomiids +anomocarid,anomocarids +anomphalid,anomphalids +anomuran,anomurans +anon,anons +anonym,anonyms +anonymisation,anonymisations +anonymiser,anonymisers +anonymization,anonymizations +anonymizer,anonymizers +anonymous class,anonymous classes +anonymouse,anonymice +anonymous pipe,anonymous pipes +anonymuncule,anonymuncules +anopheles,anopheleses +anopheline,anophelines +anophyte,anophytes +anoplopomatid,anoplopomatids +anoplotheriid,anoplotheriids +anoplotherium,anoplotheriums +anopluran,anoplurans +anopsia,anopsias +anorak,anoraks +anorectic,anorectics +anorexiant,anorexiants +anorexic,anorexics +anorexigenic,anorexigenics +anorthite,anorthites +anorthoclase,anorthoclases +anorthopia,anorthopias +anorthoscope,anorthoscopes +anorthoscopic perception,anorthoscopic perceptions +anoscope,anoscopes +anoscopy,anoscopies +anosmia,anosmias +anosmic,anosmics +anostomid,anostomids +anostostomatid,anostostomatids +anotopterid,anotopterids +anovulant,anovulants +ansa,ansae +ansa compound,ansa compounds +ansamycin,ansamycins +Ansar al-Sharia,Ansar al-Sharias +ansatz,ansatzes +ansΓ€tze,ansΓ€tzes +ansible,ansibles +anslaight,anslaights +answerability,answerabilities +answer,answers +answerback,answerbacks +answerer,answerers +answering machine,answering machines +answer on a postcard,answers on a postcard +answerphone,answerphones +answer print,answer prints +anta,antae +antacid,antacids +antagomir,antagomirs +antagoniser,antagonisers +antagonism,antagonisms +antagonist,antagonists +antagonizer,antagonizers +antagonym,antagonyms +antalgic,antalgics +ant,ants +antapex,antapexes,antapices +antaphrodisiac,antaphrodisiacs +antarchist,antarchists +Antarctican,Antarcticans +antarthritic,antarthritics +antasthmatic,antasthmatics +ant bear,ant bears +ant-bear,ant-bears +antbear,antbears +ant beetle,ant beetles +antbird,antbirds +anteact,anteacts +ante,antes +ant-eater,ant-eaters +anteater,anteaters +antebrachium,antebrachia +antecedence,antecedences +antecedent,antecedents +antecedent phrase,antecedent phrases +antecessor,antecessors +antecessour,antecessours +antechamber,antechambers +antechinus,antechinuses,antechinus +anteclypeus,anteclypei +antecrochet,antecrochets +antecursor,antecursors +antedating,antedatings +antediluvian,antediluvians +antedonid,antedonids +antefact,antefacts +antefix,antefixae,antefixes +anteflexion,anteflexions +ant egg,ant eggs +antelabrum,antelabra +antelope,antelope,antelopes +antemetic,antemetics +antemural,antemurals +antenna,antennae,antennas +antennariid,antennariids +antenna switch,antenna switches +antennogram,antennograms +antennophorid,antennophorids +antennule,antennules +anteosaurid,anteosaurids +antepast,antepasts +antependium,antependiums,antependia +antepenult,antepenults +antepenultima,antepenultimas +antepenultimate,antepenultimates +antepileptic,antepileptics +anteport,anteports +anteposition,antepositions +antepredicament,antepredicaments +anterior auricular muscle,anterior auricular muscles +anterior chamber,anterior chambers +anterior cingulate cortex,anterior cingulate cortexes +anteriority,anteriorities +anterocone,anterocones +anteroconid,anteroconids +anteroflexid,anteroflexids +anterograde amnesia,anterograde amnesias +anterolateral ligament,anterolateral ligaments +anteroloph,anterolophs +anterolophid,anterolophids +anteroom,anterooms +antestomach,antestomachs +antetemple,antetemples +ant farm,ant farms +anthacyclin,anthacyclins +anthaspidellid,anthaspidellids +antheacherid,antheacherids +ant-heap,ant-heaps +anthelid,anthelids +anthelion,anthelia +anthelix,anthelices +anthelmintic,anthelmintics +anthem,anthems +anthemion,anthemions,anthemia +anthemis,anthemises +anther,anthers +antheridium,antheridia +antherozoid,antherozoids +antherozooid,antherozooids +anthesis,antheses +anthia,anthias +anthicid,anthicids +ant-hill,ant-hills +anthill,anthills +anthimeria,anthimerias +anthocaulus,anthocauli +anthocorid,anthocorids +anthocyanidin,anthocyanidins +anthocyanin,anthocyanins +anthocyanine,anthocyanines +anthodium,anthodia +anthoecia,anthoecias +anthoinite,anthoinites +antholite,antholites +anthologiser,anthologisers +anthologist,anthologists +anthologizer,anthologizers +anthology,anthologies +anthomyiid,anthomyiids +anthomyzid,anthomyzids +anthophore,anthophores +anthophorid,anthophorids +anthophyte,anthophytes +anthoxanthin,anthoxanthins +anthozoan,anthozoans +anthracenyl,anthracenyls +anthracite,anthracites +anthracnose,anthracnoses +anthracobunid,anthracobunids +anthracoceratid,anthracoceratids +anthracomartid,anthracomartids +anthracometer,anthracometers +anthraconite,anthraconites +anthracosaurid,anthracosaurids +anthracothere,anthracotheres +anthracotheriid,anthracotheriids +anthracyclin,anthracyclins +anthracycline,anthracyclines +anthracyline,anthracylines +anthramycin,anthramycins +anthranilate,anthranilates +anthraquinone,anthraquinones +anthrept,anthrepts +anthribid,anthribids +anthrone,anthrones +anthroparchy,anthroparchies +anthropic coincidence,anthropic coincidences +anthropic principle,anthropic principles +anthropobiologist,anthropobiologists +anthropocentrism,anthropocentrisms +anthropod,anthropods +anthropodicy,anthropodicies +anthropoglot,anthropoglots +anthropoid,anthropoids +anthropolite,anthropolites +anthropologist,anthropologists +anthropometer,anthropometers +anthropometrist,anthropometrists +anthropomorphisation,anthropomorphisations +anthropomorphism,anthropomorphisms +anthropomorphist,anthropomorphists +anthropomorphite,anthropomorphites +anthropomorphization,anthropomorphizations +anthroponosis,anthroponoses +anthroponym,anthroponyms +anthropopathism,anthropopathisms +anthropopathy,anthropopathies +anthropophaginian,anthropophaginians +anthropophagite,anthropophagites +anthropophagus,anthropophagi +anthropophyte,anthropophytes +anthroposphere,anthropospheres +anthropotomist,anthropotomists +anthropozoonosis,anthropozoonoses +anthrosol,anthrosols +anthryl,anthryls +anthurium,anthuriums +anthypnotic,anthypnotics +anthypophora,anthypophoras +antiabolitionist,antiabolitionists +anti-abortionist,anti-abortionists +antiabortionist,antiabortionists +anti-Abrahamic,anti-Abrahamics +antiacetylcholinesterase,antiacetylcholinesterases +antiadaptationist,antiadaptationists +antialarmist,antialarmists +antialbumid,antialbumids +antiallergen,antiallergens +antiallergenic,antiallergenics +antiallergic,antiallergics +antiandrogen,antiandrogens +antianginal,antianginals +antiangiogenic,antiangiogenics +anti,antis +antiaphrodisiac,antiaphrodisiacs +antiarch,antiarchs +antiaristocrat,antiaristocrats +antiarrestin,antiarrestins +antiarrhythmic,antiarrhythmics +antiarthritic,antiarthritics +antiasthmatic,antiasthmatics +antiatheist,antiatheists +antiatherosclerotic,antiatherosclerotics +antiatom,antiatoms +antiauthoritarian,antiauthoritarians +anti-authoritarianism,anti-authoritarianisms +antiautomorphism,antiautomorphisms +antiauxin,antiauxins +antibacchius,antibachii +antibacterial,antibacterials +anti-balaka,anti-balakas +antibarbarus,antibarbari +antibaryon,antibaryons +anti-beauty quark,anti-beauty quarks +antibiogram,antibiograms +antibiosis,antibioses +antibiotic,antibiotics +antibiotype,antibiotypes +antibody,antibodies +antibonding orbital,antibonding orbitals +antiboson,antibosons +antibot,antibots +antibottom,antibottoms +anti-bottom quark,anti-bottom quarks +antibrachium,antibrachia +antibrane,antibranes +antibullionist,antibullionists +anti-bumping granule,anti-bumping granules +antibumping granule,antibumping granules +antibureaucrat,antibureaucrats +antiburgher,antiburghers +antibuser,antibusers +anti-caking agent,anti-caking agents +anticaking agent,anticaking agents +antic,antics +anticapitalist,anticapitalists +anticar,anticars +anticarcinogen,anticarcinogens +anticatabolite,anticatabolites +anticatalyst,anticatalysts +anti-catarrhal,anti-catarrhals +anticatarrhal,anticatarrhals +anticathode,anticathodes +anticatholic,anticatholics +anticenter,anticenters +anticentre,anticentres +anticestodal,anticestodals +antichain,antichains +antichamber,antichambers +anticharity,anticharities +anti-charm quark,anti-charm quarks +antichlor,antichlors +antichoicer,antichoicers +anticholeretic,anticholeretics +anticholinergic,anticholinergics +anticholinesterase,anticholinesterases +antichresis,antichreses +antichrist,antichrists +antichristian,antichristians +anti-Christian,anti-Christians +antichthon,antichthons +antichymotrypsin,antichymotrypsins +anticipant,anticipants +anticipation,anticipations +anticipator,anticipators +antick,anticks +anticker,antickers +anticlerical,anticlericals +anticlimax,anticlimaxes +anticlinal vertebra,anticlinal vertebrae +anticline,anticlines +anticlinorium,anticlinoriums,anticlinoria +anticoagulant,anticoagulants +anticoccidial,anticoccidials +anticodon,anticodons +anticoincidence,anticoincidences +anticollectivist,anticollectivists +anticolonialist,anticolonialists +anticolor,anticolors +anticolour,anticolours +anticommons,anticommons +anticommunist,anticommunists +anticommunity,anticommunities +anticommutation,anticommutations +anticommutator,anticommutators +anticonformist,anticonformists +anticonstitutionalist,anticonstitutionalists +anticonsumer,anticonsumers +anticonsumerist,anticonsumerists +anticontagionist,anticontagionists +anticonvulsant,anticonvulsants +anticonvulsive,anticonvulsives +anticorrelation,anticorrelations +anticorrosive,anticorrosives +anticounter,anticounters +anticountermeasure,anticountermeasures +anticross,anticrosses +anticrossing,anticrossings +anticultist,anticultists +anticulture,anticultures +anticyclogenesis,anticyclogeneses +anticyclolysis,anticyclolyses +anticyclone,anticyclones +antiDarwinist,antiDarwinists +antidecuplet,antidecuplets +antidep,antideps +anti-depressant,anti-depressants +antidepressant,antidepressants +antidepressive,antidepressives +antiderivative,antiderivatives +antidesiccant,antidesiccants +antideuteron,antideuterons +anti-devolutionist,anti-devolutionists +antidevolutionist,antidevolutionists +antidiabetic,antidiabetics +antidiagonal,antidiagonals +antidiarrheal,antidiarrheals +antidiarrheic,antidiarrheics +antidiarrhoeal,antidiarrhoeals +antidiarrhoeic,antidiarrhoeics +antidiarrhΕ“ic,antidiarrhΕ“ics +antidictionary,antidictionaries +antidifference,antidifferences +antidifferentiation,antidifferentiations +antidiquark,antidiquarks +antidiscipline,antidisciplines +antidisestablishmentarian,antidisestablishmentarians +antidissident,antidissidents +antidiuretic,antidiuretics +antidiuretic hormone,antidiuretic hormones +antidocumentary,antidocumentaries +antidopaminergic,antidopaminergics +antidoron,antidora +antidot,antidots +antidotary,antidotaries +antidote,antidotes +anti-down quark,anti-down quarks +antidune,antidunes +antidyon,antidyons +antidysenteric,antidysenterics +antidyskinetic,antidyskinetics +antidyspeptic,antidyspeptics +antidysrhythmic,antidysrhythmics +antie,anties +antiegalitarian,antiegalitarians +antielectron,antielectrons +antielectron neutrino,antielectron neutrinos +antielitist,antielitists +antiemetic,antiemetics +antiempiricist,antiempiricists +antiendotoxin,antiendotoxins +antient,antients +antientry,antientries +antiepicenter,antiepicenters +antiepicentre,antiepicentres +antiepileptic,antiepileptics +antiequalitarian,antiequalitarians +antiessentialist,antiessentialists +antiestablishmentarian,antiestablishmentarians +antiestrogen,antiestrogens +antievolutionist,antievolutionists +antiextremist,antiextremists +antifascist,antifascists +anti-feature,anti-features +antifebrile,antifebriles +anti-federalist,anti-federalists +antifederalist,antifederalists +antifeedant,antifeedants +antifeminist,antifeminists +antifermion,antifermions +antiferromagnet,antiferromagnets +antiferroquadrupole,antiferroquadrupoles +antifibrinolytic,antifibrinolytics +antifibrotic,antifibrotics +antifield,antifields +antifilm,antifilms +antiflatulent,antiflatulents +antifluoridationist,antifluoridationists +antifluorite,antifluorites +antifluxon,antifluxons +antifoam,antifoams +anti-foaming agent,anti-foaming agents +antifogmatic,antifogmatics +antifolate,antifolates +antiformalism,antiformalisms +antiformalist,antiformalists +antiform,antiforms +antifoulant,antifoulants +antifouling,antifoulings +antifoundationalist,antifoundationalists +antifundamental,antifundamentals +antifundamentalist,antifundamentalists +antifungal,antifungals +antigalactic,antigalactics +antigalaxy,antigalaxies +antigambler,antigamblers +antigen,antigens +antigene,antigenes +antigenicity,antigenicities +antigenic variation,antigenic variations +antigenome,antigenomes +antighost,antighosts +antiglobalist,antiglobalists +antignon,antignons +antigoldstino,antigoldstinos +antigonadotrophin,antigonadotrophins +antigonadotropin,antigonadotropins +antigonorrhoeic,antigonorrhoeics +antigonorrhΕ“ic,antigonorrhΕ“ics +antigorite,antigorites +antigram,antigrams +antigraph,antigraphs +antigriddle,antigriddles +Antiguan,Antiguans +antihadron,antihadrons +antihaemorrhagic,antihaemorrhagics +antihaplon,antihaplons +antihedonist,antihedonists +anti-Hegelian,anti-Hegelians +antihelix,antihelixes,antihelices +antihelminthic,antihelminthics +antihemorrhagic,antihemorrhagics +anti-hero,anti-heroes +antihero,antiheroes +antiheroine,antiheroines +antiherpetic,antiherpetics +antihidrotic,antihidrotics +antihistamine,antihistamines +antihistaminic,antihistaminics +antihistoricist,antihistoricists +antihole,antiholes +antiholiday,antiholidays +antiholon,antiholons +antihomomorphism,antihomomorphisms +antihormone,antihormones +antihumanist,antihumanists +antihunter,antihunters +antihydrophobic,antihydrophobics +antihydropic,antihydropics +antihyperbolic function,antihyperbolic functions +antihyperglycemic,antihyperglycemics +antihyperkinetic,antihyperkinetics +antihyperon,antihyperons +antihypertensive,antihypertensives +antihypertriton,antihypertritons +antihypnotic,antihypnotics +antihypotensive,antihypotensives +antihysteric,antihysterics +anti-imperialism,anti-imperialisms +antiinfective,antiinfectives +anti-inflammatory,anti-inflammatories +antiinflammatory,antiinflammatories +antiinsectan,antiinsectans +antiinstitutionalist,antiinstitutionalists +antijacobin,antijacobins +antijoin,antijoins +antikaon,antikaons +antiking,antikings +antikink,antikinks +antiknock,antiknocks +antilambda,antilambdas +antilattice,antilattices +antilepton,antileptons +antileukaemic,antileukaemics +antileukemic,antileukemics +antiliberal,antiliberals +antilibertarian,antilibertarians +antilibration,antilibrations +antilifer,antilifers +antilipaemic,antilipaemics +antilipo,antilipos +antilithic,antilithics +Antillean,Antilleans +antilocalization,antilocalizations +antilocaprid,antilocaprids +antilock brake,antilock brakes +antilog,antilogs +antilogarithm,antilogarithms +antilogy,antilogies +antiloimic,antiloimics +antilopine kangaroo,antilopine kangaroos +antilopine wallaby,antilopine wallabies +antilopine wallaroo,antilopine wallaroos +antiluetic,antiluetics +antilysis,antilyses +antilyssic,antilyssics +antimacassar,antimacassars +antimagic square,antimagic squares +antimajoritarian,antimajoritarians +antimalarial,antimalarials +anti-marketeer,anti-marketeers +antimarketeer,antimarketeers +antimask,antimasks +antimason,antimasons +antimasque,antimasques +antimaterialist,antimaterialists +antimatroid,antimatroids +antimaximum,antimaxima +antimechanist,antimechanists +antimere,antimeres +antimeson,antimesons +antimessage,antimessages +antimetabole,antimetaboles +antimetabolite,antimetabolites +antimeter,antimeters +antimicrobial,antimicrobials +antimicrobic,antimicrobics +anti-militarism,anti-militarisms +antimilitarism,antimilitarisms +antimilitarist,antimilitarists +antiministerialist,antiministerialists +antimissile,antimissiles +antimitotic,antimitotics +antimodern,antimoderns +antimodernist,antimodernists +antimolecule,antimolecules +anti-monarchist,anti-monarchists +antimonarchist,antimonarchists +antimonate,antimonates +antimonial,antimonials +antimoniate,antimoniates +antimonide,antimonides +antimonopole,antimonopoles +antimonopolist,antimonopolists +antimonyl,antimonyls +antimoralist,antimoralists +antimorph,antimorphs +antimother,antimothers +antimuon,antimuons +antimuon neutrino,antimuon neutrinos +antimuscarinic,antimuscarinics +antimutagen,antimutagens +antimutagenic,antimutagenics +antimycin,antimycins +antimycotic,antimycotics +antinarrative,antinarratives +antinatalist,antinatalists +antinationalist,antinationalists +antinativist,antinativists +antinaturalist,antinaturalists +antinauseant,antinauseants +antineoplastic,antineoplastics +antineoplaston,antineoplastons +antinephritic,antinephritics +antineuralgic,antineuralgics +antineutrino,antineutrinos +antineutron,antineutrons +anting-anting,anting-antings +antinicotinic,antinicotinics +antinihilist,antinihilists +antinociceptive,antinociceptives +antinode,antinodes +antinome,antinomes +antinomian,antinomians +antinomist,antinomists +antinomy,antinomies +antinovel,antinovels +antinovelist,antinovelists +antinuclearist,antinuclearists +antinucleon,antinucleons +antinucleus,antinuclei +antinuke,antinukes +antinuker,antinukers +antinutrient,antinutrients +Antiochan,Antiochans +Antiochene,Antiochenes +Antiochian,Antiochians +antioncogene,antioncogenes +antiopera,antioperas +Antioquenian,Antioquenians +antioxidant,antioxidants +antiozonant,antiozonants +antiparallel,antiparallels +antiparallelogram,antiparallelograms +antiparalytic,antiparalytics +antiparasitic,antiparasitics +antiparkinson,antiparkinsons +antiparkinsonian,antiparkinsonians +antiparticle,antiparticles +antipartner,antipartners +antiparty,antiparties +antipassive,antipassives +antipasto,antipastos +antipathid,antipathids +antipathist,antipathists +antipathogen,antipathogens +antipathy,antipathies +antipatriot,antipatriots +anti-pattern,anti-patterns +antipattern,antipatterns +antipeptone,antipeptones +antiperiodic,antiperiodics +antiperovskite,antiperovskites +antiphilosopher,antiphilosophers +antiphilosophy,antiphilosophies +antiphlogistian,antiphlogistians +antiphlogistic,antiphlogistics +antiphonal,antiphonals +antiphon,antiphons +antiphonar,antiphonars +antiphonary,antiphonaries +antiphone,antiphones +antiphoner,antiphoners +antiphony,antiphonies +antiphotino,antiphotinos +antiphoton,antiphotons +antiphthisic,antiphthisics +antipion,antipions +antiplanet,antiplanets +antiplasmin,antiplasmins +antiplasticization,antiplasticizations +antiplasticizer,antiplasticizers +antiplay,antiplays +antipluralist,antipluralists +antipodagric,antipodagrics +antipodal,antipodals +antipodean,antipodeans +antipode,antipodes +antipoem,antipoems +antipoet,antipoets +antipoint,antipoints +antipole,antipoles +antipolitician,antipoliticians +antipope,antipopes +antipopulist,antipopulists +antiport,antiports +antiporter,antiporters +antipositivist,antipositivists +antiprism,antiprisms +antiprogestin,antiprogestins +antiprogressive,antiprogressives +antiprostaglandin,antiprostaglandins +antiprotease,antiproteases +antiproteinase,antiproteinases +antiproton,antiprotons +antiprotozoal,antiprotozoals +antiproverb,antiproverbs +antipruritic,antipruritics +antipsoriatic,antipsoriatics +antipsoric,antipsorics +antipsychiatrist,antipsychiatrists +antipsychologist,antipsychologists +antipsychotic,antipsychotics +antipurine,antipurines +antipyic,antipyics +antipyretic,antipyretics +antiquarian,antiquarians +antiquarianism,antiquarianisms +antiquark,antiquarks +antiquary,antiquaries +antiquasiparticle,antiquasiparticles +antique,antiques +antiquer,antiquers +antique shop,antique shops +antiquist,antiquists +antiquitarian,antiquitarians +antiquity,antiquities +antirachitic,antirachitics +antiracist,antiracists +anti-rad,anti-rads +antirad,antirads +antirationalist,antirationalists +antirealist,antirealists +antireformer,antireformers +antireformist,antireformists +antirenter,antirenters +antirepeater,antirepeaters +antirepressor,antirepressors +antirepublican,antirepublicans +antiresistant,antiresistants +antiresonance,antiresonances +antiretroviral,antiretrovirals +antirevisionist,antirevisionists +anti-revolutionary,anti-revolutionaries +antirevolutionary,antirevolutionaries +antirheumatic,antirheumatics +antiribonucleoprotein,antiribonucleoproteins +antirightist,antirightists +antirishon,antirishons +anti-roll bar,anti-roll bars +antiromance,antiromances +antiromantic,antiromantics +antiroyalist,antiroyalists +antirrhinum,antirrhinums +anti-rust,anti-rusts +antirust,antirusts +antisabbatarian,antisabbatarians +antisaccade,antisaccades +antiscalant,antiscalants +antisceptic,antisceptics +antischizophrenic,antischizophrenics +Antiscian,Antiscians +antiscion,antiscia +antiscorbutic,antiscorbutics +antisecretory,antisecretories +antisegregationist,antisegregationists +antiself,antiselves +antisemite,antisemites +anti-Semite,anti-Semites +anti-Semitism,anti-Semitisms +antisense,antisenses +antiseparatist,antiseparatists +antiseptic,antiseptics +antiserum,antiserums,antisera +antiset,antisets +antisexist,antisexists +antisextet,antisextets +antisexualist,antisexualists +antishadow,antishadows +antisialagogue,antisialagogues +antisigma,antisigmas +antisite,antisites +antiskeptic,antiskeptics +antiskyrmion,antiskyrmions +antislaver,antislavers +antismoker,antismokers +antisnob,antisnobs +antisocial behaviour order,antisocial behaviour orders +antisocialist,antisocialists +antisoliton,antisolitons +antispammer,antispammers +antisparticle,antisparticles +antispasmatic,antispasmatics +antispasmodic,antispasmodics +antispast,antispasts +antispastic,antispastics +antisphaleron,antisphalerons +antispurion,antispurions +antisquark,antisquarks +antistar,antistars +antistat,antistats +antistatic,antistatics +antistatist,antistatists +antisterino,antisterinos +anti-story,anti-stories +antistory,antistories +antistrange,antistranges +anti-strange quark,anti-strange quarks +Anti-Stratfordian,Anti-Stratfordians +antistriker,antistrikers +antistrophe,antistrophes +antistructuralist,antistructuralists +antisudorific,antisudorifics +antisuffragette,antisuffragettes +antisun,antisuns +anti-sway bar,anti-sway bars +antisymmetrisation,antisymmetrisations +antisymmetriser,antisymmetrisers +antisymmetrization,antisymmetrizations +antisymmetrizer,antisymmetrizers +antisynchronization,antisynchronizations +antisynthetase,antisynthetases +antisyphilitic,antisyphilitics +antitau,antitaus +antitauon,antitauons +antitechnologist,antitechnologists +antitelephone,antitelephones +antitemplate,antitemplates +antiterrorist,antiterrorists +antitheist,antitheists +antitheology,antitheologies +antitheorem,antitheorems +antithesis,antitheses +antithet,antithets +antithrombin,antithrombins +antithrombotic,antithrombotics +antithyroglobulin,antithyroglobulins +antitop,antitops +anti-top quark,anti-top quarks +antitotalitarian,antitotalitarians +antitoxin,antitoxins +antitoxine,antitoxines +antitrade,antitrades +antitraditionalist,antitraditionalists +antitragus,antitragi +antitransform,antitransforms +antitranspirant,antitranspirants +antitrigonometric function,antitrigonometric functions +antitrinitarian,antitrinitarians +antitriplet,antitriplets +antitrochanter,antitrochanters +antitropy,homotropies +antitruster,antitrusters +antitrypsin,antitrypsins +antitumor,antitumors +antitussive,antitussives +antitype,antitypes +antiunitary,antiunitaries +antiuniverse,antiuniverses +anti-up quark,anti-up quarks +antiutilitarian,antiutilitarians +anti-utopia,anti-utopias +anti-vaccinationist,anti-vaccinationists +antivaccinationist,antivaccinationists +antivaccinist,antivaccinists +anti-vaxxer,anti-vaxxers +anti-venene,anti-venenes +antivenene,antivenenes +antivenin,antivenins +antivenom,antivenoms +antivideo,antivideos +anti-virus,anti-viruses +antivirus,antiviruses +antivitamin,antivitamins +antivivisectionist,antivivisectionists +antivortex,antivortices +antiwarrior,antiwarriors +anti-Witness,anti-Witnesses +antiworld,antiworlds +antizyme,antizymes +antizymotic,antizymotics +antler,antlers +antlia,antliae +antling,antlings +ant lion,ant lions +antlion,antlions +ant mill,ant mills +ant mound,ant mounds +antojito,antojitos +antoninianus,antoniniani +Anton Piller order,Anton Piller orders +antonym,antonyms +antonymy,antonymies +antophyte,antophytes +antorbital,antorbitals +ant orchid,ant orchids +antre,antres +antrectomy,antrectomies +antroba,antrobas +antrodiaetid,antrodiaetids +antrostomy,antrostomies +antrum,antra +antrustion,antrustions +antshrike,antshrikes +ant thrush,ant thrushes +antvireo,antvireos +Antwerpian,Antwerpians +anudātta,anudāttas +anuran,anurans +anurognathid,anurognathids +anus,anuses +anusvara,anusvaras +anusvāra,anusvāras +Anutan,Anutans +anvil,anvils +anvil cloud,anvil clouds +anxiety,anxieties +anxiety disorder,anxiety disorders +anxiogenic,anxiogenics +anxiolytic,anxiolytics +any nook or cranny,any nooks or crannies +anyolite,anyolites +anyon,anyons +anyphaenid,anyphaenids +anything,anythings +anythingarian,anythingarians +ANZAC,ANZACs +Anzac biscuit,Anzac biscuits +ao dai,ao dais +AOLer,AOLers +Aonian,Aonians +aorist,aorists +aorta,aortas,aortae +aortalgia,aortalgias +aortogram,aortograms +aortography,aortographies +Aostan,Aostans +Aotearoan,Aotearoans +aotid,aotids +aoudad,aoudads +Apachean,Apacheans +apache,apaches +Apache,Apaches +apadana,apadanas +apadravya,apadravyas +apanage,apanages +apar,apars +aparejo,aparejos,aparejoes +apareon,apareons +aparthotel,aparthotels +apartment,apartments +apartment building,apartment buildings +apartment complex,apartment complexes +apartmentmate,apartmentmates +apartotel,apartotels +apastron,apastrons +apatelodid,apatelodids +apatemyid,apatemyids +apatheist,apatheists +apathete,apathetes +apathist,apathists +apatite,apatites +apatosaur,apatosaurs +apatosaurus,apatosauruses +ape,apes +apehanger,apehangers +apeirogon,apeirogons +apeirohedron,apeirohedrons,apeirohedra +apeirotheism,apeirotheisms +ape leader,ape leaders +apeling,apelings +apella,apellas +apelloid,apelloids +apeman,apemen +aper,apers +apercu,apercus +aperΓ§u,aperΓ§us +aperea,apereas +aperid,aperids +aperitif,aperitifs +apΓ©ritif,apΓ©ritifs +aperitive,aperitives +apertion,apertions +apertometer,apertometers +aperture,apertures +aperture membrane,aperture membranes +apery,aperies +apeth,apeths +apex,apices,apexes +apex predator,apex predators +Apgar score,Apgar scores +aphaeresis,aphaereses +aphΓ¦resis,aphΓ¦reses +aphakic,aphakics +aphanite,aphanites +aphantochilid,aphantochilids +aphasic,aphasics +aphasiologist,aphasiologists +aphelandra,aphelandras +aphelia,aphelias +aphelinid,aphelinids +aphelion,aphelia +apheresis,aphereses +aphesis,apheses +apheta,aphetas +aphetism,aphetisms +aphicide,aphicides +aphid,aphids +aphidian,aphidians +aphidicide,aphidicides +aphidid,aphidids +aphidiid,aphidiids +aphis,aphides +aphonia,aphonias +aphonogelia,aphonogelias +aphorism,aphorisms +aphorismer,aphorismers +aphorist,aphorists +aphrasia,aphrasias +aphredoderid,aphredoderids +aphrodisiac,aphrodisiacs +aphrometer,aphrometers +aphrophorid,aphrophorids +aphthong,aphthongs +aphthous ulcer,aphthous ulcers +aphthovirus,aphthoviruses +aphyonid,aphyonids +API,APIs +apiarian,apiarians +apiarist,apiarists +apiary,apiaries +apical ancestor,apical ancestors +apical,apicals +apical ectodermal ridge,apical ectodermal ridges +apical germ pore,apical germ pores +apicectomy,apicectomies +apicide,apicides +apicoectomy,apicoectomies +apicomplexan,apicomplexans +apicoplast,apicoplasts +apiculturalist,apiculturalists +apiculturist,apiculturists +apiculus,apiculi +apid,apids +apidictor,apidictors +apikoros,apikorsim +A-pillar,A-pillars +apiocerid,apiocerids +apiofuranose,apiofuranoses +apiofuranosyl,apiofuranosyls +apiologist,apiologists +apiose,apioses +apiotherapy,apiotherapies +apiphobia,apiphobias +apishamore,apishamores +API unit,API units +apivore,apivores +aplanat,aplanats +aplasia,aplasias +APLer,APLers +aploactinid,aploactinids +aplocheilid,aplocheilids +aplochitonid,aplochitonids +aplodactylid,aplodactylids +aplodontid,aplodontids +A plot,A plots +aplousobranch,aplousobranchs +A plus,A pluses +aplustre,aplustres +aplysia,aplysias +aplysiid,aplysiids +apnea,apneas +apneumatosis,apneumatoses +apneumone,apneumones +apoapsis,apoapsides +apoastron,apoastrons +apocalypse,apocalypses +apocalyptic,apocalyptics +apocalypticist,apocalypticists +apocarotenoid,apocarotenoids +apocatastasis,apocatastases +apocenter,apocenters +apocentre,apocentres +apocolpium,apocolpia +apocopation,apocopations +apocope,apocopes +apocrine gland,apocrine glands +apocrisiarius,apocrisiarii +apocrisiary,apocrisiaries +apocryphalist,apocryphalists +apocynthion,apocynthions +apocytochrome,apocytochromes +apod,apods +apode,apodes +apodeme,apodemes +apodict,apodicts +apodid,apodids +apodization,apodizations +apodizer,apodizers +apodosis,apodoses +apodyterium,apodyteriums,apodyteria +apoenzyme,apoenzymes +apoferment,apoferments +apofocus,apofocuses +apogalacticon,apogalacticons +apogee,apogees +apogonid,apogonids +apograph,apographs +apoherm,apoherms +apoinducer,apoinducers +apojove,apojoves +apokatastasis,apokatastases +apokoinou,apokoinous +apolipoprotein,apolipoproteins +apolitical,apoliticals +Apollinarian,Apollinarians +apollo,apollos +Apollo,Apollos +Apollonian circle,Apollonian circles +Apollonian gasket,Apollonian gaskets +Apollonian net,Apollonian nets +apologer,apologers +apologetic apostrophe,apologetic apostrophes +apologeticism,apologeticisms +apologia,apologias +apologian,apologians +apologian,apologians +apologie,apologies +apologiser,apologisers +apologism,apologisms +apologist,apologists +apologizer,apologizers +apology,apologies +apolune,apolunes +apomecometer,apomecometers +apomeiosis,apomeioses +apomict,apomicts +apomorph,apomorphs +apomorphy,apomorphies +aponeurosis,aponeuroses +aponeurotomy,aponeurotomies +apopemptic,apopemptics +apophasis,apophases +apophenia,apophenias +apophlegmatic,apophlegmatics +apophlegmatism,apophlegmatisms +apophony,apophonies +apophthegm,apophthegms +apophyge,apophyges +apophyllite,apophyllites +apophyse,apophyses +apophysis,apophyses +apophyte,apophytes +apoplast,apoplasts +apoplexy,apoplexies +apoprotein,apoproteins +apoptosome,apoptosomes +aporepressor,aporepressors +aporia,aporias +aporrhaid,aporrhaids +aposematism,aposematisms +aposiopesis,aposiopeses +apostacy,apostacies +A-post,A-posts +apostasy,apostasies +apostate,apostates +apostemation,apostemations +aposteme,apostemes +apostil,apostils +apostilb,apostilbs +apostille,apostilles +apostle,apostles +apostle,apostles +Apostle,Apostles +apostle spoon,apostle spoons +apostolate,apostolates +Apostolicship,Apostolicships +apostrophe,apostrophes +apostrophe,apostrophes +apostume,apostumes +aposymbiosis,aposymbioses +Apotactite,Apotactites +apotelesm,apotelesms +apothecary,apothecaries +apothecium,apothecia +apothegm,apothegms +apothegmatist,apothegmatists +apothem,apothems +apotheon,apotheons +apotheosis,apotheoses +apothesis,apotheses +apotome,apotomes +apotreptic,apotreptics +apozem,apozems +Appalachian,Appalachians +appaloosa,appaloosas +appaloosa,appaloosas +Appaloosa,Appaloosas +appam,appams +appanage,appanages +appanagist,appanagists +app,apps +apparachik,apparachiks,apparachiki +apparatchik,apparatchiks,apparatchiki +apparate,apparates +apparation,apparations +apparatus,apparatuses,apparatus +apparency,apparencies +apparent brightness,apparent brightnesses +apparent magnitude,apparent magnitudes +apparition,apparitions +apparitionist,apparitionists +apparitor,apparitors +appeacher,appeachers +appealant,appealants +appeal,appeals +appealer,appealers +appeall,appealls +appeals court,appeals courts +appearance,appearances +appearaunce,appearaunces +appearer,appearers +appeasatory,appeasatories +appeasement,appeasements +appeaser,appeasers +appel,appels +appellant,appellants +appellate court,appellate courts +appellation,appellations +appellative,appellatives +appellee,appellees +appenage,appenages +appendage,appendages +appendance,appendances +appendant,appendants +append,appends +appendectomy,appendectomies +appender,appenders +appendication,appendications +appendicectomy,appendicectomies +appendicle,appendicles +appendicolith,appendicoliths +appendicula,appendiculas +appendix,appendices,appendixes +appendment,appendments +Appenzell,Appenzells +apperil,apperils +appertainment,appertainments +appertinance,appertinances +appertinence,appertinences +appertinent,appertinents +appestat,appestats +appetency,appetencies +appetiser,appetisers +appetite,appetites +appetition,appetitions +appetizer,appetizers +applanation,applanations +applaud,applauds +applauder,applauders +applause,applauses +applausometer,applausometers +apple aphid,apple aphids +apple aphis,apple aphides +apple,apples +apple bee,apple bees +apple-bee,apple-bees +apple-berry,apple-berries +apple blossom,apple blossoms +apple borer,apple borers +apple-box,apple-boxes +apple brandy,apple brandies +apple cake,apple cakes +applecart,applecarts +apple core,apple cores +apple-corer,apple-corers +apple dumpling,apple dumplings +apple fly,apple flies +apple fritter,apple fritters +apple-green,apple-greens +apple-john,apple-johns +applejohn,applejohns +apple leaf midge,apple leaf midges +Apple Mac,Apple Macs +apple midge,apple midges +apple mint,apple mints +apple-mush,apple-mushes +apple of discord,apples of discord +apple of Grenada,apples of Grenada +apple of love,apples of love +apple of Sodom,apples of Sodom +apple of someone's eye,apples of someone's eye +apple pear,apple pears +apple pie,apple pies +apple-pie,apple-pies +apple-pie bed,apple-pie beds +apple-polisher,apple-polishers +apple seed,apple seeds +apple-squire,apple-squires +apple strudel,apple strudels +applet,applets +Appletard,Appletards +Apple tax,Apple taxes +appletini,appletinis +apple tree,apple trees +apple-tree,apple-trees +appletree,appletrees +apple turnover,apple turnovers +apple-wife,apple-wives +apple wine,apple wines +apple worm,apple worms +appliance,appliances +applicability,applicabilities +applicant,applicants +applicate,applicates +application,applications +application domain,application domains +application form,application forms +application program,application programs +application programming interface,application programming interfaces +applications program,applications programs +applicator,applicators +applicatorful,applicatorfuls +applied ethics,applied ethics +applied science,applied sciences +applier,appliers +applique,appliques +appliquΓ©,appliquΓ©s +applistructure,applistructures +applotment,applotments +applotter,applotters +appoggiatura,appoggiaturas +appointee,appointees +appointer,appointers +appointment,appointments +appointment diary,appointment diaries +appointor,appointors +apport,apports +apporter,apporters +apportioner,apportioners +apportionment,apportionments +apposer,apposers +apposite,apposites +apposition,appositions +appositive,appositives +appraisal,appraisals +appraisal cost,appraisal costs +appraiseability,appraiseabilities +appraisee,appraisees +appraisement,appraisements +appraiser,appraisers +apprecation,apprecations +appreciator,appreciators +apprehender,apprehenders +apprehension,apprehensions +apprentice,apprentices +apprenticehood,apprenticehoods +apprenticeship,apprenticeships +apprentise,apprentises +appressorium,appressoria +apprisal,apprisals +apprizal,apprizals +apprizement,apprizements +apprizer,apprizers +approachability,approachabilities +approach,approaches +approacher,approachers +approach shot,approach shots +approbation,approbations +approbative,approbatives +approbator,approbators +approof,approofs +appropriability,appropriabilities +appropriament,appropriaments +appropriation,appropriations +appropriationist,appropriationists +appropriator,appropriators +approval,approvals +approved school,approved schools +approvement,approvements +approver,approvers +approximant,approximants +approximation algorithm,approximation algorithms +approximation,approximations +approximator,approximators +appt,appts +appt.,appts. +appui,appuis,appuies +appulse,appulses +appulsion,appulsions +appurtenance,appurtenances +appurtenant,appurtenants +appurtenaunce,appurtenaunces +appurtenaunt,appurtenaunts +aprepitant,aprepitants +apricity,apricities +apricot,apricots +apricot blossom,apricot blossoms +April fool,April fools +April fooler,April foolers +April Fools' Day,April Fools' Days +April gentleman,April gentlemen +aprium,apriums +APRN,APRNs +apron,aprons +apron flashing,apron flashings +apronful,apronfuls,apronsful +apron string,apron strings +apron-string,apron-strings +aprosdoketon,aprosdoketons,aprosdoketa +apsara,apsaras +apsar,apsars +apsaras,apsarass +apse,apses +apside,apsides +apsis,apsides +aptamer,aptamers +ap't,ap'ts +apt.,apts. +apteran,apterans +apterium,apteria +apteronotid,apteronotids +apterygid,apterygids +apterygote,apterygotes +aptitude,aptitudes +aptness,aptnesses +aptonym,aptonyms +aptote,aptotes +aptronym,aptronyms +aptychus,aptychi +APU,APUs +apudoma,apudomas,apudomata +apyrase,apyrases +aqabamycin,aqabamycins +aquabib,aquabibs +aquabirnavirus,aquabirnaviruses +aquacade,aquacades +aquaculture,aquacultures +aquaculturist,aquaculturists +aquΓ¦duct,aquΓ¦ducts +aquafauna,aquafaunae,aquafaunas,aquafaunΓ¦ +aquaglyceroporin,aquaglyceroporins +aquaholic,aquaholics +aquaintance,aquaintances +aqualf,aqualfs +aqualung,aqualungs +aquamanile,aquamaniles,aquamanilia +aquamarine,aquamarines +aquamolality,aquamolalities +aquanaut,aquanauts +aquand,aquands +aquapark,aquaparks +aquaphobe,aquaphobes +aquaphobia,aquaphobias +aquaplane,aquaplanes +aquaplanet,aquaplanets +aquaporin,aquaporins +aquarelle,aquarelles +aquarellist,aquarellists +Aquarian,Aquarians +Aquariid,Aquariids +aquarist,aquarists +aquarium,aquaria,aquariums +Aquarius,Aquariuses +aquascape,aquascapes +aquastat,aquastats +aquathlon,aquathlons +aquatic centre,aquatic centres +aquatic warbler,aquatic warblers +aquatinta,aquatintas +aquatint,aquatints +aquation,aquations +aqua vitae,aquae vitae +aqua vitΓ¦,aquΓ¦ vitΓ¦ +aqueduct,aqueducts +aquent,aquents +aqueous phase,aqueous phases +aquept,aquepts +aquert,aquerts +a quick drop and a sudden stop,quick drops and sudden stops +aquiclude,aquicludes +aquiculturist,aquiculturists +aquifer,aquifers +aquifuge,aquifuges +aquiline nose,aquiline noses +aquitard,aquitards +aquoll,aquolls +aquox,aquoxes +aquult,aquults +aqvavit,aqvavits +ara,aras +araba,arabas +Arab,Arabs +arabesque,arabesques +Arabian,Arabians +Arabian oryx,Arabian oryxes,Arabian oryx +arabica,arabicas +Arabic numeral,Arabic numerals +Arabic scale,Arabic scales +arabinan,arabinans +arabinase,arabinases +arabinofuranose,arabinofuranoses +arabinofuranosidase,arabinofuranosidases +arabinofuranoside,arabinofuranosides +arabinogalactan,arabinogalactans +arabinonate,arabinonates +arabinonucleic acid,arabinonucleic acids +arabinopyranoside,arabinopyranosides +arabinose,arabinoses +arabinoside,arabinosides +arabinosyltransferase,arabinosyltransferases +Arabisation,Arabisations +Arabism,Arabisms +Arabist,Arabists +Arabization,Arabizations +Arab strap,Arab straps +aracanid,aracanids +arachidonate,arachidonates +arachidonoyl,arachidonoyls +arachidoyl,arachidoyls +arachnerd,arachnerds +arachnicide,arachnicides +arachnidan,arachnidans +arachnid,arachnids +arachnoid,arachnoids +arachnoidid,arachnoidids +arachnoid mater,arachnoid maters +arachnologist,arachnologists +arachnomancer,arachnomancers +arachnomorph,arachnomorphs +arachnophobe,arachnophobes +Aracuna,Aracunas +arad,arads +aradid,aradids +arΓ¦ometer,arΓ¦ometers +araeostyle,araeostyles +Aragonese,Aragonese +araguato,araguatos +arahant,arahants +aralia,aralias +aralkyl,aralkyls +Aramaean,Aramaeans +AramΓ¦an,AramΓ¦ans +Aramaism,Aramaisms +Aramean,Arameans +aramid,aramids +araneidan,araneidans +araneid,araneids +araneomorph,araneomorphs +araneomorph funnel-web spider,araneomorph funnel-web spiders +arango,arangoes +Aran jumper,Aran jumpers +Arapaho,Arapahos,Arapaho +arapaima,arapaimas +araphid,araphids +arara,araras +arariba,araribas +ar,ars +Araucana,Araucanas +Araucanian,Araucanians +araucaria,araucarias +Araucaria,Araucarias +araxoceratid,araxoceratids +arbaciid,arbaciids +arbalest,arbalests +arbalester,arbalesters +arbalist,arbalists +arbalister,arbalisters +arb,arbs +arbiter,arbiters +arbitrability,arbitrabilities +arbitrager,arbitragers +arbitrageur,arbitrageurs +arbitrageuse,arbitrageuses +arbitrament,arbitraments +arbitrary,arbitraries +arbitrator,arbitrators +arbitratour,arbitratours +arbitratrix,arbitratrices +arbitrement,arbitrements +arbitress,arbitresses +arblast,arblasts +arbor,arbors,arbores +arbor,arbors,arbores +arborator,arborators +arboreal,arboreals +arboreol,arboreols +arborescence,arborescences +arboret,arborets +arboretum,arboretums,arboreta +arboricide,arboricides +arboricity,arboricities +arboriculturist,arboriculturists +arborist,arborists +arborization,arborizations +arbor vine,arbor vines +arbor vitae,arbor vitae,arbor vitaes,arbores vitae +arborvitae,arborvitaes +arborway,arborways +'arbour,'arbours +arbour,arbours +arbovirosis,arboviroses +arbovirus,arboviruses +arbuscle,arbuscles +arbutus,arbutuses +arcade,arcades +arcade game,arcade games +arcader,arcaders +arcadia,arcadias +Arcadian,Arcadians +Arcadian,Arcadians +arcading,arcadings +arcanist,arcanists +arcanum,arcana +arc,arcs +arcature,arcatures +arc-boutant,arc-boutants +arccos,arccoss +arccosecant,arccosecants +arccosh,arccoshs +arccosine,arccosines +arccoth,arccoths +archabbey,archabbeys +archabbot,archabbots +archaean,archaeans +archaebacterium,archaebacteria +archaeid,archaeids +archaeintensity,archaeintensities +archaeoastronomer,archaeoastronomers +archaeobalanid,archaeobalanids +archaeobotanist,archaeobotanists +archaeogastropod,archaeogastropods +archaeogeneticist,archaeogeneticists +archaeohyracid,archaeohyracids +archaeolemurid,archaeolemurids +archaeologian,archaeologians +archaeological horizon,archaeological horizons +archaeologist,archaeologists +archΓ¦ologist,archΓ¦ologists +archaeometallurgist,archaeometallurgists +archaeometrist,archaeometrists +archaeon,archaeons,archaea +archaeonycteridid,archaeonycteridids +archaeophyte,archaeophytes +archaeopterygid,archaeopterygids +archaeopteryx,archaeopteryges +archΓ¦opteryx,archΓ¦opteryges +archaeozoologist,archaeozoologists +archaeplastid,archaeplastids +archaic,archaics +archaicism,archaicisms +archaiopteryx,archaiopteryges +archaism,archaisms +archaist,archaists +archaization,archaizations +archangel,archangels +arch,arches +arch,arches +archasterid,archasterids +archbishop,archbishops +archbishophood,archbishophoods +archbishopric,archbishoprics +archbishoprick,archbishopricks +arch bridge,arch bridges +archchamberlain,archchamberlains +archchancellor,archchancellors +archcompetitor,archcompetitors +archconservative,archconservatives +arch-criminal,arch-criminals +archcriminal,archcriminals +archdeacon,archdeacons +archdeaconry,archdeaconries +archdeaconship,archdeaconships +archdean,archdeans +archdeceiver,archdeceivers +arch dell,arch dells +archdemon,archdemons +archdevil,archdevils +archdiocese,archdioceses +arch doxy,arch doxies +archdruid,archdruids +archdruidess,archdruidesses +archduchess,archduchesses +archduchy,archduchies +archduke,archdukes +archdukedom,archdukedoms +archebacterium,archebacteria +archegonium,archegonia +archegosaurid,archegosaurids +archencephalon,archencephalons,archencephala +arch enemy,arch enemies +arch-enemy,arch-enemies +archenemy,archenemies +archenteron,archenterons,archentera +archeocrypticid,archeocrypticids +archeological horizon,archeological horizons +archeologist,archeologists +archeopteryx,archeopteryges +archeozoologist,archeozoologists +archer,archers +archeress,archeresses +archerfish,archerfish +archeriid,archeriids +archership,archerships +archet,archets +archetier,archetiers +archetype,archetypes +archeus,archei +archfiend,archfiends +archfoe,archfoes +archiannelid,archiannelids +archiater,archiaters +archicembalo,archicembalos +Archie,Archies +archiepiscopacy,archiepiscopacies +archiepiscopate,archiepiscopates +archigrapheme,archigraphemes +archil,archils +archiloquy,archiloquies +archilute,archilutes +archimage,archimages +archimagus,archimagi +archimandrite,archimandrites +Archimedean ordered field,Archimedean ordered fields +Archimedean property,Archimedean properties +Archimedean screw,Archimedean screws +Archimedean solid,Archimedean solids +Archimedean spiral,Archimedean spirals +Archimedes screw,Archimedes screws +Archimedes' screw,Archimedes' screws +archimime,archimimes +archimperialist,archimperialists +archinacellid,archinacellids +arching,archings +archipelago,archipelagos,archipelagoes +archiphoneme,archiphonemes +archipsocid,archipsocids +archipterygium,archiptergyia +architect,architects +architectonicid,architectonicids +architector,architectors +architectress,architectresses +architect's lien,architect's liens +architect's ruler,architect's rulers +architectural panel,architectural panels +architectural pattern,architectural patterns +architectural shingle,architectural shingles +architeuthid,architeuthids +architourist,architourists +architranseme,architransemes +architrave,architraves +archival science,archival sciences +archive,archives +archiver,archivers +archivist,archivists +archivolt,archivolts +archlute,archlutes +archmage,archmagi,archmages +archmagician,archmagicians +archmarshal,archmarshals +archmodernist,archmodernists +archmurderer,archmurderers +archnemesis,archnemeses +archon,archontes,archons +archonship,archonships +archontate,archontates +archosaur,archosaurs +archosaurian,archosaurians +archosauromorph,archosauromorphs +arch-pirate,arch-pirates +archpirate,archpirates +archprelate,archprelates +archpresbyter,archpresbyters +archpresbytery,archpresbyteries +archpriest,archpriests +archprimate,archprimates +arch rival,arch rivals +arch-rival,arch-rivals +archrival,archrivals +arch rivalry,arch rivalries +arch-rivalry,arch-rivalries +archrivalry,archrivalries +arch rogue,arch rogues +archsegregationist,archsegregationists +archtop,archtops +archtraitor,archtraitors +archtreasurer,archtreasurers +archvillain,archvillains +archvillainess,archvillainesses +archway,archways +archwife,archwives +archwire,archwires +archwizard,archwizards +arc-hyperbolic function,arc-hyperbolic functions +arcid,arcids +arc lamp,arc lamps +arclength,arclengths +arclet,arclets +arclight,arclights +arcmin,arcmins +arcminute,arcminutes +arcobacter,arcobacters +arcograph,arcographs +arcosolium,arcosolia +arcover,arcovers +arcsch,arcschs +arcsecant,arcsecants +arcsec,arcsecs +arcsech,arcsechs +arcsecond,arcseconds +arcsin,arcsins +arcsine,arcsines +arcsinh,arcsinhs +arctan,arctans +arctangent,arctangents +arctanh,arctanhs +arctic,arctics +Arctic char,Arctic chars +Arctic cod,Arctic cods +arctic fox,arctic foxes +arctic hare,arctic hares +arcticid,arcticids +Arctic loon,Arctic loons +arctic raspberry,arctic raspberries +arctic roll,arctic rolls +Arctic skua,Arctic skuas +arctic tern,arctic terns +Arctic wolf spider,Arctic wolf spiders +arctiid,arctiids +arctocyonid,arctocyonids +arctophile,arctophiles +arcturid,arcturids +arcubalist,arcubalists +arcubalister,arcubalisters +arcubus,arcubuses,arcubusses +arcus,arcus +ard,ards +ardeb,ardebs +ardeid,ardeids +ardency,ardencies +ardian,ardians +Ardian,Ardians +ardi gasna,ardi gasnas +ardour,ardours +area,areas,areΓ¦ +area code,area codes +area of influence,areas of influence +are,ares +area rug,area rugs +areaway,areaways +areca,arecas +areca nut,areca nuts +arecid,arecids +arefaction,arefactions +arena,arenas,arenΓ¦ +arenavirus,arenaviruses +arendator,arendators +arene,arenes +arene epoxide,arene epoxides +areneid,areneids +arene oxide,arene oxides +areng,arengs +arenicolid,arenicolids +arenicolite,arenicolites +arenite,arenites +arenium ion,arenium ions +arenocenium,arenoceniums +arenol,arenols +arenonitrile,arenonitriles +arenonium ion,arenonium ions +arenophile,arenophiles +arenosol,arenosols +arent,arents +areographer,areographers +areola,areolas,areolae,areolΓ¦ +areolation,areolations +areole,areoles +areolet,areolets +areologist,areologists +areometer,areometers +Areopagist,Areopagists +Areopagite,Areopagites +areostyle,areostyles +arepa,arepas +aretalogist,aretalogists +aretalogy,aretalogies +arete,aretes +arΓͺte,arΓͺtes +arethusa,arethusas +argala,argalas +argal,argals +argali,argalis +argan,argans +Argand lamp,Argand lamps +arg,args +argasid,argasids +argentaffin,argentaffins +argentation,argentations +Argentinean,Argentineans +argentine,argentines +Argentine,Argentines +Argentine tango,Argentine tangos +Argentinian,Argentinians +argentinid,argentinids +argid,argids +Argie,Argies +argie-bargie,argie-bargies +argileh,argilehs +argillan,argillans +argillite,argillites +arginase,arginases +argininal,argininals +argininosuccinate,argininosuccinates +arginyl,arginyls +argle-bargle,argle-bargles +Argobba,Argobbas,Argobba +argoletier,argoletiers +argonaut,argonauts +argonaute,argonautes +argonautid,argonautids +argopelter,argopelters +argosy,argosies +argot,argots +Argot,Argots +arguer,arguers +argufier,argufiers +arguido,arguidos +argulid,argulids +argument ad hominem,arguments ad hominem +argument,arguments +argument form,argument forms +argument-form,argument-forms +argument from design,arguments from design +argumentum ad fidem,argumenta ad fidem +argumentum ad populum,argumenta ad populum +argumentum ad verecundiam,argumenta ad verecundiam +argumentum,argumenta +argus,arguses +argutation,argutations +argy-bargy,argy-bargies +argyle,argyles +argyresthiid,argyresthiids +argyrin,argyrins +argyrosis,argyroses +argyrothecologist,argyrothecologists +arhat,arhats +ARIA,ARIAs +aria,arias,arie +Arian,Arians +Arian,Arians +Arian,Arians +ariary,ariaries +aridisol,aridisols +aridity,aridities +ariel,ariels +Aries,Aries +Arietian,Arietians +arietitid,arietitids +arietta,ariettas +ariette,ariettes +ariid,ariids +aril,arils +arillode,arillodes +arillus,arilli +ariolater,ariolaters +arionid,arionids +ariophantid,ariophantids +arioso,ariosos +aris,arises +arista,aristae,aristas +Aristarch,Aristarchs +aristarchy,aristarchies +arist,arists +aristo,aristos +aristocracy,aristocracies +aristocrat,aristocrats +Aristotelean,Aristoteleans +Aristotelian,Aristotelians +Aristotlean,Aristotleans +Aristotle's lantern,Aristotle's lanterns +aristotype,aristotypes +arithmancer,arithmancers +arithmetical set,arithmetical sets +arithmetic density,arithmetic densities +arithmetic function,arithmetic functions +arithmetic-geometric mean,arithmetic-geometric means +arithmetician,arithmeticians +arithmetic logic unit,arithmetic logic units +arithmetic mean,arithmetic means +arithmetic operation,arithmetic operations +arithmetic operator,arithmetic operators +arithmetic progression,arithmetic progressions +arithmetic series,arithmetic series +arithmetic spiral,arithmetic spirals +arithmetitian,arithmetitians +arithmomania,arithmomanias +arithmometer,arithmometers +arity,arities +arixeniid,arixeniids +Arizonan,Arizonans +Arizona room,Arizona rooms +Arizonian,Arizonians +arkan,arkans +Arkansan,Arkansans +Arkansas elevation,Arkansas elevations +ark,arks +ark clam,ark clams +arkeologist,arkeologists +ark-floater,ark-floaters +arkful,arkfuls +Arkie,Arkies +ark ruffian,ark ruffians +ark shell,ark shells +arkwright,arkwrights +armada,armadas +armadillidiid,armadillidiids +armadillo,armadillos,armadilloes +armado,armados,armadoes +armageddon,armageddons +Armagnac,Armagnacs +Armalite,Armalites +armamentarium,armamentariums,armamentaria +armament,armaments +armamentary,armamentaries +arm,arms +arm,arms +armature,armatures +armband,armbands +armbar,armbars +armbinder,armbinders +armbone,armbones +armchair,armchairs +armchair general,armchair generals +armchair hawk,armchair hawks +armed probe,armed probes +armed robbery,armed robberies +Armenian,Armenians +Armenian blackberry,Armenian blackberries +Armenian disease,Armenian diseases +armenoceratid,armenoceratids +Armenologist,Armenologists +Armenophile,Armenophiles +Armenophobe,Armenophobes +armet,armets +armful,armfuls,armsful +armguard,armguards +armhole,armholes +armie,armies +armiger,armigers +armil,armils +armilla,armillas,armillae +armillaria,armillarias +armill,armills +Armill,Armills +armillary sphere,armillary spheres +arming,armings +arming sword,arming swords +Arminian,Arminians +arminianist,arminianists +arminid,arminids +armistice,armistices +armlength,armlengths +armlet,armlets +armload,armloads +armlock,armlocks +armoir,armoirs +armoire,armoires +armonica,armonicas +armor-bearer,armor-bearers +armorbearer,armorbearers +armored car,armored cars +armored combat vehicle,armored combat vehicles +armored fighting vehicle,armored fighting vehicles +armored personnel carrier,armored personnel carriers +armored truck,armored trucks +armorer,armorers +armorial,armorials +Armorican,Armoricans +armorist,armorists +armor-piercing shot,armor-piercing shots +armorsmith,armorsmiths +armory,armories +armourbearer,armourbearers +armoured car,armoured cars +armoured combat vehicle,armoured combat vehicles +armoured fighting vehicle,armoured fighting vehicles +armoured personnel carrier,armoured personnel carriers +armoured truck,armoured trucks +armourer,armourers +armourial,armourials +armouring,armourings +armourist,armourists +armour plating,armour platings +armoursmith,armoursmiths +armoury,armouries +armpiece,armpieces +armpit,armpits +armpit fart,armpit farts +armrack,armracks +armrest,armrests +armsaye,armsayes +armscye,armscyes +arms factory,arms factories +armshield,armshields +arm's length,arm's lengths +arms race,arms races +armstand,armstands +Armstrong line,Armstrong lines +arm twisting,arm twistings +arm-twisting,arm-twistings +armure,armures +arm-wrestle,arm-wrestles +arm-wrestler,arm-wrestlers +army ant,army ants +army,armies +army brat,army brats +armyworm,armyworms +Arnaut,Arnauts +arni,arnis +arnica,arnicas +arnis,arnises +ARNK,ARNKs +Arnold Palmer,Arnold Palmers +Arnold Schwarzenegger,Arnold Schwarzeneggers +arnut,arnuts +A road,A roads +A-road,A-roads +aroid,aroids +a Roland for an Oliver,Rolands for Olivers +A roll,A rolls +aroma,aromas,aromata +Aromanian,Aromanians +aromantic,aromantics +aromaphyte,aromaphytes +aromatherapist,aromatherapists +aromatic,aromatics +aromatic compound,aromatic compounds +aromatick,aromaticks +aromatic vegetable,aromatic vegetables +aromatizer,aromatizers +Aronhold set,Aronhold sets +Arora,Aroras +arousal,arousals +arouser,arousers +arousing,arousings +aroyl,aroyls +arpeggiator,arpeggiators +arpeggio,arpeggios +arpeggione,arpeggiones +arpen,arpens +arpent,arpents +arpine,arpines +arquebusade,arquebusades +arquebus,arquebuses +arquebuse,arquebuses +arquebusier,arquebusiers +arracacha,arracachas +arrack,arracks +arraign,arraigns +arraigner,arraigners +arraignment,arraignments +arranged marriage,arranged marriages +arrangement,arrangements +arranger,arrangers +arras,arrases +arrasene,arrasenes +arrastΓ£o,arrastΓ΅es +arrastra,arrastras +arrastre,arrastres +array,arrays +array controller,array controllers +arrayer,arrayers +arread,arreads +arrearage,arrearages +arrear,arrears +arrectary,arrectaries +arrector pili,arrectores pilorum +arrentation,arrentations +Arrernte,Arrerntes +arrest,arrests +arrestation,arrestations +arrested development,arrested developments +arrestee,arrestees +arrester,arresters +arrestin,arrestins +arrestment,arrestments +arrestor,arrestors +arrest warrant,arrest warrants +Arrhenius equation,Arrhenius equations +arrhythmia,arrhythmias +arriere,arrieres +arriere-ban,arriere-bans +arriΓ¨re-pensΓ©e,arriΓ¨re-pensΓ©es +arripid,arripids +arripidid,arripidids +arris,arrises +arrish,arrishes +arrival,arrivals +arrivance,arrivances +arriver,arrivers +arriviste,arrivistes +arroba,arrobas +arrogancy,arrogancies +arrogation,arrogations +arrondissement,arrondissements +arrosion,arrosions +arrow,arrows +arrowback,arrowbacks +arrowe,arrowes +arrow-finger,arrow-fingers +arrowgrass,arrowgrasses +arrowhead,arrowheads +arrow key,arrow keys +arrowleaf groundse,arrowleaf groundses +arrowslit,arrowslits +arrowsmith,arrowsmiths +arrowwood,arrowwoods +arrow worm,arrow worms +arrowworm,arrowworms +arroyo,arroyos +arsabenzene,arsabenzenes +arsacid,arsacids +arsanthridine,arsanthridines +arsanylidene,arsanylidenes +arsanylium ion,arsanylium ions +arsazine,arsazines +arschin,arschins +arse,arses +arse bandit,arse bandits +arse breath,arse breaths +arsebreath,arsebreaths +arseface,arsefaces +arsehead,arseheads +arsehole,arseholes +arseholery,arseholeries +arse-kisser,arse-kissers +arse licker,arse lickers +arse-licker,arse-lickers +arselicker,arselickers +arsemunch,arsemunches +arsenal,arsenals +arsenate,arsenates +arseniasis,arseniases +arseniate,arseniates +arsenical,arsenicals +arsenical bronze,arsenical bronzes +arsenicosis,arsenicoses +arsenide,arsenides +arsenite,arsenites +arseniuret,arseniurets +arsenobenzene,arsenobenzenes +arsenobetaine,arsenobetaines +arsenocholine,arsenocholines +arsenochromate,arsenochromates +arsenolidine,arsenolidines +arsenolipid,arsenolipids +arsenolite,arsenolites +arsenosugar,arsenosugars +arsepane,arsepanes +arsepine,arsepines +arsetane,arsetanes +arsete,arsetes +arsewipe,arsewipes +arshin,arshins +arshine,arshines +arsindole,arsindoles +arsindolizine,arsindolizines +arsinediyl,arsinediyls +arsinidene,arsinidenes +arsinine,arsinines +arsinoline,arsinolines +arsinolizine,arsinolizines +arsinous acid,arsinous acids +arsinoyl,arsinoyls +arsirene,arsirenes +arsis,arses +Arsis,arses +arsmart,arsmarts +arsocane,arsocanes +arsoline,arsolines +arson dog,arson dogs +arsonic acid,arsonic acids +arsonist,arsonists +arsonium compound,arsonium compounds +arsonous acid,arsonous acids +arsorane,arsoranes +artamid,artamids +artboard,artboards +artbook,artbooks +art collection,art collections +art dealer,art dealers +artedidraconid,artedidraconids +artefact,artefacts +artel,artels +artemia,artemias +artemin,artemins +artemisia,artemisias +artemon,artemons +arteria,arteriae +arterial,arterials +arterial blood gas,arterial blood gases +arterialization,arterializations +arterial road,arterial roads +arteriogenesis,arteriogeneses +arteriogram,arteriograms +arteriola,arteriolae +arteriole,arterioles +arteriopathy,arteriopathies +arteriosclerosis,arterioscleroses +arteriotomy,arteriotomies +arteriovenous fistula,arteriovenous fistulas +arteriovenous malformation,arteriovenous malformations +arteritis,arteritides +arterivirus,arteriviruses +arternoon,arternoons +artery,arteries +artery of Adamkiewicz,arteries of Adamkiewicz +artesian bore,artesian bores +artesian water,artesian waters +artesian well,artesian wells +artesunate,artesunates +artfag,artfags +artfest,artfests +art film,art films +art form,art forms +artform,artforms +artfuck,artfucks +art gallery,art galleries +art game,art games +art historian,art historians +art house,art houses +arthouse,arthouses +arthralgia,arthralgias +arthritic,arthritics +arthritis,arthritides +arthroconidium,arthroconidia +arthroderm,arthroderms +arthrodesis,arthrodeses +arthrodia,arthrodias +arthrodiran,arthrodirans +arthrodire,arthrodires +arthrogram,arthrograms +arthrogryposis,arthrogryposes +arthroleptid,arthroleptids +arthromere,arthromeres +arthrometer,arthrometers +arthropathy,arthropathies +arthrophyte,arthrophytes +arthroplast,arthroplasts +arthroplasty,arthroplasties +arthropleurid,arthropleurids +arthropod,arthropods,arthropodae +arthropodin,arthropodins +arthropodologist,arthropodologists +arthroscope,arthroscopes +arthroscopist,arthroscopists +arthroscopy,arthroscopies +arthrosis,arthroses +arthrospore,arthrospores +arthrotomy,arthrotomies +Arthur Daley,Arthur Daleys +artic,artics +artichoke,artichokes +artichoke bottom,artichoke bottoms +article,articles +articled clerk,articled clerks +article of extraordinary value,articles of extraordinary value +article of faith,articles of faith +articling clerk,articling clerks +articular cartilage,articular cartilages +articular facet,articular facets +articulary,articularies +articulate,articulates +articulated bus,articulated buses +articulated lorry,articulated lorries +articulation,articulations +articulator,articulators +articulus,articuli +artifact,artifacts +artifice,artifices +artificer,artificers +artificial abortion,artificial abortions +artificial anus,artificial anuses +artificial florist,artificial florists +artificial horizon,artificial horizons +artificial intelligence,artificial intelligences +artificial language,artificial languages +artificial person,artificial persons +artificial respiration,artificial respirations +artificial sweetener,artificial sweeteners +artilect,artilects +artillerist,artillerists +artillery,artilleries +artilleryman,artillerymen +artillerywoman,artillerywomen +artiodactyl,artiodactyls +artiodactyle,artiodactyles +artisan,artisans +artist,artists,artistΓ¦ +artistdom,artistdoms +artiste,artistes +artistic revolution,artistic revolutions +artist's proof,artist's proofs +artivist,artivists +artizan,artizans +art journal,art journals +artlang,artlangs +artlanger,artlangers +artmaker,artmakers +artmobile,artmobiles +art movement,art movements +art movie,art movies +artotype,artotypes +Artotyrite,Artotyrites +art paper,art papers +art room,art rooms +artroom,artrooms +art school,art schools +arts degree,arts degrees +artsman,artsmen +art student,art students +art union,art unions +artworld,artworlds +Aruban,Arubans +Arubian,Arubians +arugula,arugulas,arugula +arum,arums +arum lily,arum lilies +arundinoid,arundinoids +arval,arvals +arvel,arvels +Arverni,Arverni +arvicole,arvicoles +arvicolid,arvicolids +arvo,arvos +arvy,arvies +Aryan,Aryans +Aryanization,Aryanizations +aryepiglotticus,aryepiglottici +arylamination,arylaminations +arylamine,arylamines +arylamino,arylaminos +aryl,aryls +arylate,arylates +arylation,arylations +arylazole,arylazoles +arylcyclohexamine,arylcyclohexamines +arylcyclohexylamine,arylcyclohexylamines +aryldiazonium,aryldiazoniums +arylene,arylenes +arylesterase,arylesterases +arylhydrazine,arylhydrazines +arylhydrazone,arylhydrazones +arylhydroxylamine,arylhydroxylamines +arylidene,arylidenes +arylimine,arylimines +aryloxide,aryloxides +aryloxy,aryloxys +arylsulfatase,arylsulfatases +arylsulfotransferase,arylsulfotransferases +arylsulphatase,arylsulphatases +arylsulphotransferase,arylsulphotransferases +arylthiourea,arylthioureas +aryne,arynes +arytenoid,arytenoids +ASA character,ASA characters +asana,asanas +asaphid,asaphids +asarone,asarones +as,asses +ASAT,ASATs +asatone,asatones +Asatruar,Asatruars +asbestosis,asbestoses +ASBM,ASBMs +asbo,asbos +Asbo,Asbos +ASBO,ASBOs +asbuilt,asbuilts +ascalaphid,ascalaphids +ascaphid,ascaphids +ascar,ascars +ascaricide,ascaricides +ascarid,ascarids +ascaridid,ascaridids +ascaridole,ascaridoles +ascaroside,ascarosides +ascendance,ascendances +ascendancy,ascendancies +ascendant,ascendants +ascendency,ascendencies +ascendent,ascendents +ascender,ascenders +ascending colon,ascending colons +ascension,ascensions +Ascension Islander,Ascension Islanders +ascent,ascents +ascertainer,ascertainers +ascertainment,ascertainments +ascetic,ascetics +ascetick,asceticks +ascham,aschams +aschelminth,aschelminths +a scholar and a gentleman,scholars and gentlemen +a-schwa,a-schwas +ascian,ascians,ascii +ascid,ascids +ascidiacean,ascidiaceans +ascidian,ascidians +ascidiarium,ascidiaria +ascidiid,ascidiids +ascidiozooid,ascidiozooids +ascidium,ascidia +ascites,ascites +Asclepiad,Asclepiads +ascocarp,ascocarps +ascoceratid,ascoceratids +ascococcus,ascococci +ascoma,ascomata +ascomycete,ascomycetes +ascon,ascons +ascopore,ascopores +ascorbate,ascorbates +ascorbyl,ascorbyls +ascospore,ascospores +ascot,ascots +ascot tie,ascot ties +ascovirus,ascoviruses +ascribed status,ascribed statuses +ascus,asci +asellid,asellids +asexual,asexuals +asexual spore,asexual spores +Ashantee,Ashantees +Ashanti,Ashantis,Ashanti +ash blonde,ash blondes +AShBM,AShBMs +ashcake,ashcakes +ashcan,ashcans +ashdump,ashdumps +ashdump door,ashdump doors +asher,ashers +ashery,asheries +ashet,ashets +ashfall,ashfalls +ash gourd,ash gourds +ashing,ashings +A-shirt,A-shirts +Ashkenazi,Ashkenazim +ashlar,ashlars +ashlaring,ashlarings +ash-leaf,ash-leaves +ashler,ashlers +ashlering,ashlerings +Ashley's bend,Ashley's bends +ashpit,ashpits +ashplant,ashplants +Ashrafi,Ashrafis +ashrama,ashramas +ashram,ashrams +ashramite,ashramites +ashtanga,ashtangas +ashtray,ashtrays +ash tree,ash trees +ashwagandha,ashwagandhas +Ash Wednesday,Ash Wednesdays +ashweed,ashweeds +asiago,asiagos +asialoglycoprotein,asialoglycoproteins +Asian,Asians +Asian bearcat,Asian bearcats +Asian black rat,Asian black rats +Asian elephant,Asian elephants +Asian Indian,Asian Indians +Asianisation,Asianisations +Asianization,Asianizations +Asian lion,Asian lions +Asian pear,Asian pears +Asian Semi-longhair,Asian Semi-longhairs +Asiaphile,Asiaphiles +Asiarch,Asiarchs +Asiatic,Asiatics +Asiaticism,Asiaticisms +Asiatic wildcat,Asiatic wildcats +aside,asides +A-side,A-sides +asilid,asilids +asimina,asiminas +ASIN,ASINs +asine,asines +asiphonate,asiphonates +askard,askards +ask,asks +ask,asks +asker,askers +asker,askers +askerd,askerds +asking,askings +asking price,asking prices +asklepian,asklepians +AS level,AS levels +AS-level,AS-levels +AS Level,AS Levels +ASM,ASMs +asmatographer,asmatographers +Asmonean,Asmoneans +asomatognosia,asomatognosias +asopid,asopids +aspalathus,aspalathuses +asparaginyl,asparaginyls +asparagoid,asparagoids +asparagus,asparagus,asparaguses +asparagus beetle,asparagus beetles +aspartase,aspartases +aspartate,aspartates +aspartyl,aspartyls +aspartylglutamate,aspartylglutamates +asp,asps +asp,asps +A Special,A Specials +aspectant,aspectants +aspect,aspects +aspect-oriented software development,aspect-oriented software developments +aspect ratio,aspect ratios +aspen,aspens +aspenglow,aspenglows +asper,aspers +asperation,asperations +Aspergerian,Aspergerians +Asperger syndrome,Asperger syndromes +Aspergian,Aspergians +aspergill,aspergills +aspergillium,aspergillia +aspergilloma,aspergillomas,aspergillomata +aspergillosis,aspergilloses +aspergillum,aspergilla,aspergillums +aspergillus,aspergilli +asperity,asperities +asperser,aspersers +aspersion,aspersions +aspersoir,aspersoirs +aspersorium,aspersoria,aspersoriums +asphalt,asphalts +asphalte,asphaltes +asphalt emulsion,asphalt emulsions +asphaltene,asphaltenes +asphalt jungle,asphalt jungles +asphalt shingle,asphalt shingles +asphere,aspheres +asphyxiant,asphyxiants +asphyxiation,asphyxiations +asphyxy,asphyxies +aspic,aspics +aspidistra,aspidistras +aspidobranch,aspidobranchs +aspidoceratid,aspidoceratids +aspidodiadematid,aspidodiadematids +aspidorhynchid,aspidorhynchids +aspidosiphonid,aspidosiphonids +aspie,aspies +Aspie,Aspies +aspirant,aspirants +aspirate,aspirates +aspirate mutation,aspirate mutations +aspirational,aspirationals +aspiration,aspirations +aspiration,aspirations +aspirator,aspirators +aspirer,aspirers +aspirinate,aspirinates +aspis,aspides +aspredinid,aspredinids +aspro,aspros +aspron,asprons +aspulvinone,aspulvinones +āśram,āśrams +assagaie,assagaies +assagay,assagays +assage,assages +assailant,assailants +assailer,assailers +assailment,assailments +assamiid,assamiids +assapan,assapans +assart,assarts +ass,asses +assassin,assassins +assassinate,assassinates +assassination,assassinations +assassinator,assassinators +assassinatrix,assassinatrices +assassin bug,assassin bugs +assation,assations +assault,assaults +assaultee,assaultees +assaulter,assaulters +assault rifle,assault rifles +assault weapon,assault weapons +assay,assays +assay dish,assay dishes +assay-dish,assay-dishes +assayer,assayers +assaying,assayings +assay plate,assay plates +assay ton,assay tons +ass bandit,ass bandits +assbrain,assbrains +ass breath,ass breaths +ass-breath,ass-breaths +assbreath,assbreaths +ass call,ass calls +ass catch,ass catches +asscheek,asscheeks +ass clown,ass clowns +assclown,assclowns +ass crack,ass cracks +asscrack,asscracks +asse,asses +asse,asses +assecuration,assecurations +assegai,assegais +assegay,assegays +assemblage,assemblages +assemblage point,assemblage points +assemblance,assemblances +assemblaunce,assemblaunces +assembler,assemblers +assembly,assemblies +assembly language,assembly languages +assembly line,assembly lines +assemblyman,assemblymen +assemblymember,assemblymembers +Assembly of God,Assemblies of God +assemblyperson,assemblypersons,assemblypeople +assemblywoman,assemblywomen +assent,assents +assentator,assentators +assenter,assenters +assert,asserts +assertation,assertations +asserter,asserters +assertion,assertions +assertor,assertors +assessee,assessees +assession,assessions +assessment,assessments +assessor,assessors +assessorial,assessorials +assessour,assessours +asset,assets +asseveration,asseverations +assface,assfaces +assfuck,assfucks +assfucker,assfuckers +asshat,asshats +asshelmet,asshelmets +asshole,assholes +assholery,assholeries +assholism,assholisms +asshurance,asshurances +assicon,assicons +Assidean,Assideans +assiduity,assiduities +assiege,assieges +assientist,assientists +assiento,assientos,assientoes +assig,assigs +assign,assigns +assignat,assignats +assignation,assignations +assigned servant,assigned servants +assignee,assignees +assigner,assigners +assignment,assignments +assignor,assignors +assimilation,assimilations +assimilationist,assimilationists +assimilator,assimilators +assimineid,assimineids +assinego,assinegos,assinegoes +assise,assises +assistance,assistances +assistance dog,assistance dogs +assistant,assistants +assistant referee,assistant referees +assistantship,assistantships +assist,assists +assistaunce,assistaunces +assistaunt,assistaunts +assisted reproductive technology,assisted reproductive technologies +assister,assisters +assistive technology,assistive technologies +assistor,assistors +assize,assizes +assizer,assizers +assizor,assizors +ass juice,ass juices +ass kicking,ass kickings +ass-kicking,ass-kickings +ass kisser,ass kissers +ass-kisser,ass-kissers +asskisser,asskissers +ass kissing,ass kissings +ass licker,ass lickers +ass-licker,ass-lickers +asslicker,asslickers +assload,assloads +assman,assmen +assmonkey,assmonkeys +assmunch,assmunches +assmuncher,assmunchers +ass'n,ass'ns +assn,assns +associahedron,associahedra +associanism,associanisms +associate,associates +Associate,Associates +associate's degree,associates' degrees +associateship,associateships +association,associations +associationist,associationists +association list,association lists +associatism,associatisms +associative array,associative arrays +associativity,associativities +associator,associators +assoilment,assoilments +assoilment,assoilments +assonance,assonances +assortative mating,assortative matings +assortative pairing,assortative pairings +assortment,assortments +assprint,assprints +asspussy,asspussies +ass-rape,ass-rapes +asstard,asstards +asstunnel,asstunnels +assuagement,assuagements +assuager,assuagers +assuasive,assuasives +assumed name,assumed names +assument,assuments +assumer,assumers +assumpsit,assumpsits +assumpt,assumpts +assumptio,assumptios +assumption,assumptions +assurance,assurances +assuraunce,assuraunces +assurer,assurers +assurgency,assurgencies +assurgent,assurgents +assuror,assurors +asswad,asswads +asswhore,asswhores +asswipe,asswipes +Assyrian,Assyrians +assyriologist,assyriologists +astacid,astacids +astartid,astartids +astatate,astatates +astatide,astatides +asteiid,asteiids +asteism,asteisms +astel,astels +a-stem,a-stems +aster,asters +asteriid,asteriids +asterinid,asterinids +asterion,asterions,asteria +asterisc,asteriscs +asteriscus,asterisci +asterisk,asterisks +asterism,asterisms +asterixis,asterixes +asteroid,asteroids +asteroid belt,asteroid belts +asteroidian,asteroidians +asterolecaniid,asterolecaniids +asterophyllite,asterophyllites +asteroseismologist,asteroseismologists +asterosteid,asterosteids +asthenosphere,asthenospheres +asthma attack,asthma attacks +asthmatic,asthmatics +asthmatick,asthmaticks +astigmatism,astigmatisms +astilbe,astilbes +Aston dark space,Aston dark spaces +astrachan,astrachans +astraean,astraeans +astragal,astragals +astragalectomy,astragalectomies +astragaloside,astragalosides +astragalus,astragali +astrakhan,astrakhans +Astrakhanian,Astrakhanians +astral lamp,astral lamps +astral spirit,astral spirits +astrantia,astrantias +astrapothere,astrapotheres +astrapotheriid,astrapotheriids +astration,astrations +astrictive,astrictives +astringence,astringences +astringency,astringencies +astringent,astringents +astringer,astringers +Astro,Astros +astrobiologist,astrobiologists +astroblast,astroblasts +astroblastoma,astroblastomas,astroblastomata +astrobleme,astroblemes +astroblepid,astroblepids +astro-boffin,astro-boffins +astrochemist,astrochemists +astrochimp,astrochimps +astroclimate,astroclimates +astrocoeniid,astrocoeniids +astrocompass,astrocompasses +astrocyte,astrocytes +astrocytin,astrocytins +astrocytoma,astrocytomas,astrocytomata +astrocytosis,astrocytoses +astrodome,astrodomes +astrogator,astrogators +astrogeologist,astrogeologists +astrogeophysicist,astrogeophysicists +astrogliosis,astroglioses +astrograph,astrographs +astroid,astroids +astrointerferometer,astrointerferometers +astroite,astroites +astrolabe,astrolabes +astrolater,astrolaters +astrologer,astrologers +astrologian,astrologians +astrological sign,astrological signs +astrologist,astrologists +astrologue,astrologues +astrometeorologist,astrometeorologists +astrometer,astrometers +astronaut,astronauts +astronavigator,astronavigators +astronomer,astronomers +astronomian,astronomians +astronomical unit,astronomical units +astronomical year,astronomical years +astronomist,astronomists +astronomy,astronomies +astroparticle,astroparticles +astropause,astropauses +astropecten,astropectens +astropectinid,astropectinids +astrophorid,astrophorids +astrophoto,astrophotos +astrophotograph,astrophotographs +astrophotographer,astrophotographers +astrophysicist,astrophysicists +astrophyton,astrophytons +astroscope,astroscopes +astrosheath,astrosheaths +astroship,astroships +astrosphere,astrospheres +astrotail,astrotails +astrotracker,astrotrackers +astroturf,astroturfs +astroturfer,astroturfers +astrovirus,astroviruses +Asturian,Asturians +Asturianism,Asturianisms +Asturian pony,Asturian ponies +asura,asuras +Asura,Asuras +asylee,asylees +asylum,asylums +asylum seeker,asylum seekers +asymmetrical spinnaker,asymmetrical spinnakers +asymmetric centre,asymmetric centres +Asymmetric Digital Subscriber Line,Asymmetric Digital Subscriber Lines +asymmetric synthesis,asymmetric syntheses +asymmetry,asymmetries +asymptote,asymptotes +asymptotic analysis,asymptotic analyses +asymtope,asymtopes +asynartete,asynartetes +asyndeton,asyndetons,asyndeta +asystole,asystoles +atabal,atabals +Atacaman,Atacamans +Atacamanian,Atacamanians +Atacamenian,Atacamenians +Atacamian,Atacamians +atactostele,atactosteles +Atafuan,Atafuans +ataghan,ataghans +ataman,atamans +atamasco lily,atamasco lilies +Atamasco lily,Atamasco lilies +ataphrid,ataphrids +ataractic,ataractics +atar,atars +ataraxy,ataraxies +atari,atari,ataris,ataries +Atari,Ataris +at,ats +atavism,atavisms +atavist,atavists +ataxin,ataxins +ataxite,ataxites +at bat,at bats +at-bat,at-bats +ATB,ATBs +atchievement,atchievements +A team,A teams +A-team,A-teams +ateji,ateji +atelecyclid,atelecyclids +ateleopodid,ateleopodids +atelestid,atelestids +atelestite,atelestites +atelid,atelids +atelier,ateliers +atelierista,atelieristas +Atellan,Atellans +atelurid,atelurids +atemoya,atemoyas +atgar,atgars +ATGM,ATGMs +Athabascan,Athabascans +Athabaskan,Athabaskans +athame,athames +Athanasian wench,Athanasian wenches +athan,athans +athanor,athanors +Athapascan,Athapascans +Athapaskan,Athapaskans +atheism,atheisms +atheist,atheists +athel,athels +atheldom,atheldoms +atheling,athelings +athenaeum,athenaeums +Athenian,Athenians +atheophobe,atheophobes +atherectomy,atherectomies +athericid,athericids +atherine,atherines +atherinid,atherinids +atherinomorph,atherinomorphs +atherinopsid,atherinopsids +atheroma,atheromas,atheromata +atherosclerogenesis,atherosclerogeneses +atherosclerosis,atheroscleroses +atherosis,atheroses +atherothrombosis,atherothromboses +athetosis,athetoses +athlete,athletes +athlete's girdle,athlete's girdles +Athletic,Athletics +athletic protector,athletic protectors +athletic supporter,athletic supporters +athodyd,athodyds +at home,at homes +at-home card,at-home cards +athoracophorid,athoracophorids +Atikamekw,Atikamekw +atisane,atisanes +Atlantan,Atlantans +Atlantean,Atlanteans +Atlantian,Atlantians +Atlantian,Atlantians +Atlantic halibut,Atlantic halibuts +Atlantic herring,Atlantic herrings +Atlanticist,Atlanticists +Atlantic pollock,Atlantic pollocks,Atlantic pollock +Atlantic pomfret,Atlantic pomfrets +Atlantic tomcod,Atlantic tomcods +atlantid,atlantids +Atlantist,Atlantists +atlantosaurid,atlantosaurids +atlas,atlases,atlantes +Atlas lion,Atlas lions +Atlas moth,Atlas moths +atlastin,atlastins +atlatl,atlatls +atlatlist,atlatlists +atled,atleds +atman,atmans +ATM,ATMs +atmidometer,atmidometers +ATM machine,ATM machines +atmo,atmos +atmologist,atmologists +atmolyzer,atmolyzers +atmometer,atmometers +atmophile,atmophiles +atmosphΓ¦re,atmosphΓ¦res +atmosphere,atmospheres +atmospheric tide,atmospheric tides +atoll,atolls +atoll fruit dove,atoll fruit doves +atom,atoms +atom bomb,atom bombs +atomic battery,atomic batteries +atomic bomb,atomic bombs +atomic clock,atomic clocks +atomic force microscope,atomic force microscopes +atomician,atomicians +atomic mass,atomic masses +atomic mass unit,atomic mass units +atomic nucleus,atomic nuclei +atomic number,atomic numbers +atomic orbital,atomic orbitals +atomic pile,atomic piles +atomic theory,atomic theories +atomic weapon,atomic weapons +atomic wedgie,atomic wedgies +atomic weight,atomic weights +atomic winter,atomic winters +atomiser,atomisers +atomist,atomists +atomization,atomizations +atomizer,atomizers +atom smasher,atom smashers +atomus,atomi +atomy,atomies +atomy,atomies +atonalist,atonalists +atonement,atonements +atoner,atoners +atoposaurid,atoposaurids +atopy,atopies +A to Z,A to Zs +ATPase,ATPases +atractaspidid,atractaspidids +atrane,atranes +atrate,atrates +Atreid,Atreids +atresia,atresias +atrial fibrillation,atrial fibrillations +atrial natriuretic peptide,atrial natriuretic peptides +atrichornithid,atrichornithids +atriopore,atriopores +atriotomy,atriotomies +atrium,atria,atriums +atrocha,atrochae +atrophin,atrophins +atrophoderma,atrophodermas +atrophy,atrophies +atropisomer,atropisomers +atropoisomer,atropoisomers +at sign,at signs +at symbol,at symbols +attabal,attabals +attaboy,attaboys +attache,attaches +attachΓ©,attachΓ©s +attachΓ© case,attachΓ© cases +attacher,attachers +attachment disorder,attachment disorders +attack,attacks +attack au fer,attacks au fer +attack dog,attack dogs +attackee,attackees +attacker,attackers +attacking midfielder,attacking midfielders +attacking zone,attacking zones +attackman,attackmen +attagen,attagens +attaghan,attaghans +attainable,attainables +attainder,attainders +attaindre,attaindres +attainer,attainers +attainment,attainments +attainor,attainors +attaint,attaints +attaintment,attaintments +attainture,attaintures +attapulgite,attapulgites +attar,attars +att,att +atteint,atteints +attelabid,attelabids +attemperation,attemperations +attemperator,attemperators +attempt,attempts +attempted rape,attempted rapes +attempter,attempters +attendance allowance,attendance allowances +attendance,attendances +attendant,attendants +attendaunce,attendaunces +attendaunt,attendaunts +attendee,attendees +attender,attenders +attending,attendings +attendment,attendments +attentat,attentats +attentate,attentates +attention seeker,attention seekers +attention-seeker,attention-seekers +attention span,attention spans +attention whore,attention whores +attenuance,attenuances +attenuant,attenuants +attenuation,attenuations +attenuator,attenuators +atter,atters +attercop,attercops +attestability,attestabilities +attestation,attestations +attester,attesters +attestor,attestors +attic,attics +Atticism,Atticisms +Atticus Finch,Atticus Finches +attid,attids +attila,attilas +attire,attires +attirer,attirers +attitude indicator,attitude indicators +attitudinarian,attitudinarians +attitudinizer,attitudinizers +attle,attles +attoampere,attoamperes +attogram,attograms +attogramme,attogrammes +attohertz,attohertz +attojoule,attojoules +attokatal,attokatals +attoliter,attoliters +attolitre,attolitres +attometer,attometers +attometre,attometres +attomole,attomoles +attoparsec,attoparsecs +attoreactor,attoreactors +attorney,attorneys +attorney-client privilege,attorney-client privileges +attorney general,attorneys general +attorney-in-fact,attorneys-in-fact +attorney of record,attorneys of record +attorney's fee,attorney's fee +attorneyship,attorneyships +attorney's lien,attorney's liens +attornment,attornments +attorny,attornies +attosecond,attoseconds +attowatt,attowatts +attractancy,attractancies +attractant,attractants +attractive nuisance,attractive nuisances +attract mode,attract modes +attractor,attractors +attrahent,attrahents +attrib,attribs. +attribute,attributes +attributee,attributees +attributional complexity,attributional complexities +attribution,attributions +attribution theory,attribution theories +attributive adjective,attributive adjectives +attributive,attributives +attributive noun,attributive nouns +attritee,attritees +attriter,attriters +attrition damage,attrition damages +attritor,attritors +atyid,atyids +atylid,atylids +A-type conflict,A-type conflicts +atypical,atypicals +atypical tarantula,atypical tarantulas +atypid,atypids +a.u.,a.u.s +A.U.,A.U.'s +AU,AUs +aubade,aubades +aube,aubes +auberge,auberges +aubergine,aubergines +aubrite,aubrites +auchenipterid,auchenipterids +Aucklander,Aucklanders +auctionability,auctionabilities +auction,auctions +auction call,auction calls +auctioneer,auctioneers +auctiongoer,auctiongoers +auctorial descriptive,auctorial descriptives +aucuba,aucubas +audacity,audacities +audible,audibles +audience,audiences +audient,audients +audile,audiles +audio book,audio books +audio-book,audio-books +audiobook,audiobooks +audio cassette,audio cassettes +audiocassette,audiocassettes +audio CD,audio CDs +audio coil,audio coils +audio commentary,audio commentaries +audio DVD,audio DVDs +audio frequency,audio frequencies +audiogram,audiograms +audiographer,audiographers +audio guide,audio guides +audioguide,audioguides +audiologist,audiologists +audio mastering,audio masterings +audiometer,audiometers +audiometrist,audiometrists +audion,audions +audion tube,audion tubes +audiopathy,audiopathies +audiophile,audiophiles +audiotape,audiotapes +audio tour,audio tours +audiotrack,audiotracks +audio-typist,audio-typists +audiphone,audiphones +audita querela,audita querelas +audit,audits +auditee,auditees +auditionee,auditionees +auditioner,auditioners +auditor,auditors +auditorium,auditoriums,auditoria +auditory,auditories +auditory canal,auditory canals +auditour,auditours +auditress,auditresses +audit trail,audit trails +aufeis,aufeis +Aufgabe,Aufgabes,Aufgaben +aufwuch,aufwuchs +augaptilid,augaptilids +augend,augends +auger,augers +auget,augets +aught,aughts +aught,aughts +augmentation,augmentations +augmentation cystoplasty,augmentation cystoplasties +augmentative,augmentatives +augment,augments +augmented fifth,augmented fifths +augmented fourth,augmented fourths +augmented interval,augmented intervals +augmented ninth,augmented ninths +augmented octave,augmented octaves +augmented reality,augmented realities +augmented second,augmented seconds +augmented seventh,augmented sevenths +augmented sixth,augmented sixths +augmented sixth chord,augmented sixth chords +augmented third,augmented thirds +augmented triad,augmented triads +augmented unison,augmented unisons +augmenter,augmenters +augurate,augurates +augur,augurs +augurer,augurers +augurist,augurists +augurship,augurships +augury,auguries +auguste,augustes +Augustinian,Augustinians +auk,auks +auklet,auklets +aula,aulas,aulae,aulΓ¦ +aulacid,aulacids +aulacigastrid,aulacigastrids +aulacogen,aulacogens +aula magna,aulae magnae +aularian,aularians +aul,auls +aulete,auletes +auletris,auletrides +aulic,aulics +aulnage,aulnages +aulnager,aulnagers +auln,aulns +aulopid,aulopids +aulopiform,aulopiforms +aulorhynchid,aulorhynchids +aulos,auloi +aulostomid,aulostomids +aumbrie,aumbries +aumbry,aumbries +aumery,aumeries +auncel,auncels +auncestor,auncestors +auncestour,auncestours +auncestrie,auncestries +auncestry,auncestries +auncetry,auncetries +aune,aunes +aunt,aunts +aunter,aunters +auntie,aunties +Aunt Minnie,Aunt Minnies +aunty,aunties +auol,auols +au pair,au pairs +aura,aurae,aurΓ¦,auras +auramine,auramines +aurate,aurates +aureity,aureities +aurelia,aurelias +aureola,aureolas,aureolae +aureole,aureoles +aureus,aurei +aurichalcite,aurichalcites +auricle,auricles +auricula,auriculae +auricular,auriculars +auricular muscle,auricular muscles +auriculotherapist,auriculotherapists +auride,aurides +aurification,aurifications +auriflamme,auriflammes +aurigation,aurigations +Aurignacian,Aurignacians +aurintricarboxylate,aurintricarboxylates +auripigment,auripigments +auriscalp,auriscalps +auriscalpium,auriscalpiums,auriscalpia +auriscope,auriscopes +aurist,aurists +auroch,aurochs +aurochs,aurochs,aurochses,aurochsen +aurora,auroras,aurorae +aurothiomalate,aurothiomalates +aurothiosulfate,aurothiosulfates +aurum,aurums +auscultator,auscultators +ausktribosphenid,ausktribosphenids +auslaut,auslauts +Ausonian,Ausonians +auspice,auspices +Aussie,Aussies +Aussie battler,Aussie battlers +austausch coefficient,austausch coefficients +austenite,austenites +Austenite,Austenites +austenitic steel,austenitic steels +auster,austers +Austerian,Austerians +Australasian,Australasians +Australasian pig-nose turtle,Australasian pig-nose turtles +austral,australs +Australian,Australians +Australian ballot,Australian ballots +Australian Cattle Dog,Australian Cattle Dogs +Australian dollar,Australian dollars +Australianism,Australianisms +Australianist,Australianists +Australian magpie,Australian magpies +Australian Mist,Australian Mists +Australian pelican,Australian pelicans +Australian Shepherd,Australian Shepherds +Australoid,Australoids +australopith,australopiths +Australopith,Australopiths +australopithecine,australopithecines +Australopithecine,Australopithecines +Austrasian,Austrasians +Austrian,Austrians +austringer,austringers +Austronesian,Austronesians +Austronesianist,Austronesianists +Austrophobe,Austrophobes +autacoid,autacoids +autantonym,autantonyms +autapomorph,autapomorphs +autapomorphy,autapomorphies +autapse,autapses +autarch,autarchs +autarchy,autarchies +autarky,autarkies +autecologist,autecologists +autem bawler,autem bawlers +autem cackler,autem cacklers +autem dipper,autem dippers +autem diver,autem divers +autem mort,autem morts +auteur,auteurs +auteurist,auteurists +authentication,authentications +authenticator,authenticators +authentic cadence,authentic cadences +authenticist,authenticists +author,authors +authoress,authoresses +authoring,authorings +authoring program,authoring programs +authorisation,authorisations +authorised term,authorised terms +authoritarian,authoritarians +authoritie,authorities +authorized term,authorized terms +authorizer,authorizers +authorship,authorships +authour,authours +authouress,authouresses +autie,auties +autism spectrum disorder,autism spectrum disorders +autist,autists +autistic,autistics +autistic spectrum disorder,autistic spectrum disorders +autoacceleration,autoaccelerations +autoacetylation,autoacetylations +autoactivation,autoactivations +autoadjuvant,autoadjuvants +autoamputation,autoamputations +autoanalyser,autoanalysers +autoanalysis,autoanalyses +autoanalyzer,autoanalyzers +autoantibody,autoantibodies +autoantigen,autoantigens +autoantonym,autoantonyms +auto,autos +autobahn,autobahns,autobahnen +autobio,autobios +autobiog,autobiogs +autobiographer,autobiographers +autobiographist,autobiographists +autobiography,autobiographies +autobiopic,autobiopics +auto body,auto bodies +autobody,autobodies +autobuffet,autobuffets +autobus,autobuses +autocab,autocabs +autocancel,autocancels +autocannon,autocannons +autocatalyst,autocatalysts +autochanger,autochangers +autochef,autochefs +autochrome,autochromes +autochronograph,autochronographs +autochthon,autochthons,autochthones +autochthony,autochthonies +autocide,autocides +autocide,autocides +autoclave,autoclaves +autoclitic,autoclitics +autocode,autocodes +autocoid,autocoids +autocollimation,autocollimations +autocollimator,autocollimators +autoconversion,autoconversions +autocorrelation,autocorrelations +autocorrelator,autocorrelators +autocoup,autocoups +autocracy,autocracies +autocrat,autocrats +autocrator,autocrators +autocratrix,autocratrices +autocritique,autocritiques +autocue,autocues +autocycle,autocycles +autocyst,autocysts +auto da fe,auto da fes,autos da fe +auto-da-fe,autos-da-fe +auto da fΓ©,autos da fΓ© +auto-da-fΓ©,autos-da-fΓ© +autodecomposition,autodecompositions +auto de fe,autos de fe +auto-de-fe,autos-de-fe +auto de fΓ©,autos de fΓ© +auto-de-fΓ©,autos-de-fΓ© +autodephosphorylation,autodephosphorylations +autodetonation,autodetonations +autodialer,autodialers +autodialler,autodiallers +autodidact,autodidacts +autodrome,autodromes +autoencoder,autoencoders +autoepitope,autoepitopes +auto-forwarding,auto-forwardings +autogiro,autogiros +autoglossonym,autoglossonyms +autognostic,autognostics +autograft,autografts +autograph,autographs +autograph book,autograph books +autograt,autograts +autogyro,autogyros +autohagiography,autohagiographies +autohaler,autohalers +autoharp,autoharps +autoharpist,autoharpists +autohelm,autohelms +autohotel,autohotels +autoignition,autoignitions +autoinducer,autoinducers +autoinhibition,autoinhibitions +autoinjection,autoinjections +auto-injector,auto-injectors +autoinjector,autoinjectors +autointeraction,autointeractions +autoion,autoions +autoionization,autoionizations +autoiris,autoirises +autoist,autoists +autojumble,autojumbles +autokill,autokills +autokinase,autokinases +autoloader,autoloaders +autoloom,autolooms +autoloop,autoloops +autolysate,autolysates +autolysin,autolysins +autolysosome,autolysosomes +automaker,automakers +automaniac,automaniacs +automap,automaps +automat,automats +automated clearing house,automated clearing houses +automated teller machine,automated teller machines +Automated Transfer Vehicle,Automated Transfer Vehicles +automath,automaths +automatic,automatics +automatic data processing machine,automatic data processing machines +automatic distance control,automatic distance controls +automatic leveling system,automatic leveling systems +automatic rifle,automatic rifles +automatic teller machine,automatic teller machines +automatic transmission,automatic transmissions +automatist,automatists +automatization,automatizations +automaton,automatons,automata +auto mechanic,auto mechanics +automerization,automerizations +automimic,automimics +automimicry,automimicries +automobile,automobiles +automobilist,automobilists +automorphic number,automorphic numbers +automorphism,automorphisms +automounter,automounters +auton,autons +autonomation,autonomations +autonomist,autonomists +autonomous community,autonomous communities +autonomous oblast,autonomous oblasts +Autonomous Oblast,Autonomous Oblasts +autonym,autonyms +autopalatine,autopalatines +auto park,auto parks +autopatch,autopatches +autopathography,autopathographies +autopen,autopens +autophagolysosome,autophagolysosomes +autophagomometer,autophagomometers +autophagosome,autophagosomes +autophile,autophiles +autophone,autophones +autophosphorylation,autophosphorylations +autophragm,autophragms +autophyte,autophytes +autopilot,autopilots +autopipette,autopipettes +autoploid,autoploids +autoplunger,autoplungers +autopod,autopods +autopodium,autopodia +autopoisoning,autopoisonings +autopolyploid,autopolyploids +autoprojector,autoprojectors +autopsy,autopsies +autoradiogram,autoradiograms +autoradiograph,autoradiographs +autoradiolysis,autoradiolyses +autoreceptor,autoreceptors +autorecloser,autoreclosers +autoregulatory loop,autoregulatory loops +autoresonance,autoresonances +autoresponder,autoresponders +autoresponse,autoresponses +autorick,autoricks +autorickshaw,autorickshaws +autoroute,autoroutes +autosampler,autosamplers +autoscope,autoscopes +autosegment,autosegments +autosexual,autosexuals +auto shop,auto shops +auto show,auto shows +autosite,autosites +autosoliton,autosolitons +autosome,autosomes +autosport,autosports +autostainer,autostainers +autostereogram,autostereograms +autostrada,autostradas +autosub,autosubs +auto-suggestion,auto-suggestions +autosuggestion,autosuggestions +autoteller,autotellers +autotest,autotests +autotheist,autotheists +autotherapy,autotherapies +autotoxin,autotoxins +autotransformation,autotransformations +autotransformer,autotransformers +autotransfusion,autotransfusions +autotransplantation,autotransplantations +autotransplant,autotransplants +autotroph,autotrophs +auto-tuner,auto-tuners +autotuner,autotuners +autovector,autovectors +autowinder,autowinders +autoworker,autoworkers +autozygome,autozygomes +autumnal equinox,autumnal equinoxes +autumn,autumns +autumn crocus,autumn crocuses +autumn equinox,autumn equinoxes +AUV,AUVs +Auvergnese,Auvergnese +auxanogram,auxanograms +auxanometer,auxanometers +auxesis,auxeses +auxetophone,auxetophones +auxilian,auxilians +auxiliar,auxiliars +auxiliary,auxiliaries +auxiliary bishop,auxiliary bishops +auxiliary language,auxiliary languages +auxiliary verb,auxiliary verbs +auxin,auxins +auxlang,auxlangs +auxlanger,auxlangers +auxochrome,auxochromes +auxospore,auxospores +auxosporulation,auxosporulations +auxostat,auxostats +auxotroph,auxotrophs +auxotrophism,auxotrophisms +avadavat,avadavats +availability,availabilities +availability bias,availability biases +available seat mile,available seat miles +available ton mile,available ton miles +avail,avails +availment,availments +avalanche,avalanches +avalanche effect,avalanche effects +aval,avals +avalone,avalones +avania,avanias +avant,avants +avant-courier,avant-couriers +avant-garde,avant-gardes +avantgarde,avantgardes +avant-gardist,avant-gardists +avantgardist,avantgardists +avanturine,avanturines +Avar,Avars +Avar,Avars +Avarian,Avarians +avascular necrosis,avascular necroses +avatar,avatars +avaunt,avaunts +avauntour,avauntours +ave,aves +avenanthramide,avenanthramides +avenasterol,avenasterols +aven,avens +avener,aveners +avenge,avenges +avengement,avengements +avenger,avengers +avengeress,avengeresses +avenin,avenins +avenor,avenors +avens,avens +aventail,aventails +Aventine,Aventines +aventure,aventures +aventurin,aventurins +aventurine,aventurines +avenue,avenues +average atomic mass,average atomic masses +average,averages +average bear,average bears +average joe,average joes +average Joe,average Joes +averager,averagers +aver,avers +aver,avers +avermectin,avermectins +averment,averments +Averni,Averni +averral,averrals +Averroism,Averroisms +Averroist,Averroists +averruncation,averruncations +averruncator,averruncators +aversation,aversations +aversion,aversions +averter,averters +avertiment,avertiments +avertissement,avertissements +avertress,avertresses +avgolemono,avgolemonos +aviadenovirus,aviadenoviruses +avialan,avialans +avialian,avialians +avian,avians +aviarist,aviarists +aviary,aviaries +aviation cruiser,aviation cruisers +aviator,aviators +aviatress,aviatresses +aviatrix,aviatrices +avicide,avicides +avicularium,avicularia +aviculturist,aviculturists +avidin,avidins +Avignon berry,Avignon berries +avihepadnavirus,avihepadnaviruses +avimimid,avimimids +aviophobe,aviophobes +avipoxvirus,avipoxviruses +avisaurid,avisaurids +avisement,avisements +avision,avisions +aviso,avisos,avisoes +AVM,AVMs +avo,avos +avocado,avocados,avocadoes,avocadi +avocat,avocats +avocation,avocations +avocative,avocatives +avocet,avocets +avoidable,avoidables +avoidant,avoidants +avoider,avoiders +avoirdupois ounce,avoirdupois ounces +avoirdupois pound,avoirdupois pounds +Avometer,Avometers +Avonsider,Avonsiders +avoset,avosets +avoucher,avouchers +avouchment,avouchments +avoutrer,avoutrers +avowal,avowals +avowant,avowants +avowee,avowees +avower,avowers +avoyer,avoyers +avsunviroid,avsunviroids +avulavirus,avulaviruses +avulsion,avulsions +avulsive cutoff,avulsive cutoffs +avunculate,avunculates +avunculicide,avunculicides +awabi,awabis +await,awaits +awaiter,awaiters +awakener,awakeners +awakening,awakenings +awakenment,awakenments +awaker,awakers +award,awards +award ceremony,award ceremonies +awardee,awardees +awarder,awarders +awards ceremony,awards ceremonies +awareness band,awareness bands +awareness bracelet,awareness bracelets +awayday,awaydays +away game,away games +away goal,away goals +away side,away sides +away team,away teams +AWD,AWDs +awdl,awdls +awkwardness,awkwardnesses +awkward squad,awkward squads +awl,awls +awm,awms +awn,awns +awner,awners +awning,awnings +AWOL,AWOLs +a-word,a-words +ax,axes +axe,axes +axe,axes +axeblade,axeblades +axehandle,axehandles +axe head,axe heads +axehead,axeheads +axel,axels +axeman,axemen +axe murderer,axe murderers +axe-murderer,axe-murderers +axenization,axenizations +axe to grind,axes to grind +axewoman,axewomen +axhandle,axhandles +axhead,axheads +axialite,axialites +axiality,axialities +axial lobe,axial lobes +axial plane,axial planes +axial point,axial points +axial tilt,axial tilts +axicon,axicons +axigluon,axigluons +axiid,axiids +axil,axils +axilla,axillae +axillar,axillars,axillaries +axillary vein,axillary veins +axinellid,axinellids +axino,axinos +axiologist,axiologists +axioma,axiomata +axiomatic system,axiomatic systems +axiomatization,axiomatizations +axiom,axioms +axiom schema,axiom schemata +axiom scheme,axiom schemes +axiom system,axiom systems +axion,axions +axis,axes +axis,axises +axis of evil,axes of evil +axis of rotation,axes of rotation +axis of symmetry,axes of symmetry +axiverse,axiverses +axle,axles +axle,axles +axle hitch,axle hitches +axletooth,axleteeth +axletree,axletrees +axman,axmen +Axminster,Axminsters +axodine,axodines +axolemma,axolemmas +axolotl,axolotls +axon,axons +axone,axones +axoneme,axonemes +axonopathy,axonopathies +axonotmesis,axonotmeses +axoplasm,axoplasms +axopod,axopods +axopodium,axopodia +axostyle,axostyles +AXP,AXPs +ax to grind,axes to grind +axtree,axtrees +axymyiid,axymyiids +aya,ayas +ayah,ayahs +ayatolla,ayatollas +ayatollah,ayatollahs +ay,ays +aye-aye,aye-ayes +aye,ayes +ayegreen,ayegreens +ayme,aymes +ayn,ayns +ayocote,ayocotes +Ayrab,Ayrabs +ayre,ayres +ayre,ayres +ayrie,ayries +Ayrshire,Ayrshires +Ayrton Senna,Ayrton Sennas +ayry,ayries +ayuntamiento,ayuntamientos +azaadamantane,azaadamantanes +azacarbene,azacarbenes +azacoumarin,azacoumarins +azacytosine,azacytosines +azadiene,azadienes +azadiphosphole,azadiphospholes +azadirachtin,azadirachtins +azafenidin,azafenidins +azahelicene,azahelicenes +azaheterocycle,azaheterocycles +azaindole,azaindoles +azalea,azaleas +azalide,azalides +azalignane,azalignanes +azamine,azamines +azan,azans +azanediyl,azanediyls +Azanian,Azanians +azaniumyl,azaniumyls +azaphosphatrane,azaphosphatranes +azapirone,azapirones +azarole,azaroles +azaspiracid,azaspiracids +azaspiran,azaspirans +azaspirodecanedione,azaspirodecanediones +azastannatrane,azastannatranes +azasugar,azasugars +aze,azes +azedarach,azedarachs +azene,azenes +azeotrope,azeotropes +azepane,azepanes +azepine,azepines +azepinone,azepinones +Azerbaijanian,Azerbaijanians +Azerbaijani,Azerbaijanis +Azeri,Azeris +azetane,azetanes +azete,azetes +azetidine,azetidines +azetine,azetines +azhdarchid,azhdarchids +azhdarchoid,azhdarchoids +azide,azides +azidoacetyl,azidoacetyls +azido,azidos +azidoformate,azidoformates +azidoglycoside,azidoglycosides +azidosugar,azidosugars +azidothymidine,azidothymidines +azimine,azimines +azimuthal quantum number,azimuthal quantum numbers +azimuth,azimuths +azimuth circle,azimuth circles +azimuth thruster,azimuth thrusters +azinane,azinanes +azine,azines +azinic acid,azinic acids +azinomycin,azinomycins +azint,azints +azipod,azipods +azirane,aziranes +aziridination,aziridinations +aziridine,aziridines +aziridinium,aziridiniums +aziridinol,aziridinols +azirine,azirines +azithromycin,azithromycins +azitromycin,azitromycins +Azkal,Azkals +Azkalero,Azkaleros +azlactone,azlactones +azoalkane,azoalkanes +azobisformamide,azobisformamides +azocane,azocanes +azocine,azocines +azo compound,azo compounds +azocompound,azocompounds +azodicarbonamide,azodicarbonamides +azodicarboxylate,azodicarboxylates +azo dye,azo dyes +azodye,azodyes +azolane,azolanes +azole,azoles +azolectin,azolectins +azolidine,azolidines +azoline,azolines +azomethine,azomethines +Azon,Azons +azone,azones +azoniahelicene,azoniahelicenes +azonic acid,azonic acids +azonitrile,azonitriles +azopolymer,azopolymers +Azorean,Azoreans +azoreductase,azoreductases +Azorian,Azorians +azotite,azotites +azotometer,azotometers +azoxy,azoxys +azoxy compound,azoxy compounds +azoxystrobin,azoxystrobins +azran,azrans +AZT,AZTs +Aztec,Aztecs,Aztec +Aztec pyramid,Aztec pyramids +azuki bean,azuki beans +azurine,azurines +azurite,azurites +azurite-malachite,azurite-malachites +azurophil,azurophils +azurophile,azurophiles +azylene,azylenes +azyme,azymes +azymite,azymites +B-52,B-52s +baa,baas +baaing,baaings +baa-lamb,baa-lambs +Baalist,Baalists +Baalite,Baalites +baas,baases +baba au rhum,babas au rhum +baba,babas +babaco,babacos +babakoto,babakotos +Babalawo,Babalawos +ba,bas +babassu,babassus +babbitt,babbitts +babbitt,babbitts +Babbitt,Babbitts +Babbitt metal,Babbitt metals +babbittry,babbittries +babbler,babblers +babblery,babbleries +babbling,babblings +babby,babbies +babe,babes +babehood,babehoods +babe in arms,babes in arms +babe in the wood,babes in the wood +babe in the woods,babes in the woods +babelaas,babelaases +babel,babels +Babel,Babels +babe magnet,babe magnets +babesia,babesias +babesiasis,babesiases +babian,babians +babiche,babiches +babillard,babillards +babion,babions +babiroussa,babiroussas +babirusa,babirusas +babirussa,babirussas +Babist,Babists +babka,babkas +bablah,bablahs +baboo,baboos +baboon,baboons +babooshka,babooshkas +babouche,babouches +baboushka,baboushkas +Babouvist,Babouvists +babu,babus +babushka,babushkas +baby alarm,baby alarms +baby,babies +baby bat,baby bats +baby beef,baby beefs +Baby Bell,Baby Bells +baby bok choy,baby bok choys +baby bond,baby bonds +baby bonus,baby bonuses +baby book,baby books +baby boom,baby booms +baby boomer,baby boomers +babyboomer,babyboomers +baby bottle,baby bottles +baby bouncer,baby bouncers +baby boy,baby boys +baby buggy,baby buggies +baby bump,baby bumps +baby bust,baby busts +baby carriage,baby carriages +baby corn,baby corns +baby daddy,baby daddies +baby dick,baby dicks +baby doll,baby dolls +babydoll,babydolls +baby duck syndrome,baby duck syndromes +baby dyke,baby dykes +baby face,baby faces +babyface,babyfaces +baby farm,baby farms +baby farmer,baby farmers +baby food,baby foods +baby formula,baby formulas +babyfur,babyfurs +baby girl,baby girls +babygirl,babygirls +babygram,babygrams +baby grand,baby grands +baby grand piano,baby grand pianos +babygrow,babygrows +babyhood,babyhoods +babyhouse,babyhouses +baby jumper,baby jumpers +baby-jumper,baby-jumpers +baby-killer,baby-killers +Babylonian,Babylonians +baby machine,baby machines +babymaker,babymakers +baby mama,baby mamas +baby-minder,baby-minders +baby monitor,baby monitors +babymoon,babymoons +baby of the family,babies of the family +baby powder,baby powders +babyproofer,babyproofers +babyrussa,babyrussas +baby's breath,baby's breaths +baby seat,baby seats +babyship,babyships +baby shower,baby showers +baby sitter,baby sitters +baby-sitter,baby-sitters +babysitter,babysitters +babysitter test,babysitter tests +baby-sitting,baby-sittings +babysitting,babysittings +babysitting circle,babysitting circles +baby-snatcher,baby-snatchers +babystay,babystays +baby step,baby steps +baby tee,baby tees +baby-to-be,babies-to-be +baby tooth,baby teeth +baby vamp,baby vamps +baby walker,baby walkers +baby-walker,baby-walkers +baby wrangler,baby wranglers +bac,bacs +baccalaureat,baccalaureats +baccalaureate,baccalaureates +bacchanal,bacchanals +bacchanale,bacchanales +bacchanalia,bacchanalias +bacchanalian,bacchanalians +Bacchanalian,Bacchanalians +bacchant,bacchants,bacchantes +bacchante,bacchantes +bacchius,bacchii +bace,baces +bace,baces +bacharach,bacharachs +bachatero,bachateros +bach,baches +bache,baches +bacheelor,bacheelors +bachelor apartment,bachelor apartments +bachelor,bachelors +bachelor degree,bachelor degrees +bachelorette,bachelorettes +bachelorette party,bachelorette parties +bachelorhood,bachelorhoods +Bachelor of Arts,Bachelors of Arts +Bachelor of Science,Bachelors of Science +bachelor pad,bachelor pads +bachelor party,bachelor parties +bachelor's button,bachelor's buttons +bachelors' button,bachelors' buttons +bachelor's degree,bachelor's degrees +bachelorship,bachelorships +bachelour,bachelours +BACH motif,BACH motifs +bacillariophyte,bacillariophytes +bacillosis,bacilloses +bacillus,bacilli +bacinet,bacinets +backache,backaches +backaction,backactions +backake,backakes +back alley,back alleys +back alleyway,back alleyways +back and forth,back and forths +back-and-forth,back-and-forths +backarapper,backarappers +backarc,backarcs +back,backs +back,backs +backband,backbands +back beat,back beats +backbeat,backbeats +back-bench,back-benches +backbench,backbenches +backbencher,backbenchers +backbend,backbends +backbite,backbites +back biter,back biters +backbiter,backbiters +backbiting,backbitings +backblast,backblasts +backblock,backblocks +back board,back boards +backboard,backboards +back boiler,back boilers +backbond,backbonds +backbonding ligand,backbonding ligands +backbone,backbones +backbox,backboxes +backbreaker,backbreakers +back burn,back burns +back-burn,back-burns +backburn,backburns +back burner,back burners +backcard,backcards +backcast,backcasts +back catalog,back catalogs +back catalogue,back catalogues +back channel,back channels +backchannel,backchannels +backchat,backchats +back-cloth,back-cloths +backcloth,backcloths +back-cloth star,back-cloth stars +backcourt,backcourts +back cover,back covers +"back, crack and sack","back, crack and sacks" +back cross,back crosses +back-cross,back-crosses +backcross,backcrosses +backcrossing,backcrossings +back dive,back dives +back door,back doors +backdoor,backdoors +back-double,back-doubles +back double biceps,back double biceps +backdown,backdowns +backdraft,backdrafts +backdraught,backdraughts +backdrop,backdrops +back end,back ends +back-end,back-ends +backend,backends +backer,backers +backfall,backfalls +backfield,backfields +backfile,backfiles +backfile conversion,backfile conversions +backfin,backfins +back fire,back fires +backfire,backfires +backfisch,backfische +back five,back fives +backflip,backflips +backflow,backflows +backflush,backflushes +back foot,back feet +back foot shot,back foot shots +back formation,back formations +back-formation,back-formations +backformation,backformations +back-form,back-forms +back four,back fours +backfriend,backfriends +backgain,backgains +back gammon player,back gammon players +back-ganging,back-gangings +back garden,back gardens +background,backgrounds +backgrounder,backgrounders +background process,background processes +background radiation,background radiations +backhand,backhands +back-handed compliment,back-handed compliments +backhanded compliment,backhanded compliments +back-hander,back-handers +backhander,backhanders +backhaul,backhauls +backhead,backheads +back-heel,back-heels +backheel,backheels +backhoe,backhoes +back house,back houses +backhouse,backhouses +backing,backings +backing band,backing bands +back issue,back issues +backjoint,backjoints +backjump,backjumps +back kitchen,back kitchens +backland,backlands +backlash,backlashes +backlasher,backlashers +backlift,backlifts +backlight,backlights +back line,back lines +backline,backlines +backlink,backlinks +backlist,backlists +backlog,backlogs +backlot,backlots +backman,backmen +backmarker,backmarkers +back number,back numbers +backoff,backoffs +back order,back orders +backorder,backorders +backout,backouts +backover,backovers +backpack,backpacks +backpacker,backpackers +backpackers,backpackers +back page,back pages +back passage,back passages +back pass,back passes +backpass,backpasses +back payment,back payments +backpiece,backpieces +backplane,backplanes +backplate,backplates +back post,back posts +backpressure,backpressures +backprint,backprints +back projection,back projections +backquote,backquotes +backreaction,backreactions +backreef,backreefs +back-reference,back-references +backreference,backreferences +backrest,backrests +back road,back roads +backroad,backroads +backroll,backrolls +backronym,backronyms +backroom,backrooms +backroom boy,backroom boys +back row,back rows +backrower,backrowers +backrub,backrubs +backsaw,backsaws +backscatter,backscatters +back scratcher,back scratchers +backscratcher,backscratchers +back scrubber,back scrubbers +back seat,back seats +backseat,backseats +back-seat driver,back-seat drivers +backseat driver,backseat drivers +backseater,backseaters +backset,backsets +backsettler,backsettlers +backshadowing,backshadowings +backsheesh,backsheeshes +backshift,backshifts +backshine,backshines +backshish,backshishes +backshot,backshots +back-side,back-sides +backside,backsides +backside throw,backside throws +backsight,backsights +back-slang,back-slangs +back slap,back slaps +backslapper,backslappers +backslash,backslashes +backslider,backsliders +backsliding,backslidings +backspace,backspaces +backspike,backspikes +backsplash,backsplashes +backspot flyingfish,backspot flyingfish +backstabber,backstabbers +backstaff,backstaffs +backstage,backstages +backstager,backstagers +backstay,backstays +backster,backsters +backstitch,backstitches +backstop,backstops +back story,back stories +back-story,back-stories +backstory,backstories +back straight,back straights +backstrap,backstraps +back street,back streets +backstreet,backstreets +backstress,backstresses +backstress,backstresses +backstretch,backstretches +backstroke,backstrokes +backstroker,backstrokers +backswimmer,backswimmers +backswing,backswings +backsword,backswords +backtag,backtags +backtalker,backtalkers +backtick,backticks +back titration,back titrations +back-to-back connection,back-to-back connections +back to back jack,back to back jacks +back to back ticket,back to back tickets +back tooth,back teeth +back to the wall,backs to the wall +back-to-work order,back-to-work orders +backtrace,backtraces +backtrack,backtracks +backtracker,backtrackers +back-up,back-ups +backup,backups +backup vocalist,backup vocalists +Backus-Naur form,Backus-Naur forms +backveld,backvelds +backvelder,backvelders +back vowel,back vowels +back wall,back walls +backwardation,backwardations +backward compatibility,backward compatibilities +backward compliment,backward compliments +backward dive,backward dives +backward linkage,backward linkages +backwardness,backwardnesses +backward pass,backward passs +backward pawn,backward pawns +backwards compliment,blackwards compliments +backward slash,backward slashes +backwards roll,backwards rolls +backwash,backwashes +back wash,back washs +backwasher,backwashers +backwashing,backwashings +back water,back waters +back-water,back-waters +backwater,backwaters +backweight,backweights +backwind,backwinds +backwoodsman,backwoodsmen +backword,backwords +back yard,back yards +backyard,backyards +bacmid,bacmids +bacne,bacnes +bacon beetle,bacon beetles +baconburger,baconburgers +baconer,baconers +Baconian,Baconians +bacopa,bacopas +BACREM,BACREMs +bacronym,bacronyms +bacteraemia,bacteraemias +bacteremia,bacteremias +bacteria,bacteriae +bacterial flora,bacterial floras +bacterialization,bacterializations +bacterial meningitis,bacterial meningitides +bactericide,bactericides +bactericidin,bactericidins +bacterin,bacterins +bacteriochlorophyll,bacteriochlorophylls +bacteriocide,bacteriocides +bacteriocin,bacteriocins +bacteriocyte,bacteriocytes +bacterioferritin,bacterioferritins +bacteriohopanepolyol,bacteriohopanepolyols +bacteriologist,bacteriologists +bacteriolysin,bacteriolysins +bacteriome,bacteriomes +bacteriophage,bacteriophages +bacteriopheophytin,bacteriopheophytins +bacteriophobe,bacteriophobes +bacteriophytochrome,bacteriophytochromes +bacteriorhodopsin,bacteriorhodopsins +bacteriosis,bacterioses +bacteriostasis,bacteriostases +bacteriostat,bacteriostats +bacteriotherapy,bacteriotherapies +bacteriotoxin,bacteriotoxins +bacterium,bacteria +bacterivore,bacterivores +bacteroid,bacteroids +Bactrian camel,Bactrian camels +bacule,bacules +baculite,baculites +baculitid,baculitids +baculovirus,baculoviruses +baculum,bacula +bad apple,bad apples +badass,badasses +bad bank,bad banks +bad beat,bad beats +bad bishop,bad bishops +bad boy,bad boys +bad check,bad checks +bad debt,bad debts +baddeleyite,baddeleyites +baddie,baddies +baddy,baddies +bad egg,bad eggs +badelaire,badelaires +badelynge,badelynges +bad ending,bad endings +bad eye,bad eyes +badfic,badfics +badge,badges +badge bunny,badge bunnies +badge-cove,badge-coves +badger,badgers +badger,badgers +Badger,Badgers +badger dog,badger dogs +badgerer,badgerers +badger game,badger games +bad girl,bad girls +bad guy,bad guys +bad hair day,bad hair days +bad hat,bad hats +badigeon,badigeons +badinerie,badineries +bad influence,bad influences +bad joke,bad jokes +bad-lad split,bad-lad splits +badling,badlings +badling,badlings +bad lot,bad lots +badman,badmen +badmash,badmashes +badminton racket,badminton rackets +bad name,bad names +badonkadonk,badonkadonks +bad penny,bad pennies +Bad Thing,Bad Things +bad trip,bad trips +badunkadunk,badunkadunks +bael,baels +baenid,baenids +baenomere,baenomeres +baenopod,baenopods +baetid,baetids +baetyl,baetyls +baffie,baffies +baffle,baffles +bafflectomy,bafflectomies +baffler,bafflers +baffling wind,baffling winds +baffy,baffies +bafilomycin,bafilomycins +BAFTA,BAFTAs +bagaceratopsid,bagaceratopsids +bagassosis,bagassoses +bagatelle,bagatelles +bag,bags +bagboy,bagboys +bag-carrier,bag-carriers +bagel,bagels +bag for life,bags for life +bagful,bagfuls,bagsful +baggage carousel,baggage carousels +baggage cart,baggage carts +baggage check,baggage checks +baggage claim,baggage claims +baggage handler,baggage handlers +baggage hold,baggage holds +baggageman,baggagemen +baggagemaster,baggagemasters +baggager,baggagers +baggage reclaim,baggage reclaims +baggala,baggalas +bagger,baggers +baggie,baggies +Baggie,Baggies +bagging,baggings +baggy,baggies +baggywrinkle,baggywrinkles +bagh,baghs +Baghdadian,Baghdadians +Baghdadi,Baghdadis +bagholder,bagholders +baghouse,baghouses +bag lady,bag ladies +baglady,bagladies +baglama,baglamas +baglamas,baglamades +bag man,bag men +bagman,bagmen +bagmoth,bagmoths +bagnio,bagnios +bag of antlers,bags of antlers +bag of bones,bags of bones +bag of fruit,bag of fruits +bag of nerves,bags of nerves +bag of tricks,bags of tricks +bag of wind,bags of wind +bag of words,bags of words +bagpipe,bagpipes +bagpiper,bagpipers +bagplot,bagplots +bagrid,bagrids +bag snatcher,bag snatchers +bague,bagues +baguet,baguets +baguette,baguettes +bag valve mask,bag valve masks +bagworm,bagworms +bahada,bahadas +bahadur,bahadurs +BahΓ‘'Γ­,BahΓ‘'Γ­s +Bahamian,Bahamians +bahar,bahars +bahiagrass,bahiagrasses +Bahian,Bahians +bahookie,bahookies +Bahraini,Bahrainis +baht,baht,bahts +bahu,bahus +bahut,bahuts +bahuvrihi,bahuvrihis +baiao,baiaos +baical skullcap,baical skullcaps +baidarka,baidarkas +baiji,baijis +Baikal teal,Baikal teals +bail,bails +bail,bails +bail bandit,bail bandits +bail bond,bail bonds +bail bondsman,bail bondsmen +bailee,bailees +bailer,bailers +bailey,baileys +Bailey,Baileys +Bailey bridge,Bailey bridges +baileychlore,baileychlores +bailie,bailies +bailiff,bailiffs +bailiff-errant,bailiffs-errant +bailiffwick,bailiffwicks +bailiwick,bailiwicks +baillie,baillies +bailment,bailments +bailor,bailors +bail-out,bail-outs +bailout,bailouts +bailpiece,bailpieces +bailsman,bailsmen +bain,bains +bain-marie,bains-maries +bairam,bairams +Baird's tapir,Baird's tapirs +bairn,bairns +baisa,baisas +bait,baits +bait ball,bait balls +bait box,bait boxes +bait bug,bait bugs +bait car,bait cars +baiter,baiters +baitfish,baitfishes,baitfish +baitholder,baitholders +baiting,baitings +baize,baizes +bajada,bajadas +bajaj,bajaj +Baja Midnight,Baja Midnights +Bajan,Bajans +Bajau,Bajaus,Bajau +bajillion,bajillions +bajocco,bajoccos +bakeapple,bakeapples +bake,bakes +baked Alaska,baked Alaskas +baked bean,baked beans +baked good,baked goods +baked potato,baked potatoes +bakehouse,bakehouses +bakemeat,bakemeats +bake-off,bake-offs +bakeoff,bakeoffs +bakeout,bakeouts +baker,bakers +bakeress,bakeresses +baker's dozen,baker's dozens +bakers dozen,bakers dozens +baker's half dozen,baker's half dozens +bakery,bakeries +bake sale,bake sales +bakesale,bakesales +bakeshop,bakeshops +bakevelliid,bakevelliids +Bakewell tart,Bakewell tarts +bakhsh,bakhshes +bakhshish,bakhshishes +baking sheet,baking sheets +baking tray,baking trays +bakistre,bakistres +bakkie,bakkies +bakkie,bakkies +baklava,baklavas +Bakri,Bakris +bakshish,bakshishes +b'ak'tun,b'ak'tunob,b'ak'tuns +baktun,baktunob,baktuns +Balaam,Balaams +Balaam box,Balaam boxes +Balaamite,Balaamites +balabos,balabatim +balaclava,balaclavas +balaenid,balaenids +balaenopterid,balaenopterids +balafon,balafons +balalaika,balalaikas +balance beam,balance beams +balance board,balance boards +balanced budget,balanced budgets +balanced category,balanced categories +balanced diet,balanced diets +balancelle,balancelles +balancer,balancers +balance sheet,balance sheets +balance transfer,balance transfers +balance wheel,balance wheels +balancing act,balancing acts +balancing,balancings +balanda,balandas +balanghai,balanghais +balanid,balanids +balaphone,balaphones +balas,balases +balas ruby,balas rubies +balas-ruby,balas-rubies +balaunce,balaunces +balaustine,balaustines +balbarid,balbarids +balboa,balboas +bal-chatri,bal-chatris +balcon,balcons +balconette,balconettes +balconette bra,balconette bras +balcony,balconies +balcony bra,balcony bras +baldacchin,baldacchins +baldachin,baldachins +baldachino,baldachinos +baldare,baldares +bald,balds +bald eagle,bald eagles +bald earn,bald earns +bald erne,bald ernes +baldhead,baldheads +baldie,baldies +baldist,baldists +bald patch,bald patches +baldpate,baldpates +baldrib,baldribs +baldric,baldrics +baldrick,baldricks +bald wig,bald wigs +Baldwin,Baldwins +baldy,baldies +Balearian,Balearians +balearica,balearicas +bale,bales +bale,bales +balebos,balebatim +baleboste,balebatim +baleen whale,baleen whales +balefire,balefires +baler,balers +balisaur,balisaurs +balisong,balisongs +balister,balisters +balistid,balistids +balistraria,balistrarias +balisword,baliswords +Bali tiger,Bali tigers +balitorid,balitorids +balize,balizes +balkanism,balkanisms +Balkanism,Balkanisms +balkanization,balkanizations +balkanizer,balkanizers +Balkar,Balkars +balk,balks +balker,balkers +balkline,balklines +balla,ballas +ball ache,ball aches +ballache,ballaches +ballad,ballads +ballade,ballades +balladeer,balladeers +ballader,balladers +balladmonger,balladmongers +ballad opera,ballad operas +ballahoo,ballahoos +ballahou,ballahous +ball and chain,balls and chains +ball and socket joint,ball and socket joints +ball-and-socket joint,ball-and-socket joints +ballasting,ballastings +ballast resistor,ballast resistors +ballast tank,ballast tanks +ballbag,ballbags +ball,balls +ball,balls +ball bearing,ball bearings +ball boy,ball boys +ballboy,ballboys +ball-breaker,ball-breakers +ballbreaker,ballbreakers +ball-buster,ball-busters +ballbuster,ballbusters +ballcap,ballcaps +ball carrier,ball carriers +ballcarrier,ballcarriers +ball club,ball clubs +ball-club,ball-clubs +ballclub,ballclubs +ball cock,ball cocks +ballcock,ballcocks +ballcourt,ballcourts +baller,ballers +ballerina,ballerinas +ballerino,ballerinos +ballestra,ballestras +ballet,ballets +ballet dad,ballet dads +ballet dancer,ballet dancers +ballet flat,ballet flats +balletgoer,balletgoers +balletmaster,balletmasters +balletomane,balletomanes +ballfield,ballfields +ball flower,ball flowers +ball-flower,ball-flowers +ballgag,ballgags +ball game,ball games +ballgame,ballgames +ball girl,ball girls +ballgirl,ballgirls +ballgoer,ballgoers +ball gown,ball gowns +ballgown,ballgowns +ballhandler,ballhandlers +ball hawk,ball hawks +ballhawk,ballhawks +ballicater,ballicaters +ball in hand,balls in hand +ballista,ballistae,ballistΓ¦ +ballister,ballisters +ballistician,ballisticians +ballistic knife,ballistic knives +ballistic missile,ballistic missiles +ballistic vest,ballistic vests +ballistocardiogram,ballistocardiograms +ballistocardiograph,ballistocardiographs +ballistospore,ballistospores +ballium,ballia +balljoint,balljoints +ball machine,ball machines +ballmaker,ballmakers +ball mill,ball mills +ballock,ballocks +ball of fire,balls of fire +ball of the thumb,balls of the thumb +ballon d'essai,ballons d'essai +ballonet,ballonets +balloon animal,balloon animals +balloon,balloons +balloon clock,balloon clocks +balloon club,balloon clubs +ballooner,ballooners +balloonfish,balloonfishes,balloonfish +balloon flower,balloon flowers +balloon frame,balloon frames +balloonist,balloonists +balloon knot,balloon knots +balloon loop,balloon loops +balloon payment,balloon payments +balloon sail,balloon sails +balloon vine,balloon vines +ballotade,ballotades +ballot,ballots +ballot box,ballot boxes +ballotechnic,ballotechnics +balloter,balloters +ballotin,ballotins +ballotine,ballotines +ballot paper,ballot papers +ballow,ballows +ballow,ballows +ballpark,ballparks +ballpark estimate,ballpark estimates +ballpark figure,ballpark figures +ballpark frank,ballpark franks +ball-peen hammer,ball-peen hammers +ball-pein hammer,ball-pein hammers +ball pit,ball pits +ball player,ball players +ballplayer,ballplayers +ballpoint,ballpoints +ball-point pen,ball-point pens +ballpoint pen,ballpoint pens +ballrace,ballraces +ball return,ball returns +ballroom,ballrooms +ball sack,ball sacks +ballsack,ballsacks +ballstock,ballstocks +ballsucker,ballsuckers +balls-up,balls-ups +ballute,ballutes +ball washer,ball washers +ballyard,ballyards +ballyhoo,ballyhoos +ballyhoo,ballyhoos +ballyhoo,ballyhoos +balmacaan,balmacaans +balm,balms +balmoral,balmorals +balneary,balnearies +balneation,balneations +balneography,balneographies +balneologist,balneologists +balneotherapist,balneotherapists +Balochi,Balochis +baloney,baloneys +baloney pony,baloney ponies +balotade,balotades +balrog,balrogs +balsamarium,balsamaria +balsam fir,balsam firs +balsamic vinegar,balsamic vinegars +balsamine,balsamines +balsam pear,balsam pears +balsamroot,balsamroots +balsero,balseros +balthazar,balthazars +Balthazar,Balthazars +balti house,balti houses +Baltimoron,Baltimorons +baltoceratid,baltoceratids +Balto-Slav,Balto-Slavs +baluba,balubas +balun,baluns +baluster,balusters +balustrade,balustrades +balustre,balustres +balywick,balywicks +Balzacian,Balzacians +Bamar,Bamars,Bamar +Bambaiyya,Bambaiyyas +bambakion,bambakions +bam,bams +Bambara groundnut,Bambara groundnuts +Bambi bucket,Bambi buckets +bambino,bambinos,bambini +bambocciade,bambocciades +bambocciante,bambocciantes +bamboo antshrike,bamboo antshrikes +bamboo,bamboos +bamboo partridge,bamboo partridges +bamboo shoot,bamboo shoots +bamboo wife,bamboo wives +bamboozler,bamboozlers +BAMF,BAMFs +bamp,bamps +bampot,bampots +Banach space,Banach spaces +banality,banalities +banana ball,banana balls +banana bender,banana benders +banana-bender,banana-benders +banana bird,banana birds +banana boat,banana boats +banana bond,banana bonds +banana equivalent dose,banana equivalent doses +banana hammock,banana hammocks +banana kick,banana kicks +banana leaf,banana leaves +banana note,banana notes +banana peel,banana peels +banana pepper,banana peppers +banana plug,banana plugs +bananaquit,bananaquits +banana republic,banana republics +banana seat,banana seats +banana shot,banana shots +banana skin,banana skins +banana split,banana splits +banan,banans +bananery,bananeries +banat,banats +banate,banates +ban,bani +ban,bans +ban,bans +ban,bans +Banbury story of a cock and a bull,Banbury stories of a cock and a bull +bancassurer,bancassurers +banc,bancs +banc,bancs +banck,bancks +bancke,banckes +bancor,bancors +bandage,bandages +bandage dress,bandage dresses +band-aid,band-aids +bandaid,bandaids +band-aid solution,band-aid solutions +bandala,bandalas +bandana,bandanas +bandanna,bandannas +band,bands +band,bands +bandbox,bandboxes +band cell,band cells +bandcenter,bandcenters +bandeau,bandeaux,bandeaus +banded anteater,banded anteaters +banded mongoose,banded mongoose,banded mongooses +banded penguin,banded penguins +bandelet,bandelets +bander,banders +banderilla,banderillas +banderillero,banderilleros +banderol,banderols +banderole,banderoles +bandfish,bandfishes,bandfish +bandgap,bandgaps +bandhead,bandheads +bandicoot,bandicoots +bandikini,bandikinis +bandileer,bandileers +banding,bandings +bandini,bandinis +bandish,bandishes +bandit,bandits +bandito,banditos,banditti +banditry,banditries +bandkini,bandkinis +bandleader,bandleaders +bandle,bandles +bandlet,bandlets +bandmaster,bandmasters +bandmate,bandmates +bandmember,bandmembers +bandobast,bandobasts +bandog,bandogs +bandoleer,bandoleers +bandolero,bandoleros +bandolier,bandoliers +bandoline,bandolines +bandoneon,bandoneons +bandoneonist,bandoneonists +bandore,bandores +bandpass,bandpasses +bandpassing,bandpassings +band plan,band plans +bandrol,bandrols +band saw,band saws +band-saw,band-saws +bandsaw,bandsaws +band sectional,band sectionals +bandshape,bandshapes +bandshell,bandshells +bandshift assay,bandshift assays +bandsman,bandsmen +band spectrum,band spectra +bandstand,bandstands +bandstrength,bandstrengths +bandstring,bandstrings +bandstructure,bandstructures +band-tailed antshrike,band-tailed antshrikes +bandura,banduras +bandurria,bandurrias +bandwagon,bandwagons +bandwidth,bandwidths +bandy,bandies +bane,banes +bane,banes +baneberry,baneberries +Bangalorean,Bangaloreans +bangarang,bangarangs +bang,bangs +bang,bangs +bangda,bangdas +banger,bangers +bangiophyte,bangiophytes +Bangkoker,Bangkokers +Bangladeshi,Bangladeshis +bangle,bangles +bangle ear,bangle ears +bangstick,bangsticks +bang straw,bang straws +bangtail,bangtails +bangtail muster,bangtail musters +bang up cove,bang up coves +bangy,bangies +baniak,baniaks +banian,banians +banishee,banishees +banisher,banishers +banishment,banishments +banister,banisters +banitsa,banitsas +Banjar,Banjars,Banjar +banjax,banjaxes +banjo,banjos,banjoes +banjo enclosure,banjo enclosures +banjo hit,banjo hits +banjo hitter,banjo hitters +banjoist,banjoists +banjolele,banjoleles +banjolin,banjolins +banjolinist,banjolinists +banjo-mandolin,banjo-mandolins +banjosid,banjosids +banjouke,banjoukes +banjo ukelele,banjo ukeleles +bank account,bank accounts +bank-and-turn indicator,bank-and-turn indicators +bank balance,bank balances +bank,banks +bank,banks +bank,banks +bank,banks +bankbook,bankbooks +bank card,bank cards +bankcard,bankcards +bank cheque,bank cheques +banke,bankes +banker,bankers +banker,bankers +banker,bankers +bankeress,bankeresses +banker lamp,banker lamps +banker's acceptance,banker's acceptances +banker's dozen,banker's dozens +banker's draft,banker's drafts,bankers' drafts +banker's draught,banker's draughts,bankers' draughts +banker's lamp,banker's lamps +banker's lien,banker's liens +bank holiday,bank holidays +Bank Holiday,Bank Holidays +bank machine,bank machines +bank mix,bank mixes +bank night,bank nights +bank note,bank notes +banknote,banknotes +bank of issue,banks of issue +bank rate,bank rates +bank robber,bank robbers +bankroll,bankrolls +bankroller,bankrollers +bankrupcy,bankrupcies +bankrupt,bankrupts +bankrupt cart,bankrupt carts +bankruptcy,bankruptcies +banksia,banksias +bankside,banksides +bank statement,bank statements +bankster,banksters +bank transfer,bank transfers +bank vole,bank voles +banlieue,banlieues +banner ad,banner ads +banner,banners +banner carrier,banner carriers +banner cloud,banner clouds +banneret,bannerets +bannerette,bannerettes +banner exchange,banner exchanges +bannerol,bannerols +banner roll,banner rolls +banneton,bannetons +bannian,bannians +Bannian,Bannians +banning,bannings +bannister,bannisters +banns,banns +banoffee pie,banoffee pies +banquet,banquets +banqueter,banqueters +banqueting,banquetings +banquette,banquettes +banquetter,banquetters +banshee,banshees +banshie,banshies +banstickle,banstickles +bansuri,bansuris +bantam,bantams +Bantam,Bantams +bantamweight,bantamweights +banteng,bantengs +banterer,banterers +bantering,banterings +ban-the-bomber,ban-the-bombers +bantling,bantlings +bantustan,bantustans +banxring,banxrings +banya,banyas +banyak,banyaks +banyan,banyans +banyan day,banyan days +baobab,baobabs +bap,baps +baphetid,baphetids +baptisand,baptisands +baptisia,baptisias +baptismal font,baptismal fonts +baptismal name,baptismal names +baptism,baptisms +baptism by fire,baptisms by fire +baptism of fire,baptisms of fire +baptist,baptists +baptistery,baptisteries +baptistry,baptistries +baptizand,baptizands +baptizer,baptizers +baptornithid,baptornithids +Baraita,Baraitas +baramin,baramins +baraminologist,baraminologists +barasingha,barasinghas,barasingha +bar association,bar associations +barathrum,barathrums +Barau's petrel,Barau's petrels +barbacan,barbacans +barback,barbacks +Barbadian,Barbadians +Barbados cherry,Barbados cherries +barbara,barbaras +barbarian,barbarians +barbarianess,barbarianesses +barbarisation,barbarisations +bar,bars +Barbary ape,Barbary apes +barbary dove,barbary doves +Barbary lion,Barbary lions +Barbary macaque,Barbary macaques +Barbary sheep,Barbary sheep +barbastel,barbastels +barbastelle,barbastelles +barbat,barbats +barb,barbs +barb,barbs +barbecue,barbecues +barbecuer,barbecuers +barbecue stopper,barbecue stoppers +barbel,barbels +barbell,barbells +barbeque,barbeques +barber,barbers +barberfish,barberfishes,barberfish +barbermonger,barbermongers +barber pole,barber poles +barberry,barberries +barber shop,barber shops +barbershop,barbershops +barbershop quartet,barbershop quartets +barber's pole,barbers' poles,barber's poles +barber surgeon,barber surgeons +barbet,barbets +barbette,barbettes +barbican,barbicans +barbicel,barbicels +barbie,barbies +Barbie,Barbies +barbiton,barbitoi +barbitos,barbitoi +barbituate,barbituates +barbiturate,barbiturates +barble,barbles +barbotage,barbotages +barbourofelid,barbourofelids +bar-b-q,bar-b-qs +bar-b-que,bar-b-ques +Barbudan,Barbudans +Barbudian,Barbudians +barbule,barbules +barcarole,barcaroles +barcarolle,barcarolles +Barcelonan,Barcelonans +Barcelonian,Barcelonians +barchan,barchans +bar chart,bar charts +Barclaycard,Barclaycards +Barclays Bank,Barclays Banks +bar code,bar codes +barcode,barcodes +barcoder,barcoders +barcon,barcons +bar-crested antshrike,bar-crested antshrikes +bardash,bardashes +bard,bards +bard,bards +bardiche,bardiches +bardie,bardies +bardie,bardies +bardism,bardisms +bardling,bardlings +bardolater,bardolaters +bardolator,bardolators +Bardolator,Bardolators +bardolatry,bardolatries +bareass,bareasses +barebacker,barebackers +bare,bares +barebone,barebones +bare-eared squirrel monkey,bare-eared squirrel monkeys +barefaced lie,barefaced lies +barefoot doctor,barefoot doctors +barege,bareges +bare hand,bare hands +bare infinitive,bare infinitives +baren,baren,barens +bare noun,bare nouns +baresark,baresarks +bar exam,bar exams +bar examination,bar examinations +barfight,barfights +barfish,barfishes +bar fly,bar flies +barfly,barflies +barful,barfuls +bargain agent,bargain agents +bargain,bargains +bargain basement,bargain basements +bargain-basement,bargain-basements +bargain bin,bargain bins +bargainee,bargainees +bargainer,bargainers +bargaining chip,bargaining chips +bargaining power,bargaining powers +bargaining unit,bargaining units +bargainor,bargainors +barge,barges +barge board,barge boards +bargeboard,bargeboards +bargee,bargees +bargeman,bargemen +barge master,barge masters +bargemaster,bargemasters +barge pole,barge poles +bargepole,bargepoles +barger,bargers +bargest,bargests +bargewoman,bargewomen +barghaist,barghaists +barghest,barghests +bargirl,bargirls +bargoer,bargoers +barguest,barguests +barhopper,barhoppers +bariatrician,bariatricians +bari,baris +barilla,barillas +barillet,barillets +barista,baristas +baristo,baristi,baristos +baritone,baritones +baritone horn,baritone horns +baritonist,baritonists +barium meal,barium meals +barkantine,barkantines +bark,barks +bark,barks +bark beetle,bark beetles +barkeep,barkeeps +bar-keeper,bar-keepers +barkeeper,barkeepers +barkentine,barkentines +barker,barkers +barker,barkers +barkery,barkeries +barkhan,barkhans +barking,barkings +barking deer,barking deer +barking iron,barking irons +barking spider,barking spiders +bark louse,bark lice +bark mixture,bark mixtures +barkometer,barkometers +bar-lamb,bar-lambs +barleeid,barleeids +barleycorn,barleycorns +barley sugar,barley sugars +bar line,bar lines +barline,barlines +barling,barlings +barling,barlings +bar magnet,bar magnets +barmaid,barmaids +barman,barmen +barmaster,barmasters +barm,barms +barmcake,barmcakes +barmcloth,barmcloths +Barmecide feast,Barmecide feasts +barminess,barminesses +bar mitzvah,bar mitzvahs,b'nai mitzvah +barmkin,barmkins +barmote,barmotes +barmpot,barmpots +Barnabite,Barnabites +barnacle,barnacles +barnacle goose,barnacle geese +barn,barns +barn,barns +barn burner,barn burners +barnburner,barnburners +barn dance,barn dances +barn door,barn doors +barndoor,barndoors +barndoor skate,barndoor skates +barnet,barnets +barney,barneys +barn find,barn finds +barnfloor,barnfloors +barnful,barnfuls,barnsful +barn owl,barn owls +barn star,barn stars +barnstar,barnstars +barnstormer,barnstormers +barn swallow,barn swallows +Barnum effect,Barnum effects +barnyard,barnyards +barny,barnies +baroceptor,baroceptors +barochore,barochores +barocyclonometer,barocyclonometers +bar of chocolate,bars of chocolate +barograph,barographs +barologist,barologists +barometer,barometers +barometre,barometres +barometrograph,barometrographs +baronage,baronages +baron and femme,baron and femmes +baron,barons +baroness,baronesses +baronet,baronets +baronetcy,baronetcies +barony,baronies +barophile,barophiles +baroque organ,baroque organs +baroque pearl,baroque pearls +baroreceptor,baroreceptors +baroreflex,baroreflexes +baroscope,baroscopes +barosphere,barospheres +barostat,barostats +baroswitch,baroswitches +barotrope,barotropes +barouche,barouches +barouchet,barouchets +barouchette,barouchettes +barperson,barpersons,barpeople +bar phone,bar phones +barplot,barplots +barpost,barposts +barque,barques +barquentine,barquentines +barra,barras +barra boy,barra boys +barracan,barracans +barrack,barracks +barracoon,barracoons +barracouta,barracoutas +barracuda,barracuda,barracudas +barracudina,barracudinas +barrad,barrads +barrage balloon,barrage balloons +barrage,barrages +barramunda,barramundas +barramundi,barramundis +barranca,barrancas +barrator,barrators +barratry,barratries +Barr body,Barr bodies +barre,barres +barred antshrike,barred antshrikes +barred owl,barred owls +barred spiral galaxy,barred spiral galaxies +barred tinamou,barred tinamous +barrel,barrels +barrel cactus,barrel cacti +barrel chest,barrel chests +barrel child,barrel children +barrelene,barrelenes +barrelette,barrelettes +barreleye,barreleyes +barrelfish,barrelfishes,barrelfish +barrelful,barrelfuls,barrelsful +barrel head,barrel heads +barrel-head,barrel-heads +barrelhead,barrelheads +barrelhouse,barrelhouses +barrel nut,barrel nuts +barrel nut connector,barrel nut connectors +barrel of laughs,barrels of laughs +barreloid,barreloids +barrel organ,barrel organs +barrel race,barrel races +barrel racer,barrel racers +barrel roll,barrel rolls +barrel roof,barrel roofs +barrel shroud,barrel shrouds +barrel sponge,barrel sponges +barrel vault,barrel vaults +barren,barrens +bar-resto,bar-restos +bar/resto,bar/restos +barret,barrets +barreter,barreters +Barretta,Barrettas +barrette,barrettes +barretter,barretters +bar review,bar reviews +barriada,barriadas +barricade,barricades +barricader,barricaders +barricado,barricados,barricadoes +barrier,barriers +barrier board,barrier boards +barrier island,barrier islands +barrier method,barrier methods +barrier reef,barrier reefs +barrigudo,barrigudos +barring,barrings +barringtonite,barringtonites +barrio,barrios +barrista,barristas +barrister,barristers +bar room,bar rooms +barroom,barrooms +barroom brawl,barroom brawls +barrow,barrows +barrow,barrows +barrow,barrows +barrowful,barrowfuls,barrowsful +Barrowist,Barrowists +barrowload,barrowloads +barrow man,barrow men +Barrow's goldeneye,Barrow's goldeneyes +barrulet,barrulets +barry,barries +Barry boy,Barry boys +barse,barses +barse,barses +bar spin,bar spins +barspin,barspins +bar star,bar stars +barstaurant,barstaurants +bar stool,bar stools +barstool,barstools +barstooler,barstoolers +bar-tailed godwit,bar-tailed godwits +Bart,Barts +bartender,bartenders +barter,barters +barterer,barterers +barth,barths +Bartholin abscess,Bartholin abscesses +Bartholin's cyst,Bartholin's cysts +Bartholin's gland,Bartholin's glands +bartisan,bartisans +bartizan,bartizans +Bartlett,Bartletts +Bartlett's tinamou,Bartlett's tinamous +barton,bartons +bartop,bartops +barway,barways +bar-winged rail,bar-winged rails +barwit,barwits +barwoman,barwomen +barycenter,barycenters +barycentre,barycentres +barychelid,barychelids +barye,baryes +baryon,baryons +baryonic matter,baryonic matters +baryonium,baryoniums,baryonia +baryon number,baryon numbers +baryonychid,baryonychids +baryosynthesis,baryosyntheses +baryte,barytes +baryton,barytons +barytone,barytones +basal annulus,basal annuluses +basal,basals +basal body,basal bodies +basal bristle,basal bristles +basal cell,basal cells +basal dicot,basal dicots +basal ganglion,basal ganglia +basalioma,basaliomas,basiliomata +basalis,basales +basal layer,basal layers +basal metabolic rate,basal metabolic rates +basalt,basalts +basaltic magma,basaltic magmas +basal tomentum,basal tomenta +basal tubercle,basal tubercles +basan,basans +basanite,basanites +basbleu,basbleus +bascinet,bascinets +bascule,bascules +bascule bridge,bascule bridges +baseball Annie,baseball Annies +baseball,baseballs +baseball bat,baseball bats +baseball cap,baseball caps +baseball card,baseball cards +baseball diamond,baseball diamonds +baseballer,baseballers +baseball field,baseball fields +baseball glove,baseball gloves +baseball mitt,baseball mitts +baseball player,baseball players +baseband,basebands +base,bases +baseboard,baseboards +base-burner,base-burners +baseburner,baseburners +basecamp,basecamps +base case,base cases +base character,base characters +base class,base classes +basecoat,basecoats +base court,base courts +base gas,base gases +basehead,baseheads +base hit,base hits +BASE jump,BASE jumps +BASE jumper,BASE jumpers +baselard,baselards +baselayer,baselayers +baseline,baselines +baseliner,baseliners +baseload,baseloads +baseman,basemen +basement,basements +basement battler,basement battlers +basement membrane,basement membranes +base metal,base metals +basename,basenames +basenet,basenets +Basenji,Basenjis +base on balls,bases on balls +base-on-balls,bases-on-balls +base pair,base pairs +basepair,basepairs +basepath,basepaths +baseperson,basepersons +baseplate,baseplates +basepoint,basepoints +base radio,base radios +base rate fallacy,base rate fallacies +base runner,base runners +baserunner,baserunners +base sheet,base sheets +base station,base stations +basetender,basetenders +base unit,base units +basewoman,basewomen +baseword,basewords +basha,bashas +bashaw,bashaws +bash,bashes +basher,bashers +bashert,basherts +bashi-bazouk,bashi-bazouks +bashibazouk,bashibazouks +bashing,bashings +bashism,bashisms +Bashkir,Bashkirs +Bashkirian,Bashkirians +Bashkortostani,Bashkortostanis +bashlik,bashliks +bashlyk,bashlyks +basic balance,basic balances +basic,basics +basic block,basic blocks +basicerite,basicerites +Basic PokΓ©mon,Basic PokΓ©mon +basicranium,basicrania +basidiocarp,basidiocarps +basidiole,basidioles +basidiolichen,basidiolichens +basidioma,basidiomata +basidiome,basidiomes +basidiomycete,basidiomycetes +basidiospore,basidiospores +basidium,basidia +basifier,basifiers +basigynium,basigynia +basihyal,basihyals +basihyoid,basihyoids +Basiji,Basijis,Basiji +basil balm,basil balms +basil,basils +basil,basils +basilean,basileans +basilect,basilects +basilica,basilicas +basilic,basilics +basilick,basilicks +basilic vein,basilic veins +Basilidean,Basilideans +Basilidian,Basilidians +basilisc,basiliscs +basilisk,basilisks +basilosaurid,basilosaurids +basilosaurus,basilosauruses +basin,basins +basinet,basinets +basinful,basinfuls +basin of attraction,basins of attraction +basionym,basionyms +basipodite,basipodites +basipterygium,basipterygia +basis,bases,baseis +basisphenoid,basisphenoids +basis point,basis points +basketball court,basketball courts +basketballer,basketballers +basketball hoop,basketball hoops +basketball player,basketball players +basket,baskets +basket case,basket cases +basketcase,basketcases +basket clam,basket clams +basketeer,basketeers +basketful,basketfuls,basketsful +basket hilt,basket hilts +basket house,basket houses +basket-house,basket-houses +baskethouse,baskethouses +basketmaker,basketmakers +basket star,basket stars +basket toss,basket tosses +basket weave,basket weaves +basketweaver,basketweavers +basketworm,basketworms +baskimo,baskimos +basking shark,basking sharks +Basler,Baslers +basnet,basnets +basoche,basoches +bason,basons +basonym,basonyms +basophil,basophils +basque,basques +Basque,Basques +Basque Shepherd Dog,Basque Shepherd Dogs +bas relief,bas reliefs +bas-relief,bas-reliefs +bassa,bassas +bassaw,bassaws +bass,basses +bass,basses +bass bin,bass bins +bass boat,bass boats +bassboat,bassboats +bass bomb,bass bombs +bass C,bass Cs +bass clarinet,bass clarinets +bass clef,bass clefs +bass drum,bass drums +basset horn,basset horns +basset hound,basset hounds +basseting,bassetings +bassetto,bassettos +bass guitar,bass guitars +bass guitarist,bass guitarists +basshole,bassholes +bass horn,bass horns +bassinet,bassinets +bassinette,bassinettes +bassist,bassists +basslet,basslets +bassline,basslines +bassman,bassmen +bass note,bass notes +basso,bassos,bassi +bassock,bassocks +basso continuo,basso continuos +bassoon,bassoons +bassooner,bassooners +bassoonist,bassoonists +basso profondo,basso profondos +basso profundo,basso profundos +bass-relief,bass-reliefs +bass staff,bass staffs +bass trap,bass traps +bass trombone,bass trombones +bass viol,bass viols +basswood,basswoods +bastard,bastards +bastardisation,bastardisations +bastardiser,bastardisers +bastardization,bastardizations +bastardizer,bastardizers +bastardly gullion,bastardly gullions +bastard manchineel,bastard manchineels +bastard operator from hell,bastard operators from hell +bastard sword,bastard swords +bastardsword,bastardswords +bastard trumpeter,bastard trumpeters +bastard umbrella thorn,bastard umbrella thorns +bastard wing,bastard wings +bastardy bond,bastardy bonds +bast,basts +bastegh,basteghs +baster,basters +basterd,basterds +bastide,bastides +bastile,bastiles +bastille,bastilles +bastillion,bastillions +bastinade,bastinades +bastinado,bastinadoes +basting,bastings +bastion,bastions +bastirma,bastirmas +bastle,bastles +bastnaesite,bastnaesites +bastnasite,bastnasites +basto,bastos +baston,bastons +basturma,basturmas +Basutolander,Basutolanders +basyle,basyles +bata,bata +batagurid,batagurids +batard,batards +batardeau,batardeaus +batata,batatas +Batavian,Batavians +batavophone,batavophones +bat,bats +bat,bats +bat,bats +batboy,batboys +batch,batches +batch,batches +batchelor,batchelors +batchelor's son,batchelor's sons +batch file,batch files +batchmate,batchmates +batch process,batch processes +batch processing,batch processings +batch queue,batch queues +bat-eared fox,bat-eared foxes +bateau,bateaux +bate,bates +bateid,bateids +bateleur,bateleurs +batement,batements +Bates number,Bates numbers +Bates numbering,Bates numberings +batfish,batfishes,batfish +bat-fowler,bat-fowlers +batfowler,batfowlers +batgirl,batgirls +bath,baths +bath,baths +bath bomb,bath bombs +bath book,bath books +bath-brush,bath-brushes +bathbrush,bathbrushes +Bath chair,Bath chairs +bathe,bathes +bather,bathers +bathful,bathfuls +bathhouse,bathhouses +bathing,bathings +bathing beauty,bathing beauties +bathing box,bathing boxes +bathing cap,bathing caps +bathing costume,bathing costumes +bathing hut,bathing huts +bathing machine,bathing machines +bathing suit,bathing suits +bathing trunks,bathing trunks +bathkeeper,bathkeepers +bath kimono,bath kimonos +bath mat,bath mats +bathmat,bathmats +batholith,batholiths +Bath Oliver,Bath Olivers +bathometer,bathometers +bathorse,bathorses +bathrobe,bathrobes +bathroom,bathrooms +bathroom break,bathroom breaks +bathroomette,bathroomettes +bathroom singer,bathroom singers +bathroom tissue,bathroom tissues +bath salt,bath salts +bath time,bath times +bathtime,bathtimes +bath towel,bath towels +bathtub,bathtubs +bathtub curve,bathtub curves +bathtub gin,bathtub gins +bathycheilid,bathycheilids +bathyclupeid,bathyclupeids +bathycrinid,bathycrinids +bathydemersal,bathydemersals +bathydraconid,bathydraconids +bathyergid,bathyergids +bathylagid,bathylagids +bathymasterid,bathymasterids +bathymeter,bathymeters +bathymetrist,bathymetrists +bathymodiolin,bathymodiolins +bathynomid,bathynomids +bathyphase,bathyphases +bathyphyll,bathyphylls +bathysaurid,bathysaurids +bathyscaphe,bathyscaphes +bathysciadiid,bathysciadiids +bathysphere,bathyspheres +bathyteuthid,bathyteuthids +bathythermograph,bathythermographs +batida,batidas +batik,batiks +batiker,batikers +batillariid,batillariids +Batista bomb,Batista bombs +batlet,batlets +bat'leth,bat'leths +batling,batlings +batmaker,batmakers +batman,batmans +batman,batmen +bat mitzvah,bat mitzvahs +batoid,batoids +batologist,batologists +batologist,batologists +baton,batons +bΓ’ton,bΓ’tons +batoon,batoons +bat-pad,bat-pads +bat phone,bat phones +bat-phone,bat-phones +batphone,batphones +batrachian,batrachians +batrachite,batrachites +batrachoidid,batrachoidids +batrachomyomachy,batrachomyomachies +bat shit,bat shits +batskin,batskins +batsman,batsmen +batsqueak,batsqueaks +batswoman,batswomen +battailant,battailants +battaile,battailes +battalion,battalions +batt,batts +batteau,batteaux +battel,battels +batteler,battelers +batteling,battelings +battell,battells,battelles +battement,battements +batten,battens +Battenberg,Battenbergs +Battenberg cake,Battenberg cakes +Battenberger,Battenbergers +batter,batters +batter,batters +batter,batters +battercake,battercakes +batteree,batterees +batterer,batterers +batterie,batteries +battering,batterings +battering ram,battering rams +battering train,battering trains +batter rule,batter rules +battery,batteries +battery booster,battery boosters +battery cage,battery cages +battery electric vehicle,battery electric vehicles +battery hen,battery hens +battery mate,battery mates +batterymate,batterymates +batting average,batting averages +batting glove,batting gloves +batting order,batting orders +battle-ax,battle-axes +battleax,battleaxes +battle axe,battle axes +battle-axe,battle-axes +battleaxe,battleaxes +battle,battles +battle buddy,battle buddies +battle bus,battle buses +battlebus,battlebuses +battle cruiser,battle cruisers +battle-cruiser,battle-cruisers +battlecruiser,battlecruisers +battle cry,battle cries +battledoor,battledoors +battledore,battledores +battlefield,battlefields +battle fleet,battle fleets +battlefleet,battlefleets +battlefront,battlefronts +battleground,battlegrounds +battlegroup,battlegroups +battle honours,battle honourss +battle line,battle lines +battle-line,battle-lines +battleline,battlelines +battlement,battlements +battle of the sexes,battles of the sexes +battle piece,battle pieces +battleplan,battleplans +battle rapper,battle rappers +battler,battlers +battler,battlers +battle rhythm,battle rhythms +battle royal,battles royal,battle royals +battle-sark,battle-sarks +battle ship,battle ships +battleship,battleships +battleship-shaped curve,battleship-shaped curves +battlespace,battlespaces +battlesuit,battlesuits +battlewagon,battlewagons +battlezone,battlezones +battling,battlings +battner,battners +battologism,battologisms +battologist,battologists +batton,battons +batture,battures +batty,batties +batty boy,batty boys +batty man,batty men +batty rider,batty riders +batule,batules +batune,batunes +batwing,batwings +batwoman,batwomen +batz,batzes,batzen +batzen,batzens +baubee,baubees +baubellum,baubella +bauble,baubles +baubon,baubons +bauchle,bauchles +baudrick,baudricks +bauhinia,bauhinias +baulk,baulks +baulk colour,baulk colours +baulk end,baulk ends +baulker,baulkers +baulk line,baulk lines +BaumΓ©,BaumΓ©s +bauplan,bauplans +bauriid,bauriids +baurusuchid,baurusuchids +bavarois,bavaroises +bavaroise,bavaroises +bavaroy,bavaroys +bavin,bavins +bawbee,bawbees +bawble,bawbles +bawcock,bawcocks +bawd,bawds +bawdrick,bawdricks +bawdy house,bawdy houses +bawdy-house,bawdy-houses +bawdyhouse,bawdyhouses +bawdy-house bottle,bawdy-house bottles +bawhorse,bawhorses +bawler,bawlers +bawn,bawns +bawneen,bawneens +bawsin,bawsins +bawson,bawsons +baxter,baxters +Baxterian,Baxterians +baya,bayas +bayadere,bayaderes +bayadΓ¨re,bayadΓ¨res +bayamo,bayamos +bayan,bayans +bayanist,bayanists +bay antler,bay antlers +bayard,bayards +bay,bays +bay,bays +bay,bays +bay,bays +bayberry,bayberries +bay cat,bay cats +Bayer designation,Bayer designations +Bayesian network,Bayesian networks +Bay fever,Bay fevers +bayfront,bayfronts +bayhead,bayheads +baying,bayings +bay leaf,bay leaves +bayman,baymen +bayonet,bayonets +bayoneting,bayonetings +bayonetting,bayonettings +Bayonne ham,Bayonne hams +bayou,bayous +bayplan,bayplans +bay platform,bay platforms +Bay Stater,Bay Staters +bay willow,bay willows +bay window,bay windows +bayze,bayzes +bazaar,bazaars +baza,bazas +bazar,bazars +bazil,bazils +bazillionaire,bazillionaires +bazillion,bazillions +bazinga,bazingas +bazonga,bazongas +bazoo,bazoos +bazooka,bazookas +bazzite,bazzites +bb,bbs +BB,BBs +BBC,BBCs +B-bender,B-benders +BB gun,BB guns +bbl,bbls +B-boy,B-boys +BBQer,BBQers +B,Bs +Bβˆ’,Bβˆ’'s +BBSer,BBSers +BBW,BBWs +BCD,BCDs +B cell,B cells +BCer,BCers +BCG,BCGs +B.C. roll,B.C. rolls +BCT,BCTs +bday,bdays +bdelloid,bdelloids +bdelloid rotifer,bdelloid rotifers +bdellourid,bdellourids +B-double,B-doubles +B-drinker,B-drinkers +BDSMer,BDSMers +beable,beables +beach ball,beach balls +beachball,beachballs +beach,beaches +beachberry,beachberries +beachboy,beachboys +beach break,beach breaks +beach bum,beach bums +beach bunny, beach bunnies +beach chair,beach chairs +beachcomber,beachcombers +beach flea,beach fleas +beachful,beachfuls +beachgoer,beachgoers +beach head,beach heads +beach-head,beach-heads +beachhead,beachheads +beach hut,beach huts +beachie,beachies +beaching,beachings +beach party,beach parties +beach plum,beach plums +beachsalmon,beachsalmon +beachscape,beachscapes +beach towel,beach towels +beach transect,beach transects +beach wagon,beach wagons +beachwear,beachwear +beacon,beacons +beaconing,beaconings +bead,beads +bead breaker,bead breakers +beaded lacewing,beaded lacewings +beader,beaders +beadhouse,beadhouses +beading,beadings +beadle,beadles +beadledom,beadledoms +beadlery,beadleries +beadleship,beadleships +beadroll,beadrolls +beadsman,beadsmen +beadsnake,beadsnakes +beadswoman,beadswomen +bead tree,bead trees +beag,beags +beagle,beagles +beaglepuss,beaglepusses +beak,beaks +beaked salmon,beaked salmon +beaked whale,beaked whales +beaker,beakers +beakerful,beakerfuls,beakersful +beakfish,beakfishes,beakfish +beakful,beakfuls,beaksful +beakhead,beakheads +beak-iron,beak-irons +beakiron,beakirons +beal,beals +beam,beams +beambird,beambirds +beam compass,beam compasses +beam engine,beam engines +beamer,beamers +Beamer,Beamers +beamformer,beamformers +beamlet,beamlets +beamline,beamlines +beampattern,beampatterns +beampipe,beampipes +beamspace,beamspaces +beam splitter,beam splitters +beamsplitter,beamsplitters +beamster,beamsters +beamstop,beamstops +beamtrain,beamtrains +beam tree,beam trees +beamwidth,beamwidths +bean bag,bean bags +beanbag,beanbags +bean ball,bean balls +beanball,beanballs +bean,beans +beanbrain,beanbrains +beanbrawl,beanbrawls +beanburger,beanburgers +beancake,beancakes +bean counter,bean counters +bean-counter,bean-counters +beancounter,beancounters +bean curd,bean curds +bean curve,bean curves +bean-eater,bean-eaters +beaner,beaners +beaner,beaners +beanery,beaneries +bean feast,bean feasts +bean-feast,bean-feasts +beanfeast,beanfeasts +beanflicker,beanflickers +bean goose,bean geese +bean hole,bean holes +beanhole,beanholes +beanie,beanies +beano,beanos +bean pie,bean pies +bean pole,bean poles +bean-pole,bean-poles +beanpole,beanpoles +beanpot,beanpots +bean queen,bean queens +bean-shooter,bean-shooters +bean sprout,bean sprouts +beansprout,beansprouts +beanstalk,beanstalks +bean trefoil,bean trefoils +bear,bears +bearberry,bearberries +bear cat,bear cats +bearcat,bearcats +bear claw,bear claws +bear cub,bear cubs +bearcub,bearcubs +beard,beards +bearded clam,bearded clams +bearded dragon,bearded dragons +bearded mussel,bearded mussels +bearded reedling,bearded reedlings +bearded tit,bearded tits +bearded vulture,bearded vultures +beardfish,beardfishes,beardfish +beardie,beardies +beardling,beardlings +beardo,beardos +beardom,beardoms +beardtongue,beardtongues +beardy,beardies +bearer,bearers +bearer bond,bearer bonds +bear garlic,bear garlics +bearherd,bearherds +bearhound,bearhounds +bear hug,bear hugs +bearhug,bearhugs +bearing,bearings +bearing rein,bearing reins +bearleap,bearleaps +bearling,bearlings +bear market,bear markets +bearnaise,bearnaises +bΓ©arnaise,bΓ©arnaises +bearnaise sauce,bearnaise sauces +bear pit,bear pits +bear's breech,bear's breeches +bear's-breech,bear's-breeches +bear's ear,bears' ears +bearship,bearships +bearskin,bearskins +bear spread,bear spreads +bear trap,bear traps +beartrap,beartraps +bear walker,bear walkers +bearward,bearwards +bear-whelp,bear-whelps +beast,beasts +beastie,beasties +beastmaster,beastmasters +beast of burden,beasts of burden +beast of prey,beasts of prey +beast with two backs,beasts with two backs +beasty,beasties +beat,beats +beat,beats +beatbox,beatboxes +beatboxer,beatboxers +beatch,beatches +beat cop,beat cops +beat down,beat downs +beatdown,beatdowns +beat 'em up,beat 'em ups +beater,beaters +beater,beaters +beater-upper,beater-uppers +beatification,beatifications +beating,beatings +beating-heart transplant,beating-heart transplants +beatitude,beatitudes +Beatle,Beatles +Beatlehead,Beatleheads +Beatlemaniac,Beatlemaniacs +beat level,beat levels +beatmaker,beatmakers +beatnik,beatniks +beat parry,beat parries +beatscape,beatscapes +beat up,beat ups +beat-up,beat-ups +beau,beaux,beaus +beaucatcher,beaucatchers +Beauceron,Beaucerons +beaucoup,beaucoups +beaufet,beaufets +beaufin,beaufins +beau geste,beaux gestes +beau ideal,beaux ideals +beau idΓ©al,beaux idΓ©als +beau joueur,beaux joueurs +beaupere,beauperes +beau sabreur,beaux sabreurs +beauseant,beauseants +beaut,beauts +beaute,beautes +beautician,beauticians +beautie,beauties +beautification,beautifications +beautifier,beautifiers +beautiful armadillo,beautiful armadillos +beautiful fruit dove,beautiful fruit doves +beautillion,beautillions +beautyberry,beautyberries +beauty contest,beauty contests +beauty factory,beauty factories +beauty mark,beauty marks +beauty-mark,beauty-marks +beauty pageant,beauty pageants +beauty parlor,beauty parlors +beauty parlour,beauty parlours +beauty product,beauty products +beauty quark,beauty quarks +beauty queen,beauty queens +beauty salon,beauty salons +beauty school,beauty schools +beauty shop,beauty shops +beauty spot,beauty spots +beauverolide,beauverolides +beaver,beavers +beaver,beavers +beaver,beavers,beaver +beaver dam,beaver dams +beaver eater,beaver eaters +beaverkin,beaverkins +beaverling,beaverlings +beaverskin,beaverskins +beavertail,beavertails +beavery,beaveries +beazle,beazles +bebopper,beboppers +becak,becak +becard,becards +beccafico,beccaficos +bec de corbin,becs de corbin,bec de corbins +bΓ©chamel sauce,bΓ©chamel sauces +BΓ©chamel sauce,BΓ©chamel sauces +bechic,bechics +Bechterew's disease,Bechterew's diseases +Bechuana,Bechuanas +beck,becks +beck,becks +beck,becks +beck,becks +becker,beckers +becket,beckets +beckon,beckons +beckoner,beckoners +beckoning,beckonings +beclipping,beclippings +beclouding,becloudings +becomer,becomers +becoming,becomings +becquerel,becquerels +bed and breakfast,bed and breakfasts +bedazzlement,bedazzlements +bed-bath,bed-baths +bedbath,bedbaths +bed,beds +BED,BEDs +bed blocker,bed blockers +bed-blocker,bed-blockers +bedblocker,bedblockers +bed bug,bed bugs +bedbug,bedbugs +bedchair,bedchairs +bedchamber,bedchambers +bedcord,bedcords +bed cover,bed covers +bed-cover,bed-covers +bedcover,bedcovers +bedde,beddes +bedder,bedders +bedding plane,bedding planes +beddy,beddies +beddy-bye,beddy-byes +bede,bedes +bede,bedes,beden +bedeguar,bedeguars +bedehouse,bedehouses +bedel,bedels +bedell,bedells +bedelliid,bedelliids +bedelry,bedelries +bedesman,bedesmen +bedeswoman,bedeswomen +bedevilment,bedevilments +bedewer,bedewers +bedfellow,bedfellows +Bedfordshire clanger,Bedfordshire clangers +bedform,bedforms +bedframe,bedframes +bedful,bedfuls +bedgown,bedgowns +bedground,bedgrounds +bed-hopper,bed-hoppers +bedhopper,bedhoppers +bediasite,bediasites +bedizen,bedizens +bedjacket,bedjackets +bedkey,bedkeys +bedlam,bedlams +bedlamite,bedlamites +bedlamp,bedlamps +bedlight,bedlights +bedlinen,bedlinens +Bedlington Terrier,Bedlington Terriers +bedmaker,bedmakers +bedmate,bedmates +bed-mould,bed-moulds +bed moulding,bed mouldings +bednet,bednets +bed of justice,beds of justice +bed of pelts,beds of pelts +bed of roses,beds of roses +bedotiid,bedotiids +bedouin,bedouins +bedpan,bedpans +bedpiece,bedpieces +bedplate,bedplates +bedpost,bedposts +bed push,bed pushes +bedquilt,bedquilts +bedrail,bedrails +bedrel,bedrels +bedright,bedrights +bedrip,bedrips +bedrite,bedrites +bedrobe,bedrobes +bedrobe,bedrobes +bedroll,bedrolls +bed-room,bed-rooms +bedroom,bedrooms +bedroom community,bedroom communities +bed screw,bed screws +bed sheet,bed sheets +bedsheet,bedsheets +bedside,bedsides +bedside manner,bedside manners +bedside table,bedside tables +bedsit,bedsits +bedsite,bedsites +bedsitter,bedsitters +bedsock,bedsocks +bedsore,bedsores +bedspread,bedspreads +bedspring,bedsprings +bedstaff,bedstaffs,bedstaves +bedstead,bedsteads +bedstock,bedstocks +bedstone,bedstones +bedswerver,bedswervers +bedtick,bedticks +bedtime,bedtimes +bedtime story,bedtime stories +bedtop,bedtops +bed trick,bed tricks +Beduin,Beduins +Bedwardite,Bedwardites +bedwarmer,bedwarmers +bed wetter,bed wetters +bedwetter,bedwetters +bee balm,bee balms +Beeb,Beebs +bee,bees +bee,bees +bee,bees +Bee,Bees +bee,bees,been +bee bite,bee bites +beebrush,beebrushes +bee candy,bee candies +beech,beeches +beechdrops,beechdrops +beech marten,beech martens +beechnut,beechnuts +beedi,beedis +beedie,beedies +bee-eater,bee-eaters +beefalo,beefalo,beefalos,beefaloes +beef,beef,beefs,beeves +beefburger,beefburgers +beefcake,beefcakes +beefeater,beefeaters +Beefeater,Beefeaters +beefer,beefers +beef injection,beef injections +beef jerky,beef jerkies +beef olive,beef olives +beef on weck,beef on wecks +beef rib,beef ribs +beefsteak,beefsteaks +beef tomato,beef tomatoes +beef trust,beef trusts +beef Wellington,beef Wellingtons +beefwood,beefwoods +beegum,beegums +beehive,beehives +Beehive,Beehives +beehive shelf,beehive shelves +beehouse,beehouses +bee hummingbird,bee hummingbirds +bee in one's bonnet,bees in one's bonnet +beej,beejes +beekeeper,beekeepers +beeld,beelds +beeld,beelds +bee-line,bee-lines +beeline,beelines +beeling,beelings +beemaster,beemasters +beemer,beemers +beemother,beemothers +beenie,beenies +beep,beeps +beeper,beepers +beeping,beepings +beeramid,beeramids +beer baron,beer barons +be-er,be-ers +beer,beers +beer belly,beer bellies +beer bong,beer bongs +beerbong,beerbongs +beer bottle,beer bottles +beer-bust,beer-busts +beer can,beer cans +beercan,beercans +beer garden,beer gardens +beergarita,beergaritas +beer gut,beer guts +beer hall,beer halls +beer hand,beer hands +beerhead,beerheads +beerhouse,beerhouses +beer knot,beer knots +beermaker,beermakers +beer mat,beer mats +beermat,beermats +beer nut,beer nuts +beer parlor,beer parlors +beer parlour,beer parlours +beer run,beer runs +beershop,beershops +beersicle,beersicles +beer snake,beer snakes +beer tent,beer tents +beer ticket,beer tickets +bee smoker,bee smokers +beesome,beesomes +bee sting,bee stings +beesting,beestings +beeswarm,beeswarms +beetle bank,beetle banks +beetle,beetles +beetle,beetles +beetle brow,beetle brows +beetle-crusher,beetle-crushers +beetlehead,beetleheads +beetle mite,beetle mites +beetleskin,beetleskins +beet radish,beet radishes +beetrave,beetraves +beet root,beet roots +beetroot,beetroots +beetworm,beetworms +beeve,beeves +beeyatch,beeyatches +beeyotch,beeyotches +beezer,beezers +befall,befalls +befalling,befallings +beforemath,beforemaths +befouler,befoulers +befoulment,befoulments +befriender,befrienders +bega,begas +begat,begats +begathon,begathons +beg,begs +begeck,begecks +begena,begenas +begetter,begetters +beggar,beggars +beggarman,beggarmen +beggar-my-neighbor,beggar-my-neighbors +beggarwoman,beggarwomen +beggary,beggaries +begger,beggers +beggestere,beggesteres +Beghard,Beghards +begifting,begiftings +begin,begins +beginner,beginners +begiving,begivings +beglerbeg,beglerbegs +begomovirus,begomoviruses +begonia,begonias +begrimer,begrimers +begrudger,begrudgers +Beguard,Beguards +beguilement,beguilements +beguiler,beguilers +beguiling,beguilings +beguinage,beguinages +bΓ©guin,bΓ©guins +beguine,beguines +begum,begums +begunk,begunks +begynnynge,begynnynges +behabitive,behabitives +behalf,behalfs,behalves +behaver,behavers +behavioral crisis,behavioral crises +behavioral force,behavioral forces +behavioralist,behavioralists +behavioral objective,behavioral objectives +behavioral pattern,behavioral patterns +behaviorism,behaviorisms +behaviorist,behaviorists +behaviouralist,behaviouralists +behavioural pattern,behavioural patterns +behaviour,behaviours +behaviourist,behaviourists +beheadal,beheadals +beheader,beheaders +beheading,beheadings +behemoth,behemoths +behenate,behenates +behest,behests +behind,behinds +Behmenist,Behmenists +beholder,beholders +behoof,behoofs +beige,beiges +beigeist,beigeists +beigel,beigels +beigist,beigists +beignet,beignets +Beijingese,Beijingese +beikost,beikosts +beild,beilds +being,beings +beinge,beinges +bejan,bejans +bejeebus,bejeebuses +beka,bekas +bekah,bekahs +bek,beks +beknowing,beknowings +bektashi,bektashis +belaborer,belaborers +belabourer,belabourers +belamour,belamours +belamy,belamies +Belarusan,Belarusans +Belarusian,Belarusians +Belarussian,Belarussians +belay,belays +belayer,belayers +belaying pin,belaying pins +bel,bels +belch,belches +belcher,belchers +beldam,beldams +beldame,beldames +beleaguerer,beleaguerers +beleaguerment,beleaguerments +belemnite battlefield,belemnite battlefields +belemnite,belemnites +belemnoid,belemnoids +bel esprit,beaux esprits +Belfast sink,Belfast sinks +belfry,belfries +belgard,belgards +Belgian,Belgians +Belgian chocolate,Belgian chocolates +Belgian Sheepdog,Belgian Sheepdogs +Belgradian,Belgradians +Belgravian,Belgravians +belid,belids +belieber,beliebers +Belieber,Beliebers +belief,beliefs +belief system,belief systems +believer,believers +belike,belikes +Belisha beacon,Belisha beacons +belittlement,belittlements +belittler,belittlers +belittling,belittlings +Belizean,Belizeans +Belizian,Belizians +belladonna,belladonnas +bell animalcule,bell animalcules +bell-bearer,bell-bearers +bell,bells +bell,bells +Bell,Bells +bell-bind,bell-binds +bellbind,bellbinds +bellbird,bellbirds +bell boy,bell boys +bellboy,bellboys +bell buoy,bell buoys +bell captain,bell captains +bell-collar,bell-collars +bellcrank,bellcranks +bell curve,bell curves +belle,belles +belle laide,belles laides +belle-lettrist,belle-lettrists +bell-end,bell-ends +bellend,bellends +belle of the ball,belles of the ball +bellerophon,bellerophons +bellerophontid,bellerophontids +belle sabreuse,belles sabreuses +belletrist,belletrists +Belleville washer,Belleville washers +bellflower,bellflowers +bellfounder,bellfounders +bell-gable,bell-gables +bellgirl,bellgirls +Bellhead,Bellheads +bellhop,bellhops +bellibone,bellibones +bellicist,bellicists +bellicosity,bellicosities +bellid,bellids +belligerence,belligerences +belligerent,belligerents +bellini,bellinis +Bellini,Bellinis +bell jar,bell jars +bellmaker,bellmakers +bellman,bellmen +bellmouth,bellmouths +bellow,bellows +bellower,bellowers +bellowfish,bellowfishes +bellowing,bellowings +bellowsfish,bellowsfishes +bellperson,bellpersons,bellpeople +bell-pull,bell-pulls +bellpull,bellpulls +bellpush,bellpushes +bell ringer,bell ringers +bell-ringer,bell-ringers +bellringer,bellringers +bell rope,bell ropes +bellrope,bellropes +Bell shot,Bell shots +Bell state,Bell states +bell tower,bell towers +belltower,belltowers +bellwether,bellwethers +bellyache,bellyaches +bellyacher,bellyachers +bellyaching,bellyachings +bellyake,bellyakes +bellyband,bellybands +belly,bellies +belly buster,belly busters +belly button,belly buttons +belly-button,belly-buttons +bellybutton,bellybuttons +belly button ring,belly button rings +belly dance,belly dances +belly dancer,belly dancers +bellydancer,bellydancers +belly flop,belly flops +belly-flop,belly-flops +belly flopper,belly floppers +bellyful,bellyfuls,belliesful +belly-god,belly-gods +belly landing,belly landings +belly laugh,belly laughs +belly of the beast,bellies of the beasts +belly ring,belly rings +bellyring,bellyrings +belly-wark,belly-warks +bellywark,bellywarks +belly whop,belly whops +belly whopper,belly whoppers +belonger,belongers +belonid,belonids +belonite,belonites +belontiid,belontiids +Beloochee,Beloochees +Belorussian,Belorussians +belosaepiid,belosaepiids +belostomatid,belostomatids +beloved,beloveds +belovΓ¨d,belovΓ¨ds +belovite,belovites +belowstairs,belowstairs +belsire,belsires +belswagger,belswaggers +belt and suspenders,belts and suspenders +belt,belts +belt drive,belt drives +belt-drive,belt-drives +belted magnum,belted magnums +belted plaid,belted plaids +belter,belters +belter,belters +beltful,beltfuls,beltsful +Beltian body,Beltian bodies +belting,beltings +beltline,beltlines +belt loop,belt loops +beltmaker,beltmakers +belt-tightening,belt-tightenings +Beltway bandit,Beltway bandits +beltway,beltways +beluga,belugas +Beluga,Belugas +belvedere,belvederes +bema,bemas,bemata +Bemberg,Bembergs +bembrid,bembrids +beme,bemes +beming,bemings +bemoaner,bemoaners +bemol,bemols +bemusement,bemusements +Bena,Benas +ben,bens +ben,bens +ben,bens +ben,bens +Ben,Bens +benben stone,benben stones +bench,benches +bench,benches +bench dog,bench dogs +bencher,benchers +bench grinder,bench grinders +benching,benchings +bench jockey,bench jockeys +benchlet,benchlets +benchmark,benchmarks +benchmarker,benchmarkers +bench memo,bench memos +bench press,bench presses +benchpress,benchpresses +benchtop,benchtops +bench trial,bench trials +bench warmer,bench warmers +bench-warmer,bench-warmers +benchwarmer,benchwarmers +bench warrant,bench warrants +bend,bends +bender,benders +bender tent,bender tents +bending,bendings +bendir,bendirs +bendlet,bendlets +bend sinister,bends sinister +bendy,bendies +bendy bus,bendy buses +bendy straw,bendy straws +bene,benes +benedicite,benedicites +benedick,benedicks +Benedict Arnold,Benedict Arnolds +benedict,benedicts +Benedictine,Benedictines +benedictional,benedictionals +benedictionary,benedictionaries +benediction,benedictions +benedictive,benedictives +Benedict's reagent,Benedict's reagents +Benedict's solution,Benedict's solutions +Benedictus,Benedictuses +benefaction,benefactions +benefactive,benefactives +benefactive case,benefactive cases +benefactor,benefactors +benefactour,benefactours +benefactress,benefactresses +benefactrix,benefactrices +benefice,benefices +beneficence,beneficences +beneficial owner,beneficial owners +beneficiary,beneficiaries +beneficiation,beneficiations +benefit,benefits +benefit club,benefit clubs +benefiter,benefiters +benevolent dictator,benevolent dictators +benevolent dictatorship,benevolent dictatorships +benevolent overlord,benevolent overlords +Bengal,Bengals +Bengalee,Bengalees +Bengalese,Bengalese +Bengal fox,Bengal foxes +Bengali,Bengalis +bengaline,bengalines +Bengal light,Bengal lights +Bengal tiger,Bengal tigers +bengola,bengolas +benighter,benighters +benign tumor,benign tumors +benihana,benihanas +benimming,benimmings +Beninese,Beninese +Benioff zone,Benioff zones +benison,benisons +benitoite,benitoites +benjamin,benjamins +benjamin,benjamins +Benjamin,Benjamins +Benjaminite,Benjaminites +Benjamite,Benjamites +benk,benks +bennie,bennies +Bennington,Benningtons +Bennite,Bennites +benny,bennies +benny,bennies +Benny,Bennies +Benny,Bennies +benocyclidine,benocyclidines +benshee,benshees +benshi,benshi,benshis +bent,bents +bent,bents +bent car,bent cars +Benthamite,Benthamites +benthopectinid,benthopectinids +benthophyte,benthophytes +benthosuchid,benthosuchids +Bentley,Bentleys +bento box,bento boxes +bentonite,bentonites +bentorite,bentorites +bentsher,bentshers +Bent Spear,Bent Spears +Ben Wa ball,Ben Wa balls +ben wa balls,ben wa ballss +benzalkonium,benzalkoniums +benzamide,benzamides +benzannulation,benzannulations +benzanthracene,benzanthracenes +benzanthrone,benzanthrones +benzazepine,benzazepines +benzazocine,benzazocines +benzenediamine,benzenediamines +benzenediol,benzenediols +benzene ring,benzene rings +benzenesulfonamide,benzenesulfonamides +benzenethiol,benzenethiols +benzenium ion,benzenium ions +benzenoid,benzenoids +benzenol,benzenols +benzenonium ion,benzenonium ions +benzethonium,benzethoniums +benzhydrylpiperazine,benzhydrylpiperazines +benzidine,benzidines +benzilate,benzilates +benzimidazole,benzimidazoles +benzimidazolium,benzimidazoliums +benziodoxol,benziodoxols +benziodoxole,benziodoxoles +benzisothiazole,benzisothiazoles +benzisoxazole,benzisoxazoles +benzoate,benzoates +benzo,benzos +benzocycloheptene,benzocycloheptenes +benzodiazepine,benzodiazepines +benzodioxole,benzodioxoles +benzodithiophene,benzodithiophenes +benzofluorene,benzofluorenes +benzofuran,benzofurans +benzofurane,benzofuranes +benzofuranyl,benzofuranyls +benzoheterocycle,benzoheterocycles +benzohydroquinone,benzohydroquinones +benzoisochromanequinone,benzoisochromanequinones +benzoisothiazole,benzoisothiazoles +benzol,benzols +benzole,benzoles +benzoline,benzolines +benzomorphan,benzomorphans +benzonase,benzonases +benzonitrile,benzonitriles +benzopyran,benzopyrans +benzopyrazine,benzopyrazines +benzopyrazole,benzopyrazoles +benzopyrene,benzopyrenes +benzopyridazine,benzopyridazines +benzoquinoline,benzoquinolines +benzothiadiazole,benzothiadiazoles +benzothiazepine,benzothiazepines +benzothiazine,benzothiazines +benzothiazole,benzothiazoles +benzothiazoline,benzothiazolines +benzothiopyran,benzothiopyrans +benzotriazole,benzotriazoles +benzoxadiazine,benzoxadiazines +benzoxathiole,benzoxathioles +benzoxazepine,benzoxazepines +benzoxazine,benzoxazines +benzoxazole,benzoxazoles +benzoxepine,benzoxepines +benzoylation,benzoylations +benzoyl,benzoyls +benzoyltransferase,benzoyltransferases +benzpyrene,benzpyrenes +benzule,benzules +benzvalene,benzvalenes +benzylamine,benzylamines +benzylation,benzylations +benzyl,benzyls +benzylene,benzylenes +benzylhydantoin,benzylhydantoins +benzylidene,benzylidenes +benzyloxy,benzyloxys +benzylpyrrole,benzylpyrroles +benzyltetrahydroisoquinoline,benzyltetrahydroisoquinolines +benzyne,benzynes +beot,beots +beotch,beotches +Beotian,Beotians +Beowulf cluster,Beowulf clusters +bequeathal,bequeathals +bequeather,bequeathers +bequeathment,bequeathments +bequest,bequests +berating,beratings +ber,ber +Berber,Berbers +berberine,berberines +berberis,berberises +Berberophone,Berberophones +berberry,berberries +berborite,berborites +bercary,bercaries +berceuse,berceuses +berdache,berdaches,berdache +berdash,berdashes +bereavement,bereavements +bereaver,bereavers +beret,berets +beretta,berettas +berewick,berewicks +Bergamasco,Bergamascos,Bergamaschi +bergander,berganders +berg,bergs +bergeret,bergerets +bergerette,bergerettes +bergh,berghs +bergh,berghs +bergie,bergies +bergmaster,bergmasters +bergomask,bergomasks +bergschrund,bergschrunds +bergshrund,bergshrunds +bergwind,bergwinds +bergylt,bergylts +berimbau,berimbaus +berk,berks +berkovets,berkovets +Berkshireman,Berkshiremen +Berlepsch's tinamou,Berlepsch's tinamous +berlin,berlins +berline,berlines +Berliner,Berliners +Berlinese,Berlinese +berlingot,berlingots +Berlin green,Berlin greens +Berlin Wall,Berlin Walls +berm,berms +Bermudan,Bermudans +Bermudan option,Bermudan options +Bermuda rig,Bermuda rigs +Bermuda seam,Bermuda seams +Bermudian,Bermudians +bernacle,bernacles +Berna fly,Berna flies +bernard,bernards +Bernardine,Bernardines +berndtite,berndtites +Bernese,Berneses,Bernese +bernicle,bernicles +Bernoulli distribution,Bernoulli distributions +Bernoulli number,Bernoulli numbers +bernouse,bernouses +beroe,beroes +berothid,berothids +berretta,berrettas +berriasellid,berriasellids +berry,berries +berry,berries +berry,berries +berryite,berryites +berrypecker,berrypeckers +bersagliere,bersaglieri +berserk,berserks +berserker,berserkers +berstle,berstles +bertam palm,bertam palms +bertha,berthas +berthage,berthages +berth,berths +berthierite,berthierites +berthing,berthings +berthollide,berthollides +berycid,berycids +beryllate,beryllates +beryllide,beryllides +berylloid,berylloids +berytid,berytids +berytinid,berytinids +berzerk,berzerks +berzerker,berzerkers +besaiel,besaiels +besaile,besailes +besant,besants +besayle,besayles +beseech,beseeches +beseecher,beseechers +beseeching,beseechings +beserk,beserks +beserker,beserkers +besetter,besetters +besieger,besiegers +besmearer,besmearers +besmircher,besmirchers +besom,besoms +besomer,besomers +besom pocket,besom pockets +bespawling,bespawlings +bespeak,bespeaks +bespeaker,bespeakers +Bessarabian,Bessarabians +Bessel function,Bessel functions +Besser block,Besser blocks +Besser brick,Besser bricks +Besserwisser,Besserwissers +best bet,best bets +best boy,best boys +best friend,best friends +bestiality,bestialities +bestiarian,bestiarians +bestiary,bestiaries +bestie,besties +best-kept secret,best-kept secrets +best man,best men +best-of,best-ofs +bestowage,bestowages +bestowal,bestowals +bestower,bestowers +bestowment,bestowments +best practice,best practices +bestrophin,bestrophins +best-seller,best-sellers +bestseller,bestsellers +besylate,besylates +beta-amino acid,beta-amino acids +beta barrel,beta barrels +beta-beam,beta-beams +betabeam,betabeams +beta,betas +betablockade,betablockades +beta blocker,beta blockers +beta carbon nitride,beta carbon nitrides +beta emitter,beta emitters +beta error,beta errors +betafite,betafites +betaherpesvirus,betaherpesviruses +beta-lactamase,beta-lactamases +beta-lactam,beta-lactams +betalain,betalains +betamimetic,betamimetics +beta particle,beta particles +beta-peptide,beta-peptides +beta-pleated sheet,beta-pleated sheets +beta reader,beta readers +beta reduction,beta reductions +betaretrovirus,betaretroviruses +beta sheet,beta sheets +betatron,betatrons +beta version,beta versions +betavoltaic effect,betavoltaic effects +beta wave,beta waves +Betawi,Betawis +bet,bets +bΓͺte de scΓ¨ne,bΓͺte de scΓ¨nes +beteela,beteelas +Betelgeusian,Betelgeusians +betel leaf,betel leaves +betel nut,betel nuts +betelnut,betelnuts +betel palm,betel palms +betel pepper,betel peppers +bΓͺte noir,bΓͺte noirs +bΓͺte noire,bΓͺtes noires +bet exchange,bet exchanges +Bethe lattice,Bethe lattices +bethel,bethels +Bethesda,Bethesdas +beth hamidrash,beth hamidrashes +Bethlehem,Bethlehems +Bethlehemite,Bethlehemites +Bethlemite,Bethlemites +bethylid,bethylids +betrayal,betrayals +betrayer,betrayers +betrothal,betrothals +betrothment,betrothments +betrust,betrusts +betrustment,betrustments +Betsileo,Betsileos +betta,bettas +better,betters +better,betters +better half,better halves +betterment,betterments +betting parlor,betting parlors +betting shop,betting shops +Betti number,Betti numbers +bettong,bettongs +bettor,bettors +betty,betties +betweenane,betweenanes +between,betweens +between decks,between decks +between-step,between-steps +between-time,between-times +Betz cell,Betz cells +BeurrΓ©,BeurrΓ©s +bevatron,bevatrons +bevel,bevels +bevel gear,bevel gears +beveling,bevelings +bevelling,bevellings +bevelment,bevelments +beverage,beverages +bever,bevers +bever,bevers +bevering,beverings +bevile,beviles +Bevin Boy,Bevin Boys +bevor,bevors +bevvy,bevvies +bevy,bevies +bewailer,bewailers +beway,beways +bewdy,bewdies +Bewick's swan,Bewick's swans +bewilderer,bewilderers +bewilderment,bewilderments +bewist,bewists +bewit,bewits +bewitcher,bewitchers +bewitchery,bewitcheries +bewitching,bewitchings +bewitchment,bewitchments +bewith,bewiths +bewrayer,bewrayers +bewriting,bewritings +bey,beys +beylerbey,beylerbeys +beylic,beylics +bezant,bezants +bezantler,bezantlers +bezaunt,bezaunts +bez,bezes +bezel,bezels +bezier,beziers +BΓ©zier curve,BΓ©zier curves +bezil,bezils +bezique,beziques +bezoar,bezoars +bezoardic,bezoardics +bezoar goat,bezoar goats +bezoar ibex,bezoar ibexes +bezonian,bezonians +bezzy,bezzies +BFF,BFFs +B flat,B flats +B-frame,B-frames +B-girl,B-girls +bhagat,bhagats +Bhagavad-gita,Bhagavad-gitas +Bhagavad-gΔ«tā,Bhagavad-gΔ«tās +bhajan,bhajans +bhajee,bhajees +bhaji,bhajis +bhangi,bhangis +Bhangi,Bhangis +bhangra,bhangras +bharal,bharals,bharal +bhikkhu,bhikkhus +bhikshu,bhikshus +bhisti,bhistis,bhisties +bhoona,bhoonas +bhoy,bhoys +Bhumi,Bhumis +BhΕ«mi,BhΕ«mis +bhuna,bhunas +bhunder,bhunders +Bhutanese,Bhutanese +biach,biaches +Biafran,Biafrans +bialgebra,bialgebras +bialgebroid,bialgebroids +bialtitude,bialtitudes +bialy,bialys +biannual,biannuals +biantid,biantids +biarchy,biarchies +biaryl,biaryls +biatch,biatches +biathlete,biathletes +biathlon,biathlons +bibb,bibbs +bibber,bibbers +bib,bibs +bibbler,bibblers +bibcock,bibcocks +bibcode,bibcodes +bibe,bibes +bibelot,bibelots +bi,bi +bibionid,bibionids +bi,bis +Bible basher,Bible bashers +bible belt,bible belts +bible,bibles +Bible,Bibles +bible leaf,bible leaves +bible literalist,bible literalists +bibler,biblers +Bible thumper,Bible thumpers +Biblezine,Biblezines +biblical mythology,biblical mythologies +biblicist,biblicists +biblioclasm,biblioclasms +bibliograph,bibliographs +bibliographer,bibliographers +bibliographic database,bibliographic databases +bibliographist,bibliographists +bibliography,bibliographies +biblioklept,biblioklepts +bibliolater,bibliolaters +bibliolatrist,bibliolatrists +bibliomancy,bibliomancies +bibliomania,bibliomanias +bibliomaniac,bibliomaniacs +bibliometrist,bibliometrists +bibliomystery,bibliomysteries +bibliopegist,bibliopegists +bibliophage,bibliophages +bibliophile,bibliophiles +bibliophilist,bibliophilists +bibliopole,bibliopoles +bibliopolist,bibliopolists +bibliotaph,bibliotaphs +bibliotheca,bibliothecas +bibliothecary,bibliothecaries +bibliothec,bibliothecs +bibliotheke,bibliothekes +bibliotherapist,bibliotherapists +bibliotherapy,bibliotherapies +biblist,biblists +bibulation,bibulations +bibulosity,bibulosities +bicameralism,bicameralisms +bicameral legislature,bicameral legislatures +bicarbonate,bicarbonates +bicartesian closed category,bicartesian closed categories +bicategory,bicategories +bication,bications +biccy,biccies +bicelle,bicelles +bicentenary,bicentenaries +bicentennial,bicentennials +bicep,biceps +biceps,biceps,bicepses +bicheiro,bicheiros +bichir,bichirs +bichloride,bichlorides +bichon,bichons +Bichon Frise,Bichons Frises +Bichon FrisΓ©,Bichons FrisΓ©s +bichord,bichords +bichromate,bichromates +bicinchoninate,bicinchoninates +bicistron,bicistrons +bicker,bickers +bicker,bickers +bickerer,bickerers +bickering,bickerings +bickern,bickerns +bickie,bickies +bick-iron,bick-irons +bicky,bickies +biclique,bicliques +bicluster,biclusters +biclustering,biclusterings +bicoastal,bicoastals +bicoherence,bicoherences +bicoid,bicoids +Bicoid,Bicoids +bicolon,bicolons +bicolour,bicolours +biconditional,biconditionals +bicone,bicones +bicorn,bicorns +bicorne,bicornes +bicriterion,bicriteria +bicrossproduct,bicrossproducts +bicrystal,bicrystals +bicuculline,bicucullines +bicupola,bicupolas +bicuspid,bicuspids +bicyanide,bicyanides +bicycle,bicycles +bicycle clip,bicycle clips +bicycle helmet,bicycle helmets +bicycle kick,bicycle kicks +bicycle lane,bicycle lanes +bicycle path,bicycle paths +bicycle rack,bicycle racks +bicycler,bicyclers +bicycle stand,bicycle stands +bicycle tire,bicycle tires +bicyclic,bicyclics +bicyclist,bicyclists +bicyclobutane,bicyclobutanes +bidale,bidales +bidarka,bidarkas +bid,bids +bidder,bidders +biddi-biddi,biddi-biddies +bidding price,bidding prices +biddy,biddies +biddy,biddies +bident,bidents +bidet,bidets +bidiagonalization,bidiagonalizations +bidi,bidis +biding,bidings +bidirectionality,bidirectionalities +bidon,bidons +bidoublet,bidoublets +bid price,bid prices +bid size,bid sizes +Bielorussian,Bielorussians +biennale,biennales +biennial,biennials +biennium,bienniums,biennia +bien pensant,bien pensants +bien-pensant,bien-pensants +bierbalk,bierbalks +bier,biers +bierkeller,bierkellers +bierstube,bierstubes +biexciton,biexcitons +biface,bifaces +bifacial core,bifacial cores +biff,biffs +biffin,biffins +biffy,biffies +bifidobacterium,bifidobacteria +biflagellate,biflagellates +biflavonoid,biflavonoids +biflecnode,biflecnodes +bifolio,bifolios +biforine,biforines +biformity,biformities +bifundamental,bifundamentals +bifuran,bifurans +bifurcation,bifurcations +biga,bigas +bigam,bigams +bigamist,bigamists +bigamy,bigamies +bigaroon,bigaroons +big baby,big babies +Big Bad Wolf,Big Bad Wolves +big band,big bands +big bang,big bangs +Big Bend patchnose snake,Big Bend patchnose snakes +big,bigs +BIG,BIGs +big blind,big blinds +big bluestem,big bluestems +big box,big boxes +big boy,big boys +big break,big breaks +big brother,big brothers +big cat,big cats +big cheese,big cheeses +big crunch,big crunches +big daddy,big daddies +big D,big Ds +big deal,big deals +big dipper,big dippers +bigeminal,bigeminals +big enchilada,big enchiladas +bigenus,bigenera +bigeye,bigeyes +big figure,big figures +big fly,big flies +Bigfoot,Bigfoot,Bigfeet,Bigfoots +bigfootologist,bigfootologists +bigger fish in the sea,bigger fishes in the sea +bigger picture,bigger pictures +biggie,biggies +biggin,biggins +biggin,biggins +bigging,biggings +big girl's blouse,big girl's blouses,big girls' blouses +biggon,biggons +big gun,big guns +biggy,biggies +bigha,bighas +big hairy armadillo,big hairy armadillos +big-head,big-heads +bighead,bigheads +bighorn,bighorns +big house,big houses +bight,bights +big if,big ifs +big kahuna,big kahunas +bigleaf magnolia,bigleaf magnolias +big league,big leagues +big lick,big licks +big lug,big lugs +Big Mac,Big Macs +big mama,big mamas +big man on campus,big men on campus +big momma,big mommas +big mouth,big mouths +bigmouth,bigmouths +big name,big names +bignay,bignays +bigness,bignesses +bignonia,bignonias +bignose,bignoses +bignum,bignums +big O,big Os +bigon,bigons +big one,big ones +bigorexic,bigorexics +bigot,bigots +bigotry,bigotries +big picture,big pictures +bigram,bigrams +bigraph,bigraphs +big red button,big red buttons +big rig,big rigs +bigscale,bigscales +big school,big schools +big screen,big screens +big shot,big shots +bigshot,bigshots +big sister,big sisters +big spender,big spenders +BIG suit,BIG suits +big tent,big tents +big-tent,big-tents +big-ticket item,big-ticket items +big-timer,big-timers +big toe,big toes +big top,big tops +big tree,big trees +big up,big ups +big wheel,big wheels +big wig,big wigs +big-wig,big-wigs +bigwig,bigwigs +big year,big years +biholomorphism,biholomorphisms +bijection,bijections +bijective numeration,bijective numerations +bijou,bijous +bijou problemette,bijou problemettes +bikathon,bikathons +bike-and-ride,bike-and-rides +bikeathon,bikeathons +bike,bikes +bike,bikes +bike cab,bike cabs +bike jockey strap,bike jockey straps +bike lane,bike lanes +bike-lash,bike-lashes +bikelash,bikelashes +bikemaker,bikemakers +bike path,bike paths +bike rack,bike racks +biker,bikers +biker bitch,biker bitches +bikeshed,bikesheds +bike-shedding,bike-sheddings +bikeway,bikeways +bikie,bikies +bikini babe,bikini babes +bikini,bikinis +bikini bottom,bikini bottoms +bikini line,bikini lines +bikini wax,bikini waxes +bikont,bikonts +bilabial,bilabials +biland,bilands +bilander,bilanders +bilane,bilanes +bilat,bilats +bilateral descent,bilateral descents +bilateral gill trama,bilateral gill tramas +bilateralism,bilateralisms +bilateralist,bilateralists +bilateral symmetry,bilateral symmetries +bilaterian,bilaterians +bilayer,bilayers +Bilbaoan,Bilbaoans +bilberry,bilberries +bilbo,bilboes +bilboe,bilboes +bilboquet,bilboquets +bilby,bilbies +bilcock,bilcocks +bildungsroman,bildungsromans,bildungsromane +Bildungsroman,Bildungsromans,Bildungsromane +bile acid,bile acids +bile,biles +bilection,bilections +bile duct,bile ducts +bile pigment,bile pigments +bilepton,bileptons +bile salt,bile salts +bile soap,bile soaps +bilestone,bilestones +bilevel,bilevels +bilge keel,bilge keels +bilge pump,bilge pumps +biliary tract,biliary tracts +bilimbi,bilimbis +bilimbing,bilimbings +biliment,biliments +bilin,bilins +bilinear,bilinears +bilinear form,bilinear forms +bilinearization,bilinearizations +bilingual,bilinguals +bilingualism,bilingualisms +bilinguist,bilinguists +biliopancreatic diversion,biliopancreatic diversions +bilk,bilks +bilker,bilkers +billable,billables +billabong,billabongs +billard,billards +bill-beetle,bill-beetles +bill,bills +bill,bills +bill,bills +bill,bills +billboard,billboards +billbug,billbugs +biller,billers +billet,billets +billet,billets +billet,billets +billet-doux,billets-doux +billethead,billetheads +billeting,billetings +billetting,billettings +billfish,billfishes,billfish +billfold,billfolds +Bill Gates' flower fly,Bill Gates' flower flies +billhead,billheads +billholder,billholders +bill hook,bill hooks +bill-hook,bill-hooks +billhook,billhooks +billiard,billiards +billiard room,billiard rooms +billiard table,billiard tables +billicock,billicocks +billing,billings +billingsgate,billingsgates +billionaire,billionaires +billion,billions +billionth,billionths +billitonite,billitonites +billman,billmen +bill of attainder,bills of attainder +bill of costs,bills of costs +bill of credit,bills of credit +bill of entry,bills of entry +bill of exchange,bills of exchange +bill of fare,bills of fare +bill of goods,bills of goods +bill of health,bills of health +bill of lading,bills of lading +bill of material,bills of material +bill of materials,bills of materials +bill of particulars,bills of particulars +bill of quantities,bills of quantities +bill of rights,bills of rights +bill of sale,bills of sale +bill of sight,bills of sight +bill of store,bills of store +billon,billons +billow,billows +billowing,billowings +billpayer,billpayers +billposter,billposters +bill sticker,bill stickers +billsticker,billstickers +billy,billies +billyboy,billyboys +Billy Bunter,Billy Bunters +billy-can,billy-cans +billycan,billycans +billy cart,billy carts +billy club,billy clubs +billycock,billycocks +Billy Elliot,Billy Elliots +billy goat,billy goats +billy-goat,billy-goats +billygoat,billygoats +Billy no mates,Billy no mates +billypot,billypots +Billy Wix,Billy Wixes +bilo,bilos +biloquist,biloquists +Biloxian,Biloxians +bilsted,bilsteds +bimagnon,bimagnons +bimah,bimahs,bimot +bimatrix,bimatrices,bimatrixes +bimbashi,bimbashis +bimbette,bimbettes +bim,bims +bimble,bimbles +bimbo,bimbos +BIMBO,BIMBOs +bimboy,bimboys +bimedian,bimedians +bimester,bimesters +bimetallist,bimetallists +bi-metal strip,bi-metal strips +bimetal strip,bimetal strips +bimeter,bimeters +bimillenary,bimillenaries +bimillennial,bimillennials +bimini,biminis +bimmer,bimmers +bimmy,bimmies +bimodality,bimodalities +bimodule,bimodules +bimonopole,bimonopoles +bimonthly,bimonthlies +bimorph,bimorphs +bimorphism,bimorphisms +binane,binanes +binaphthalene,binaphthalenes +binaphtholate,binaphtholates +binaphthol,binaphthols +binaphthyl,binaphthyls +binarisation,binarisations +binarism,binarisms +binarity,binarities +binarseniate,binarseniates +binary antonym,binary antonyms +binary,binaries +binary compound,binary compounds +binary decimal,binary decimals +binary digit,binary digits +binary distribution,binary distributions +binary function,binary functions +binary name,binary names +binary noun,binary nouns +binary number,binary numbers +binary numeral system,binary numeral systems +binary operation,binary operations +binary operator,binary operators +binary quasar,binary quasars +binary relation,binary relations +binary star,binary stars +binary star system,binary star systems +binary system,binary systems +binary tree,binary trees +binational,binationals +binbag,binbags +binbashi,binbashis +bin,bins +bind,binds +binder,binders +binder clip,binder clips +bindery,binderies +bindi,bindis +bindii,bindiis +binding,bindings +binding knot,binding knots +bindle,bindles +bindle punk,bindle punks +bindle stiff,bindle stiffs +bindlestiff,bindlestiffs +bind-rune,bind-runes +bindrune,bindrunes +bine,bines +biner,biners +binful,binfuls,binsful +bing,bings +binge,binges +binge drinker,binge drinkers +binge eater,binge eaters +binger,bingers +bingle,bingles +bingo wings,bingo wings +biniodide,biniodides +biniou,binious,binioux +bink,binks +binky,binkies +bin liner,bin liners +binliner,binliners +binload,binloads +bin man,bin men +binman,binmen +binnacle,binnacles +binnekill,binnekills +binner,binners +binny,binnies +bino,binos +binocle,binocles +binocular,binoculars +binode,binodes +binomen,binomina +binomial,binomials +binomial coefficient,binomial coefficients +binomial distribution,binomial distributions +binomial name,binomial names +binominal,binominals +binominal name,binominal names +binormal,binormals +binoxalate,binoxalates +binoxide,binoxides +binsite,binsites +Bβ™­ instrument,Bβ™­ instruments +bint,bints +binturong,binturongs +binucleation,binucleations +binucleus,binuclei +bioaccessibility,bioaccessibilities +bioactivity,bioactivities +bioadhesive,bioadhesives +bioaerosol,bioaerosols +bioagent,bioagents +bioalkylation,bioalkylations +bioanalysis,bioanalyses +bioanalyst,bioanalysts +bioanalyzer,bioanalyzers +bioanthropologist,bioanthropologists +bioarchitecture,bioarchitectures +bioassay,bioassays +biobank,biobanks +biobanker,biobankers +biobattery,biobatteries +biobed,biobeds +bio,bios +bioblast,bioblasts +bio box,bio boxes +bio break,bio breaks +bio-break,bio-breaks +biobreak,biobreaks +bioburden,bioburdens +biocapsule,biocapsules +biocatalyst,biocatalysts +biocatalyzator,biocatalyzators +biocenosis,biocenoses +biocentre,biocentres +biocentrist,biocentrists +bioceramic,bioceramics +bioch,bioches +biochemical,biochemicals +biochemist,biochemists +biochip,biochips +biochrome,biochromes +biochron,biochrons +biocide,biocides +bioclast,bioclasts +bioclimate,bioclimates +bioclimosequence,bioclimosequences +biocoenose,biocoenoses +biocoenosis,biocoenoses +biocommunity,biocommunities +biocompiler,biocompilers +biocomponent,biocomponents +biocomposite,biocomposites +biocomputer,biocomputers +bioconcentration,bioconcentrations +bioconjugate,bioconjugates +bioconjugation,bioconjugations +biocytin,biocytins +biodefence,biodefences +biodefense,biodefenses +biodegradable,biodegradables +biodeterioration,biodeteriorations +biodevice,biodevices +biodigester,biodigesters +biodilution,biodilutions +biodistribution,biodistributions +biodiversity,biodiversities +biodome,biodomes +biodosimeter,biodosimeters +biodot,biodots +bioeconomist,bioeconomists +bioeffect,bioeffects +bioelectrocatalysis,bioelectrocatalyses +bioelimination,bioeliminations +bioengineer,bioengineers +bioenhancer,bioenhancers +bioentrepreneur,bioentrepreneurs +bioequivalence,bioequivalences +bioequivalency,bioequivalencies +bioeroder,bioeroders +bioethicist,bioethicists +biofabric,biofabrics +biofacies,biofacies +biofact,biofacts +biofactor,biofactors +biofactory,biofactories +biofertilizer,biofertilizers +biofield,biofields +biofilament,biofilaments +biofilm,biofilms +biofilter,biofilters +biofix,biofixes +bioflavonoid,bioflavonoids +biofluid,biofluids +bioform,bioforms +biofuel,biofuels +biofunctionalisation,biofunctionalisations +biofunctionalization,biofunctionalizations +biofunction,biofunctions +biog,biogs +biogeneric,biogenerics +biogenist,biogenists +biogeochemist,biogeochemists +biogeographer,biogeographers +biogeologist,biogeologists +biogerontologist,biogerontologists +biograph,biographs +biographee,biographees +biographer,biographers +biographette,biographettes +biographist,biographists +biography,biographies +biohacker,biohackers +biohazard,biohazards +biohazard symbol,biohazard symbols +bioherbicide,bioherbicides +bioherm,bioherms +biohybrid,biohybrids +biohydrogenation,biohydrogenations +bioidentical,bioidenticals +bioimplant,bioimplants +bioinactivation,bioinactivations +bioindicator,bioindicators +bioindustry,bioindustries +bioinformatician,bioinformaticians +bioinformaticist,bioinformaticists +bioingredient,bioingredients +bioinsecticide,bioinsecticides +bioinvasion,bioinvasions +bioisostere,bioisosteres +bioisosterism,bioisosterisms +bioligand,bioligands +bioliquid,bioliquids +biolith,bioliths +bioload,bioloads +biological clock,biological clocks +biological control,biological controls +biological father,biological fathers +biological fuel cell,biological fuel cells +biological imperative,biological imperatives +biological mother,biological mothers +biological parent,biological parents +biological psychologist,biological psychologists +biological psychology,biological psychologies +biological pump,biological pumps +biological weapon,biological weapons +biologic,biologics +biologist,biologists +biomacromolecule,biomacromolecules +biomagnification,biomagnifications +biomantle,biomantles +biomanufacturer,biomanufacturers +biomarker,biomarkers +biomaterial,biomaterials +biomathematician,biomathematicians +biomatrix,biomatrices +biome,biomes +biomechanist,biomechanists +biomedical,biomedicals +biomembrane,biomembranes +biometal,biometals +biometeorologist,biometeorologists +biometer,biometers +biomethylation,biomethylations +biometrician,biometricians +biometric passport,biometric passports +biomineral,biominerals +biomodification,biomodifications +biomodulator,biomodulators +biomolecule,biomolecules +biomonitor,biomonitors +biomorph,biomorphs +biomusical,biomusicals +bionanomaterial,bionanomaterials +bionanoscience,bionanosciences +bionanosensor,bionanosensors +bionanosystem,bionanosystems +bionanotechnology,bionanotechnologies +bion,bions +bionecrosis,bionecroses +bioneer,bioneers +bionomy,bionomies +bioorganism,bioorganisms +bioparticle,bioparticles +biopatent,biopatents +biopath,biopaths +biopesticide,biopesticides +biopharmaceutical,biopharmaceuticals +biophase,biophases +biophony,biophonies +biophor,biophors +biophore,biophores +biophotolysis,biophotolysises,biophotolyses +biophoton,biophotons +biophotoreactor,biophotoreactors +biophysicist,biophysicists +biophyte,biophytes +biopic,biopics +biopirate,biopirates +biopixel,biopixels +bioplasma,bioplasmas +bioplasm,bioplasms +bioplast,bioplasts +bioplastic,bioplastics +biopolymer,biopolymers +biopotency,biopotencies +biopreparation,biopreparations +bioprinter,bioprinters +bioprocess,bioprocesses +bioprocessor,bioprocessors +bioproduct,bioproducts +bioprogram,bioprograms +bioprogramme,bioprogrammes +bioprospector,bioprospectors +bioprosthesis,bioprostheses +bioprosthetic,bioprosthetics +bioprotein,bioproteins +bioprovince,bioprovinces +biopsy,biopsies +biopsychologist,biopsychologists +bioptome,bioptomes +biopyribole,biopyriboles +bio queen,bio queens +bioreactor,bioreactors +bioreagent,bioreagents +bioreceptor,bioreceptors +bioregionalisation,bioregionalisations +bioregionalist,bioregionalists +bioregionalization,bioregionalizations +bioregion,bioregions +bioregulator,bioregulators +bioreporter,bioreporters +biorepository,biorepositories +bioresearcher,bioresearchers +bioresource,bioresources +biorhythm,biorhythms +biorientation,biorientations +biorobot,biorobots +bioroid,bioroids +biosample,biosamples +biosatellite,biosatellites +bioscaffold,bioscaffolds +bioscience,biosciences +bioscientist,bioscientists +bioscope,bioscopes +biosensor,biosensors +bioseparation,bioseparations +biosequence,biosequences +bioseston,biosestons +biosignal,biosignals +biosignature,biosignatures +biosimilar,biosimilars +biosimulation,biosimulations +biosolid,biosolids +biosource,biosources +biospecimen,biospecimens +biospherean,biosphereans +biosphere,biospheres +biospherian,biospherians +biostat,biostats +biostatistician,biostatisticians +biostimulant,biostimulants +biostimulation,biostimulations +biostitute,biostitutes +biostrome,biostromes +biosurfactant,biosurfactants +bioswale,bioswales +biosynthesis,biosyntheses +biosystem,biosystems +biota,biotas +biotag,biotags +biot,biots +biotch,biotches +biotech,biotechs +biotechnique,biotechniques +biotechnologist,biotechnologists +bioterrorist,bioterrorists +biotherapeutic,biotherapeutics +biotherapeutics,biotherapeutics +biotherapy,biotherapies +biothreat,biothreats +biotin,biotins +biotope,biotopes +biotoxin,biotoxins +biotransference,biotransferences +biotransformation,biotransformations +biotroph,biotrophs +bioturbation,bioturbations +bioturbator,bioturbators +biotype,biotypes +biovar,biovars +biovolume,biovolumes +biowaiver,biowaivers +bioweapon,bioweapons +biozone,biozones +biparavector,biparavectors +bipartition,bipartitions +biped,bipeds +bipedid,bipedids +biphenanthrol,biphenanthrols +biphenanthryl,biphenanthryls +biphenol,biphenols +biphenoxide,biphenoxides +biphenylene,biphenylenes +biphobe,biphobes +biphosphatase,biphosphatases +biphosphate,biphosphates +biphosphoglycerate,biphosphoglycerates +biphosphoglyceric acid,biphosphoglyceric acids +biphosphonate,biphosphonates +biphoton,biphotons +biphyllid,biphyllids +biplane,biplanes +biplot,biplots +bipod,bipods +bipolaron,bipolarons +bipole,bipoles +bipolymer,bipolymers +bipotentiality,bipotentialities +biprism,biprisms +bipropellant,bipropellants +bipyramid,bipyramids +bipyrazole,bipyrazoles +bipyridine,bipyridines +bipyridinium,bipyridiniums +bipyridyl,bipyridyls +biquadrate,biquadrates +biquadratic,biquadratics +biquaternion,biquaternions +biquintile,biquintiles +biradical,biradicals +biraryl,biraryls +birch beer,birch beers +birch,birches +birch bolete,birch boletes +birch bracket,birch brackets +birching,birchings +birchwood,birchwoods +bird bath,bird baths +birdbath,birdbaths +bird,birds +bird,birds +birdbolt,birdbolts +birdbox,birdboxes +bird brain,bird brains +birdbrain,birdbrains +bird-cage,bird-cages +birdcage,birdcages +birdcall,birdcalls +birdcatcher,birdcatchers +bird cherry,bird cherries +bird-cherry ermine,bird-cherry ermines +bird colonel,bird colonels +bird course,bird courses +bird dog,bird dogs +bird-dog,bird-dogs +bird dropping spider,bird dropping spiders +birde,birdes +birder,birders +birdfeeder,birdfeeders +birdhouse,birdhouses +birdie,birdies +birdikin,birdikins +birdkeeper,birdkeepers +birdlet,birdlets +birdling,birdlings +birdman,birdmen +bird of Jove,birds of Jove +bird of paradise,birds of paradise +bird-of-paradise,birds-of-paradise +bird of passage,birds of passage +bird of prey,birds of prey +bird pepper,bird peppers +birdseller,birdsellers +bird's-eye,bird's-eyes +bird's-eye view,bird's-eye views +bird's-foot,bird's-foots +birdshop,birdshops +birdskin,birdskins +bird's mouth,birds' mouths +bird's nest fungus,bird's nest fungi +bird's nest pudding,bird's nest puddings +bird strike,bird strikes +birdstrike,birdstrikes +bird table,bird tables +birdtable,birdtables +bird watcher,bird watchers +birdwatcher,birdwatchers +birdwing,birdwings +birdwoman,birdwomen +birdy,birdies +bireflectance,bireflectances +birefringence,birefringences +bireme,biremes +biretta,birettas +birfday,birfdays +biriani,birianis +birimbao,birimbaos +biriyani,biriyanis +birk,birks +birkie,birkies +birlaw,birlaws +birl,birls +birley,birleys +birlie,birlies +birlinn,birlinns +Birmingham screwdriver,Birmingham screwdrivers +birnavirus,birnaviruses +birnessite,birnessites +biro,biros +birotula,birotulas,birotulae +birotunda,birotundas +birr,birrs +birr,birrs +birrus,birruses +birse,birses +birt,birts +birth canal,birth canals +birth certificate,birth certificates +birth chair,birth chairs +birthchild,birthchildren +birthdate,birthdates +birthday attack,birthday attacks +birthday,birthdays +birthday boy,birthday boys +birthday cake,birthday cakes +birthday card,birthday cards +birthdaycard,birthdaycards +birthdaye,birthdayes +birthday gift,birthday gifts +birthday girl,birthday girls +birthday present,birthday presents +birthday suit,birthday suits +birth defect,birth defects +birthdom,birthdoms +birther,birthers +birth father,birth fathers +birthfather,birthfathers +birthing,birthings +birthing chair,birthing chairs +birthing pool,birthing pools +birthland,birthlands +birthmark,birthmarks +birth mother,birth mothers +birthmother,birthmothers +birth name,birth names +birthnight,birthnights +birth pang,birth pangs +birthparent,birthparents +birthplace,birthplaces +birth plan,birth plans +birthrate,birthrates +birthright,birthrights +birthsite,birthsites +birthstone,birthstones +birthtime,birthtimes +birthweight,birthweights +birthyear,birthyears +bisaccate,bisaccates +bisacodyl,bisacodyls +bisacrylamide,bisacrylamides +bisadduct,bisadducts +bisagre,bisagres +bisalkene,bisalkenes +bisalkoxide,bisalkoxides +bisallene,bisallenes +bisamide,bisamides +bisaziridine,bisaziridines +bisbee blue,bisbee blues +bisbiguanide,bisbiguanides +Biscayan,Biscayans +biscotin,biscotins +biscotti,biscotti,biscottis +biscuit beetle,biscuit beetles +biscuit,biscuits +biscuiteer,biscuiteers +bisecant,bisecants +bisect,bisects +bisection,bisections +bisector,bisectors +bisectrix,bisectrixes,bisectrices +bisegment,bisegments +bisexual,bisexuals +bishie,bishies +Bishop Barker,Bishop Barkers +bishop,bishops +bishop pawn,bishop pawns +bishopric,bishoprics +bishoprick,bishopricks +bishop's collar,bishop's collars +bishop sleeve,bishop sleeves +bishy barnabee,bishy barnabees +bishydroxamic acid,bishydroxamic acids +bisilicate,bisilicates +bisimide,bisimides +bisimine,bisimines +bisimulation,bisimulations +bisindole,bisindoles +bisindolyl,bisindolyls +bisk,bisks +bisket,biskets +bis key,bis keys +bislactone,bislactones +bisligand,bisligands +bismarck,bismarcks +Bismarck,Bismarcks +bismuthane,bismuthanes +bismuthate,bismuthates +bismuthide,bismuthides +bismuthine,bismuthines +bisoliton,bisolitons +bison,bison,bisons +bispectrum,bispectra +bisphenol,bisphenols +bisphosphatase,bisphosphatases +bisphosphate,bisphosphates +bisphosphoglycerate,bisphosphoglycerates +bisphosphonate,bisphosphonates +bispinor,bispinors +bisquinoline,bisquinolines +bissextile,bissextiles +bissextile month,bissextile months +bissextile year,bissextile years +bistable,bistables +bisteeya,bisteeyas +bistetrazole,bistetrazoles +bistort,bistorts +bistoury,bistouries +bistramide,bistramides +bistriazole,bistriazoles +bistriflate,bistriflates +bistro,bistros +bisulfate,bisulfates +bisulfide,bisulfides +bisulfite,bisulfites +bisulphate,bisulphates +bisulphide,bisulphides +bisulphite,bisulphites +bisulphuret,bisulphurets +bitangent,bitangents +bitartrate,bitartrates +bit,bits +bit,bits +bitboard,bitboards +bit bucket,bit buckets +bitbucket,bitbuckets +bitch-ass,bitch-asses +bitch,bitches +bitchboy,bitchboys +bitchery,bitcheries +bitchface,bitchfaces +bitchfest,bitchfests +bitch fight,bitch fights +bitchfight,bitchfights +bitchfit,bitchfits +bitchling,bitchlings +bitchload,bitchloads +bitch magnet,bitch magnets +bitch slap,bitch slaps +bitch-slap,bitch-slaps +bitchslap,bitchslaps +bitchwad,bitchwads +bitch-whore,bitch-whores +bitchwhore,bitchwhores +bitcoin,bitcoins +Bitcoin,Bitcoins +BitCoin,BitCoins +bit depth,bit depths +bit-depth,bit-depths +bite,bites +biteforce,biteforces +bite indicator,bite indicators +biter,biters +bite stick,bite sticks +bite wing,bite wings +bitewing,bitewings +bitext,bitexts +bitfield,bitfields +bitflip,bitflips +bitheist,bitheists +bithiophene,bithiophenes +bithorax complex,bithorax complexes +bithyniid,bithyniids +biting,bitings +biting midge,biting midges +biting point,biting points +bit interval,bit intervals +bitki,bitkis +bit lifter,bit lifters +bitling,bitlings +bit map,bit maps +bit-map,bit-maps +bitmap,bitmaps +bitmask,bitmasks +bit nibbler,bit nibblers +bit of crumpet,bits of crumpet +bit of rough,bits of rough +bit of skirt,bits of skirt +bit on the side,bits on the side +bit part,bit parts +bit plane,bit planes +bitplane,bitplanes +bit player,bit players +bit rate,bit rates +bitrate,bitrates +bitriplet,bitriplets +bitruncation,bitruncations +bitset,bitsets +bit shift,bit shifts +bitshift,bitshifts +bitstate,bitstates +bitstock,bitstocks +bitstream,bitstreams +bitstring,bitstrings +bittacid,bittacids +bittacle,bittacles +bitt,bitts +bitter,bitters +bitter end,bitter ends +bitter gourd,bitter gourds +bittering,bitterings +bitterling,bitterlings +bitter melon,bitter melons +bittermelon,bittermelons +bittern,bitterns +bitternut,bitternuts +bitter pill,bitter pills +bitter pill to swallow,bitter pills to swallow +bittersweet,bittersweets +bitterweed,bitterweeds +bitterwort,bitterworts +bittie,bitties +bitting,bittings +bittock,bittocks +bittor,bittors +bittorrent,bittorrents +bittour,bittours +bitt-pin,bitt-pins +bitty box,bitty boxes +bitumen,bitumina,bitumens +bituminous sand,bituminous sands +bitzer,bitzers +biuret,biurets +bivalency,bivalencies +bivalent,bivalents +bivalve,bivalves +bivane,bivanes +bivariate,bivariates +bivector,bivectors +bivi bag,bivi bags +bivi,bivis +bivocal,bivocals +bivouac,bivouacs +bivouac sack,bivouac sacks +bivvy,bivvies +bivy,bivies +biwa,biwas +Biwa trout,Biwa trout +biweekly,biweeklies +bixie,bixies +bixie,bixies +biyatch,biyatches +biyotch,biyotches +bizarrerie,bizarreries +bizatch,bizatches +bizet,bizets +bizjet,bizjets +biznatch,biznatches +bizygomatic breadth,bizygomatic breadths +bizzo,bizzos +blaa,blaas +blabber,blabbers +blabberer,blabberers +blabbermouth,blabbermouths +blab,blabs +blaberid,blaberids +blaccent,blaccents +black abalone,black abalones +blackamoor,blackamoors +Black and Decker,Black and Deckers +black and gold garden spider,black and gold garden spiders +black and tan,black and tans +Black and Tan,Black and Tans +black and white,black and whites +black and white warbler,black and white warblers +black Angus,black Anguses +black antshrike,black antshrikes +black-arched moth,black-arched moths +black art,black arts +blackback,blackbacks +black-backed antshrike,black-backed antshrikes +black-backed jackal,black-backed jackals +black bag,black bags +blackball,blackballs +blackballer,blackballers +blackband,blackbands +black bass,black basses,black bass +black bear,black bears +black beetle,black beetles +black-bellied plover,black-bellied plovers +black belt,black belts +blackberry,blackberries +black-billed capercaillie,black-billed capercaillies +black-billed magpie,black-billed magpies +black birch,black birches +blackbird,blackbirds +blackbirder,blackbirders +black,blacks +black bloc,black blocs +blackboard,blackboards +black body,black bodies +blackbody,blackbodies +Black Book,Black Books +black bottom pie,black bottom pies +black box,black boxes +black box warning,black box warnings +black boy,black boys +blackboy,blackboys +blackbuck,blackbucks,blackbuck +Black Buddhist,Black Buddhists +Blackburnian warbler,Blackburnian warblers +blackbutt,blackbutts +black cab,black cabs +black caiman,black caimans +black cake,black cakes +blackcap,blackcaps +black-capped tinamou,black-capped tinamous +blackcap raspberry,blackcap raspberrys +black cardamom,black cardamoms +black card,black cards +black carpet beetle,black carpet beetles +black cat,black cats +Black Cat,Black Cats +blackcent,blackcents +black chamber,black chambers +black chanterelle,black chanterelles +blackchin,blackchins +black coal,black coals +blackcoat,blackcoats +black cockatoo,black cockatoos +black cock,black cocks +blackcock,blackcocks +black coffee,black coffees +black coral,black corals +black-crested antshrike,black-crested antshrikes +black currant,black currants +blackcurrant,blackcurrants +black dwarf,black dwarfs +black economy,black economies +blackener,blackeners +blackening,blackenings +blackey,blackeys +black eye,black eyes +blackeye,blackeyes +black-eyed pea,black-eyed peas +black-eyed Susan,black-eyed Susans +blackfella,blackfellas +blackfeller,blackfellers +blackfellow,blackfellows +blackfin,blackfins +blackfish,blackfishes,blackfish +black flag,black flags +black fly,blackflies +blackfly,blackflies +blackfold,blackfolds +Blackfoot,Blackfeet +black-footed cat,black-footed cats +black-footed rock wallaby,black-footed wallabies +Black Forest cake,Black Forest cakes +Black Forest gateau,Black Forest gateaux,Black Forest gateaus +Black Forest gΓ’teau,Black Forest gΓ’teaux,Black Forest gΓ’teaus +black friar,black friars +blackfriar,blackfriars +Black Friday,Black Fridays +black game,black game +blackgame,blackgame +black garden ant,black garden ants +black grouse,black grouses +blackguard,blackguards +blackguardism,blackguardisms +black guillemot,black guillemots +black gum,black gums +black hairstreak,black hairstreaks +black-handed gibbon,black-handed gibbons +black hat,black hats +black hat,black hats +blackhat,blackhats +blackhead,blackheads +black-headed gull,black-headed gulls +blackheart,blackhearts +black hellebore,black hellebores +black hole,black holes +blackhole,blackholes +black-hooded antshrike,black-hooded antshrikes +black-house,black-houses +blackhouse,blackhouses +blackie,blackies +black Irish,black Irish +blackish-gray antshrike,blackish-gray antshrikes +black jack,black jacks +blackjack,blackjacks +blackjack oak,blackjack oaks +black kite,black kites +black knight,black knights +Black Law,Black Laws +black light,black lights +blacklight,blacklights +blacklist,blacklists +blacklistee,blacklistees +blacklister,blacklisters +blacklisting,blacklistings +black locust,black locusts +blackmailer,blackmailers +black mamba,black mambas +black man,black men +black maple,black maples +Black Maria,Black Marias +black mark,black marks +black market,black markets +black marketeer,black marketeers +black metaller,black metallers +Black Monk,Black Monks +blackmoor,blackmoors +black mulberry,black mulberries +Black Muslim,Black Muslims +black-necked grebe,black-necked grebes +black-necked screamer,black-necked screamers +black-necked swan,black-necked swans +black nightshade,black nightshades +black note,black notes +black oak,black oaks +black olive,black olives +black op,black ops +black operation,black operations +black-out,black-outs +blackout,blackouts +blackout lamp,blackout lamps +black pine,black pines +blackpoll,blackpolls +black pudding,black puddings +Blackpudlian,Blackpudlians +black raspberry,black raspberries +black rat,black rats +black redstart,black redstarts +black rhinoceros,black rhinoceros,black rhinoceroses,black rhinocerotes +Black Rod,Black Rods +blackroot,blackroots +Black Russian,Black Russians +blacksalter,blacksalters +black salve,black salves +black sanctus,black sanctuses +black scabbardfish,black scabbardfish,black scabbardfishes +black shale,black shales +black sheep,black sheep +blackshirt,blackshirts +black slug,black slugs +blacksmelt,blacksmelts +blacksmith,blacksmiths +blacksmithy,blacksmithies +blacksnake,blacksnakes +black spot,black spots +blackspot,blackspots +black-striped wallaby,black-striped wallabies +black swan,black swans +blacktail,blacktails +black-tailed godwit,black-tailed godwits +black-tailed jackrabbit,black-tailed jackrabbits +black tern,black terns +blackthorn,blackthorns +black-throat,black-throats +black-throated antshrike,black-throated antshrikes +black-throated diver,black-throated divers +black-throated loon,black-throated loons +black tinamou,black tinamous +blacktip,blacktips +blacktress,blacktresses +black triangle,black triangles +black truffle,black truffles +black vulture,black vultures +blackwash,blackwashes +blackwater fever,blackwater fevers +black widow,black widows +blackwit,blackwits +black witch,black witches +black woodpecker,black woodpeckers +blackworm,blackworms +blacky,blackies +blad,blads +bladder,bladders +bladder campion,bladder campions +bladder cherry,bladder cherries +bladderful,bladderfuls,bladdersful +bladdernut,bladdernuts +bladderpod,bladderpods +bladderworm,bladderworms +blade,blades +Blade,Blades +bladebone,bladebones +blade connector,blade connectors +bladed stance,bladed stances +bladelet,bladelets +blade of grass,blades of grass +bladepoint,bladepoints +blade server,blade servers +bladesmith,bladesmiths +blaeberry,blaeberries +blag,blags +blaggard,blaggards +blagger,blaggers +blahg,blahgs +blain,blains +Blairista,Blairistas +Blairite,Blairites +blakey,blakeys +blamer,blamers +blamestorm,blamestorms +blancard,blancards +blancher,blanchers +blanch holding,blanch holdings +blancmange,blancmanges +blancmanger,blancmangers +bland,blands +blandisher,blandishers +blandishment,blandishments +blank,blanks +blank canvas,blank canvases,blank canvasses +blank check,blank checks +blank check company,blank check companies +blank cheque,blank cheques +blank end,blank ends +blanket,blankets +blanketing,blanketings +blanket lien,blanket liens +blanket loan,blanket loans +blanket party,blanket parties +blanket sheet,blanket sheets +blanket stitch,blanket stitches +blanket term,blanket terms +blankie,blankies +blanking,blankings +blanky,blankies +blanquillo,blanquillos +Blanquist,Blanquists +blanscue,blanscues +blare,blares +blaring,blarings +blaspheme,blasphemes +blasphemer,blasphemers +blaspheming,blasphemings +blasphemist,blasphemists +blasphemy,blasphemies +blast beat,blast beats +blast,blasts +blast,blasts +blast cell,blast cells +blastema,blastemas,blastemata +blaster,blasters +blast from the past,blasts from the past +blast furnace,blast furnaces +blasticidin,blasticidins +blasticotomid,blasticotomids +blastide,blastides +blasting,blastings +blastment,blastments +blastobasid,blastobasids +blastocele,blastoceles +blastocoel,blastocoels +blastocoele,blastocoeles +blastoconidium,blastoconidia +blastocyst,blastocysts +blastocyte,blastocytes +blastoderm,blastoderms +blastodisc,blastodiscs +blastodisk,blastodisks +blast-off,blast-offs +blastoff,blastoffs +blastoid,blastoids +blastoma,blastomas,blastomata +blastomere,blastomeres +blastophore,blastophores +blastopore,blastopores +blastosphere,blastospheres +blastospore,blastospores +blastostyle,blastostyles +blastula,blastulas,blastulae +blastule,blastules +blastwave,blastwaves +blatherer,blatherers +blatherstorm,blatherstorms +blattellid,blattellids +blatterer,blatterers +blatteroon,blatteroons +blattid,blattids +blaubok,blauboks +blawg,blawgs +blay,blays +blazar,blazars +blaze,blazes +blaze orange,blaze oranges +blazer,blazers +blazon,blazons +blazoner,blazoners +blazonry,blazonries +bleaberry,bleaberries +bleach,bleaches +bleach,bleaches +bleacher,bleachers +bleacherite,bleacherites +bleachery,bleacheries +bleachfield,bleachfields +bleaching agent,bleaching agents +bleaching,bleachings +bleaching powder,bleaching powders +bleak,bleaks +bleat,bleats +bleater,bleaters +bleating,bleatings +bleb,blebs +bled,bleds +bled,bleds +bleed,bleeds +bleeder,bleeders +bleeding,bleedings +bleeding edge,bleeding edges +bleeding heart,bleeding hearts +bleeding-heart,bleeding-hearts +bleeding time,bleeding times +bleeding time test,bleeding time tests +bleed-sheet,bleed-sheets +bleep,bleeps +bleep censor,bleep censors +bleeper,bleepers +bleg,blegs +bleg,blegs +blemish,blemishes +blemisher,blemishers +blench,blenches +blencher,blenchers +blench holding,blench holdings +blend,blends +blende,blendes +blended family,blended families +blender,blenders +blendstock,blendstocks +blenniid,blenniids +blennioid,blennioids +blennorrhea,blennorrheas +blenny,blennies +blepharicerid,blepharicerids +blepharocerid,blepharocerids +blepharon,blepharons +blepharoplasty,blepharoplasties +blepharospasm,blepharospasms +blesbok,blesboks +blesbuck,blesbucks +blesmol,blesmols +blessed event,blessed events +blessee,blessees +blesser,blessers +blessing,blessings +blessing in disguise,blessings in disguise +blether,blethers +BLEVE,BLEVEs +blevey,bleveys +blewe,blewes +blewit,blewits +blewits,blewits +bleyme,bleymes +bliaut,bliauts +blick,blicks +blicket,blickets +blickey,blickeys,blickies +blidget,blidgets +blighter,blighters +Blighty,blighties +blikanasaurid,blikanasaurids +blim,blims +blimp,blimps +Blimp,Blimps +blind abscess,blind abscesses +blindage,blindages +blind alley,blind alleys +blind,blinds +blind carbon copy,blind carbon copies +blind curve,blind curves +blind date,blind dates +blinder,blinders +blindfish,blindfishes,blindfish +blindfold,blindfolds +blindfolding,blindfoldings +blind gut,blind guts +blind hole,blind holes +blinding,blindings +blind item,blind items +blind map,blind maps +blind nailing,blind nailings +blind pig,blind pigs +blind pool,blind pools +blind quote,blind quotes +blindside,blindsides +blind spot,blind spots +blindspot,blindspots +blind stitch,blind stitches +blindstitch,blindstitches +blindstory,blindstories +blind thrust fault,blind thrust faults +blind tiger,blind tigers +blindworm,blindworms +blini,blini,blinis +blinkard,blinkards +blink,blinks +blinkenlight,blinkenlights +blinker,blinkers +blinkie,blinkies +blinky,blinkies +blintz,blintzes +blintze,blintzes +blip,blips +blipster,blipsters +blipvert,blipverts +blirt,blirts +bliss ninny,bliss ninnies +blister,blisters +blister pack,blister packs +blit,blits +blite,blites +blitter,blitters +blitz,blitzes +blitzkrieg,blitzkriegs +blivet,blivets +blivit,blivits +blivit,blivits +blizzard,blizzards +blizzaster,blizzasters +blizzicane,blizzicanes +BL Lac object,BL Lac objects +bloat,bloats +bloater,bloaters +bloater paste,bloater pastes +blobber,blobbers +blob,blobs +BLOB,BLOBs +blobfish,blobfishes,blobfish +blobject,blobjects +bloc,blocs +blockade,blockades +blockader,blockaders +blockade runner,blockade runners +blockade whiskey,blockade whiskeys +blockage,blockages +block and tackle,block and tackles +block,blocks +block book,block books +blockbuster,blockbusters +blockbuster drug,blockbuster drugs +block capital,block capitals +blockchain,blockchains +block diagram,block diagrams +block dump,block dumps +blocked shot,blocked shots +blockee,blockees +blocker bet,blocker bets +blocker,blockers +blockfront,blockfronts +blockhead,blockheads +block heater,block heaters +blockhole,blockholes +block hour,block hours +blockhouse,blockhouses +blocking,blockings +blocking course,blocking courses +blocking patent,blocking patents +blocklength,blocklengths +block letter,block letters +block level element,block level elements +blocklist,blocklists +blockmodel,blockmodels +block of flats,blocks of flats +block party,block parties +block polymer,block polymers +blockquote,blockquotes +blockship,blockships +blogaholic,blogaholics +blog,blogs +blogcast,blogcasts +blogette,blogettes +blogger,bloggers +blogmaster,blogmasters +blognovel,blognovels +blogoholic,blogoholics +blogophile,blogophiles +blogosphere,blogospheres +blogpost,blogposts +blogring,blogrings +blog roll,blog rolls +blogroll,blogrolls +blogsite,blogsites +blogster,blogsters +blogzine,blogzines +bloke,blokes +blolly,blollies +blomary,blomaries +blomstrandine,blomstrandines +blond,blonds +blonde,blondes +blonde moment,blonde moments +blondeness,blondenesses +blondie,blondies +blood bank,blood banks +blood bath,blood baths +bloodbath,bloodbaths +bloodberry,bloodberries +blood bin,blood bins +bloodbird,bloodbirds +blood blister,blood blisters +Blood,Bloods +blood brother,blood brothers +blood cancer,blood cancers +blood cell,blood cells +blood clot,blood clots +blood corpuscle,blood corpuscles +blood count,blood counts +blood diamond,blood diamonds +blood donor,blood donors +blood drive,blood drives +bloode,bloodes +bloodfest,bloodfests +blood feud,blood feuds +bloodfin,bloodfins +bloodflower,bloodflowers +blood group,blood groups +bloodhead,bloodheads +bloodhound,bloodhounds +bloodied nose,bloodied noses +blood knot,blood knots +bloodleaf,bloodleaves,bloodleafs +bloodletter,bloodletters +bloodletting,bloodlettings +blood libel,blood libels +bloodline,bloodlines +blood lust,blood lusts +bloodlust,bloodlusts +bloodmobile,bloodmobiles +bloodnut,bloodnuts +blood orange,blood oranges +blood poisoning,blood poisonings +blood pressure,blood pressures +blood pudding,blood puddings +blood red,blood reds +bloodred,bloodreds +blood relation,blood relations +blood relative,blood relatives +blood replacement,blood replacements +blood rule,blood rules +blood sample,blood samples +blood sausage,blood sausages +blood serum,blood serums +bloodshed,bloodsheds +bloodshedder,bloodshedders +bloodshedding,bloodsheddings +blood sister,blood sisters +blood sport,blood sports +bloodsport,bloodsports +bloodspot,bloodspots +bloodstain,bloodstains +bloodstick,bloodsticks +bloodstone,bloodstones +bloodstream,bloodstreams +blood sub,blood subs +blood substitution,blood substitutions +blood-sucker,blood-suckers +bloodsucker,bloodsuckers +blood tax,blood taxes +blood-tax,blood-taxes +blood test,blood tests +blood transfusion,blood transfusions +blood type,blood types +blood vessel,blood vessels +blood-wit,blood-wits +bloodwit,bloodwits +blood-wite,blood-wites +bloodwite,bloodwites +bloodwood,bloodwoods +blood worm,blood worms +bloodworm,bloodworms +Bloody Caesar,Bloody Caesars +bloody dock,bloody docks +bloody mary,bloody marys +Bloody Mary,Bloody Marys +bloody nose,bloody noses +bloody shirt,bloody shirts +bloody sweat,bloody sweats +bloody warrior,bloody warriors +blook,blooks +bloomary,bloomaries +bloom,blooms +bloom,blooms +bloomer,bloomers +bloomer,bloomers +bloomer,bloomers +bloomery,bloomeries +Bloomfieldian,Bloomfieldians +Bloomsday,Bloomsdays +blooper,bloopers +blooter,blooters +blooth,blooths +blop,blops +Bloquiste,Bloquistes +blore,blores +blorp,blorps +blort,blorts +blossom,blossoms +blossoming,blossomings +blot,blots +blotch,blotches +blotching,blotchings +blotter,blotters +blot test,blot tests +blotting paper,blotting papers +blouse,blouses +blouson,blousons +blouze,blouzes +bloviation,bloviations +bloviator,bloviators +blowback,blowbacks +blowball,blowballs +blow,blows +blow,blows +blow,blows +blow buddy,blow buddies +blow-buddy,blow-buddies +blowbuddy,blowbuddies +blow-by-blow,blow-by-blows +blowby,blowbys +blowdart,blowdarts +blowdown,blowdowns +blow-dry,blow-dries +blow dryer,blow dryers +blow-dryer,blow-dryers +blowdryer,blowdryers +blowen,blowens +blower,blowers +blowess,blowesses +blowfish,blowfish,blowfishes +blowfly,blowflies +blowgun,blowguns +blow-hard,blow-hards +blowhard,blowhards +blowhole,blowholes +blow horn,blow horns +blow-horn,blow-horns +blowhorn,blowhorns +blowie,blowies +blowing agent,blowing agents +blow job,blow jobs +blowjob,blowjobs +blowlamp,blowlamps +blow mould,blow moulds +blown diffuser,blown diffusers +blown save,blown saves +blow-off,blow-offs +blowoff,blowoffs +blow-out,blow-outs +blowout,blowouts +blowout coil,blowout coils +blowout preventer,blowout preventers +blowpipe,blowpipes +blowsabella,blowsabellas +blowse,blowses +blowth,blowths +blowtorch,blowtorches +blowtube,blowtubes +blow-up,blow-ups +blowup,blowups +blow valve,blow valves +blowy,blowies +blowze,blowzes +BLQ,BLQs +BLRG,BLRGs +BLS1,BLS1s +blubber,blubbers +blubberfest,blubberfests +blubbo,blubbos +blucher,bluchers +blud,bluds +bludgeon,bludgeons +bludgeoner,bludgeoners +bludgeoning,bludgeonings +bludger,bludgers +blue baby,blue babies +blueback,bluebacks +Bluebeard,Bluebeards +bluebell,bluebells +blue belly,blue bellies +blue beret,blue berets +blueberry,blueberries +bluebill,bluebills +bluebird,bluebirds +Bluebird,Bluebirds +blue-black,blue-blacks +blue-blood,blue-bloods +blueblood,bluebloods +blue,blues +blue bonnet,blue bonnets +bluebook,bluebooks +blue book exam,blue book exams +bluebottle,bluebottles +blue box,blue boxes +bluebreast,bluebreasts +bluebuck,bluebucks +blue bugle,blue bugles +blue bull,blue bulls +bluecap,bluecaps +blue card,blue cards +blue chamber,blue chambers +blue cheese,blue cheeses +blue chip,blue chips +blue circle rate,blue circle rates +bluecoat,bluecoats +blue cod,blue cod +blue code,blue codes +blue daze,blue dazes +Blue Dog,Blue Dogs +blue dwarf,blue dwarfs +blue-eye,blue-eyes +blue eye cod,blue eye cod +blue-eyed boy,blue-eyed boys +blue film,blue films +bluefin,bluefins +bluefish,bluefishes,bluefish +blue flag,blue flags +blue flash,blue flashes +blue flu,blue flus +blue flyer,blue flyers +blue fox,blue foxes +blue funk,blue funks +blue giant,blue giants +bluegill,bluegills +Bluegown,Bluegowns +blue-green alga,blue-green algae +blue green,blue greens +blue gum,blue gums +bluegum,bluegums +bluehair,bluehairs +bluehead,blueheads +blue heeler,blue heelers +blue hen-hawk,blue hen-hawks +blue hole,blue holes +blue hour,blue hours +bluejacker,bluejackers +bluejacket,bluejackets +bluejacking,bluejackings +blue jay,blue jays +bluejay,bluejays +Blue Jay,Blue Jays +blue jean,blue jeans +bluejet,bluejets +blue law,blue laws +blue-light special,blue-light specials +blue line,blue lines +blueline,bluelines +blueliner,blueliners +blue link,blue links +bluelink,bluelinks +blue lotus,blue lotuses +bluely,bluelies +Blue Max,Blue Maxes +blue moon,blue moons +blue movie,blue movies +blue mussel,blue mussels +bluenette,bluenettes +bluenose,bluenoses +bluenoser,bluenosers +blue note,blue notes +blue ointment,blue ointments +blue peter,blue peters +blue plate special,blue plate specials +blue-plate special,blue-plate specials +bluepoint,bluepoints +blue print,blue prints +blue-print,blue-prints +blueprint,blueprints +blue ribbon,blue ribbons +blue rinse,blue rinses +blue room,blue rooms +blue screen,blue screens +blue screen of death,blue screens of death +blue shark,blue sharks +blueshift,blueshifts +blue-sided leaf frog,blue-sided leaf frogs +bluesman,bluesmen +blue spot,blue spots +blues scale,blues scales +blue starter,blue starters +blue state,blue states +bluestocking,bluestockings +blue straggler,blue stragglers +bluestripe,bluestripes +blue supergiant,blue supergiants +blue swimmer crab,blue swimmer crabs +blueswoman,blueswomen +bluet,bluets +bluethroat,bluethroats +blue tit,blue tits +bluetit,bluetits +blue-tongued lizard,blue-tongued lizards +blue-tongued skink,blue-tongued skinks +blue-tongue lizard,blue-tongue lizards +blue wall,blue walls +blue wall of silence,blue walls of silence +bluewash,bluewashes +blue water,blue waters +blue whale,blue whales +blue wildebeest,blue wildebeest +bluewing,bluewings +blue-winged grasshopper,blue-winged grasshoppers +blue-winged kookaburra,blue-winged kookaburras +bluey,blueys +bluff,bluffs +bluff,bluffs +bluff catcher,bluff catchers +bluffer,bluffers +bluing,bluings +bluiter,bluiters +blumpkin,blumpkins +Blundellian,Blundellians +blunder,blunders +blunderbush,blunderbushes +blunderbuss,blunderbusses +blunderer,blunderers +blunderhead,blunderheads +blundering,blunderings +blunger,blungers +blunt,blunts +blunt instrument,blunt instruments +Blu-ray Disc,Blu-ray Discs +blurb,blurbs +blur,blurs +blush,blushes +blush,blushes +blusher,blushers +blushet,blushets +blushing,blushings +blushing bride,blushing brides +blush wine,blush wines +bluster,blusters +blusterer,blusterers +blustering,blusterings +blutwurst,blutwursts +bly,blies +blype,blypes +B-movie,B-movies +BMR,BMRs +BMW,BMWs +BNA,BNAs +BNC connector,BNC connectors +boa,boas +boa constrictor,boa constrictors +Boanerges,Boanergeses +boar,boars +board,boards +board,boards +boarder,boarders +board finger,board fingers +board foot,board feet +board-foot,board-feet +board game,board games +boardgame,boardgames +boardie,boardies +boarding,boardings +boarding house,boarding houses +boardinghouse,boardinghouses +boardinghouse reach,boardinghouse reaches +boarding party,boarding parties +boarding pass,boarding passes +boarding school,boarding schools +boardmanship,boardmanships +board of appeals,boards of appeals +board of control,boards of control +board of directors,boards of directors +board of supervisors,boards of supervisors +board room,board rooms +board-room,board-rooms +boardroom,boardrooms +boardslide,boardslides +boardsport,boardsports +boardwalk,boardwalks +boarfish,boarfishes,boarfish +boarhide,boarhides +boarhound,boarhounds +boar-spear,boar-spears +boart,boarts +boast,boasts +boaster,boasters +boasting,boastings +boatbearer,boatbearers +boatbill,boatbills +boat,boats +boat bug,boat bugs +boatbuilder,boatbuilders +boat conformation,boat conformations +boate,boates +boatel,boatels +boater,boaters +boatful,boatfuls,boatsful +boat-hook,boat-hooks +boathook,boathooks +boathouse,boathouses +boatie,boaties +boat lift,boat lifts +boatlift,boatlifts +boatload,boatloads +boatmaker,boatmakers +boatman,boatmen +boatmobile,boatmobiles +boatneck,boatnecks +boat person,boat people +boat race,boat races +boat-shaped abdomen,boat-shaped abdomens +boat shed,boat sheds +boatshed,boatsheds +boat shell,boat shells +boat shoe,boat shoes +boatsman,boatsmen +boatswain-bird,boatswain-birds +boatswain,boatswains +boatswain's chair,boatswain's chairs +boatswain's pipe,boatswain's pipes +boattail,boattails +boat train,boat trains +boat trip,boat trips +boatwoman,boatwomen +boatwright,boatwrights +boatyard,boatyards +bobac,bobacs +Bob Andy pie,Bob Andy pies +bobber,bobbers +bobbery,bobberies +bobbin,bobbins +bobble,bobbles +bobble hat,bobble hats +bobblehead,bobbleheads +bob,bob +bob,bobs +bob,bobs +bob,bobs +bob,bobs +Bob,Bobs +bobby,bobbies +bobby-dazzler,bobby-dazzlers +bobby pin,bobby pins +bobbysoxer,bobbysoxers +bobcat,bobcats +bobcat,bobcats +bob-cherry,bob-cherries +bobΓ¨che,bobΓ¨ches +bobet,bobets +bobfly,bobflies +BOBFOC,BOBFOCs +bob haircut,bob haircuts +bobkitten,bobkittens +bobo,bobos +bobolink,bobolinks +bo,bos +bobotie,boboties +bobrun,bobruns +bobsled,bobsleds +bobsledder,bobsledders +bobsleigh,bobsleighs +bobstay,bobstays +bobtail,bobtails +bobweight,bobweights +bobwhite,bobwhites +bob wig,bob wigs +bocaccio,bocaccio,bocaccios +bocage,bocages +bocal,bocals +bocca,boccas +bocconcini,bocconcini +boche,boches +Boche,Boches +bochka,bochkas +bock beer,bock beers +bock,bocks +bockey,bockeys +bocking,bockings +bockland,bocklands +bockwurst,bockwursts +bocor,bocors +boda-boda,boda-bodas +bodark,bodarks +bod,bods +boddice,boddices +boddle,boddles +bode,bodes +bodega,bodegas +bodement,bodements +bodge,bodges +bodge,bodges +bodge job,bodge jobs +bodger,bodgers +bodgie,bodgies +BodhipathapradΔ«pa,BodhipathapradΔ«pas +bodhisattva,bodhisattvas +bodhisattva vows,bodhisattva vowss +bodhi tree,bodhi trees +bodhran,bodhrans +bodice,bodices +bodice ripper,bodice rippers +bodice-ripper,bodice-rippers +Bo Diddley beat,Bo Diddley beats +bodie,bodies +bodikin,bodikins +bodily fluid,bodily fluids +bodily function,bodily functions +boding,bodings +bodkin,bodkins +bodle,bodles +Bodo,Bodos,Bodo +bodock,bodocks +bodotriid,bodotriids +bodrage,bodrages +body bag,body bags +bodybag,bodybags +bodyboard,bodyboards +bodyboarder,bodyboarders +bodybuilder,bodybuilders +body catch,body catches +body cavity search,body cavity searches +body check,body checks +bodycheck,bodychecks +body clock,body clocks +body coat,body coats +body cord,body cords +body count,body counts +body double,body doubles +bodye,bodyes +body fluid,body fluids +bodyguard,bodyguards +body line,body lines +bodyliner,bodyliners +body lotion,body lotions +body louse,body lice +body mass index,body mass indices +bodymaster,bodymasters +bodynet,bodynets +body odor,body odors +body odour,body odours +body of water,bodies of water +body of work,bodies of work +body part,body parts +body-part,body-parts +bodypart,bodyparts +body piercing,body piercings +body pillow,body pillows +bodypillow,bodypillows +body politic,bodies politic +body servant,body servants +bodyshell,bodyshells +body shop,body shops +bodyside,bodysides +body slam,body slams +bodyslam,bodyslams +body snatcher,body snatchers +bodysnatcher,bodysnatchers +body stocking,body stockings +bodystocking,bodystockings +bodysuit,bodysuits +bodyswap,bodyswaps +body temperature,body temperatures +body throw,body throws +bodywarmer,bodywarmers +body wash,body washes +body wave,body waves +bodyweight,bodyweights +bodyworker,bodyworkers +body wrap,body wraps +bodywrap,bodywraps +boegoe,boegoes +boehmite,boehmites +Boeotian,Boeotians +BΕ“otian,BΕ“otians +boep,boeps +Boer,Boers +boerewors,boerewors +boet,boets +BOF,BOFs +boff,boffs +boff,boffs +boffin,boffins +boffo,boffos +BOFH,BOFHs +bogan,bogans +bogan,bogans +boganiid,boganiids +bogart,bogarts +bogatyr,bogatyrs +bogbean,bogbeans +bogberry,bogberries +bog bilberry,bog bilberries +bog,bogs +bog brush,bog brushes +bogey,bogeys +bogey man,bogey men +bogeyman,bogeymen +bogeyperson,bogeypersons,bogeypeople +bogeywoman,bogeywomen +boggard,boggards +boggart,boggarts +bogger,boggers +bogger,boggers +boggler,bogglers +bogie,bogies +bogle,bogles +boglet,boglets +boglet,boglets +bog myrtle,bog myrtles +Bogo,Bogos +BOGOF,BOGOFs +Bogomil,Bogomils +Bogomile,Bogomiles +bogon,bogons +bogon filter,bogon filters +bog orchid,bog orchids +bogosity,bogosities +Bogotan,Bogotans +bograt,bograts +bog roll,bog rolls +bogroll,bogrolls +bogsucker,bogsuckers +bogtrotter,bogtrotters +bogue,bogues +bogue,bogues +bogy,bogies +bogyman,bogymen +Bogyman,Bogymen +bogywoman,bogywomen +bohea,boheas +Bohemia,Bohemias +bohemian,bohemians +Bohemian waxwing,Bohemian waxwings +Bohra,Bohras +bohrate,bohrates +bohrbug,bohrbugs +bohriate,bohriates +Bohr magneton,Bohr magnetons +bohunk,bohunks +boiar,boiars +boi,bois +boid,boids +boid,boids +boikin,boikins +boilary,boilaries +boil,boils +boil,boils +boiled egg,boiled eggs +boiled sweet,boiled sweets +boiler,boilers +boiler cupboard,boiler cupboards +boilerhouse,boilerhouses +boilermaker,boilermakers +boilerman,boilermen +boilerplate,boilerplates +boilerplate code,boilerplate codes +boiler room,boiler rooms +boiler suit,boiler suits +boilersuit,boilersuits +boilery,boileries +boiling,boilings +boiling frog,boiling frogs +boiling point,boiling points +boiling tube,boiling tubes +boil order,boil orders +boilover,boilovers +boil wash,boil washes +boine,boines +boing,boings +boist,boists +boitjie,boitjies +Bojanus organ,Bojanus organs +Bok globule,Bok globules +bokken,bokkens,bokken +bokkom,bokkoms +bokmakierie,bokmakieries +bold,bolds +boldface,boldfaces +bole,boles +bole,boles +bole,boles +bolection,bolections +bolero,boleros +boletate,boletates +bolete,boletes +Bolgar,Bolgars +Bolğar,Bolğars +Bolgarian,Bolgarians +Bolghar,Bolghars +bolide,bolides +bolillo,bolillos +bolitaenid,bolitaenids +bolΓ­var,bolΓ­vars +bolivar,bolivars,bolivares +bolivia,bolivias +Bolivian,Bolivians +boliviano,bolivianos +Bolivian slaty antshrike,Bolivian slaty antshrikes +Bollandist,Bollandists +bollard,bollards +boll,bolls +bolling,bollings +bollock,bollocks +bollocking,bollockings +bollocks,bollocks +bollox,bolloxes +boll weevil,boll weevils +bollworm,bollworms +bolo,bolos +bologna,bolognas +bolognese,bologneses +Bolognian stone,Bolognian stones +bologram,bolograms +bolometer,bolometers +bolometric correction,bolometric corrections +bolometric magnitude,bolometric magnitudes +boloney,boloneys +bolosaurid,bolosaurids +bolo tie,bolo ties +Bolshevik,Bolsheviks +Bolshevist,Bolshevists +bolshie,bolshies +bolshy,bolshies +bolster,bolsters +bolsterer,bolsterers +bolt action,bolt actions +bolt-action,bolt-actions +bolt,bolts +bolt,bolts +bolt bucket,bolt buckets +bolt circle,bolt circles +bolt cutter,bolt cutters +boltcutter,boltcutters +boltel,boltels +bolter,bolters +bolt from the blue,bolts from the blue +bolthead,boltheads +bolt-hole,bolt-holes +bolthole,boltholes +bolting,boltings +bolt-on,bolt-ons +bolt out of the blue,bolts out of the blue +bolt rope,bolt ropes +bolt-rope,bolt-ropes +boltrope,boltropes +boltsprit,boltsprits +bolty,bolties +Boltzmann brain,Boltzmann brains +bolus,boli,boluses +bolyerid,bolyerids +bolyeriid,bolyeriids +boma,bomas +bombard,bombards +bombarder,bombarders +bombardier beetle,bombardier beetles +bombardier,bombardiers +Bombardier,Bombardiers +bombarding,bombardings +bombardman,bombardmen +bombardment,bombardments +bombardo,bombardos +bombardon,bombardons +bombasine,bombasines +bombax,bombaxes +Bombay,Bombays +Bombay cat,Bombay cats +Bombay duck,Bombay ducks +Bombayite,Bombayites +bombazet,bombazets +bombazette,bombazettes +bombazine,bombazines +bomb,bombs +Bomb,Bombs +bombe,bombes +bomber,bombers +bomber jacket,bomber jackets +bomber seat,bomber seats +bombie,bombies +bombilation,bombilations +bombil,bombils +bombinatorid,bombinatorids +bombing,bombings +bomblet,bomblets +bombmaker,bombmakers +bombolo,bomboloes +bom,boms +bomboora,bombooras +bombora,bomboras +bombproof,bombproofs +bombshell,bombshells +bomb shelter,bomb shelters +bombsight,bombsights +bomb site,bomb sites +bombsite,bombsites +bombycid,bombycids +bombycillid,bombycillids +bombykol,bombykols +bombyliid,bombyliids +bombyx,bombyxes +bommie,bommies +bomoh,bomohs +bomolochid,bomolochids +Bonacker,Bonackers +bonacon,bonacons +bonanza,bonanzas +Bonapartist,Bonapartists +bona roba,bona robas +bonbon,bonbons +bonce,bonces +bonch,bonches +BonchrΓ©tien,BonchrΓ©tiens +bondager,bondagers +bondage suit,bondage suits +bond angle,bond angles +bond,bonds +bond,bonds +bond discount,bond discounts +bond dissociation energy,bond dissociation energies +bond distortion,bond distortions +bonded debt,bonded debt +bond energy,bond energies +bonder,bonders +bond for deed,bonds for deeds +bond for general purposes,bonds for general purposes +Bond girl,Bond girls +bondholder,bondholders +bondieuserie,bondieuseries +bonding jumper,bonding jumpers +bonding orbital,bonding orbitals +bond issue,bond issues +bond length,bond lengths +bondmaid,bondmaids +bondmaiden,bondmaidens +bondman,bondmen +bond market,bond markets +bond order,bond orders +bond premium,bond premiums +bondservant,bondservants +bondslave,bondslaves +bondsman,bondsmen +bondstone,bondstones +bondswoman,bondswomen +bonduc,bonducs +Bond villain,Bond villains +bondwoman,bondwomen +bone ash,bone ashes +bonebed,bonebeds +bonedigger,bonediggers +bonedog,bonedogs +bone-eating snot flower worm,bone-eating snot flower worms +boneen,boneens +bone fire,bone fires +bone-fire,bone-fires +bonefish,bonefish,bonefishes +bone fissure,bone fissures +bone head,bone heads +bonehead,boneheads +bonehouse,bonehouses +bonehouse,bonehouses +bone morphogenetic protein,bone morphogenetic proteins +bone of contention,bones of contention +boner,boners +bone scan,bone scans +boneset,bonesets +bonesetter,bonesetters +bone-shaker,bone-shakers +boneshaker,boneshakers +Bonesman,Bonesmen +bone structure,bone structures +bone to pick,bones to pick +bonetta,bonettas +boneyard,boneyards +bonfire,bonfires +bonfire boy,bonfire boys +bonfire society,bonfire societies +Bongard problem,Bongard problems +bong,bongs +bong,bongs +bong,bongs +bong hit,bong hits +bongo,bongos +bongo,bongos,bongoes +bongo drum,bongo drums +bongoist,bongoists +bongrace,bongraces +bonham,bonhams +bonheur du jour,bonheurs du jour +bonibell,bonibells +boniface,bonifaces +bonification,bonifications +boning,bonings +bonito,bonito,bonitos,bonitoes +bonk,bonks +bonkbuster,bonkbusters +bonker,bonkers +bonmot,bonmots,bonsmots +bon mot,bons mots,bon mots +bonnacon,bonnacons +bonnag,bonnags +bonne,bonnes +bonnet bellflower,bonnet bellflowers +bonnet,bonnets +bonnethead,bonnetheads +bonnet monkey,bonnet monkeys +bonnibel,bonnibels +bonny,bonnies +bonobo,bonobos +bonsella,bonsellas +bonspiel,bonspiels +bontebok,bonteboks +bonus,bonuses,boni +bon vivant,bons vivants +bon viveur,bons viveurs,bon viveurs +bonxie,bonxies +bonyad,bonyads +bony fish,bony fishes +bonze,bonzes +boobage,boobages +boob,boobs +boober,boobers +boobfest,boobfests +boobialla,boobiallas +boobie,boobies +boobie-trap,boobie-traps +boobird,boobirds +boob job,boob jobs +booboisie,booboisies +boo-boo,boo-boos +booboo,booboos +boobook,boobooks +boo,boos +boob tube,boob tubes +booby,boobies +booby,boobies +booby hatch,booby hatches +booby-hatch,booby-hatches +booby prize,booby prizes +booby trap,booby traps +booby-trap,booby-traps +booder,booders +Boodha,Boodhas +Boodhist,Boodhists +boodie,boodies +boodie,boodies +boodie,boodies +boodler,boodlers +booer,booers +boof,boofs +boofhead,boofheads +booger,boogers +booger,boogers +boogeyman,boogeymen +Boogeyman,boogeymen +boogie board,boogie boards +boogie-board,boogie-boards +boogieboard,boogieboards +boogieboarder,boogieboarders +boogie,boogies +boogieman,boogiemen +boogie-woogie,boogie-woogies +boogyman,boogymen +boohoo,boohoos +booing,booings +boojum,boojums +book account,book accounts +book agent,book agents +bookaholic,bookaholics +book-answerer,book-answerers +book award,book awards +bookazine,bookazines +bookbag,bookbags +bookbinder,bookbinders +bookbindery,bookbinderies +book,books +bookbuild,bookbuilds +book-burner,book-burners +book burning,book burnings +bookbus,bookbuses +bookcase,bookcases +book club,book clubs +bookclub,bookclubs +book deal,book deals +booke,bookes +bookend,bookends +book entry,book entries +booker,bookers +book fair,book fairs +bookfell,bookfells +bookful,bookfuls,booksful +book-ghoul,book-ghouls +book hand,book hands +bookhoard,bookhoards +bookholder,bookholders +bookhound,bookhounds +bookhouse,bookhouses +bookie,bookies +booking,bookings +bookjacket,bookjackets +book-keeper,book-keepers +bookkeeper,bookkeepers +bookland,booklands +booklet,booklets +booklight,booklights +bookling,booklings +booklist,booklists +booklouse,booklice +booklover,booklovers +book lung,book lungs +book-lung,book-lungs +booklung,booklungs +bookmaker,bookmakers +bookman,bookmen +bookmark,bookmarks +bookmarker,bookmarkers +bookmarklet,bookmarklets +bookmate,bookmates +bookmobile,bookmobiles +bookmonger,bookmongers +book of condolence,books of condolence +book of hours,books of hours +book of shadows,books of shadows +Book of Shadows,Books of Shadows +bookplate,bookplates +bookrack,bookracks +bookrest,bookrests +bookroom,bookrooms +book scorpion,book scorpions +book-scorpion,book-scorpions +bookseller,booksellers +bookshelf,bookshelves +book shop,book shops +bookshop,bookshops +book signing,book signings +bookstaff,bookstaffs +bookstaff,bookstaves,bookstaffs +bookstall,bookstalls +bookstand,bookstands +bookstave,bookstaves +book store,book stores +bookstore,bookstores +book value,book values +book worm,book worms +bookworm,bookworms +bookwright,bookwrights +bool,bools +boolean,booleans +Boolean,Booleans +Boolean function,Boolean functions +Boolean lattice,Boolean lattices +Boolean ring,Boolean rings +Boolean variable,Boolean variables +booly,boolies +boomaler,boomalers +boom and bust,booms and busts +boom,booms +boom,booms +boom,booms +boom box,boom boxes +boombox,boomboxes +boomburb,boomburbs +boomerang baby,boomerang babies +boomerang,boomerangs +boomerang child,boomerang children +boomerang effect,boomerang effects +boomeranger,boomerangers +boomerang kid,boomerang kids +boomer,boomers +booming,boomings +boomkin,boomkins +boomlet,boomlets +boomsayer,boomsayers +boomslang,boomslang,boomslangs +boomslange,boomslanges +boomster,boomsters +boomstick,boomsticks +boomtime,boomtimes +boom town,boom towns +boomtown,boomtowns +boom vang,boom vangs +boon,boons +boondagger,boondaggers +boondie,boondies +boondock,boondocks +boondoggle,boondoggles +boondoggler,boondogglers +booner,booners +booner,booners +boonga,boongas +boongary,boongarys +boong,boongs +boop,boops +boor,boors +boorka,boorkas +boort,boorts +booru,boorus +boose,booses +booser,boosers +booshway,booshways +boost,boosts +booster,boosters +booster cable,booster cables +booster club,booster clubs +booster dose,booster doses +booster injection,booster injections +booster shot,booster shots +bootable,bootables +bootblack,bootblacks +boot block,boot blocks +boot,boots +boot,boots +boot,boots +boot boy,boot boys +boot-boy,boot-boys +boot camp,boot camps +boot catcher,boot catchers +boot cut,boot cuts +boot-cut,boot-cuts +boot disk,boot disks +bootdisk,bootdisks +bootee,bootees +booter,booters +Booter,Booters +bootful,bootfuls +booth babe,booth babes +booth,booths +bootheel,bootheels +boothman,boothmen +boothmate,boothmates +boothy,boothies +bootie,booties +bootikin,bootikins +booting,bootings +bootjack,bootjacks +boot knife,boot knives +bootlace,bootlaces +bootle,bootles +bootleg,bootlegs +bootlegger,bootleggers +bootlegger reverse,bootlegger reverses +bootlick,bootlicks +bootlicker,bootlickers +bootload,bootloads +boot loader,boot loaders +bootloader,bootloaders +bootmaker,bootmakers +bootneck,bootnecks +Bootnik,Bootniks +bootprint,bootprints +boot sale,boot sales +bootscraper,bootscrapers +boot sector,boot sectors +bootsplash,bootsplashes +boot storm,boot storms +bootstrap,bootstraps +bootstrapper,bootstrappers +bootstripe,bootstripes +boot-topping,boot-toppings +boottopping,boottoppings +boot-tree,boot-trees +boottree,boottrees +bootup,bootups +boot verb,boot verbs +booty,booties +booty,booties +booty call,booty calls +booty scratcher,booty scratchers +booyah,booyahs +booze bus,booze buses +booze can,booze cans +booze cruise,booze cruises +boozefest,boozefests +boozehead,boozeheads +boozehound,boozehounds +booze jockey,booze jockeys +boozer,boozers +booze-up,booze-ups +boozing,boozings +bop,bops +bo-peep,bo-peeps +bopper,boppers +bopyrid,bopyrids +bora,boras +borachio,borachios +boracite,boracites +boragewort,borageworts +boranamine,boranamines +borane,boranes +boranyl,boranyls +boranylidene,boranylidenes +borate,borates +boration,borations +boratrane,boratranes +borax bead test,borax bead tests +borazine,borazines +Borborian,Borborians +borborid,borborids +borborigmus,borborigmi +Borborite,Borborites +borborygm,borborygms +borborygmus,borborygmi +Borda count,Borda counts +bordar,bordars +bord,bords +bordel,bordels +bordeller,bordellers +bordello,bordellos +Borden,Bordens +border,borders +Border Collie,Border Collies +bordereau,bordereaux +borderer,borderers +borderland,borderlands +borderline,borderlines +borderline personality disorder,borderline personality disorders +borderliner,borderliners +borderspace,borderspaces +border stone,border stones +borderstone,borderstones +bordetella,bordetellas +bordland,bordlands +bordman,bordmen +bordraging,bordragings +bordure,bordures +boreal owl,boreal owls +boreas,boreases +bore,bores +bore,bores +boree,borees +boreen,boreens +borehole,boreholes +boreid,boreids +borek,boreks +borele,boreles +Borel function,Γ‰mile Borel,Borel +Borel measure,Γ‰mile Borel,Borel +Borel set,Γ‰mile Borel,Borel +Borel Οƒ-algebra,Borel Οƒ-algebras +borene,borenes +boreoeutherian,boreoeutherians +borer bomb,borer bombs +borer,borers +borescope,borescopes +bore sight,bore sights +boresight,boresights +boresighting,boresightings +borewell,borewells +borganism,borganisms +borg,borgs +Borgesian library,Borgesian libraries +borhyaenid,borhyaenids +boric acid,boric acids +borickite,borickites +borid,borids +boride,borides +borinate,borinates +boring,borings +boring clam,boring clams +Boris bike,Boris bikes +born-again,born-agains +born-again virgin,born-again virgins +bornavirus,bornaviruses +born,borns +Bornean clouded leopard,Bornean clouded leopards +bornellid,bornellids +borneol,borneols +bornite,bornites +born loser,born losers +bornous,bornouses +boroaluminate,boroaluminates +boro,boros +borocarbide,borocarbides +borodeuteride,borodeuterides +borofluoride,borofluorides +borogove,borogoves +borohydride,borohydrides +boronate,boronates +boronation,boronations +boron group,boron groups +boronia,boronias +boronolectin,boronolectins +boron tree,boron trees +boroscope,boroscopes +borosilicate,borosilicates +borosilicate glass,borosilicate glasses +borosulfate,borosulfates +borosulphate,borosulphates +borough,boroughs +boroughhead,boroughheads +boroughholder,boroughholders +boroughmaster,boroughmasters +boroughmonger,boroughmongers +borough seat,borough seats +borra,borras +borrasca,borrascas +borrel,borrels +borrelia,borrelias,borreliae +borrow,borrows +borrow,borrows +borrower,borrowers +borrowing,borrowings +borsholder,borsholders +borstal,borstals +Borstalian,Borstalians +bort,borts +bortsch,bortsches +boruret,borurets +borylation,borylations +boryl,boryls +borylene,borylenes +borzoi,borzois +bosa,bosas +bosal,bosals +bosberaad,bosberaads +Bose-Einstein condensate,Bose-Einstein condensates +bosenova,bosenovas +bosey,boseys +bosh,boshes +bosh,boshes +bosino,bosinos +Bosjesman,Bosjesmans +boskage,boskages +bosk,bosks +bosket,boskets +Bosman rule,Bosman rules +bo's'n,bo's'ns +Bosniac,Bosniacs +Bosniak,Bosniaks +Bosnian,Bosnians +bosom,bosoms +bosom buddy,bosom buddies +bosome,bosomes +bosom friend,bosom friends +boson,bosons +boson,bosons +bosonisation,bosonisations +bosque,bosques +bosque,bosques +bosquet,bosquets +bossage,bossages +bossa nova,bossa novas +boss,bosses +boss,bosses +boss,bosses +bosser,bossers +bosset,bossets +boss key,boss keys +bossman,bossmen +boss rush,boss rushes +bossy,bossies +bostal,bostals +bostangi,bostangis +bostanji,bostanjis +Boston butt,Boston butts +Boston crab,Boston crabs +Boston cream pie,Boston cream pies +Bostonese,Bostonese,Bostoneses +Boston fern,Boston ferns +Bostonian,Bostonians +Bostonite,Bostonites +Boston marriage,Boston marriages +bostrichid,bostrichids +bostrychid,bostrychids +bosun,bosuns +bosun's chair,bosun's chairs +Boswell,Boswells +boswellic acid,boswellic acids +bota bag,bota bags +botallackite,botallackites +botanica,botanicas +botanical,botanicals +botanical garden,botanical gardens +botanical name,botanical names +botanic garden,botanic gardens +botanist,botanists +botanizer,botanizers +Botany Bay dozen,Botany Bay dozens +Botany Bay fever,Botany Bay fevers +botargo,botargos,botargoes +'bot,'bots +bot,bots +bot,bots +botch,botches +botch,botches +botcher,botchers +botchery,botcheries +botch job,botch jobs +bote,botes,boten +botel,botels +botete,botetes +bot fly,bot flies +botfly,botflies +bot herd,bot herds +botherder,botherders +botherer,botherers +bothid,bothids +bothie,bothies +bothremydid,bothremydids +bothriderid,bothriderids +bothriembryontid,bothriembryontids +bothrium,bothria +bothriurid,bothriurids +bothy,bothies +botiid,botiids +botkin,botkins +botmaster,botmasters +botnet,botnets +boto,botos +Botocudo,Botocudos +bo tree,bo trees +botryoid,botryoids +Botswanan,Botswanans +bott,botts +botter,botters +bottine,bottines +bottle-arse,bottle-arses +bottle bank,bottle banks +bottle,bottles +bottle,bottles +bottle brush,bottle brushes +bottlebrush,bottlebrushes +bottle cap,bottle caps +bottle crate,bottle crates +bottled gas,bottled gases +bottlefly,bottleflies +bottleful,bottlefuls,bottlesful +bottle glorifier,bottle glorifiers +bottle green,bottle greens +bottlehead,bottleheads +bottleholder,bottleholders +bottleneck,bottlenecks +bottleneck guitar,bottleneck guitars +bottlenose,bottlenoses +bottle-nosed dolphin,bottle-nosed dolphins +bottlenosed dolphin,bottlenosed dolphins +bottle-nose dolphin,bottle-nose dolphins +bottlenose dolphin,bottlenose dolphins +bottlenose skate,bottlenose skates +bottlenose whale,bottlenose whales +bottle-o,bottle-os +bottle-oh,bottle-ohs +bottle opener,bottle openers +bottle-opener,bottle-openers +bottler,bottlers +bottler,bottlers +bottle rocket,bottle rockets +bottlescrew,bottlescrews +bottle sedge,bottle sedges +bottle shop,bottle shops +bottleshop,bottleshops +bottle sling,bottle slings +bottle top,bottle tops +bottling,bottlings +bottlo,bottlos +bottom antiquark,bottom antiquarks +bottom bitch,bottom bitches +bottom burp,bottom burps +bottom edge,bottom edges +bottomer,bottomers +bottom feeder,bottom feeders +bottomfeeder,bottomfeeders +bottom fermentation,bottom fermentations +bottom gear,bottom gears +bottom hand,bottom hands +bottom kill,bottom kills +bottomlessness,bottomlessnesses +bottomless pit,bottomless pits +bottom liner,bottom liners +bottomonium,bottomoniums,bottomonia +bottom quark,bottom quarks +bottomry,bottomries +bottom sheet,bottom sheets +bottonium,bottoniums,bottonia +botts,botts +botty,botties +botty burp,botty burps +botulinum toxin,botulinum toxins +boubou,boubous +bouche,bouches +bouche,bouches +bouchΓ©e,bouchΓ©es +boud,bouds +Bouddhist,Bouddhists +boudin,boudins +boudoir,boudoirs +bouffage,bouffages +bouffant,bouffants +bouffant cap,bouffant caps +bouffe,bouffes +bougainvilia,bougainvilias +bougainvillaea,bougainvillaeas +bougainvillea,bougainvilleas +bougainvilliid,bougainvilliids +bouget,bougets +bough,boughs +bought,boughts +bougie,bougies +bouillabaisse,bouillabaisses +bouilli,bouillis +bouillion,bouillions +bouk,bouks +boula,boulas +boulangerie,boulangeries +boul,bouls +boulder,boulders +boulderer,boulderers +boulderstone,boulderstones +boule,boules +boulevard,boulevards +boulevardier,boulevardiers +boulevard stop,boulevard stops +bouleversement,bouleversements +boultel,boultels +boulter,boulters +bounceback,bouncebacks +bounce,bounces +bounced check,bounced checks +bouncedown,bouncedowns +bounce house,bounce houses +bouncer,bouncers +bouncing Betty,bouncing Betties +bouncing bomb,bouncing bombs +bouncing castle,bouncing castles +bouncy ball,bouncy balls +bouncy castle,bouncy castles +boundance,boundances +boundary,boundaries +boundary rider,boundary riders +boundary umpire,boundary umpires +bound bailiff,bound bailiffs +bound,bounds +bound,bounds +bounded function,bounded functions +bounder,bounders +bound form,bound forms +boundling,boundlings +bound morpheme,bound morphemes +bound property,bound properties +bound state,bound states +bound variable,bound variables +bound water,bound waters +bounty,bounties +bounty hunter,bounty hunters +bounty jumper,bounty jumpers +bouquet,bouquets +bouquet garni,bouquets garnis +bouquetin,bouquetins +Bourbon biscuit,Bourbon biscuits +bourbon,bourbons +bourbon cream,bourbon creams +Bourbonist,Bourbonists +bour,bours +bourd,bourds +bourder,bourders +bourdon,bourdons +bourgeoise,bourgeoises +bourgeoning,bourgeonings +bourgie,bourgies +Bourgignot,Bourgignots +bourgueticrinid,bourgueticrinids +bouri,bouris +bourn,bourns +bourn,bourns +bournous,bournouses +bourree,bourrees +bourrΓ©e,bourrΓ©es +bourrelet,bourrelets +bourride,bourrides +bourse,bourses +bouse,bouses +bouser,bousers +boutade,boutades +bout,bouts +boutefeu,boutefeus +boutfit,boutfits +boutique,boutiques +bouton,boutons +boutonniere,boutonnieres +boutonniΓ¨re,boutonniΓ¨res +bouzouki,bouzoukis +bovate,bovates +bovichthyid,bovichthyids +bovichtid,bovichtids +bovicide,bovicides +bovid,bovids +bovine,bovines +bovver bird,bovver birds +bovver,bovvers +bovver boy,bovver boys +bowab,bowabs +bow and arrow,bows and arrows +bow and scrape,bows and scrapes,bow and scrapes +bow,bows +bow,bows +bow,bows +bow chaser,bow chasers +bow compass,bow compasses +Bowden cable,Bowden cables +bowdlerizer,bowdlerizers +bowel,bowels +bowel cancer,bowel cancers +bowel movement,bowel movements +bowel obstruction,bowel obstructions +bower anchor,bower anchors +bower bird,bower birds +bowerbird,bowerbirds +bower,bowers +bower,bowers +bower,bowers +bower,bowers +bower,bowers +bowery,boweries +bowess,bowesses +bowfin,bowfins +bowgrace,bowgraces +bowhead,bowheads +bowhead whale,bowhead whales +bowhunter,bowhunters +bowie,bowies +bowie knife,bowie knives +Bowie knife,Bowie knives +bowknot,bowknots +bowl barrow,bowl barrows +bowl,bowls +bowl,bowls +bowl cut,bowl cuts +bowlder,bowlders +bowleg,bowlegs +bowler,bowlers +bowler,bowlers +bowler hat,bowler hats +bowlful,bowlfuls,bowlsful +bowline,bowlines +bowling alley,bowling alleys +bowling average,bowling averages +bowling bag,bowling bags +bowling ball,bowling balls +bowling crease,bowling creases +bowling green,bowling greens +bowl of cherries,bowls of cherries +bowl-off,bowl-offs +bowl-out,bowl-outs +bowl pack,bowl packs +bowmaker,bowmakers +bowman,bowmen +bowman,bowmen +Bowman's capsule,Bowman's capsules +bownd,bownds +bow net,bow nets +bow pen,bow pens +bow pencil,bow pencils +bowplane,bowplanes +bow saw,bow saws +bowsaw,bowsaws +bowse,bowses +bowser,bowsers +bow shock,bow shocks +bowshock,bowshocks +bowshot,bowshots +bowsman,bowsmen +bow spring,bow springs +bowsprit,bowsprits +bowstave,bowstaves +bowstring,bowstrings +bowtel,bowtels +bow thruster,bow thrusters +bow-tie,bow-ties +bowtie,bowties +bow window,bow windows +bow wow,bow wows +bow-wow,bow-wows +bowwow,bowwows +bowyang,bowyangs +bowyer,bowyers +box and whiskers plot,box and whiskers plots +boxberry,boxberries +box,boxes +box,boxes +box,boxes +box camera,box cameras +box canyon,box canyons +box-canyon,box-canyons +box-car,box-cars +boxcar,boxcars +boxcar function,boxcar functions +box cutter,box cutters +box-cutter,box-cutters +boxcutter,boxcutters +box-drawing character,box-drawing characters +boxed set,boxed sets +boxelder,boxelders +boxer,boxers +boxfish,boxfishes,boxfish +boxful,boxfuls,boxesful +box girder,box girders +boxing,boxings +boxing day,boxing days +Boxing Day,Boxing Days +boxing glove,boxing gloves +boxing ring,boxing rings +boxing week,boxing weeks +box iron,box irons +box jelly,box jellies +box jellyfish,box jellyfish,box jellyfishes +boxkeeper,boxkeepers +box kick,box kicks +boxload,boxloads +boxman,boxmen +box model,box models +box-office bomb,box-office bombs +box-office,box-offices +boxology,boxologies +boxout,boxouts +box plot,box plots +boxplot,boxplots +box room,box rooms +boxroom,boxrooms +box score,box scores +boxscore,boxscores +box seat,box seats +box set,box sets +boxset,boxsets +box social,box socials +box spring,box springs +box-spring,box-springs +boxspring,boxsprings +box supper,box suppers +box the gnat,box the gnats +boxthorn,boxthorns +box-to-box midfielder,box-to-box midfielders +box tree,box trees +boxtree,boxtrees +box turtle,box turtles +box-turtle,box-turtles +boxty,boxties +boyar,boyars +boyard,boyards +boyau,boyaus +boy band,boy bands +boyband,boybands +boy,boys +boychick,boychicks +boychik,boychiks +boychild,boychildren +boycock,boycocks +boycott,boycotts +boycotter,boycotters +boy-cunt,boy-cunts +boycunt,boycunts +boydekin,boydekins +boydick,boydicks +boydyke,boydykes +boyer,boyers +boyf,boyfs +boy friend,boy friends +boyfriend,boyfriends +boy genius,boy geniuses +boy in blue,boys in blue +boy juice,boy juices +boykie,boykies +boykin,boykins +boylover,boylovers +boy next door,boys next door +boyo,boyos +boy racer,boy racers +boys' club,boys' clubs +boy scout,boy scouts +Boy Scout,Boy Scouts +boysenberry,boysenberries +boy's name,boys' names +boy toy,boy toys +boyuvke,boyuvkes +boy wonder,boy wonders +boza,bozas +Bozal,Bozals +bozo,bozos +Bozo,Bozos,Bozo +BPH,BPHs +B-pillar,B-pillars +B plot,B plots +B-post,B-posts +braai,braais +Brabanter,Brabanters +Brabantian,Brabantians +brabble,brabbles +brabblement,brabblements +brabbler,brabblers +bra,bras +bra,bras +bra,bras +bra burner,bra burners +brace,braces +bracelet,bracelets +bracelet cortinar,bracelet cortinars +bracer,bracers +bracero,braceros +brachaelurid,brachaelurids +bra chain,bra chains +brach,braches +brachet,brachets +brachiator,brachiators +brachinite,brachinites +brachiolaria,brachiolarias +brachionichthyid,brachionichthyids +brachiopatagium,brachiopatagia +brachiopod,brachiopods +brachiosaur,brachiosaurs +brachiosaurid,brachiosaurids +brachiosaurus,brachiosauruses +brachioteuthid,brachioteuthids +brachistochrone,brachistochrones +brachium,brachia +Brachman,Brachmans +brachybasidiole,brachybasidioles +brachycatalectic,brachycatalectics +brachycephalic,brachycephalics +brachycephalid,brachycephalids +brachydiagonal,brachydiagonals +brachydome,brachydomes +brachydont,brachydonts +brachygrapher,brachygraphers +brachygraphy,brachygraphies +brachyopid,brachyopids +brachypinacoid,brachypinacoids +brachystelechid,brachystelechids +brachystochrone,brachystochrones +brachytherapy,brachytherapies +bracing,bracings +braciola,braciole +brack,bracks +bracket,brackets +bracket fungus,bracket fungi +bracketing,bracketings +bracketologist,bracketologists +braconid,braconids +bracovirus,bracoviruses +bract,bracts +bractea,bracteas +bracteate,bracteates +bracteole,bracteoles +bractlet,bractlets +bradavidin,bradavidins +bradawl,bradawls +brad,brads +bradoon,bradoons +Bradshaw,Bradshaws +bradybaenid,bradybaenids +Brady Bunch,Brady Bunches +bradynobaenid,bradynobaenids +bradyon,bradyons +bradyphrenia,bradyphrenias +bradypodid,bradypodids +bradyseism,bradyseisms +bradytroph,bradytrophs +bradyzoite,bradyzoites +brae,braes +brag book,brag books +brag,brags +bragfest,bragfests +braggadocian,braggadocians +braggadocio,braggadocios,braggadocii +braggart,braggarts +braggartism,braggartisms +bragger,braggers +Bragg peak,Bragg peaks +brag sheet,brag sheets +brah,brahs +Brahma,Brahmas +brahmadanda,brahmadandas +brahmaeid,brahmaeids +brahmana,brahmanas +brahman,brahmans +brahmaness,brahmanesses +Brahmani,Brahmanis +Brahmanist,Brahmanists +Brahmapootra,Brahmapootras +Brahmaputra,Brahmaputras +brahmin,brahmins +Brahmin,Brahmins +Brahminist,Brahminists +Brahmo,Brahmos,Brahmoes +braid,braids +braider,braiders +braid group,braid groups +braiding,braidings +brail,brails +brailler,braillers +Brailler,Braillers +brainbox,brainboxes +brain,brains +brain bucket,brain buckets +brain-bucket,brain-buckets +brainbuster,brainbusters +brain cancer,brain cancers +braincase,braincases +brain cell,brain cells +brainchild,brainchildren +brain coral,brain corals +brain cramp,brain cramps +brain-cramp,brain-cramps +brain damage,brain damages +brain drain,brain drains +brain dump,brain dumps +braindump,braindumps +brain fag,brain fags +brain farm,brain farms +brain fart,brain farts +brainfart,brainfarts +brainfest,brainfests +brainfood,brainfoods +brainfuck,brainfucks +brain gain,brain gains +brain-gain,brain-gains +brainiac,brainiacs +brainist,brainists +brain mushroom,brain mushrooms +brain-pan,brain-pans +brainpan,brainpans +brain stem,brain stems +brainstem,brainstems +brainstorm,brainstorms +brainstormer,brainstormers +brainstorming,brainstormings +brains trust,brains trusts +brain surgeon,brain surgeons +brain-teaser,brain-teasers +brainteaser,brainteasers +brain trust,brain trusts +brain tumor,brain tumors +brainwashee,brainwashees +brainwasher,brainwashers +brain-washing,brain-washings +brainwashing,brainwashings +brain wave,brain waves +brainwave,brainwaves +brain worker,brain workers +braise,braises +braise,braises +braiser,braisers +brait,braits +braize,braizes +brake bias,brake biases +brake,brakes +brake,brakes +brake,brakes +brake,brakes +brake,brakes +brake drum,brake drums +brakeforce,brakeforces +brake horsepower,brake horsepowers +brake lining,brake linings +brakemaker,brakemakers +brakeman,brakemen +brake mean effective pressure,brake mean effective pressures +brake noodle,brake noodles +brake pad,brake pads +brake pedal,brake pedals +brake press,brake presses +brake shoe,brake shoes +brakeshoe,brakeshoes +brakesman,brakesmen +braking distance,braking distances +bralette,bralettes +Bramah press,Bramah presses +brambleberry,brambleberries +bramble,brambles +bramble net,bramble nets +brambling,bramblings +bramid,bramids +Bramin,Bramins +Bramley,Bramleys +brancard,brancards +branch,branches +brancher,branchers +branchery,brancheries +branchia,branchiae +branchial arch,branchial arches +branchid,branchids +branchinectid,branchinectids +branching,branchings +branchioma,branchiomas +branchiomere,branchiomeres +branchiopod,branchiopods +branchiosaurid,branchiosaurids +branchiostegal,branchiostegals +branchiostege,branchiosteges +branchiostegid,branchiostegids +branchiostoma,branchiostomas +branchiostomid,branchiostomids +branchipodid,branchipodids +branchlet,branchlets +branch line,branch lines +branch office,branch offices +branch of government,branches of government +branch register,branch registers +branch tee,branch tees +branchwork,branchworks +brancoceratid,brancoceratids +brandade,brandades +brand avatar,brand avatars +brand,brands +brander,branders +brand goose,brand geese +brand image,brand images +branding,brandings +branding iron,branding irons +branding moment,branding moments +brandiron,brandirons +brandise,brandises +brandish,brandishes +brandisher,brandishers +brandishing,brandishings +brandistock,brandistocks +brandlin,brandlins +brand linkage,brand linkages +brandmark,brandmarks +brand name,brand names +brand-name,brand-names +brandophile,brandophiles +brandscape,brandscapes +brand stretch,brand stretches +brane,branes +braneworld,braneworlds +brangle,brangles +brangler,branglers +brangling,branglings +brank,branks +branle,branles +branlin,branlins +Brannock device,Brannock devices +Brannock Device,Brannock Devices +branon,branons +bransle,bransles +brantail,brantails +brant,brants,brant +brant-fox,brant-foxes +brant goose,brant geese +brantle,brantles +branzino,branzini +braquemard,braquemards +brasier,brasiers +brasilodontid,brasilodontids +brassard,brassards +brassart,brassarts +brass band,brass bands +brasse,brasses +brasser,brassers +brasserie,brasseries +brasset,brassets +brassey,brasseys +brass farthing,brass farthings +brassica,brassicas +brassidate,brassidates +brassie,brassies +brassiere,brassieres +brassiΓ¨re,brassiΓ¨res +brassin,brassins +brassinolide,brassinolides +brassinosteroid,brassinosteroids +brass instrument,brass instruments +Brass Monkey,Brass Monkeys +brass neck,brass necks +brassolid,brassolids +brass rat,brass rats +brass ring,brass rings +brass section,brass sections +brasswind,brasswinds +brassworks,brassworks +brassy,brassies +brat,brats +brat,brats +brat,brats +Bratislavan,Bratislavans +bratling,bratlings +brattice,brattices +brattishing,brattishings +bratwurst,bratwursts +braulid,braulids +braunche,braunches +bravado,bravados,bravadoes +brave,braves +braveheart,bravehearts +brave new world,brave new worlds +braving,bravings +bravo,bravos,bravoes +bravura,bravuras +brawl,brawls +brawler,brawlers +brawner,brawners +Braxton Hicks contraction,Braxton Hicks contractions +bray,brays +brayer,brayers +braying,brayings +Brayon,Brayons +brazen bull,brazen bulls +brazenface,brazenfaces +brazer,brazers +brazier,braziers +brazil,brazils +braziletto,brazilettos,brazilettoes +Brazilian,Brazilians +Brazilian Shorthair,Brazilian Shorthairs +Brazilian tinamou,Brazilian tinamous +Brazilian whiteknee tarantula,Brazilian whiteknee tarantulas +brazil nut,brazil nuts +Brazil nut,Brazil nuts +brazilwood,brazilwoods +Br,Brs +Br.,Brs. +breach,breaches +breacher,breachers +breach of promise,breaches of promise +breach of the peace,breaches of the peace +bread-and-butter issue,bread-and-butter issues +bread-and-butter letter,bread-and-butter letters +bread-and-butter note,bread-and-butter notes +bread-and-butter pudding,bread-and-butter puddings +bread bag,bread bags +breadbasket,breadbaskets +bread beetle,bread beetles +bread bin,bread bins +breadbin,breadbins +breadboard,breadboards +breadbox,breadboxes +bread,breads +bread,breads +breadcake,breadcakes +bread crumb,bread crumbs +breadcrumb,breadcrumbs +breadfruit,breadfruits +breadhead,breadheads +breadkind,breadkinds +bread knife,bread knives +breadknife,breadknives +bread line,bread lines +breadline,breadlines +bread machine,bread machines +bread maker,bread makers +breadmaker,breadmakers +breadman,breadmen +breadnut,breadnuts +bread roll,bread rolls +breadroot,breadroots +bread-stick,bread-sticks +breadstick,breadsticks +breadstuff,breadstuffs +breadth,breadths +breadth-first search,breadth-first searches +breadwinner,breadwinners +breakability,breakabilities +breakable,breakables +breakage,breakages +breakaway,breakaways +breakbeat,breakbeats +break,breaks +breakdance,breakdances +breakdancer,breakdancers +break down,break downs +breakdown,breakdowns +breakdown lorry,breakdown lorrys +breakdown point,breakdown points +breakdown truck,breakdown trucks +breaker,breakers +breakers yard,breakers yards +break-even,break-evens +breakeven,breakevens +breakeven load factor,breakeven load factors +break-even point,break-even points +breakeven point,breakeven points +breakfast bar,breakfast bars +breakfast,breakfasts +breakfaster,breakfasters +breakfast in bed,breakfasts in bed +breakfast roll,breakfast rolls +breakfront,breakfronts +breakie,breakies +break-in,break-ins +breaking ball,breaking balls +breaking,breakings +breaking change,breaking changes +breaking point,breaking points +breakman,breakmen +breakneck,breaknecks +break-off,break-offs +breakoff,breakoffs +breakopen,breakopens +breakout,breakouts +breakout character,breakout characters +breakout group,breakout groups +breakout session,breakout sessions +break point,break points +breakpoint,breakpoints +break room,break rooms +breakroom,breakrooms +breakthrough,breakthroughs +breakthrough pain,breakthrough pains +breakthru,breakthrus +breaktime,breaktimes +break-up,break-ups +breakup,breakups +breakwater,breakwaters +bream,bream,breams +breast augmentation,breast augmentations +breastaurant,breastaurants +breastband,breastbands +breastbeam,breastbeams +breastbone,breastbones +breast,breasts +breastfast,breastfasts +breastfeeder,breastfeeders +breastfeeding,breastfeedings +breastful,breastfuls +breasthook,breasthooks +breasticle,breasticles +breastie,breasties +breast implant,breast implants +breasting,breastings +breastknot,breastknots +breastpin,breastpins +breastplate,breastplates +breastplough,breastploughs +breastpoint,breastpoints +breast pump,breast pumps +breastrail,breastrails +breast reduction,breast reductions +breastrope,breastropes +breaststroke,breaststrokes +breaststroker,breaststrokers +breastsummer,breastsummers +breastwheel,breastwheels +breastwork,breastworks +breathability,breathabilities +breathalizer,breathalizers +breathalyser,breathalysers +breathalyzer,breathalyzers +breatharian,breatharians +breather,breathers +breathing,breathings +breathing gas,breathing gases +breathing room,breathing rooms +breathing space,breathing spaces +breathing-space,breathing-spaces +breathing spell,breathing spells +breath of fresh air,breaths of fresh air +breath test,breath tests +brecciation,brecciations +bredda,breddas,bredren +brede,bredes +bredie,bredies +bredren,bredrens +bredrin,bredrins +bree,brees +bree,brees +breech birth,breech births +breechblock,breechblocks +breechcloth,breechcloths +breechclout,breechclouts +breech delivery,breech deliveries +breeches buoy,breeches buoys +breechesmaker,breechesmakers +breeching,breechings +breechloader,breechloaders +breech pin,breech pins +breech screw,breech screws +breedbate,breedbates +breed,breeds +breede,breedes +breeder,breeders +breeding ground,breeding grounds +breeding-ground,breeding-grounds +breedism,breedisms +breedist,breedists +breeze-block,breeze-blocks +breezeblock,breezeblocks +breeze,breezes +breeze,breezes +breezefly,breezeflies +breezeway,breezeways +brefeldin,brefeldins +bregma,bregmata +bregmacerotid,bregmacerotids +brehon,brehons +breithauptite,breithauptites +brek,breks +brekkie,brekkies +brekky,brekkies +Bremelo,Bremelos +brending,brendings +Brennschluss,BrennschlΓΌsse +brent,brents +brent goose,brent geese +brentid,brentids +brequet chain,brequet chains +brere,breres +Breslover,Breslovers +bressemer,bressemers +bressummer,bressummers +brest,brests +brestsummer,brestsummers +bretch,bretches +Breton,Bretons +Breton cap,Breton caps +brett,bretts +brettice,brettices +bretzel,bretzels +breve,breves +brevet,brevets +brevetcy,brevetcies +brevetoxin,brevetoxins +brevianamide,brevianamides +breviary,breviaries +breviate,breviates +breviation,breviations +breviature,breviatures +brevicipitid,brevicipitids +brevipen,brevipens +brewage,brewages +brew,brews +brewer,brewers +Brewer,Brewers +breweress,breweresses +brewer's rice,brewer's rices +brewer's yeast,brewer's yeasts +brewery,breweries +brewhouse,brewhouses +brewis,brewises +brewmaster,brewmasters +brewpub,brewpubs +brewski,brewskis +brewsky,brewskies +brewster,brewsters +brewster,brewsters +brewup,brewups +Brezhnev Doctrine,Brezhnev Doctrines +Brezhnevite,Brezhnevites +Brianchon hexagon,Brianchon hexagons +briar,briars +briar,briars +briard,briards +briareid,briareids +briar-patch,briar-patches +bribe,bribes +bribee,bribees +briber,bribers +bribery,briberies +brickbat,brickbats +brickdust deposit,brickdust deposits +bricker,brickers +brickfield,brickfields +brickfielder,brickfielders +brickfilm,brickfilms +brick house,brick houses +brickie,brickies +brickkiln,brickkilns +bricklayer,bricklayers +bricklaying,bricklayings +brickmaker,brickmakers +brickman,brickmen +brickmould,brickmoulds +brick phone,brick phones +brick red,brick reds +brick shithouse,brick shithouses +brick veneer,brick veneers +brick wall,brick walls +brickworks,brickworks +brickyard,brickyards +bricky,brickies +bricoleur,bricoleurs +bridal,bridals +bridal couple,bridal couples +bridal registry,bridal registries +bridal salon,bridal salons +bridal shower,bridal showers +bridal suite,bridal suites +briddle,briddles +bride-ale,bride-ales +bridebed,bridebeds +bride,brides +bride,brides +bridecake,bridecakes +bridechamber,bridechambers +bride gift,bride gifts +bride-gift,bride-gifts +bridegift,bridegifts +bridegoom,bridegooms +bridegroom,bridegrooms +bride price,bride prices +bride-price,bride-prices +brideprice,brideprices +bridesmaid,bridesmaids +bridesman,bridesmen +bride-to-be,brides-to-be +bride token,bride tokens +bride wealth,bride wealths +bride-wealth,bride-wealths +bridewealth,bridewealths +bridewell,bridewells +bridezilla,bridezillas +bridg,bridges +bridge-and-tunneler,bridge-and-tunnelers +bridgeboard,bridgeboards +bridge,bridges +bridgebuilder,bridgebuilders +bridged carbocation,bridged carbocations +bridgehead,bridgeheads +bridgekeeper,bridgekeepers +bridge loan,bridge loans +bridge mount,bridge mounts +bridgeness,bridgenesses +bridge pattern,bridge patterns +bridge railing,bridge railings +bridger,bridgers +bridge roll,bridge rolls +bridge spider,bridge spiders +Bridget,Bridgets +bridgetender,bridgetenders +bridgetree,bridgetrees +bridge-ward,bridge-wards +bridgework,bridgeworks +bridging ligand,bridging ligands +bridging loan,bridging loans +bridging visa,bridging visas +bridi,bridi +bridie,bridies +bridle,bridles +bridle iron,bridle irons +bridle path,bridle paths +bridle-path,bridle-paths +bridlepath,bridlepaths +bridler,bridlers +bridle trail,bridle trails +bridleway,bridleways +bridoon,bridoons +brief,briefs +briefcase,briefcases +briefer,briefers +briefing,briefings +briefing note,briefing notes +briefman,briefmen +brier,briers +briery,brieries +brigade,brigades +brigade major,brigade majors +brigader,brigaders +brigadier,brigadiers +brigadier general,brigadier generals +brigadiership,brigadierships +brigadista,brigadistas +Brigadoon,Brigadoons +brigalow,brigalows,brigalow +brigand,brigands +brigandine,brigandines +brigantine,brigantines +brigantine,brigantines +brig,brigs +brig,brigs +brig,brigs +bright,brights +brightener,brighteners +brightening,brightenings +bright line,bright lines +bright-line rule,bright-line rules +bright nail,bright nails +bright shiny object,bright shiny objects +bright side,bright sides +bright spark,bright sparks +Brigitte Bardot,Brigitte Bardots +Brignac,Brignacs +brigue,brigues +brike,brikes +brill,brills +brille,brilles +brilliant,brilliants +brilliant rummynose tetra,brilliant rummynose tetras +brillo pad,brillo pads +brimborion,brimborions +brim,brims +brim,brims +brimmer,brimmers +brin,brins +brindisi,brindisis +brindled gnu,brindled gnus +brine fly,brine flies +briner,briners +bring-and-buy,bring-and-buys +bring-and-buy sale,bring-and-buy sales +bringdown,bringdowns +bringer,bringers +brinjal,brinjals +Brinjaree,Brinjarees +brink,brinks +brinksman,brinksmen +brinner,brinners +brinny,brinnies +brioche,brioches +briquet,briquets +briquette,briquettes +bris,brises,brisses,britot +brise soleil,brise soleils +brisket,briskets +brisling,brislings +brisque,brisques +briss,brisses +bristlebill,bristlebills +bristlebird,bristlebirds +bristle,bristles +bristlecone,bristlecones +bristlecone pine,bristlecone pines +bristletail,bristletail,bristletails +bristlet,bristlets +Bristol board,Bristol boards +bristol,bristols +Bristolian,Bristolians +brisure,brisures +Britain,Britains +brit,brit +brit,brits +Brit,Brits +britchka,britchkas +Britcom,Britcoms +britholite,britholites +brithopodid,brithopodids +Briticism,Briticisms +British Columbian,British Columbians +Britisher,Britishers +Britishism,Britishisms +British Longhair,British Longhairs +British overseas territory,British overseas territories +British racing green,British racing greens +British Semi-Longhair,British Semi-Longhairs +British Shorthair,British Shorthairs +British thermal unit,British thermal units +British Virgin Islander,British Virgin Islanders +brit milah,brit milahs +Briton,Britons +Britoness,Britonesses +britschka,britschkas +britska,britskas +brittlebush,brittlebushes +brittlegill,brittlegills +brittle star,brittle stars +brittlestar,brittlestars +britzka,britzkas +britzska,britzskas +brivla,brivla +brize,brizes +broa,broas +broach,broaches +broached spire,broached spires +broacher,broachers +broad antigen,broad antigens +broadax,broadaxes +broadaxe,broadaxes +broad bean,broad beans +broadbill,broadbills +broadbrim,broadbrims +broad,broads +B road,B roads +broadcast,broadcasts +broadcast delay,broadcast delays +broadcaster,broadcasters +broadcast station,broadcast stations +broad church,broad churches +broadcloth,broadcloths +broadening,broadenings +broad gauge,broad gauges +broadhead,broadheads +broad-leaf,broad-leafs,broad-leaves +broadleaf,broadleafs,broadleaves +broad-leaved epiphyllum,broad-leaved epiphyllums +broad-leaved garlic,broad-leaved garlics +broadloom,broadlooms +broad-mindedness,broad-mindednesses +broadmouth,broadmouths +broadpiece,broadpieces +broad seal,broad seals +broadseam,broadseams +broadsheet,broadsheets +broadside,broadsides +broad-spectrum antibiotic,broad-spectrum antibiotics +broad sword,broad swords +broadsword,broadswords +broadus,broaduses +broadway,broadways +Broadway flat,Broadway flats +broadwing,broadwings +broad-winged hawk,broad-winged hawks +brob,brobs +Brobdingnagian,Brobdingnagians +bro,bros +brocading,brocadings +brocage,brocages +brocard,brocards +Broca's area,Broca's areas +brocatel,brocatels +brocatelle,brocatelles +brocatello,brocatellos +broccoli,broccolis,broccoli +brochantite,brochantites +broch,brochs +broche,broches +brochette,brochettes +brochure,brochures +brock,brocks +brocket,brockets +brodekin,brodekins +brodequin,brodequins +broderie,broderies +brodie,brodies +Brodie knob,Brodie knobs +Brodie's abscess,Brodie's abscesses +Brodmann area,Brodmann areas +brody,brodies +Brody knob,Brody knobs +brogan,brogans +brog,brogs +brogrammer,brogrammers +brogue,brogues +broha,brohas +Broholmer,Broholmers +bro hug,bro hugs +broiderer,broiderers +broil,broils +broil,broils +broiler,broilers +broiler chicken,broiler chickens +broiler house,broiler houses +broilerhouse,broilerhouses +broilerman,broilermen +broiling,broilings +brokeass,brokeasses +broken arrow,broken arrows +Broken Arrow,Broken Arrows +broken bird,broken birds +broken chord,broken chords +broken consort,broken consorts +Broken Glass Republican,Broken Glass Republicans +broken heart,broken hearts +broken home,broken homes +broken record,broken records +broken reed,broken reeds +broken rhyme,broken rhymes +broken source,broken sources +broken time,broken times +broken vessel,broken vessels +brokerage,brokerages +broker,brokers +brokership,brokerships +brokery,brokeries +broket,brokets +brolga,brolgas +brolly,brollies +bromamide,bromamides +bromance,bromances +bromate,bromates +bromatologist,bromatologists +brome,bromes +bromegrass,bromegrasses +bromelain,bromelains +bromeliad,bromeliads +bromide,bromides +bromination,brominations +bromite,bromites +bromoacetate,bromoacetates +bromoacyl,bromoacyls +bromoalkene,bromoalkenes +bromoalkyne,bromoalkynes +bromoallene,bromoallenes +bromoaniline,bromoanilines +bromoanisole,bromoanisoles +bromoarene,bromoarenes +bromoaryl,bromoaryls +bromobenzonitrile,bromobenzonitriles +bromobenzyl,bromobenzyls +bromobutane,bromobutanes +bromochlorofluoromethane,bromochlorofluoromethanes +bromocholesterol,bromocholesterols +bromodomain,bromodomains +bromohydrin,bromohydrins +bromoketone,bromoketones +bromomethyl,bromomethyls +bromonaphthalene,bromonaphthalenes +bromonium,bromoniums +bromonium ion,bromonium ions +bromoperoxidase,bromoperoxidases +bromophenol,bromophenols +bromophenyl,bromophenyls +bromopropane,bromopropanes +bromopyridine,bromopyridines +bromopyruvate,bromopyruvates +bromosugar,bromosugars +bromosulfite,bromosulfites +bromothymol,bromothymols +bromouridine,bromouridines +bromovirus,bromoviruses +bromuret,bromurets +bromyl,bromyls +bronc,broncs +bronchial tube,bronchial tubes +bronchiectasis,bronchiectases +bronchiole,bronchioles +bronchiolus,bronchioli +broncho,bronchos +bronchocele,bronchoceles +bronchoconstriction,bronchoconstrictions +bronchoconstrictor,bronchoconstrictors +bronchodilatation,bronchodilatations +bronchodilation,bronchodilations +bronchodilator,bronchodilators +bronchopathy,bronchopathies +bronchorelaxation,bronchorelaxations +bronchoscope,bronchoscopes +bronchoscopy,bronchoscopies +bronchospasm,bronchospasms +bronchotome,bronchotomes +bronchotomy,bronchotomies +bronchus,bronchi +bronco,broncos +bronco buster,bronco busters +bronco-buster,bronco-busters +broncobuster,broncobusters +brond,bronds +Bronsted acid,Bronsted acids +BrΓΈnsted acid,BrΓΈnsted acids +Bronsted base,Bronsted bases +BrΓΈnsted base,BrΓΈnsted bases +Bronsted-Lowry acid,Bronsted-Lowry acids +BrΓΈnsted-Lowry acid,BrΓΈnsted-Lowry acids +Bronsted-Lowry base,Bronsted-Lowry bases +BrΓΈnsted-Lowry base,BrΓΈnsted-Lowry bases +brontide,brontides +brontornithid,brontornithids +brontosaur,brontosaurs +brontosaurus,brontosauruses +brontotherid,brontotherids +brontotheriid,brontotheriids +Bronx cheer,Bronx cheers +brony,bronies +bronze medal,bronze medals +bronze medalist,bronze medalists +bronze medallist,bronze medallists +bronzer,bronzers +bronzesmith,bronzesmiths +bronze whaler,bronze whalers +bronzewing,bronzewings +bronzewing pigeon,bronzewing pigeons +bronzeworker,bronzeworkers +bronze yellow,bronze yellows +bronzist,bronzists +brooch,brooches +brood,broods +brooder,brooders +brooding,broodings +brood mare,brood mares +brood parasite,brood parasites +brood pouch,brood pouches +broody,broodies +broogh,brooghs +brook,brooks +brooke,brookes +brookie,brookies +brook lamprey,brook lampreys +brooklet,brooklets +brooklime,brooklimes +Brooklynite,Brooklynites +brookside,brooksides +brook trout,brook trout,brook trouts +brookweed,brookweeds +broom,brooms +Broomhandle Mauser,Broomhandle Mausers +broomie,broomies +broom-rape,broom-rapes +broomrape,broomrapes +broomstaff,broomstaffs,broomstaves +broomstick,broomsticks +broom wagon,broom wagons +broon,broons +Broonite,Broonites +brose,broses +brosef,brosefs +broski,broskis +brΓΆtchen,brΓΆtchens +brotha,brothas +brothel,brothels +brothel,brothels +brothel creeper,brothel creepers +brotheler,brothelers +brothelgoer,brothelgoers +Brother,Brothers +brother,brothers,brethren +brotherfucker,brotherfuckers +brother german,brothers german +brother-german,brothers-german +brotherhood,brotherhoods +brother-husband,brother-husbands +brother-in-arms,brothers-in-arms +brother in law,brothers in law +brother-in-law,brothers-in-law +brotherman,brothermen +brother-officer,brother-officers +brotherred,brotherreds +brotula,brotulas +brotus,brotuses +brougham,broughams +brouhaha,brouhahas +broussonetine,broussonetines +brouter,brouters +brouze,brouzes +browallia,browallias +browband,browbands +browbeater,browbeaters +browbone,browbones +brow,brows +browlift,browlifts +browline,browlines +brown ale,brown ales +brown alga,brown algae +brown argus,brown arguses,brown argus +brownback,brownbacks +brown bag,brown bags +brown-bagger,brown-baggers +brownbagger,brownbaggers +brown bastard,brown bastards +brown bear,brown bears +Brown Bess,Brown Besses +brown-bill,brown-bills +brown bomber,brown bombers +brown,browns +brown cloud,brown clouds +Browncoat,Browncoats +brown coati,brown coatis +brown dwarf,brown dwarfs,brown dwarves +brown eye,brown eyes +browneye,browneyes +brownfield,brownfields +brown hairstreak,brown hairstreaks +brown hare,brown hares +brown hyena,brown hyenas +brownie,brownies +Brownie,Brownies +brownie point,brownie points +Brownie point,Brownie points +browning,brownings +Brownist,Brownists +Brownist,Brownists +Brownite,Brownites +brown-nose,brown-noses +brownnose,brownnoses +brown noser,brown nosers +brown-noser,brown-nosers +brownnoser,brownnosers +brown note,brown notes +brown oriole,brown orioles +brown out,brown outs +brown-out,brown-outs +brownout,brownouts +brown owl,brown owls +brown paper,brown papers +brown rat,brown rats +brown recluse,brown recluses +brown recluse spider,brown recluse spiders +Brownshirt,Brownshirts +Brown Shirt,Brown Shirts +brown study,brown studies +brown thrasher,brown thrashers +brown thumb,brown thumbs +brown tinamou,brown tinamous +browntop,browntops +brown trout,brown trout +brownwort,brownworts +browplasty,browplasties +browse,browses +browser,browsers +browsing,browsings +browspot,browspots +BRT,BRTs +bruang,bruangs +bru,brus +bruce,bruces +brucella,brucellas,brucellae +brucellosis,brucelloses +bruchid,bruchids +brucite,brucites +brud,bruds +bruh,bruhs +bruh,bruhs +bruin,bruins +bruise,bruises +bruiser,bruisers +bruising,bruisings +brulzie,brulzies +brumby,brumbies +Brummel hook,Brummel hooks +Brummie,Brummies +brunch,brunches +bruncher,brunchers +brunchtime,brunchtimes +Bruneian,Bruneians +brunet,brunets +brunette,brunettes +brunie,brunies +brunion,brunions +brunisol,brunisols +Brunner's gland,Brunner's glands +Brunonian,Brunonians +Brunswicker,Brunswickers +Brunswick green,Brunswick greens +brunt,brunts +brupper,bruppers +bruschetta,bruschettas,bruschette +brushback,brushbacks +brushbar,brushbars +brush bow,brush bows +brush,brushes +brush cut,brush cuts +brushcut,brushcuts +brushcutter,brushcutters +brusher,brushers +brushfire,brushfires +brushing,brushings +brushland,brushlands +brushland tinamou,brushland tinamous +brushmaker,brushmakers +brushmark,brushmarks +brush off,brush offs +brush-off,brush-offs +brushoff,brushoffs +brushstroke,brushstrokes +brushtail,brushtails +brush-tailed penguin,brush-tailed penguins +brush-tailed possum,brush-tailed possums +brushtail possum,brushtail possums +brush turkey,brush turkeys +brush-turkey,brush-turkeys +brushturkey,brushturkeys +brush wheel,brush wheels +brush wolf,brush wolves +bruskness,brusknesses +Brusselian,Brusselians +brussel sprout,brussel sprouts +Brussels sprout,Brussels sprouts +brustle,brustles +brutalisation,brutalisations +brutalist,brutalists +Brutalist,Brutalists +brutalitarian,brutalitarians +brutality,brutalities +brute,brutes +brute fact,brute facts +bruv,bruvs +bruvva,bruvvas +bruvver,bruvvers +bruxer,bruxers +bruxist,bruxists +bryid,bryids +bryologist,bryologists +bryophyte,bryophytes +bryostatin,bryostatins +bryozoan,bryozoans +bryozoologist,bryozoologists +bryozoon,bryozoa +bryozoum,bryozoa +Brython,Brythons +BSD license,BSD licenses +B-side,B-sides +BSO,BSOs +b'steeya,b'steeyas +B-story,B-stories +/b/tard,/b/tards +b*tch,b*tches +B-tree,B-trees +Btss,Btsss +BTU,BTUs +buansuah,buansuahs +buat,buats +bubale,bubales +bubba,bubbas +bubbe,bubbes +bubbe meise,bubbe meises +bubbe-meise,bubbe-meises +bubber,bubbers +bubble ass,bubble asses +bubble bath,bubble baths +bubble blower,bubble blowers +bubble,bubbles +bubble butt,bubble butts +bubble car,bubble cars +bubble chamber,bubble chambers +bubble gum,bubble gums +bubble-head,bubble-heads +bubblehead,bubbleheads +bubblejet,bubblejets +bubble level,bubble levels +bubble memory,bubble memories +bubble pipe,bubble pipes +bubble position,bubble positions +bubbler,bubblers +bubble shell,bubble shells +bubble sort,bubble sorts +bubble team,bubble teams +bubble wand,bubble wands +bubbling,bubblings +bub,bubs +bub,bubs +bub,bubs +bub,bubs +bubby,bubbies +bubby,bubbies +bubo,buboes +bubonocele,bubonoceles +bubukle,bubukles +bucaniid,bucaniids +bucca,buccas +buccal cavity,buccal cavities +buccan,buccans +buccaneer,buccaneers +buccina,buccinas +buccinator,buccinators +buccinid,buccinids +bucconid,bucconids +bucculatricid,bucculatricids +bucentaur,bucentaurs +bucephalid,bucephalids +bucerotid,bucerotids +Bucharestian,Bucharestians +buchiid,buchiids +BΓΌchner flask,BΓΌchner flasks +BΓΌchner funnel,BΓΌchner funnels +bucht,buchts +buchu,buchus +buckaroo,buckaroos +buck-basket,buck-baskets +buckbean,buckbeans +buckboard,buckboards +buck,bucks +buck,bucks +bucker,buckers +buckeroo,buckeroos +bucket bong,bucket bongs +bucket brigade,bucket brigades +bucket,buckets +bucketful,bucketfuls,bucketsful +bucket hat,bucket hats +bucket list,bucket lists +bucketload,bucketloads +bucket of bolts,buckets of bolts +bucket seat,bucket seats +bucket shop,bucket shops +bucketshop,bucketshops +bucket sort,bucket sorts +bucketsort,bucketsorts +bucketwheel,bucketwheels +buckeye,buckeyes +Buckeye,Buckeyes +buckhorn,buckhorns +buckhound,buckhounds +bucking bronco,bucking broncos +bucking,buckings +buckjumper,buckjumpers +buckle,buckles +buckler,bucklers +buckler plate,buckler plates +buckling,bucklings +buckling,bucklings +buckling,bucklings +buckminsterfullerene,buckminsterfullerenes +Bucknellian,Bucknellians +bucko,buckos,buckoes +buck private,buck privates +buck rabbit,buck rabbits +buckra,buckras +buckram,buckrams +buck rarebit,buck rarebits +bucksaw,bucksaws +buck's fizz,buck's fizzes +Buck's Fizz,Buck's Fizzes +buckshee,buckshees +buck's night,buck's nights +buck's party,buck's parties +bucks' party,bucks' parties +buckstall,buckstalls +bucktail,bucktails +buckthorn,buckthorns +bucktooth,buckteeth +buckwheat cake,buckwheat cakes +buckyball,buckyballs +buckybowl,buckybowls +buckyroll,buckyrolls +buckytube,buckytubes +bucolic,bucolics +bucranium,bucraniums,bucrania +Budapestian,Budapestians +bud,buds +bud,buds +budburst,budbursts +budda,buddas +budder,budders +Buddha belly,Buddha bellies +buddha,buddhas +Buddha,Buddhas +Buddha dharma,Buddha dharmas +Buddha-dharma,Buddha-dharmas +buddhahead,buddhaheads +Buddha's hand,Buddha's hands +Buddhism,Buddhisms +Buddhist,Buddhists +buddle,buddles +buddleia,buddleias +buddy,buddies +buddy film,buddy films +buddy movie,buddy movies +Buddyroll,Buddyrolls +buddyroo,buddyroos +buddy store,buddy stores +buddy system,buddy systems +Bude burner,Bude burners +Bude light,Bude lights +budger,budgers +budgerigar,budgerigars +budgerow,budgerows +budget,budgets +budget constraint,budget constraints +budgeteer,budgeteers +budgeter,budgeters +budgie,budgies +budgie smuggler,budgie smugglers +budlet,budlets +budling,budlings +budmash,budmashes +budmoth,budmoths +budtender,budtenders +budworm,budworms +budyonovka,budyonovkas +buearocracy,buearocracies +bufadienolide,bufadienolides +bufagin,bufagins +bufanolide,bufanolides +buffa,buffas +buffalo berry,buffalo berries +buffalo-berry,buffalo-berries +buffaloberry,buffaloberries +buffalo,buffaloes,buffalos,buffalo +buffaloburger,buffaloburgers +buffalo jump,buffalo jumps +Buffalonian,Buffalonians +buffalo robe,buffalo robes +buffalo-skin,buffalo-skins +buffalo soldier,buffalo soldiers +buffalo wing,buffalo wings +buff,buffs +buff,buffs +buffel duck,buffel ducks +buffer,buffers +bufferhead,bufferheads +buffer lass,buffer lasses +buffer overflow,buffer overflows +buffer solution,buffer solutions +buffer zone,buffer zones +buffet,buffets +buffet,buffets +buffet,buffets +buffet car,buffet cars +buffeter,buffeters +buffeteria,buffeterias +buffeting,buffetings +buffin,buffins +buffing,buffings +buffle,buffles +bufflehead,buffleheads +buffo,buffos +buffoon,buffoons +buffoonery,buffooneries +buffy coat,buffy coats +bufo,bufos +bufonid,bufonids +bufonite,bufonites +bufotoxin,bufotoxins +bug-a-boo,bug-a-boos +bugaboo,bugaboos +bugan,bugans +bugbane,bugbanes +bug-bear,bug-bears +bugbear,bugbears +bug boy,bug boys +bugboy,bugboys +bug,bugs +bug-chaser,bug-chasers +bug-eyed monster,bug-eyed monsters +bugfish,bugfish +bugfix,bugfixes +bugfucker,bugfuckers +bugger,buggers +buggerer,buggerers +bugger factor,bugger factors +buggerhead,buggerheads +buggy,buggies +bughouse,bughouses +bugle,bugles +bugle,bugles +bugle,bugles +bugler,buglers +buglet,buglets +bugleweed,bugleweeds +bug out,bug outs +bugsha,bugshas +bug spray,bug sprays +bug zapper,bug zappers +buhrstone,buhrstones +build,builds +builddown,builddowns +builder,builders +builder pattern,builder patterns +builder's tea,builder's teas +builders' tea,undefined +building block,building blocks +building,buildings +building code,building codes +building material,building materials +building site,building sites +building society,building societies +buildout,buildouts +build-to,build-tos +build up,build ups +build-up,build-ups +buildup,buildups +built,builts +built environment,built environments +built-in function,built-in functions +built-in type,built-in types +builtscape,builtscapes +built-up roof,built-up roofs +Bujumburan,Bujumburans +Bukharist,Bukharists +bukkehorn,bukkehorns +Bukovinan,Bukovinans +bukovskyite,bukovskyites +bukovskΓ½ite,bukovskΓ½ites +bulbar conjunctiva,bulbar conjunctivas,bulbar conjunctivae +bulb,bulbs +bulbectomy,bulbectomies +bulbel,bulbels +bulbil,bulbils +bulblet,bulblets +bulbocavernosus,bulbocavernosi +bulbophile,bulbophiles +bulbospongiosus,bulbospongiosi +bulbotuber,bulbotubers +bulbourethral gland,bulbourethral glands +bulbous buttercup,bulbous buttercups +bulbul,bulbuls +bulbule,bulbules +bulchin,bulchins +bulder,bulders +bulerias,bulerias +bulette,bulettes +Bulgarian,Bulgarians +Bulgarian Hound,Bulgarian Hounds +bulge,bulges +bulgecin,bulgecins +bulger,bulgers +Bulghar,Bulghars +bulginess,bulginesses +bulimarexic,bulimarexics +bulimic,bulimics +bulimulid,bulimulids +bulk cargo,bulk cargos +bulk carrier,bulk carriers +bulk density,bulk densities +bulker,bulkers +bulkhead,bulkheads +bulkhead line,bulkhead lines +bulkie roll,bulkie rolls +bulk liquid,bulk liquids +bullabessa,bullabessas +bulla,bullae +bullace,bullaces +bull ant,bull ants +bullary,bullaries +bullary,bullaries +bullaun,bullauns +bull bar,bull bars +bullbat,bullbats +bullbeggar,bullbeggars +bull-bitch,bull-bitches +bull,bulls +bull,bulls +bull,bulls +bulldagger,bulldaggers +bulldiker,bulldikers +bulldog,bulldogs +bulldog clip,bulldog clips +bulldog edition,bulldog editions +bulldog gravy,bulldog gravies +bulldozer,bulldozers +bull dyke,bull dykes +bulldyke,bulldykes +bulldyker,bulldykers +bullectomy,bullectomies +bullen-bullen,bullen-bullens +bullen-nail,bullen-nails +Buller,Bullers +bullet ant,bullet ants +bullet bra,bullet bras +bullet,bullets +bulleted list,bulleted lists +bullet hole,bullet holes +bullethole,bulletholes +bulletin board,bulletin boards +bulletin board service,bulletin board services +bulletin board system,bulletin board systems +bulletin,bulletins +bullet list,bullet lists +bullet point,bullet points +bulletproof vest,bulletproof vests +bullet train,bullet trains +bullfeast,bullfeasts +bullfight,bullfights +bullfighter,bullfighters +bull-fighting,bull-fightings +bullfinch,bullfinches +bull-fly,bull-flies +bullfrog,bullfrogs +bullhead,bullheads +bullhead rail,bullhead rails +bullhook,bullhooks +bull horn,bull horns +bull-horn,bull-horns +bullhorn,bullhorns +bullid,bullids +bullier,bulliers +bullinid,bullinids +bullionist,bullionists +bullist,bullists +bullition,bullitions +bull market,bull markets +bullmastiff,bullmastiffs +Bullmastiff,Bullmastiffs +bullnose,bullnoses +bullock,bullocks +bullocky,bullockies +bullpen,bullpens +bullpout,bullpouts +bull-pup,bull-pups +bullpup,bullpups +bull ring,bull rings +bullring,bullrings +bullroarer,bullroarers +bull rope,bull ropes +bullrush,bullrushes +bull session,bull sessions +bull's eye,bull's eyes +bull's-eye,bull's-eyes +bullseye,bullseyes +bull shark,bull sharks +bullshitter,bullshitters +bullshot,bullshots +bullshot,bullshots +bull terrier,bull terriers +bull thistle,bull thistles +bull trap,bull traps +bullvalene,bullvalenes +bullweed,bullweeds +bull wheel,bull wheels +bullwhip,bullwhips +bully boy,bully boys +bully-boy,bully-boys +bullyboy,bullyboys +bullycide,bullycides +bullying,bullyings +bully pulpit,bully pulpits +bully tree,bully trees +bulrush,bulrushes +bulse,bulses +bulti,bultis +bultow,bultows +bulwark,bulwarks +bum bag,bum bags +bumbag,bumbags +bumbailiff,bumbailiffs +bumbard,bumbards +bumbershoot,bumbershoots +bumble-bee,bumble-bees +bumblebee,bumblebees +bumblebee model,bumblebee models +bumble,bumbles +bumble,bumbles +bumbledom,bumbledoms +Bumblefuck,Bumblefucks +bumbler,bumblers +bumbling,bumblings +bumboat,bumboats +bumboater,bumboaters +bumboozer,bumboozers +bum,bums +bum,bums +bum,bums +bum,bums +bum calf,bum calves +bum chum,bum chums +bum crack,bum cracks +bumfreezer,bumfreezers +bumfuck,bumfucks +bumhole,bumholes +bumiputra,bumiputras +bumkin,bumkins +bummalo,bummalos +bummaree,bummarees +bummer,bummers +bummer,bummers +bummer,bummers +bummy,bummies +bumpage,bumpages +bump and grind,bump and grinds +bump ball,bump balls +bump,bumps +bump cap,bump caps +bumpee,bumpees +bumper,bumpers +bumper car,bumper cars +bumper crop,bumper crops +bumperette,bumperettes +bumper sticker,bumper stickers +bumper-sticker,bumper-stickers +bump key,bump keys +bumpkin,bumpkins +bump-off,bump-offs +bumpoff,bumpoffs +bumps race,bumps races +bump supper,bump suppers +bum rap,bum raps +bum roll,bum rolls +bum rush,bum rushes +bum's rush,bum's rushes +bum steer,bum steers +bumster,bumsters +bumtrap,bumtraps +bun,buns +bunchberry,bunchberries +bunch,bunches +buncher,bunchers +bunchflower,bunchflowers +bunching,bunchings +bunch of fives,bunches of fives +bunco,buncos +bunco-steerer,bunco-steerers +bund,bunds +bund,bunds +bunder boat,bunder boats +bunder,bunders +bundle adjustment,bundle adjustments +bundle buggy,bundle buggies +bundle,bundles +bundle of energy,bundles of energy +bundle of His,bundles of His +bundle of joy,bundles of joy +bundle of nerves,bundles of nerves +bundle pillar,bundle pillars +bundler,bundlers +bundobust,bundobusts +bundook,bundooks +bundt,bundts +bundt cake,bundt cakes +bundu,bundus +bunfight,bunfights +bungaloft,bungalofts +bungaloid,bungaloids +bungalow,bungalows +bungarotoxin,bungarotoxins +bungarum,bungarums +Bungay,Bungay,Bungays +bung,bungs +Bungee,Bungee,Bungees +bungee,bungees +bungee cord,bungee cords +bungee jumper,bungee jumpers +bungee line,bungee lines +bungee rope,bungee ropes +bung-hole,bung-holes +bunghole,bungholes +Bungi,Bungi,Bungis +Bungie,Bungie,Bungies +bungle,bungles +bungler,bunglers +bungling,bunglings +bungo,bungos,bungoes +bungstarter,bungstarters +bungu,bungus +bungus,bunguses +Bungy,Bungy,Bungys +buniah,buniahs +buniak,buniaks +bunion,bunions +bunionectomy,bunionectomies +B-unit,B-units +bunjara,bunjaras +bunk bed,bunk beds +bunkbed,bunkbeds +bunk,bunks +bunker,bunkers +bunkering,bunkerings +bunkhouse,bunkhouses +bunkie,bunkies +bunkmate,bunkmates +bunkroom,bunkrooms +bunk-up,bunk-ups +bunn,bunns +bunnet,bunnets +bunnia,bunnias +bunniah,bunniahs +bunnian,bunnians +bunning,bunnings +bunny boiler,bunny boilers +bunny boot,bunny boots +bunny,bunnies +bunny,bunnies +bunny,bunnies +bunny chow,bunny chows +bunny girl,bunny girls +bunny hop,bunny hops +bunnyhopping,bunnyhoppings +bunny hug,bunny hugs +bunnyhug,bunnyhugs +bunny rabbit,bunny rabbits +bunny wunny,bunny wunnies +bunodont,bunodonts +Bunsen,Bunsens +Bunsen burner,Bunsen burners +Bunsen cell,Bunsen cells +Bunsen pile,Bunsen piles +bun stock,bun stocks +bunt,bunts +bunter,bunters +bunting,buntings +bunting,buntings +buntline,buntlines +bunton,buntons +bunya,bunyas +bunyak,bunyaks +bunya pine,bunya pines +bunyavirus,bunyaviruses +bunyip,bunyips +bunyon,bunyons +buolt,buolts +buoyancy aid,buoyancy aids +buoy,buoys +buoy rope,buoy ropes +buoy tender,buoy tenders +buphagid,buphagids +bupleurum,bupleurums +bupleurynol,bupleurynols +buppie,buppies +buprestidan,buprestidans +buprestid,buprestids +buqsha,buqshas +burakumin,burakumin +'burb,'burbs +burb,burbs +burble,burbles +burbling,burblings +bur block,bur blocks +burbolt,burbolts +burbot,burbots +bur,burs +burdash,burdashes +burd,burds +Burdekin duck,Burdekin ducks +burden,burdens +burden,burdens +burdener,burdeners +burden of proof,burdens of proof +burdock,burdocks +burdon,burdons +bureau,bureaux,bureaus +bureaucracy,bureaucracies +bureaucrat,bureaucrats +bureaucratisation,bureaucratisations +bureaucratist,bureaucratists +bureaucratization,bureaucratizations +bureau de change,bureaux de change,bureaus de change,bureau de changes +bure,bures +burek,bureks +burel,burels +buret,burets +burette,burettes +burfish,burfishes,burfish +burgage,burgages +burgall,burgalls +burgamot,burgamots +burganet,burganets +burg,burgs +burgee,burgees +burgeois,burgeois +burgeon,burgeons +burgeoning,burgeonings +burger,burgers +Burger,Burgers +Burgers vector,Burgers vectors +burgery,burgeries +burgery,burgeries +burgess,burgesses +burgessy,burgessies +burggrave,burggraves +burghbote,burghbotes,burghboten +burgh,burghs +burgher,burghers +Burgher,Burghers +burghermaster,burghermasters +burghmaster,burghmasters +burghmote,burghmotes +burglar alarm,burglar alarms +burglar,burglars +burglarer,burglarers +burglary,burglaries +burgomaster,burgomasters +burgomeister,burgomeisters +burgonet,burgonets +burgrave,burgraves +burgundy,burgundies +Burgundy,Burgundies +burhel,burhels +burhinid,burhinids +burial,burials +burial chamber,burial chambers +burial ground,burial grounds +buriall,burialls +burial mound,burial mounds +burian,burians +Buriat,Buriats +buried treasure,buried treasures +burier,buriers +burin,burins +burinist,burinists +burion,burions +burka,burkas +burke,burkes +burkinabe,burkinabes +Burkinabe,Burkinabes +burkini,burkinis +Burkitt's lymphoma,Burkitt's lymphomas,Burkitt's lymphomata +burlap,burlaps +burlaw,burlaws +burl,burls +burler,burlers +burlesque,burlesques +burlesquer,burlesquers +burletta,burlettas +Burlington bun,Burlington buns +burlywood,burlywoods +Burman,Burmans +bur marigold,bur marigolds +Burmese,Burmese +Burmilla,Burmillas +burn book,burn books +burn,burns +burn,burns +burndown,burndowns +burner,burners +Burner,Burners +burner phone,burner phones +burnetiid,burnetiids +burnfire,burnfires +burnie,burnies +burning bar,burning bars +burning,burnings +burning bush,burning bushes +burning-ghat,burning-ghats +burning-glass,burning-glasses +burnisher,burnishers +burn notice,burn notices +burnoff,burnoffs +burnoose,burnooses +burnou,burnous +burnous,burnouses +burnout,burnouts +burn phone,burn phones +burn rate,burn rates +Burnsian,Burnsians +burnside,burnsides +Burns night,Burns nights +Burns stanza,Burns stanzas +burnstickle,burnstickles +burnt offering,burnt offerings +burnt orange,burnt oranges +burnt sienna,burnt siennas +burnt umber,burnt umbers +burnup,burnups +bur oak,bur oaks +buro,buros +burocracy,bureaucracies +burocrat,burocrats +buron,burons +burp,burps +burpee,burpees +burp gun,burp guns +burqa,burqas +burqini,burqinis +burqua,burquas +burra-khana,burra-khanas +burramyid,burramyids +burr,burrs +burr,burrs +burr,burrs +burr,burrs +burrel,burrels +burrel fly,burrel flies +burrhead,burrheads +burrhel,burrhels +burrito,burritos +burr millstone,burr millstones +burr oak,burr oaks +burrobrush,burrobrushes +burro,burros +burrock,burrocks +burrow,burrows +burrower,burrowers +burrowing owl,burrowing owls +burrowing parrot,burrowing parrots +burrstone,burrstones +bursa,bursae,bursΓ¦ +bursar,bursars +bursarship,bursarships +bursary,bursaries +burse,burses +bursectomy,bursectomies +bursid,bursids +bursopathy,bursopathies +burst,bursts +burstenness,burstennesses +burster,bursters +bursting pressure,bursting pressures +burst into flame,burst into flames +burthen,burthens +burton,burtons +Buru babirusa,Buru babirusas +Burundian,Burundians +buryal,buryals +Buryatian,Buryatians +bury,buries +buryingplace,buryingplaces +busaa,busaas +Busanian,Busanians +bus bar,bus bars +busbar,busbars +busboy,busboys +bus bridge,bus bridges +bus buddy,bus buddies +bus bulb,bus bulbs +bus,buses,busses +busby,busbies +buscon,buscons +bus driver,bus drivers +bus duct,bus ducts +bus fare,bus fares +busfare,busfares +busful,busfuls +busgirl,busgirls +bush antelope,bush antelopes +bushbaby,bushbabies +bush baptist,bush baptists +bushboy,bushboys +bushbuck,bushbucks +bush,bushes +bush,bushes +bush,bushes +bush,bushes +bushcamp,bushcamps +bush dog,bush dogs +bushel basket,bushel baskets +bushel,bushels +bushelman,bushelmen +busher,bushers +bushet,bushets +bushfighter,bushfighters +bush fire,bush fires +bushfire,bushfires +bushfood,bushfoods +bush frog,bush frogs +bush hammer,bush hammers +bushhammer,bushhammers +bush-hen,bush-hens +bushie,bushies +bushing,bushings +Bushist,Bushists +bushland,bushlands +bush lawyer,bush lawyers +bush league,bush leagues +bushlip,bushlips +bushman,bushmen +Bushman,Bushmen +bushmaster,bushmasters +bushment,bushments +bush pig,bush pigs +bush pilot,bush pilots +bush plane,bush planes +bush pole,bush poles +bushranger,bushrangers +bushshrike,bushshrikes +bush telegraph,bush telegraphs +bush-telegraph,bush-telegraphs +bushtit,bushtits +bushveld,bushvelds +bushwalk,bushwalks +bushwalker,bushwalkers +bush week,bush weeks +bushwhacker,bushwhackers +bushwhacking,bushwhackings +bushwoman,bushwomen +Bushwoman,Bushwomen +business analyst,business analysts +business architect,business architects +business card,business cards +business case,business cases +business cycle,business cycles +business day,business days +businesse,businesses +business end,business ends +business ethics,business ethics +business girl,business girls +business lunch,business lunches +businessman,businessmen +business model,business models +business park,business parks +businessperson,businesspersons,businesspeople +business plan,business plans +business record,business records +business trip,business trips +business venture,business ventures +businesswoman,businesswomen +bus kanaka,bus kanakas +busk,busks +busk,busks +busker,buskers +busket,buskets +buskin,buskins +bus lane,bus lanes +busload,busloads +busman,busmen +busman's holiday,busman's holidays +bus mastering,bus masterings +bus ministry,bus ministries +bus pass,bus passes +bus rapid transit,bus rapid transits +bus route,bus routes +Bussard ramjet,Bussard ramjets +buss,busses +busser,bussers +bus shelter,bus shelters +bus station,bus stations +bus stop,bus stops +busta,bustas +bustard,bustards +bustaurant,bustaurants +bust,busts +bust,busts +busted flush,busted flushes +bustee,bustees +Buster Brown suit,Buster Brown suits +buster,busters +bustier,bustiers +bustitution,bustitutions +bustle,bustles +bustler,bustlers +bustline,bustlines +busto,bustos,bustoes +bus topology,bus topologies +bus trap,bus traps +bust-up,bust-ups +busuuti,busuutis +busway,busways +busy beaver,busy beavers +busy bee,busy bees +busy body,busy bodies +busybody,busybodies +busy little beaver,busy little beavers +busy signal,busy signals +butadienoate,butadienoates +butadienylation,butadienylations +butadienyl,butadienyls +butadiynyl,butadiynyls +butanamide,butanamides +butanediol,butanediols +butanedione,butanediones +butanethiol,butanethiols +butanolate,butanolates +butanolide,butanolides +but,buts +butch,butches +butcher bird,butcher birds +butcherbird,butcherbirds +butcher block,butcher blocks +butcher,butchers +butcheress,butcheresses +butchering,butcherings +butcher knife,butcher knives +butcherknife,butcherknives +butcher's hook,butcher's hooks,butchers' hooks +butchershop,butchershops +butcher's knife,butcher's knives +butchers knife,butchers knives +butchers' knife,butchers' knives +butcher's steak,butcher's steaks +butch lesbian,butch lesbians +butene,butenes +butenoate,butenoates +butenol,butenols +butenolide,butenolides +butenyl,butenyls +butenylidene,butenylidenes +buteo,buteos +buthid,buthids +butler,butlers +Butlerian,Butlerians +butment,butments +butment cheek,butment cheeks +butoxide,butoxides +butoxy,butoxys +butsudan,butsudan,butsudans +butt breath,butt breaths +butt-breath,butt-breaths +buttbreath,buttbreaths +butt buddy,butt buddies +buttbuddy,buttbuddies +butt,butts +butt call,butt calls +butt cheek,butt cheeks +butt-cheek,butt-cheeks +butt chin,butt chins +butt-chin,butt-chins +butt crack,butt cracks +buttcrack,buttcracks +butt dial,butt dials +butte,buttes +butter-and-egg man,butter-and-egg men +butterball,butterballs +butter bar,butter bars +butter bean,butter beans +butterbean,butterbeans +butter beaner,butter beaners +butterbird,butterbirds +butterbody,butterbodies +butter bomb,butter bombs +butter-box,butter-boxes +butterbur,butterburs +butter,butters +butter chicken,butter chickens +buttercream,buttercreams +buttercross,buttercrosses +buttercup anemone,buttercup anemones +buttercup,buttercups +butter curler,butter curlers +butter dish,butter dishes +butterer,butterers +butterface,butterfaces +butterface,butterfaces +butter fingers,butter fingers +butterfingers,butterfingers +butterfish,butterfish,butterfishes +butterfly bend,butterfly bends +butterfly bush,butterfly bushes +butterfly,butterflies +butterfly cake,butterfly cakes +butterfly clam,butterfly clams +butterfly effect,butterfly effects +butterfly fish,butterfly fish,butterfly fishes +butterflyfish,butterflyfishes,butterflyfish +butterfly knife,butterfly knives +butterfly knot,butterfly knots +butterfly net,butterfly nets +butterfly ray,butterfly rays +butterfly stroke,butterfly strokes +butterhead,butterheads +butteris,butterises +butter knife,butter knives +butterknife,butterknives +butter lamp,butter lamps +butterman,buttermen +buttermint,buttermints +butternut,butternuts +Butternut,Butternuts +butternut pumpkin,butternut pumpkins +butteroil,butteroils +butter pear,butter pears +butter pie,butter pies +butter-slide,butter-slides +butter tart,butter tarts +butter tree,butter trees +butterweed,butterweeds +butterwort,butterworts +buttery bar,buttery bars +buttery,butteries +buttface,buttfaces +buttfuck,buttfucks +buttfucker,buttfuckers +butthead,buttheads +butt hinge,butt hinges +butthole,buttholes +butthook,butthooks +buttie,butties +butting,buttings +buttinski,buttinskis +buttinsky,buttinskys,buttinskies +butt joint,butt joints +butt juice,butt juices +buttkisser,buttkissers +buttlegger,buttleggers +buttlicker,buttlickers +buttload,buttloads +butt monkey,butt monkeys +buttmunch,buttmunches +buttmuncher,buttmunchers +buttock,buttocks +buttock line,buttock lines +button accordion,button accordions +buttonball,buttonballs +buttonbush,buttonbushes +button,buttons +button cell,button cells +buttoner,buttoners +buttonhole,buttonholes +buttonhook,buttonhooks +button man,button men +buttonman,buttonmen +buttonmould,buttonmoulds +button mushroom,button mushrooms +buttonquail,buttonquails +button smuggler,button smugglers +button stitcher,button stitchers +button-up,button-ups +buttonweed,buttonweeds +buttonwood,buttonwoods +butt pirate,butt pirates +butt plug,butt plugs +buttplug,buttplugs +buttprint,buttprints +butt-rape,butt-rapes +buttress,buttresses +butt-slapping,butt-slappings +buttstock,buttstocks +buttstroke,buttstrokes +buttweld,buttwelds +butt woman,butt women +butt-woman,butt-women +butty,butties +butty,butties +butut,bututs +butyl alcohol,butyl alcohols +butylamine,butylamines +butylammonium,butylammoniums +butylbenzene,butylbenzenes +butyl,butyls +butyldimethylsilyl,butyldimethylsilyls +butylene,butylenes +butylene glycol,butylene glycols +butylidene,butylidenes +butyllithium,butyllithiums +butylmagnesium,butylmagnesiums +butyl rubber,butyl rubbers +butyne,butynes +butynyl,butynyls +butyramide,butyramides +butyrate,butyrates +butyration,butyrations +butyric acid,butyric acids +butyrometer,butyrometers +butyrophenone,butyrophenones +butyryl,butyryls +buy-back,buy-backs +buyback,buybacks +buy,buys +buycott,buycotts +buy-down,buy-downs +buydown,buydowns +buyer,buyers +buyer's market,buyer's markets,buyers' markets +buyer's premium,buyer's premiums +buy-in,buy-ins +buying guide,buying guides +buyou,buyous +buy-out,buy-outs +buyout,buyouts +buz,buzzes +buzzard,buzzards +buzzardet,buzzardets +buzz bomb,buzz bombs +buzz,buzzes +buzzcut,buzzcuts +buzzer,buzzers +buzzer flag,buzzer flags +buzzkill,buzzkills +buzz-phrase,buzz-phrases +buzzphrase,buzzphrases +buzzsaw,buzzsaws +buzzstorm,buzzstorms +buzz word,buzz words +buzz-word,buzz-words +buzzword,buzzwords +buzzworm,buzzworms +BVH,BVHs +BVIslander,BVIslanders +bwana,bwanas +Bwiti,Bwiti +b-word,b-words +bwoy,bwoys +byard,byards +by-bidder,by-bidders +bybidder,bybidders +by-blow,by-blows +byblow,byblows +by-book,by-books +by-business,by-businesses +by,bys +by-catch,by-catches +by-cause,by-causes +bycoket,bycokets +bydweller,bydwellers +bye-blow,bye-blows +bye-bye,bye-byes +bye,byes +bye-law,bye-laws +by-election,by-elections +byelection,byelections +byeline,byelines +Byelorussian,Byelorussians +by-end,by-ends +bye-street,bye-streets +byfall,byfalls +byfellow,byfellows +by-form,by-forms +byform,byforms +bygone,bygones +byground,bygrounds +byhanger,byhangers +byhearting,byheartings +by-hour,by-hours +byion,byions +byke,bykes +byland,bylands +bylander,bylanders +bylane,bylanes +by-law,by-laws +bylaw,bylaws +bylina,bylinas,byliny +byline,bylines +bymatter,bymatters +by-motive,by-motives +by-name,by-names +byname,bynames +byo,byos +byotch,byotches +bypass,bypasses +bypasser,bypassers +by-path,by-paths +bypath,bypaths +by-place,by-places +by-play,by-plays +byplay,byplays +by-plot,by-plots +by-product,by-products +byproduct,byproducts +by-purpose,by-purposes +byre,byres +by-report,by-reports +by-respect,by-respects +byrlaw,byrlaws +byrnie,byrnies +byroad,byroads +Byronian,Byronians +by-room,by-rooms +byrrhid,byrrhids +by-running,by-runnings +byrunning,byrunnings +bysen,bysens +byshop,byshops +bysitter,bysitters +by-speech,by-speeches +byspeech,byspeeches +byspel,byspels +byspell,byspells +bystander,bystanders +bystreet,bystreets +by-stroke,by-strokes +bytale,bytales +bytalk,bytalks +byte,bytes +bythitid,bythitids +bythograeid,bythograeids +bytown,bytowns +byturid,byturids +by-turning,by-turnings +by-view,by-views +bywalk,bywalks +by-wash,by-washes +by-way,by-ways +byway,byways +by-wipe,by-wipes +bywoner,bywoners +byword,bywords +bywork,byworks +by your leave,by your leaves +by-your-leave,by-your-leaves +byzant,byzants +byzantine,byzantines +Byzantine,Byzantines +Byzantine Patriarch,Byzantine Patriarchs +Byzantinologist,Byzantinologists +Byzantism,Byzantisms +C3ISTAR,C3ISTARs +C-47,C-47s +C4ISR,C4ISRs +caba,cabas +cabal,cabals +cabaletta,cabalettas +cabal glass,cabal glasses +cabalist,cabalists +caballer,caballers +caballero,caballeros +cabana,cabanas +caban,cabans +cabane,cabanes +cabaret,cabarets +cabaretist,cabaretists +cabassou,cabassous +cabbage gum,cabbage gums +cabbage looper,cabbage loopers +cabbage palm,cabbage palms +cabbage white,cabbage whites +cabbie,cabbies +cabbin,cabbins +cabbler,cabblers +cabby,cabbies +cab,cabs +cab,cabs +cab,cabs +cab driver,cab drivers +cabdriver,cabdrivers +caber,cabers +cabernet,cabernets +Cabernet Sauvignon,Cabernet Sauvignons +cabezon,cabezons +cabezone,cabezones +cabiai,cabiais +cabildo,cabildos +cabin boy,cabin boys +cabin-boy,cabin-boys +cabin,cabins +cabin crew,cabin crews +cabin cruiser,cabin cruisers +cabin-cruiser,cabin-cruisers +Cabindan,Cabindans +cabinet,cabinets +cabinetful,cabinetfuls,cabinetsful +cabinetisation,cabinetisations +cabinet maker,cabinet makers +cabinetmaker,cabinetmakers +cabinet minister,cabinet ministers +cabin hook,cabin hooks +cabinmate,cabinmates +cable box,cable boxes +cable,cables +cable car,cable cars +cable-car,cable-cars +cablecar,cablecars +cablecast,cablecasts +cableco,cablecos +cable gland,cable glands +cablegram,cablegrams +cable guy,cable guys +cable jack,cable jacks +cable-laid rope,cable-laid ropes +cable length,cable lengths +cable modem,cable modems +cabler,cablers +cable release,cable releases +cable ship,cable ships +cablet,cablets +cable terminal,cable terminals +cable tie,cable ties +cable tray,cable trays +cableway,cableways +Cablinasian,Cablinasians +cabman,cabmen +cabob,cabobs +cabochon,cabochons +caboclo,caboclos +cab off the rank,cabs off the rank +caboodle,caboodles +caboose,cabooses +cabotage,cabotages +cabre,cabres +cabree,cabrees +cabrΓ©e,cabrΓ©es +cabrilla,cabrillas +cabriole,cabrioles +Cabriole leg,Cabriole legs +cabriolet,cabriolets +cabrit,cabrits +cabstand,cabstands +cabulance,cabulances +caburn,caburns +cacafuego,cacafuegos +cacao,cacaos +cacatuid,cacatuids +cachaca,cachacas +cachalot,cachalots +cache,caches +cachepot,cachepots +cacher,cachers +cache-sexe,cache-sexes +cachet,cachets +cachette,cachettes +caching proxy,caching proxies +cachinnation,cachinnations +cachinnator,cachinnators +cacholong,cacholongs +cachou,cachous +cachucha,cachuchas +cacik,caciks +cacique,caciques +cacistocracy,cacistocracies +cack,cacks +cack,cacks +cackerel,cackerels +cackleberry,cackleberries +cackle-bladder,cackle-bladders +cackle,cackles +cackler,cacklers +cackling,cacklings +cacochymia,cacochymias +cacochymy,cacochymies +cacodaemon,cacodaemons +cacodΓ¦mon,cacodΓ¦mons +cacodemon,cacodemons +cacodemonomania,cacodemonomanias +cacodylate,cacodylates +cacoepist,cacoepists +cacographer,cacographers +cacolet,cacolets +cacomelia,cacomelias +cacomistle,cacomistles +cacomixl,cacomixls +cacomixle,cacomixles +cacomixtle,cacomixtles +caconym,caconyms +cacoon,cacoons +cacophemism,cacophemisms +cacophony,cacophonies +cacothymia,cacothymias +cactoid,cactoids +cactus,cacti,cactuses,cactus +cactus cat,cactus cats +cacuminal,cacuminals +cadaster,cadasters +cadastre,cadastres +cadaver,cadavers +cadaver dog,cadaver dogs +cadbait,cadbaits +cad,cads +caddice,caddices +caddid,caddids +caddie,caddies +caddie,caddies +caddis,caddises +caddis fly,caddis flies +caddisfly,caddisflies +Caddo,Caddo,Caddos +caddow,caddows +caddr,caddrs +caddy,caddies +caddy,caddies +Caddy,Caddies +cade,cades +cadelle beetle,cadelle beetles +cadenza,cadenzas,cadenze +cader,caders +cadet blue,cadet blues +cadet,cadets +cadetship,cadetships +cadette,cadettes +cadew,cadews +cadge,cadges +cadger,cadgers +cadherin,cadherins +cadi,cadis +cadie,cadies +cadilesker,cadileskers +Cadillac plan,Cadillac plans +cadinene,cadinenes +CADM,CADMs +cadmium yellow,cadmium yellows +cadr,cadrs +cadre,cadres +caduceus,caducei +caducity,caducities +cadwaladerite,cadwaladerites +cady,cadies +caecid,caecids +caecilian,caecilians +caeciliid,caeciliids +caeciliusid,caeciliusids +caecostomy,caecostomies +caecotrope,caecotropes +caecotroph,caecotrophs +caecum,caeca +cΓ¦cum,cΓ¦cums,cΓ¦ca +cΓ¦libate,cΓ¦libates +caenagnathid,caenagnathids +caenid,caenids +caenogastropod,caenogastropods +caenogenesis,caenogeneses +cΓ¦nogenesis,cΓ¦nogeneses +caenolestid,caenolestids +caenophidian,caenophidians +cΓ¦remony,cΓ¦remonies +caesar,caesars +Caesar,Caesars +CΓ¦sar,CΓ¦sars +Caesar cipher,Caesar ciphers +caesarean,caesareans +Caesarean,Caesareans +Caesarean,Caesareans +CΓ¦sarean,CΓ¦sareans +Caesarean section,Caesarean sections +Caesarian,Caesarians +CΓ¦sarian,CΓ¦sarians +Caesarist,Caesarists +Caesar salad,Caesar salads +CΓ¦sar salad,CΓ¦sar salads +Caesar's mushroom,Caesar's mushrooms +caesionid,caesionids +caestus,caesti +caesura,caesuras,caesurae +cΓ¦sura,cΓ¦suras,cΓ¦surΓ¦ +cafard,cafards +caf,cafs +caf,cafs +cafe,cafes +cafΓ©,cafΓ©s +cafeneh,cafenehs +cafenet,cafenets +cafenio,cafenios +cafeteria,cafeterias +cafetiΓ¨re,cafetiΓ¨res +cafetorium,cafetoriums,cafetoria +caff,caffs +caffΓ¨ latte,caffΓ¨ lattes +caffeoyl,caffeoyls +caffeoylquinate,caffeoylquinates +caffeoylquinic acid,caffeoylquinic acids +caffer,caffers +caffila,caffilas +caffre,caffres +cafila,cafilas +cafileh,cafilehs +caftan,caftans +cag,cags +CAG,CAGs +cage bird,cage birds +cage,cages +cage compound,cage compounds +cage dance,cage dances +cage dancer,cage dancers +cage diving,cage divings +cage fight,cage fights +cage fighter,cage fighters +cageling,cagelings +cage match,cage matches +cagemate,cagemates +cager,cagers +cagmag,cagmags +cagot,cagots +cagoulard,cagoulards +cagoule,cagoules +cah,cahs +cahier,cahiers +cahincate,cahincates +Cahita,Cahitas,Cahita +cahow,cahows +Cahuilla,Cahuillas,Cahuilla +caΓ―c,caΓ―cs +caicco,caiccos +caid,caids +caimacam,caimacams +caiman,caimans +Caiman lizard,Caiman lizards +caimito,caimitos +cainogenesis,cainogeneses +caipirinha,caipirinhas +caique,caiques +caΓ―que,caΓ―ques +caΓ―quejee,caΓ―quejees +caird,cairds +cairn,cairns +cairn terrier,cairn terriers +caissaca,caissacas +caisson,caissons +caitiff,caitiffs +cajoler,cajolers +Cajun,Cajuns +cakebaker,cakebakers +cake boy,cake boys +cakecrumb,cakecrumbs +cake-eater,cake-eaters +cakehole,cakeholes +cakemaker,cakemakers +cakeman,cakemen +cake mix,cake mixes +cakepan,cakepans +cake pop,cake pops +cakery,cakeries +cake server,cake servers +cake shop,cake shops +cakeshop,cakeshops +cake slice,cake slices +cake-slice,cake-slices +cakestand,cakestands +cake tin,cake tins +cake walk,cake walks +cake-walk,cake-walks +cakewalk,cakewalks +cakewoman,cakewomen +Calabar bean,Calabar beans +calabash,calabashes +calaboose,calabooses +Calabrian,Calabrians +calade,calades +caladium,caladiums +calamanco,calamancoes,calamancos +calamar,calamars +calamari ring,calamari rings +calamary,calamaries +calamata,calamatas +Calamian,Calamians +calamint,calamints +calamistrum,calamistra +calamite,calamites +calamity,calamities +calamondin,calamondins +calamosaur,calamosaurs +calanid,calanids +calanoid,calanoids +calanolide,calanolides +calanthe,calanthes +calanticid,calanticids +calappid,calappids +calash,calashes +calaverite,calaverites +Calayan rail,Calayan rails +cal,cals +calcaneum,calcaneums,calcanea +calcaneus,calcanei,calcanea +calcar,calcars +calcar,calcars +calcarean,calcareans +calcarenite,calcarenites +calcareous sponge,calcareous sponges +calcedon,calcedons +calcein,calceins +calcemia,calcemias +calcicole,calcicoles +calcifier,calcifiers +calcifuge,calcifuges +calcimimetic,calcimimetics +calciminer,calciminers +calcinatory,calcinatories +calciner,calciners +calcinosis,calcinoses +calcinuria,calcinurias +calciovolborthite,calciovolborthites +calciphyte,calciphytes +calcisol,calcisols +calcisponge,calcisponges +calcite,calcites +calcitration,calcitrations +calciturbidite,calciturbidites +calcium channel blocker,calcium channel blockers +calcium phosphate,calcium phosphates +calcographer,calcographers +calc-sinter,calc-sinters +calculandum,calculanda +calculated mistake,calculated mistakes +calculator,calculators +calculifrage,calculifrages +calculist,calculists +Calcuttan,Calcuttans +caldarium,caldaria +caldera,calderas +caldron,caldrons +caleche,caleches +calΓ¨che,calΓ¨ches +Caledonian,Caledonians +caledonite,caledonites +calefacient,calefacients +calefaction,calefactions +calefactor,calefactors +calefactory,calefactories +caleidoscope,caleidoscopes +calembour,calembours +calendar,calendars +calendar call,calendar calls +calendarist,calendarists +calendar month,calendar months +calendar spread,calendar spreads +calendar year,calendar years +calender,calenders +calender,calenders +calenderer,calenderers +calendographer,calendographers +calendrer,calendrers +calendula,calendulas +calenture,calentures +calf bone,calf bones +calfbone,calfbones +calf,calves,calfs +calf,calves,calfs +calfling,calflings +calf raise,calf raises +calfskin,calfskins +Calgarian,Calgarians +calgranulin,calgranulins +caliber,calibers +calibrachoa,calibrachoas +calibrant,calibrants +calibrated focal length,calibrated focal lengths +calibration,calibrations +calibrator,calibrators +calibre,calibres +calice,calices +calicheamicin,calicheamicins +calicivirus,caliciviruses +calicle,calicles +calico,calicos,calicoes +calico cat,calico cats +caliculus,caliculi +calidrid,calidrids +caliduct,caliducts +califate,califates +calif,califs +California blackberry,California blackberries +California Channel Island fox,California Channel Island foxes +California Condor,California Condors +California dewberry,California dewberries +California dogface butterfly,California dogface butterflies +California laurel,California laurels +Californian,Californians +California poppy,California poppies +California roll,California rolls +California Spangled Cat,California Spangled Cats +California stop,California stops +Californio,Californios +caligid,caligids +caliginosity,caliginosities +calimanco,calimancos +calimocho,calimochos +caliper brake,caliper brakes +caliper,calipers +caliphate,caliphates +caliph,caliphs +caliphyllid,caliphyllids +Cali roll,Cali rolls +caliver,calivers +calixarene,calixarenes +calix,calixes,calices +calk,calks +calker,calkers +calkin,calkins +calking iron,calking irons +callable bond,callable bonds +callable,callables +calla,callas +callaeid,callaeids +calla lily,calla lilies +callaloo,callaloos +callant,callants +callanthiid,callanthiids +callat,callats +callback,callbacks +call box,call boxes +call boy,call boys +call-boy,call-boys +callboy,callboys +call,calls +call center,call centers +call centre,call centres +call date,call dates +call delay,call delays +call drink,call drinks +callee,callees +caller,callers +callet,callets +call girl,call girls +callgirl,callgirls +call graph,call graphs +callgraph,callgraphs +callianassid,callianassids +callicarpa,callicarpas +callichthyid,callichthyids +callidity,callidities +callidulid,callidulids +calligram,calligrams +calligrapher,calligraphers +calligraphist,calligraphists +callimiconid,callimiconids +call-in,call-ins +calling,callings +calling card,calling cards +calling-card,calling-cards +calling name,calling names +call-in show,call-in shows +callionymid,callionymids +calliope,calliopes +calliopid,calliopids +calliopiid,calliopiids +calliopist,calliopists +calliostomatid,calliostomatids +calliper,callipers +calliphorid,calliphorids +callisection,callisections +Callistan,Callistans +Callistoan,Callistoans +callithump,callithumps +callitrichid,callitrichids +call number,call numbers +call of nature,calls of nature +callop,callops +callorhinchid,callorhinchids +call originator,call originators +callosum,callosa +callosumectomy,callosumectomies +callot,callots +call out,call outs +call-out,call-outs +callout,callouts +call sign,call signs +callsign,callsigns +call stack,call stacks +call to the bar,calls to the bar +call tree,call trees +calluna,callunas +call up,call ups +call-up,call-ups +callup,callups +callus,calluses,calli +call value,call values +callystatin,callystatins +calmative,calmatives +calm,calms +calmecac,calmecacs,calmecac +calmer,calmers +calmoniid,calmoniids +Calmuck,Calmucks +calneuron,calneurons +calomel electrode,calomel electrodes +calopterygid,calopterygids +calorescence,calorescences +caloriduct,caloriducts +calorie,calories +calorifere,caloriferes +calorific value,calorific values +calorimeter,calorimeters +calorimetre,calorimetres +calorimotor,calorimotors +caloron,calorons +calory,calories +Calot's triangle,Calot's triangles +calotte,calottes +calotte model,calotte models +calotype,calotypes +calotypist,calotypists +caloyer,caloyers +calpac,calpacs +calpack,calpacks +calpain,calpains +calpastatin,calpastatins +calp,calps +calpolli,calpolli,calpollis,calpoltin +calponin,calponins +calque,calques +calsarcin,calsarcins +caltrap,caltraps +caltrop,caltrops +calumet,calumets +calumniation,calumniations +calumniator,calumniators +calumny,calumnies +caluromyid,caluromyids +calutron,calutrons +calva,calvae +calvaria,calvariae +calvarium,calvariums,calvaria +calvary,calvaries +calver,calvers +Calvin cycle,Calvin cycles +calving,calvings +calving jack,calving jacks +Calvinist,Calvinists +calvity,calvities +calx,calxes,calces +calycanthus,calycanthuses +calycle,calycles +calyculus,calyculi +calymenid,calymenids +calyon,calyons +calypsis,calypses +calypso,calypsos,calypsoes +calypso,calypsos,calypsoes +calypsonian,calypsonians +calypter,calypters +calyptra,calyptras,calyptrae +calyptraeid,calyptraeids +calyptrolith,calyptroliths +calyx,calyces,calyxes +calzone,calzones,calzoni +cama,camas +camaenid,camaenids +camaieu,camaieus +camail,camails +camanchaca,camanchacas +camaraderie,camaraderies +camarasaurid,camarasaurids +camarilla,camarillas +camaron,camarons +camas,camases,camas +camassia,camassias +cambarid,cambarids +camber arch,camber arches +camber beam,camber beams +Camberwell beauty,Camberwell beauties +Camberwell carrot,Camberwell carrots +cambisol,cambisols +cambist,cambists +cambium,cambiums,cambia +camblet,camblets +Cambodian,Cambodians +camboose,cambooses +cambozola,cambozolas +cambre,cambres +cambrel,cambrels +Cambrian,Cambrians +Cambridge blue,Cambridge blues +Cambro-Briton,Cambro-Britons +cambro,cambros +cam,cams +cam,cams +camcorder,camcorders +Camdenite,Camdenites +came,cames +camel,camels +cameleer,cameleers +cameleon,cameleons +cameleopard,cameleopards +camelid,camelids +camel jockey,camel jockeys +camellia,camellias +cameloid,cameloids +camelopard,camelopards +camel's nose,camels' noses +camel spider,camel spiders +camel toe,camel toes +cameltoe,cameltoes +camembert,camemberts +cameo,cameos +cameo conch,cameo conches +camera,camerΓ¦,cameras +camera club,camera clubs +camerade,camerades +camera flash,camera flashes +cameralist,cameralists +camera lucida,camera lucidas +cameraman,cameramen +camera move,camera moves +camera obscura,camera obscuras +cameraperson,camerapersons,camerapeople +camera phone,camera phones +cameraphone,cameraphones +camerawoman,camerawomen +camerlengo,camerlengos +Cameronian,Cameronians +Cameronite,Cameronites +Cameroon,Cameroons +Cameroonian,Cameroonians +camgirl,camgirls +cami,camis +camikini,camikinis +camillid,camillids +camion,camions +camisade,camisades +camisado,camisados,camisadoes +Camisard,Camisards +camisole,camisoles +cammer,cammers +cammock,cammocks +camo,camos +camomile,camomiles +camomile tea,camomile teas +camomille,camomilles +camonflet,camonflets +camouflage,camouflages +camouflager,camouflagers +camouflet,camouflets +campagnol,campagnols +campaign,campaigns +campaigner,campaigners +campaign group,campaign groups +campanero,campaneros +campania,campanias +campanile,campaniles +campanilid,campanilids +campanologist,campanologists +campanula,campanulas +campanularid,campanularids +campanulariid,campanulariids +camp bed,camp beds +Campbellite,Campbellites +camp,camps +campephagid,campephagids +camper,campers +campership,camperships +camper van,camper vans +campervan,campervans +campervanner,campervanners +campestane,campestanes +campfire,campfires +camp follower,camp followers +campground,campgrounds +camphorate,camphorates +camphorsulphonic acid,camphorsulphonic acids +camphorweed,camphorweeds +campimeter,campimeters +camping chair,camping chairs +campion,campions +campmate,campmates +campodeid,campodeids +camporee,camporees +campout,campouts +camp robber,camp robbers +campsite,campsites +campstool,campstools +camptosaurid,camptosaurids +campus,campuses +campus legend,campus legends +campylobacter,campylobacters +campylobacterium,campylobacteria +camrip,camrips +camshaft,camshafts +Camun,Camuns +Camunian,Camunians +camuropiscid,camuropiscids +CAM walker,CAM walkers +camwheel,camwheels +camwhore,camwhores +Canaan Dog,Canaan Dogs +Canaanite,Canaanites +canaceid,canaceids +canacid,canacids +Canada balsam,Canada balsams +caΓ±ada,caΓ±adas +Canada goose,Canada geese +Canada jay,Canada jays +Canadarian,Canadarians +Canada thistle,Canada thistles +canadew,canadews +Canadian,Canadians +Canadian dollar,Canadian dollars +Canadian goose,Canadian geese +Canadian hemlock,Canadian hemlocks +Canadianism,Canadianisms +Canadianist,Canadianists +Canadian porcupine,Canadian porcupines +Canadian raising,Canadian raisings +Canadian red pine,Canadian red pines +Canadien,Canadiens +Canadienne,Canadiennes +canaille,canailles +canakin,canakins +canal,canals +canaliculus,canaliculi +canaller,canallers +canal of Schlemm,canals of Schlemm +canalside,canalsides +canape,canapes +canapΓ©,canapΓ©s +Canaque,Canaques +canard,canards +Canarian,Canarians +canary,canaries +Canary,Canaries +canary girl,canary girls +canary in a coal mine,canaries in a coal mine +canary in the coal mine,canaries in the coal mine +Canary Islander,Canary Islanders +canasta,canastas +Canberran,Canberrans +can buoy,can buoys +cancaneuse,cancaneuses +can,cans +cancelation,cancelations +cancelbot,cancelbots +cancel,cancels +canceler,cancelers +cancellariid,cancellariids +cancellation,cancellations +canceller,cancellers +cancellus,cancelli +cancer,cancers +Cancer,Cancers +Cancerian,Cancerians +cancer stick,cancer sticks +cancrid,cancrids +cancrinite,cancrinites +cancroid,cancroids +candelabrum,candelabra,candelabrums +candela,candelas +candelilla wax,candelilla waxes +candidacy,candidacies +candidate,candidates +candidateship,candidateships +candidature,candidatures +candid,candids +candidosis,candidoses +candied fruit,candied fruits +candirΓΊ,candirΓΊ,candirΓΊs +candiru,candirus +candleberry,candleberries +candlebomb,candlebombs +candle,candles +candlefish,candlefishes,candlefish +candleholder,candleholders +candle in the wind,candles in the wind +candlelight,candlelights +candlelight vigil,candlelight vigils +candlemaker,candlemakers +Candlemas,Candlemases +candlenut,candlenuts +candlepin,candlepins +candler,candlers +candleshine,candleshines +candle snuffer,candle snuffers +candlesnuffer,candlesnuffers +candlestand,candlestands +candlestick,candlesticks +candlewaster,candlewasters +candle wax,candle waxes +candlewick,candlewicks +candock,candocks +candonid,candonids +candrabindu,candrabindus +candroy,candroys +candy apple,candy apples +candy-ass,candy-asses +candyass,candyasses +candy bar,candy bars +candy,candies +candy cane,candy canes +candyfloss,candyflosses +candy gram,candy grams +candy-gram,candy-grams +candygram,candygrams +candy man,candy men +candy-man,candy-men +candyman,candymen +candy store,candy stores +candy striper,candy stripers +candy thermometer,candy thermometers +candytuft,candytufts +canebrake,canebrakes +canebreak,canebreaks +canegrub,canegrubs +cane knife,cane knives +caneland,canelands +canephora,canephoras +cane rat,cane rats +caner,caners +cane toad,cane toads +canful,canfuls,cansful +cangue,cangues +can hook,can hooks +canhouse,canhouses +canicide,canicides +canid,canids +canikin,canikins +canine,canines +canine tooth,canine teeth +caning,canings +caninophile,caninophiles +caninus muscle,caninus muscles +caniphobia,caniphobias +canistel,canistels +canister,canisters +canker fly,canker flies +canker sore,canker sores +cankerworm,cankerworms +cankle,cankles +cannabinoid,cannabinoids +cannabinoid receptor,cannabinoid receptors +canna,cannas +canna,cannas +cannakin,cannakins +canned laughter,canned laughters +canned response,canned responses +cannellini bean,cannellini beans +cannelure,cannelures +canner,canners +cannery,canneries +cannibal,cannibals +cannibalization,cannibalizations +cannikin,cannikins +cannister,cannisters +Cannizzaro reaction,Cannizzaro reactions +Cannois,Cannois +cannoli,cannolis +cannonade,cannonades +cannon ball,cannon balls +cannonball,cannonballs +cannonball problem,cannonball problems +cannon bone,cannon bones +cannon,cannon,cannons +cannoneer,cannoneers +cannonier,cannoniers +cannonry,cannonries +cannot,cannots +cannula,cannulas,cannulae,cannulΓ¦ +cannulation,cannulations +canoe birch,canoe birches +canoe,canoes +canoeist,canoeists +canoeman,canoemen +canoer,canoers +can of corn,cans of corn +can of worms,cans of worms +canola,canolas +canola oil,canola oils +canon bit,canon bits +canon bone,canon bones +canon,canons +caΓ±on,caΓ±ons,caΓ±ones +canoness,canonesses +canonical,canonicals +canonical formalism,canonical formalisms +canonical form,canonical forms +canonical hour,canonical hours +canonicalization,canonicalizations +canonical sequence,canonical sequences +canonicate,canonicates +canonisation,canonisations +canonist,canonists +canonization,canonizations +canon law,canon laws +canonry,canonries +canonship,canonships +canoodler,canoodlers +canoodling,canoodlings +can opener,can openers +can-opener,can-openers +canopic jar,canopic jars +canopy bed,canopy beds +canopy,canopies +canowindrid,canowindrids +canrenoate,canrenoates +canstick,cansticks +Cantab,Cantabs +cantabile,cantabiles +Cantabrigian,Cantabrigians +cantalope,cantalopes +cantaloupe,cantaloupes +cantar,cantars +cantata,cantatas +cantatrice,cantatrices,cantatrici +cant,cants +canted angle,canted angles +canteen,canteens +canteen cup,canteen cups +cantel,cantels +cantenna,cantennas +canterbury,canterburys,canterburies +Canterbury gallop,Canterbury gallops +canter,canters +canter,canters +canthal,canthals +cantharid,cantharids +cantharis,cantharides +cantharus,canthari +cantheist,cantheists +canthocamptid,canthocamptids +cant hook,cant hooks +canthopexy,canthopexies +canthoplasty,canthoplasties +canthorrhaphy,canthorrhaphies +canthotomy,canthotomies +canthus,canthi +canticle,canticles +canticoy,canticoys +cantiga,cantigas +cantil,cantils +cantilena,cantilenas +cantilever,cantilevers +cantillation,cantillations +cantina,cantinas +cantina trailer,cantina trailers +cantina truck,cantina trucks +cantina wagon,cantina wagons +cantine,cantines +cantiniΓ¨re,cantiniΓ¨res +cantion,cantions +cantle,cantles +cantlet,cantlets +canto,cantos +canton,cantons +canton,cantons +Cantonese,Cantonese +cantonment,cantonments +cantoon,cantoons +cantor,cantors +Cantor set,Cantor sets +cantour,cantours +cantraip,cantraips +cantrap,cantraps +cantred,cantreds +cantref,cantrefs,cantrefi +cantrev,cantrevs +cantrip,cantrips +cant strip,cant strips +cantus,cantus +Canuck,Canucks +Canuckistanian,Canuckistanians +Canuckistani,Canuckistanis +canula,canulas,canulae +canun,canuns +canvasback,canvasbacks +canvas,canvasses,canvases +canvass,canvasses +canvasser,canvassers +canyon,canyons +canyoner,canyoners +canzona,canzonas +canzone,canzones,canzoni +canzonet,canzonets +canzonetta,canzonettas +Caodaiist,Caodaiists +capacitor,capacitors +capacity,capacities +capacity utilization rate,capacity utilization rates +capacocha,capacochas +capade,capades +caparison,caparisons +caparro,caparros +cap,caps +cap,caps +cap,caps +capcase,capcases +cap cloud,cap clouds +CAPCOM,CAPCOMs +capeador,capeadors +cape ann,cape anns +Cape buffalo,Cape buffalos +cape,capes +cape,capes +Cape Codder,Cape Codders +Cape elk,Cape elks,Cape elk +cape gooseberry,cape gooseberries +Cape hunting dog,Cape hunting dogs +capelan,capelans +capel,capels +capelet,capelets +capelin,capelins +capeline,capelines +Cape lion,Cape lions +capellane,capellanes +capelle,capelles +capellet,capellets +caperberry,caperberries +capercaillie,capercaillies +capercailzie,capercailzies +caper,capers +caper,capers +caper,capers +caper,capers +caperer,caperers +capering,caperings +Cape teal,Cape teals +Capetian,Capetians +Capetonian,Capetonians +Cape triangle,Cape triangles +Cape Verdean,Cape Verdeans +cap flashing,cap flashings +capful,capfuls,capsful +Capgras delusion,Capgras delusions +cap-gun,cap-guns +capias,capiases +capibara,capibaras +capicola,capicoli,capicolas +capillaire,capillaires +capillament,capillaments +capillarity,capillarities +capillarization,capillarizations +capillarogenesis,capillarogeneses +capillary bed,capillary beds +capillary,capillaries +capillary wave,capillary waves +capillation,capillations +capilotade,capilotades +capital account,capital accounts +capital asset,capital assets +capital city,capital cities +capital crime,capital crimes +capital expenditure,capital expenditures +capital gain,capital gains +capital gains tax,capital gains taxes +capital grant,capital grants +capitalisation,capitalisations +capitalist,capitalists +capitalization,capitalizations +capitalizer,capitalizers +capital letter,capital letters +capital loss,capital losses +capital market,capital markets +capital market line,capital market lines +capital messuage,capital messuages +capital offense,capital offenses +capital punishment,capital punishments +capital ship,capital ships +capital structure,capital structures +capital surplus,capital surpluses +capitate bone,capitate bones +capitate,capitates +capitation,capitations +capitellid,capitellids +capitol,capitols +Capitolium,Capitolia +capitolo,capitolos,capitoli +capitonid,capitonids +capitonym,capitonyms +capitosaurid,capitosaurids +capitular,capitulars +capitulary,capitularies +capitulation,capitulations +capitulationism,capitulationisms +capitulationist,capitulationists +capitulator,capitulators +capitule,capitules +capitulescence,capitulescences +capitulum,capitula +caple,caples +caplet,caplets +caplet,caplets +caplin,caplins +caplin,caplins +cap'n,cap'ns +capniid,capniids +capnograph,capnographs +capnometer,capnometers +capnophile,capnophiles +cap nut,cap nuts +capo,capos +capoch,capoches +capoeirista,capoeiristas +capoierista,capoieristas +capon,capons +caponet,caponets +caponier,caponiers +caponiere,caponieres +caponiid,caponiids +caporal,caporals +caporegime,caporegimes +capotasto,capotastos +capot,capots +capote,capotes +capouch,capouches +cappabar,cappabars +cappa,cappae +Cappadocian,Cappadocians +cappa magna,cappae magnae +cappeline,cappelines +capperbar,capperbars +capper,cappers +capping,cappings +capping plane,capping planes +cap product,cap products +cappuccio,cappuccios,cappucci +caprate,caprates +caprellid,caprellids +capriccio,capriccios +caprice,caprices +Capricorn,Capricorns +Capricornian,Capricornians +caprid,caprids +caprifig,caprifigs +caprifole,caprifoles +caprimulgid,caprimulgids +caprine,caprines +capriole,caprioles +capripoxvirus,capripoxviruses +capris,capris +caproate,caproates +caproid,caproids +caprolactone,caprolactones +capromyid,capromyids +caproyl,caproyls +caprylate,caprylates +capryloyl,capryloyls +capsaicinoid,capsaicinoids +cap screw,cap screws +capscrew,capscrews +capsheaf,capsheafs +cap sheet,cap sheets +capsicum,capsicums +capsicum spray,capsicum sprays +capsid,capsids +capsizer,capsizers +capsizing,capsizings +caps lock,caps locks +Caps Lock,Caps Locks +capsomer,capsomers +capsomere,capsomeres +capsquare,capsquares +capstan,capstans +capstan screw,capstan screws +capstone,capstones +capsular ligament,capsular ligaments +capsulation,capsulations +capsule,capsules +capsule hotel,capsule hotels +capsule review,capsule reviews +capsulization,capsulizations +capsulorhexis,capsulorhexes +capsulotomy,capsulotomies +captain,captains +captaincy,captaincies +captaine,captaines +captainess,captainesses +captain general,captains general,captain generals +Captain Kirk,Captain Kirks +captain of industry,captains of industry +captainry,captainries +captainship,captainships +captain's servant,captain's servants +captation,captations +captayne,captaynes +captayneship,captayneships +captcha,captchas +Captcha,Captchas +CAPTCHA,CAPTCHAs +caption,captions +captioner,captioners +captivation,captivations +captivator,captivators +captive,captives +captivity,captivities +captor,captors +captorhinid,captorhinids +captour,captours +capture,captures +capturer,capturers +capuccio,capuccios +capuche,capuches +capuchin,capuchins +capuchin monkey,capuchin monkeys +capucine,capucines +capulet,capulets +Capulet,Capulets +capulid,capulids +capulin,capulins +caput,caputs,capita +capybara,capybaras +caquelon,caquelons +carabao,carabaos +carabid,carabids +carabine,carabines +carabineer,carabineers +carabiner,carabiners +carabinero,carabineros +carabinier,carabiniers +caracal,caracals +caracanthid,caracanthids +caracara,caracaras +caracca,caraccas +carac,caracs +carack,caracks +caracol,caracols +caracole,caracoles +caracora,caracoras +caracore,caracores +caract,caracts +caracul,caraculs +carafe,carafes +caragana,caraganas +car alarm,car alarms +carambola,carambolas +caramel apple,caramel apples +caramel,caramels +caramoussal,caramoussals +caramusa,caramusas +carangid,carangids +caranx,caranxes +carapace,carapaces +carapato,carapatos +carapax,carapaxes +carapid,carapids +Caraquenian,Caraquenians +caratage,caratages +carat,carats +caravan,caravans +caravaneer,caravaneers +caravanette,caravanettes +caravanner,caravanners +caravan park,caravan parks +caravansarai,caravansarais +caravansary,caravansaries +caravanserai,caravanserais +caravel,caravels +carbaalanate,carbaalanates +carbaalane,carbaalanes +carbaborane,carbaboranes +carbacephem,carbacephems +carbaldehyde,carbaldehydes +carbamate,carbamates +carbamide,carbamides +carbamidomethylation,carbamidomethylations +carbamine,carbamines +carbamoyl,carbamoyls +carbamoyltransferase,carbamoyltransferases +carbamyl,carbamyls +carbanion,carbanions +carbanucleoside,carbanucleosides +carbapenemase,carbapenemases +carbapenem,carbapenems +car barn,car barns +carbaryl,carbaryls +carbathymidine,carbathymidines +car battery,car batteries +carbazole,carbazoles +carbazolyl,carbazolyls +carbazone,carbazones +carbazoquinocin,carbazoquinocins +carbazotate,carbazotates +carb,carbs +carbeam,carbeams +carbene analogue,carbene analogues +carbene,carbenes +carbenium,carbeniums +carbenium ion,carbenium ions +carbenoid,carbenoids +carbide,carbides +carbide lamp,carbide lamps +carbide planet,carbide planets +carbinamine,carbinamines +carbine,carbines +carbineer,carbineers +carbinolamine,carbinolamines +carbinyl,carbinyls +carbivore,carbivores +carboalumination,carboaluminations +carbo,carbos +carbocation,carbocations +carbochlorination,carbochlorinations +carbocyanine,carbocyanines +carbocycle,carbocycles +carbodiimide,carbodiimides +car-body van,car-body vans +carbohelicene,carbohelicenes +carbohydrase,carbohydrases +carbohydrate,carbohydrates +carbohydride,carbohydrides +carbolate,carbolates +carbolic soap,carbolic soaps +carboline,carbolines +car bomb,car bombs +carbomer,carbomers +carbometallation,carbometallations +carbonaceous chondrite,carbonaceous chondrites +carbonade,carbonades +carbonado,carbonados,carbonadoes +carbonado,carbonados,carbonadoes +carbonamide,carbonamides +carbonara,carbonaras +carbon arc,carbon arcs +carbonate,carbonates +carbonated water,carbonated waters +carbonatite,carbonatites +carbonatization,carbonatizations +carbonator,carbonators +carbon audit,carbon audits +carbon copy,carbon copies +carbon cost,carbon costs +carbon credit,carbon credits +carbon cycle,carbon cycles +carbon dating,carbon datings +carbon debt,carbon debts +carbon fiber,carbon fibers +carbon fibre,carbon fibres +carbon fixation,carbon fixations +carbon footprint,carbon footprints +carbonic anhydrase,carbonic anhydrases +carbonide,carbonides +carbonisation,carbonisations +carbonite,carbonites +carbonitrile,carbonitriles +carbonium,carboniums +carbonium ion,carbonium ions +carbonization,carbonizations +carbon leakage,carbon leakages +carbon market,carbon markets +carbon microphone,carbon microphones +carbonnade,carbonnades +carbon nanofiber,carbon nanofibers +carbon nanofibre,carbon nanofibres +carbon nanofoam,carbon nanofoams +carbon nanotube,carbon nanotubes +carbon offset,carbon offsets +carbonometer,carbonometers +carbonothioyl,carbonothioyls +carbon oxide,carbon oxides +carbon paper,carbon papers +carbon planet,carbon planets +carbon print,carbon prints +carbon printing,carbon printings +carbon process,carbon processs +carbon resistor,carbon resistors +carbon star,carbon stars +carbon steel,carbon steels +carbon tax,carbon taxes +carbon tetrabromide,carbon tetrabromides +carbon tetraiodide,carbon tetraiodides +carbon trade,carbon trades +carbon transmitter,carbon transmitters +carbonylation,carbonylations +carbonyl,carbonyls +car boot,car boots +car-booter,car-booters +car boot sale,car boot sales +carbopalladation,carbopalladations +carborane,carboranes +carboreduction,carboreductions +carborexic,carborexics +carbosilane,carbosilanes +carboskeleton,carboskeletons +carbothermal reduction,carbothermal reductions +carbothioamide,carbothioamides +carbowax,carbowaxes +carboxaldehyde,carboxaldehydes +carboxamide,carboxamides +carboxamidine,carboxamidines +carboxide,carboxides +carboximidoyl,carboximidoyls +carboxydipeptidase,carboxydipeptidases +carboxydotroph,carboxydotrophs +carboxyethyl,carboxyethyls +carboxyglutamate,carboxyglutamates +carboxyglutamic acid,carboxyglutamic acids +carboxykinase,carboxykinases +carboxylase,carboxylases +carboxylate,carboxylates +carboxylation,carboxylations +carboxyl,carboxyls +carboxylesterase,carboxylesterases +carboxylic acid,carboxylic acids +carboxyl methyltransferase,carboxyl methyltransferases +carboxylmethyltransferase,carboxylmethyltransferases +carboxymethylation,carboxymethylations +carboxymethyl,carboxymethyls +carboxymethyl cellulose,carboxymethyl celluloses +carboxymethylcellulose,carboxymethylcelluloses +carboxypeptidase,carboxypeptidases +carboxyphenyl,carboxyphenyls +carboxyprothrombin,carboxyprothrombins +carboxysome,carboxysomes +carboy,carboys +car bra,car bras +carbuncle,carbuncles +carburation,carburations +carburetant,carburetants +carburet,carburets +carbureter,carbureters +carburetion,carburetions +carburetor,carburetors +carburetter,carburetters +carburettor,carburettors +carburization,carburizations +carby,carbies +carbylamine,carbylamines +carbyne,carbynes +carbynium,carbyniums +carcajou,carcajous +carcanet,carcanets +car carrier,car carriers +car,cars +car,cars +carcase,carcases +carcass,carcasses +carcel,carcels +Carcel lamp,Carcel lamps +carcerand,carcerands +carcharhinid,carcharhinids +carcharhiniform,carcharhiniforms +carcharodontosaurid,carcharodontosaurids +Carcharodontosaurus,Carcharodontosauruses +car chase,car chases +carcineretid,carcineretids +carcinid,carcinids +carcinogen,carcinogens +carcinoid,carcinoids +carcinologist,carcinologists +carcinoma,carcinomas,carcinomata +carcinomatosis,carcinomatoses +carcinophorid,carcinophorids +carcinosarcoma,carcinosarcomas,carcinosarcomata +carcinosomatid,carcinosomatids +carcinostatic,carcinostatics +car coat,car coats +carcoat,carcoats +cardamom,cardamoms +cardanolide,cardanolides +cardboard box,cardboard boxes +cardboard-box,cardboard-boxes +cardboardbox,cardboardboxes +cardboard city,cardboard cities +cardcase,cardcases +card counter,card counters +cardecu,cardecus +cardenolide,cardenolides +carder,carders +card game,card games +cardgame,cardgames +cardholder,cardholders +cardia,cardias,cardiae +cardiac arrest,cardiac arrests +cardiac,cardiacs +cardiacle,cardiacles +cardiac muscle,cardiac muscles +cardiac tamponade,cardiac tamponades +cardiagraph,cardiagraphs +cardi,cardis,cardies +cardie,cardies +Cardiffian,Cardiffians +cardigan,cardigans +cardiid,cardiids +cardinal adjective,cardinal adjectives +cardinalate,cardinalates +cardinal beetle,cardinal beetles +cardinal bishop,cardinal bishops +cardinal,cardinals +Cardinal,Cardinals +cardinal direction,cardinal directions +cardinalfish,cardinalfishes +cardinalid,cardinalids +cardinalin,cardinalins +cardinalist,cardinalists +cardinality,cardinalities +cardinal nephew,cardinal nephews +cardinal-nephew,cardinal-nephews +Cardinal Nephew,Cardinal Nephews +cardinal number,cardinal numbers +cardinal numeral,cardinal numerals +cardinal point,cardinal points +cardinal rule,cardinal rules +cardinalship,cardinalships +cardinal sin,cardinal sins +cardinal spider,cardinal spiders +cardinal symptom,cardinal symptoms +cardinal tetra,cardinal tetras +cardinal variable,cardinal variables +carding,cardings +carding machine,carding machines +cardioblast,cardioblasts +cardiocyte,cardiocytes +cardioectomy,cardioectomies +cardioembolism,cardioembolisms +cardiogram,cardiograms +cardiogramme,cardiogrammes +cardiograph,cardiographs +cardioid,cardioids +cardiolipin,cardiolipins +cardiologist,cardiologists +cardiomegaly,cardiomegalies +cardiomyoblast,cardiomyoblasts +cardiomyocyte,cardiomyocytes +cardiomyoliposis,cardiomyoliposes +cardiomyopathy,cardiomyopathies +cardiopathy,cardiopathies +cardioplegia,cardioplegias +cardiopulmonary resuscitation,cardiopulmonary resuscitations +cardiosphygmograph,cardiosphygmographs +cardiostimulator,cardiostimulators +cardiotocograph,cardiotocographs +cardiotomy,cardiotomies +cardiotoxin,cardiotoxins +cardiovascular disease,cardiovascular diseases +cardioverter,cardioverters +cardiovertor,cardiovertors +cardiovirus,cardioviruses +carditid,carditids +card key,card keys +cardmaker,cardmakers +cardmember,cardmembers +cardo,cardos,cardoes +card of ten,cards of ten +cardoon,cardoons +car door,car doors +car door handle,car door handles +cardphone,cardphones +cardplayer,cardplayers +card punch,card punches +card-room,card-rooms +cardroom,cardrooms +cardshark,cardsharks +cardsharp,cardsharps +cardsharper,cardsharpers +card table,card tables +cardtable,cardtables +card tart,card tarts +carduelid,carduelids +cardy,cardies +carebear,carebears +Care Bear,Care Bears +careenage,careenages +career break,career breaks +career,careers +career criminal,career criminals +career expo,career expos +career fair,career fairs +careerist,careerists +career-limiting move,career-limiting moves +carefrontation,carefrontations +care-giver,care-givers +caregiver,caregivers +care home,care homes +careline,carelines +carene,carenes +care package,care packages +carer,carers +caress,caresses +caresser,caressers +caretaker,caretakers +caretaker government,caretaker governments +caret,carets +caret,carets +carettochelyid,carettochelyids +careworker,careworkers +carex,carexes,carices +carfare,carfares +carfax,carfaxes +carful,carfuls,carsful +cargason,cargasons +cargo bin,cargo bins +cargo cult,cargo cults +cargoe,cargoes +cargo hold,cargo holds +cargo jack,cargo jacks +cargo net,cargo nets +cargoose,cargeese +cargo pallet,cargo pallets +cargoplane,cargoplanes +cargo ship,cargo ships +cargoship,cargoships +cargo vessel,cargo vessels +car hop,car hops +carhop,carhops +car-house,car-houses +carhouse,carhouses +cariad,cariads +cariamid,cariamids +Carian,Carians +Caribbeanist,Caribbeanists +Caribbean monk seal,Caribbean monk seals +Caribbee,Caribbees +Carib,Caribs,Carib +caribe,caribes +caribou,caribous,caribou +caribouskin,caribouskins +caricatura,caricaturas +caricature,caricatures +caricaturist,caricaturists +carid,carids +caridean,carideans +caridoid,caridoids +caries,caries +carignan,carignans +carillon,carillons +carillonist,carillonists +carillonneur,carillonneurs +carina,carinas,carinae +carinaria,carinarias +carinariid,carinariids +carinate abdomen,carinate abdomens +carination,carinations +carine,carines +cariole,carioles +cariopsis,cariopses +cariostat,cariostats +caristiid,caristiids +caritive case,caritive cases +carjacker,carjackers +car jacking,car jackings +car-jacking,car-jackings +carjacking,carjackings +čÑrka,čÑrky +carkanet,carkanets +cark,carks +carlavirus,carlaviruses +carl,carls +carle,carles +Carley float,Carley floats +carlin,carlins +carline,carlines +carline,carlines +carline,carlines +carline thistle,carline thistles +carling,carlings +carling,carlings +Carling Sunday,Carling Sundays +Carlist,Carlists +carload,carloads +carlot,carlots +carmagnole,carmagnoles +carmaker,carmakers +carman,carmen +Carmathian,Carmathians +Carmatian,Carmatians +Carmelite,Carmelites +carminative,carminatives +carmine,carmines +carmovirus,carmoviruses +carnalist,carnalists +carnallite,carnallites +carnary,carnaries +carnassial,carnassials +carnauba,carnaubas +carnauba wax,carnauba waxes +carnet,carnets +carnid,carnids +carnie,carnies +carnifex,carnifexes +Carniolan honeybee,Carniolan honeybees +carnival,carnivals +carnivoran,carnivorans +carnivore,carnivores +carnivorism,carnivorisms +carnivorous plant,carnivorous plants +carnosaur,carnosaurs +carny,carnies +carnyx,carnyces,carnyxes +carob,carobs +caroche,caroches +carol,carols +caroler,carolers +Carolina dog,Carolina dogs +Carolina pink,Carolina pinks +Carolina wren,Carolina wrens +carolin,carolins +caroline,carolines +caroling,carolings +Carolingian,Carolingians +Carolingian cross,Carolingian crosses +Carolinian,Carolinians +caroller,carollers +carolling,carollings +carol singer,carol singers +Carolus,Caroluses +carom,caroms +caromel,caromels +caron,carons +carosse,carosses +caroteel,caroteels +carotenal,carotenals +carotene,carotenes +carotenoic acid,carotenoic acids +carotenoid,carotenoids +carotid artery,carotid arteries +carotid,carotids +carousal,carousals +carous,carouses +carouse,carouses +carousel,carousels +carouser,carousers +carpal bone,carpal bones +carpal canal,carpal canals +carpal,carpals +carpale,carpalia +carpal tunnel,carpal tunnels +car park,car parks +carpark,carparks +carpathite,carpathites +carp bream,carp breams +carp,carp,carps +carpel,carpels +carpenter ant,carpenter ants +carpenter,carpenters +carpenter's pencil,carpenter's pencils +carpenter's square,carpenter's squares +carper,carpers +carpetbag,carpetbags +carpet bagger,carpet baggers +carpetbagger,carpetbaggers +carpet burn,carpet burns +carpet,carpets +carpetimycin,carpetimycins +carpet kisser,carpet kissers +carpetmaker,carpetmakers +carpetmonger,carpetmongers +carpet muncher,carpet munchers +carpetmuncher,carpetmunchers +carpet python,carpet pythons +carpet shark,carpet sharks +carpet snake,carpet snakes +carpetway,carpetways +car phone,car phones +carphone,carphones +carpiliid,carpiliids +carping,carpings +carpintero,carpinteros +carplane,carplanes +Carpocratian,Carpocratians +carpoid,carpoids +carpolestid,carpolestids +carpolite,carpolites +carpologist,carpologists +carpometacarpus,carpometacarpi +carpool,carpools +car pooler,car poolers +car-pooler,car-poolers +carpooler,carpoolers +carpophore,carpophores +carpophyll,carpophylls +carpophyte,carpophytes +carport,carports +carposinid,carposinids +carpospore,carpospores +carpsucker,carpsuckers +carpule,carpules +carpus,carpi +carrack,carracks +car radio,car radios +carrageenan,carrageenans +carrageenin,carrageenins +carrancha,carranchas +carrao,carraos +carr,carrs +carrel,carrels +carriable,carriables +Carriacouan,Carriacouans +carriage bolt,carriage bolts +carriagebuilder,carriagebuilders +carriage,carriages +carriage clock,carriage clocks +carriage control character,carriage control characters +carriage door,carriage doors +carriage house,carriage houses +carriagemaker,carriagemakers +carriage return,carriage returns +carriageway,carriageways +carriboo,carriboos +carrick bend,carrick bends +carrick,carricks +carrier bag,carrier bags +carrier,carriers +carrier gas,carrier gases +carrier pigeon,carrier pigeons +carrier-pigeon,carrier-pigeons +carrier protein,carrier proteins +carrier shell,carrier shells +carrier wave,carrier waves +carriole,carrioles +carrion crow,carrion crows +carriwitchet,carriwitchets +carrol,carrols +Carroll,Carrolls +carrom,carroms +carronade,carronades +carrot and stick,carrots and sticks +carrot and stick,carrots and sticks +carrot-and-stick,carrots-and-sticks +carrot bag,carrot bags +carrot cruncher,carrot crunchers +carrot top,carrot tops +carrot-top,carrot-tops +carrottop,carrottops +carrotwood,carrotwoods +carrousel,carrousels +carrow,carrows +carryable,carryables +carryall,carryalls +carryback,carrybacks +carry,carries +carrycot,carrycots +carryforward,carryforwards +carrying capacity,carrying capacities +carrying,carryings +carrying violation,carrying violations +carryon,carryons +Carry On film,Carry On films +carryover,carryovers +carrytale,carrytales +carsaf,carsafs +car seat,car seats +carse,carses +cart00ney,cart00nies +cart,carts +cart,carts +CART,CARTs +carte blanche,cartes blanches +carte,cartes +carte de visite,cartes de visite +cartel,cartels +cartelization,cartelizations +carter,carters +Cartesian,Cartesians +Cartesian circle,Cartesian circles +cartesian closed category,cartesian closed categories +Cartesian coordinate,Cartesian coordinates +Cartesian devil,Cartesian devils +cartesian distance,cartesian distances +Cartesian distance,Cartesian distances +Cartesian diver,Cartesian divers +Cartesian doubt,Cartesian doubts +Cartesian grid,Cartesian grids +Cartesian product,Cartesian products +cartful,cartfuls,cartsful +carthorse,carthorses +carthoun,carthouns +Carthusian,Carthusians +cartilaginoid,cartilaginoids +cartilaginous fish,cartilaginous fishes +carting,cartings +cartload,cartloads +cartman,cartmen +cartogram,cartograms +cartograph,cartographs +cartographer,cartographers +cartographist,cartographists +cartomancer,cartomancers +cartomizer,cartomizers +carton,cartons +cartonful,cartonfuls,cartonsful +cartonnier,cartonniers +cartoon,cartoons +cartoon character,cartoon characters +cartooney,cartoonies +cartoonist,cartoonists +cartouch,cartouches +cartouche,cartouches +car transporter,car transporters +cartridge box,cartridge boxes +cartridge,cartridges +cartridge ejector,cartridge ejectors +cartridge pen,cartridge pens +cartshed,cartsheds +cart stall,cart stalls +cartulary,cartularies +cartway,cartways +cartwheel,cartwheels +cartwhip,cartwhips +cartwhipping,cartwhippings +cartwright,cartwrights +carucate,carucates +caruncle,caruncles +caruncula,carunculae +carve,carves +carvel,carvels +carveol,carveols +carveout,carveouts +carver,carvers +carvery,carveries +carve up,carve ups +carving,carvings +carving knife,carving knives +carvol,carvols +car wash,car washes +carwash,carwashes +carwasher,carwashers +car wheel,car wheels +carwhichet,carwhichets +caryatid,caryatids +carybdeid,carybdeids +carychiid,carychiids +caryodid,caryodids +caryophyllene,caryophyllenes +caryophyllid,caryophyllids +caryophylliid,caryophylliids +caryopsis,caryopses +casaba,casabas +casa,casas +casanova,casanovas +Casanova,Casanovas +casbah,casbahs +cascabel,cascabels +cascade,cascades +cascade particle,cascade particles +Cascadian,Cascadians +cascadura,cascaduras +cascara,cascaras +cascarilla,cascarillas +caschrom,caschroms +casco,cascos +caseate,caseates +case badge,case badges +case book,case books +case-book,case-books +casebook,casebooks +case,cases +case,cases +case citation,case citations +case clock,case clocks +case ending,case endings +case fan,case fans +case fraction,case fractions +caseful,casefuls +case history,case histories +caseid,caseids +caseinate,caseinates +case in point,cases in point +case knife,case knives +case law,case laws +caseload,caseloads +casemate,casemates +casement,casements +casement window,casement windows +caseness,casenesses +case officer,case officers +case quarter,case quarters +caser,casers +case report,case reports +case reporter,case reporters +casern,caserns +case-sensitivity,case-sensitivities +case shot,case shots +case study,case studies +casevac,casevacs +CASEVAC,CASEVACs +caseworker,caseworkers +caseworm,caseworms +cash advance,cash advances +cash bar,cash bars +cashbook,cashbooks +cash box,cash boxes +cash-box,cash-boxes +cashbox,cashboxes +cash,cash +cash cow,cash cows +cash crop,cash crops +cash desk,cash desks +cashdesk,cashdesks +cash dispenser,cash dispensers +cashectomy,cashectomies +cashed up bogan,cashed up bogans +casher,cashers +cashew apple,cashew apples +cashew,cashews +cashew nut,cashew nuts +cash flow,cash flows +cash-flow,cash-flows +cashflow,cashflows +cash game,cash games +cashier,cashiers +cashierer,cashierers +cashier's check,cashier's checks,cashiers' checks +cash instrument,cash instruments +cash machine,cash machines +cashmere,cashmeres +cashmerette,cashmerettes +cashmire,cashmires +cashout,cashouts +cashpoint,cashpoints +cash position,cash positions +cash register,cash registers +cashspiel,cashspiels +Casimir effect,Casimir effects +Casimir force,Casimir forces +casing,casings +casing nail,casing nails +casing shoe,casing shoes +casino,casinos,casinoes +casita,casitas +cask,casks +casket,caskets +casomorphin,casomorphins +casomorphine,casomorphines +caspase,caspases +Caspian roach,Caspian roaches +Caspian tern,Caspian terns +Caspian tiger,Caspian tigers +casque,casques +cassada,cassadas +Cassandra,Cassandras +cassation,cassations +cassation,cassations +cassava,cassavas +casserole,casseroles +cassette,cassettes +cassette drive,cassette drives +cassette player,cassette players +cassette recorder,cassette recorders +cassette tape,cassette tapes +cassican,cassicans +cassid,cassids +cassidony,cassidonies +cassinette,cassinettes +cassingle,cassingles +Cassinian oval,Cassinian ovals +Cassini oval,Cassini ovals +cassiopeid,cassiopeids +cassiopid,cassiopids +cassock,cassocks +cassolette,cassolettes +cassonade,cassonades +cassone,cassones,cassoni +cassoulet,cassoulets +cassowary,cassowaries +Cassubian,Cassubians +castable,castables +castanet,castanets +castanetist,castanetists +castaway,castaways +cast,casts +caste,castes +castellan,castellans +castellanus,castellani +castellany,castellanies +castellation,castellations +castell,castells +casteller,castellers +castellite,castellites +Castellite,Castellites +castellum,castella +Castelnau's antshrike,Castelnau's antshrikes +caster,casters +cast fossil,cast fossils +castigator,castigators +castigatory,castigatories +Castilian,Castilians +casting agent,casting agents +casting,castings +casting couch,casting couches +casting-couch,casting-couchs +castlebuilder,castlebuilders +castle,castles +castle-guard,castle-guards +castle in the air,castles in the air +castle nut,castle nuts +castlery,castleries +castlet,castlets +castlette,castlettes +castleward,castlewards +castling,castlings +castmate,castmates +castmember,castmembers +cast net,cast nets +castniid,castniids +castoff,castoffs +castor bean,castor beans +castor,castors +castorid,castorids +castor oil,castor oils +castor-oil,castor-oils +castrametation,castrametations +castrato,castratos,castrati +castrator,castrators +castratrix,castratrices +castrel,castrels +Castrist,Castrists +Castrophile,Castrophiles +casual,casuals +casual Friday,casual Fridays +casual game,casual games +casualisation,casualisations +casualist,casualists +casualty,casualties +casual ward,casual wards +casuarid,casuarids +casuariid,casuariids +casuarina,casuarinas +casuarina cockatoo,casuarina cockatoos +casuist,casuists +casuistics,casuistics +casus belli,casus belli +Catabaptist,Catabaptists +catabasion,catabasia +catabolite,catabolites +catabolization,catabolizations +catacaustic,catacaustics +catachresis,catachreses +cataclysm,cataclysms +cataclysmist,cataclysmists +catacomb,catacombs +catadrome,catadromes +catafalco,catafalcoes +catafalque,catafalques +catagen,catagens +cataglottis,cataglottis +cataholic,cataholics +Cataian,Cataians +Catalan,Catalans +Catalanism,Catalanisms +Catalanization,Catalanizations +Catalan number,Catalan numbers +Catalanophile,Catalanophiles +Catalan solid,Catalan solids +catalepsy,catalepsies +cataleptic,cataleptics +catalexis,catalexes +catalina coupon,catalina coupons +catalog,catalogs +cataloger,catalogers +catalogue,catalogues +catalogue raisonnΓ©,catalogues raisonnΓ©,catalogues raisonnΓ©s +cataloguer,cataloguers +Catalonian,Catalonians +cataloreactant,cataloreactants +catalpa,catalpas +catalufa,catalufas +catalyser,catalysers +catalysis,catalyses +catalyst,catalysts +catalytic activity,catalytic activities +catalytic agent,catalytic agents +catalytic converter,catalytic converters +catalyzer,catalyzers +catamaran,catamarans +catamenia,catamenia +catamite,catamites +catamorphism,catamorphisms +catamount,catamounts +catapan,catapans +catapasm,catapasms +cataphile,cataphiles +cataphora,cataphoras +cataphoresis,cataphoreses +cataphract,cataphracts +cataphyll,cataphylls +cataplasm,cataplasms +cataplexy,cataplexies +catapult,catapultΓ¦,catapults +catapulter,catapulters +catapultier,catapultiers +cataract,cataracts +cataraft,catarafts +catarrh,catarrhs +catarrhine,catarrhines +catastate,catastates +catasterism,catasterisms +catastrophe,catastrophes +catastrophΓ«,catastrophes,catastrophΓ«s +catastrophic kill,catastrophic kills +catastrophist,catastrophists +catatonia,catatonias +catatonic,catatonics +catawampus,catawampuses +catawba,catawbas +Catawba,Catawbas +Catawban,Catawbans +catazine,catazines +cat bear,cat bears +cat bird,cat birds +catbird,catbirds +catbird seat,catbird seats +catboat,catboats +catboater,catboaters +cat box,cat boxes +catbox,catboxes +cat burglar,cat burglars +catbutt,catbutts +cat cafΓ©,cat cafΓ©s +catcall,catcalls +catcaller,catcallers +catcatcher,catcatchers +cat,cats +cat,cats +cat,cats +cat,cats +Cat,Cats +catch-22,catch-22s +Catch-22,Catch-22s +catch-all,catch-alls +catchall,catchalls +catch-basin,catch-basins +catchbasin,catchbasins +catch breath,catch breaths +catch-breath,catch-breaths +catchcry,catchcries +catchdrain,catchdrains +catcher,catchers +catcher interference,catcher interferences +catcher's mitt,catcher's mitts,catchers' mitts +catcher-upper,catcher-uppers +catch fence,catch fences +catchfly,catchflies +catchlight,catchlights +catchline,catchlines +catchmark,catchmarks +catch-meadow,catch-meadows +catchment basin,catchment basins +catchment,catchments +catchpenny,catchpennies +catch phrase,catch phrases +catchphrase,catchphrases +catchpole,catchpoles +catchpole,catchpoles +catchpoll,catchpolls +catch up,catch ups +catch-up,catch-ups +catchup,catchups +catchwater,catchwaters +catchword,catchwords +catclaw,catclaws +cat cracker,cat crackers +cat door,cat doors +cate,cates +catechesis,catecheses +catechin,catechins +catechine,catechines +catechiser,catechisers +catechism,catechisms +catechist,catechists +catechization,catechizations +catechizing,catechizings +catecholamine,catecholamines +catecholase,catecholases +catecholate,catecholates +catecholborane,catecholboranes +catechu,catechus +catechumenate,catechumenates +catechumen,catechumens +catechumenist,catechumenists +categorial grammar,categorial grammars +categorical,categoricals +categorical dual,categorical duals +categorical imperative,categorical imperatives +categorical product,categorical products +categorical proposition,categorical propositions +categorical variable,categorical variables +categorification,categorifications +categorisation,categorisations +categoriser,categorisers +categorist,categorists +categorization,categorizations +categorizer,categorizers +category,categories +category killer,category killers +category mistake,category mistakes +catelectrode,catelectrodes +catena,catenas +catena compound,catena compounds +catenane,catenanes +catenary bridge,catenary bridges +catenary,catenaries +catenative verb,catenative verbs +catenator,catenators +catenicellid,catenicellids +catenin,catenins +catenoid,catenoids +catepan,catepans +cateran,caterans +cater,caters +cater,caters +cater-cousin,cater-cousins +caterer,caterers +cateress,cateresses +catering trolley,catering trolleys +caterpillar,caterpillars +caterpillar track,caterpillar tracks +caterpillar tree,caterpillar trees +caterwaul,caterwauls +caterwauler,caterwaulers +catery,cateries +catface,catfaces +catfall,catfalls +catfight,catfights +catfish,catfish,catfishes +catfisher,catfishers +catfisherman,catfishermen +cat flap,cat flaps +cat-flap,cat-flaps +catflap,catflaps +catgirl,catgirls +Cathar,Cathari,Cathars +cat-harpin,cat-harpins +catharpin,catharpins +cat-harping,cat-harpings +catharping,catharpings +catharsis,catharses +cathartical,catharticals +cathartic,cathartics +cathartick,catharticks +cathartid,cathartids +Cathayan,Cathayans +cath,caths +cathead,catheads +cathedra,cathedrae +cathedral,cathedrals +cathedral ceiling,cathedral ceilings +cathedral city,cathedral cities +cathedral close,cathedral closes +cathelicidin,cathelicidins +cathepsin,cathepsins +catheretic,catheretics +Catherine wheel,Catherine wheels +catheter,catheters +catheterisation,catheterisations +catheterism,catheterisms +catheterization,catheterizations +cathetometer,cathetometers +cathetus,catheti +cathexis,cathexes +cathode,cathodes +cathode dark space,cathode dark spaces +cathode ray,cathode rays +cathode ray tube,cathode ray tubes +cathode-ray tube,cathode-ray tubes +cathodoluminescence,cathodoluminescences +cat hole,cat holes +cat-hole,cat-holes +cathole,catholes +catholicate,catholicates +Catholic,Catholics +catholicon,catholicons +catholicos,catholicoses +cat house,cat houses +cat-house,cat-houses +cathouse,cathouses +catio,catios +cation,cations +cationic detergent,cationic detergents +cationization,cationizations +catitude,catitudes +catjang,catjangs +catkin,catkins +cat lady,cat ladies +catlicker,catlickers +catling,catlings +cat litter,cat litters +catloaf,catloaves +catmill,catmills +cat nap,cat naps +catnap,catnaps +catnapper,catnappers +catom,catoms +cat-o'-nine-tails,cats-o'-nine-tails +catopter,catopters +catoptric,catoptrics +catoptrid,catoptrids +catostomid,catostomids +catperson,catpeople +catrina,catrinas +CAT scan,CAT scans +cat's cradle,cat's cradles +catscratch,catscratches +cat's eye,cats' eyes +cat's-eye,cat's-eyes +cat's game,cat's games +catshark,catsharks +catsitter,catsitters +catskin,catskins +catslide roof,catslide roofs,catslide rooves +catso,catsos,catsoes +cat's paw,cat's paws +catspaw,catspaws +cat's-paw,cat's-paws,cats'-paws +CatSper,CatSpers +catstail,catstails +cat state,cat states +catstick,catsticks +cat stretch,cat stretches +catsuit,catsuits +cat's whisker,cat's whiskers +cattail,cattails +cattalo,cattalos,cattaloes +cattery,catteries +cattle beast,cattle beasts +cattle call,cattle calls +cattle car,cattle cars +cattle crush,cattle crushes +cattle dog,cattle dogs +cattle drive,cattle drives +cattle-drive,cattle-drives +cattle driver,cattle drivers +cattle egret,cattle egrets +cattle goad,cattle goads +cattle grid,cattle grids +cattleman,cattlemen +cattleperson,cattlepersons +cattle prod,cattle prods +cattle-prod,cattle-prods +cattleprod,cattleprods +cattle station,cattle stations +cattlewoman,cattlewomen +cattleya,cattleyas +cat tree,cat trees +Caturday,Caturdays +caturid,caturids +catwalk,catwalks +catwalker,catwalkers +catwoman,catwomen +caubeen,caubeens +Caucasian,Caucasians +Caucasian zelkova,Caucasian zelkovas +Caucasoid,Caucasoids +cauchie,cauchies +Cauchy distribution,Cauchy distributions +Cauchy-Schwarz inequality,Augustin-Louis Cauchy,Cauchy +Cauchy sequence,Cauchy sequences +Cauchy space,Cauchy spaces +caucus,caucuses +caucusgoer,caucusgoers +caucus race,caucus races +caucus race,caucus races +caudal,caudals +caudal fin,caudal fins +caudal keel,caudal keels +caudal peduncle,caudal peduncles +caudatan,caudatans +caudectomy,caudectomies +caudex,caudices +caudicle,caudicles +caudicula,caudiculas,caudiculae +caudillo,caudillos +caudinid,caudinids +cauf,cauves +cauf,cauves +caul,cauls +cauldron,cauldrons +cauldronful,cauldronfuls,cauldronsful +caulicle,caulicles +cauliculus,cauliculi +cauliflower,cauliflowers +cauliflower ear,cauliflower ears +caulis,caules +caulker,caulkers +caulking iron,caulking irons +caulophrynid,caulophrynids +caup,caups +cauri,cauris +causal,causals +causality,causalities +causal ontology,causal ontologies +causal set,causal sets +causationist,causationists +causative,causatives +causator,causators +cause,causes +cause cΓ©lΓ¨bre,causes cΓ©lΓ¨bres +causee,causees +cause of action,causes of action +causer,causers +causerie,causeries +causet,causets +causeuse,causeuses +causeway,causeways +causey,causeys +causeymaker,causeymakers +caustic,caustics +caustic curve,caustic curves +caustic surface,caustic surfaces +caustification,caustifications +cauterant,cauterants +cauter,cauters +cauteriser,cauterisers +cauterization,cauterizations +cauterizer,cauterizers +cautery,cauteries +cautionary tale,cautionary tales +caution,cautions +cautioner,cautioners +cautionry,cautionries +Cavachon,Cavachons +cavalcade,cavalcades +cavalero,cavaleros +cavalier,cavaliers +cavalierism,cavalierisms +cavaliero,cavalieros,cavalieroes +cavally,cavallies +cavalry,cavalries +cavalryman,cavalrymen +cavalrywoman,cavalrywomen +cavaquinho,cavaquinhos +cavatina,cavatinas +caveat,caveats +caveat loan,caveat loans +caveator,caveators +cave bear,cave bears +caveboy,caveboys +cave,caves +cave dweller,cave dwellers +cavefish,cavefishes,cavefish +cavegirl,cavegirls +cave in,cave ins +cave-in,cave-ins +cave lion,cave lions +caveman,cavemen +cavemouth,cavemouths +caveola,caveolae +caveolin,caveolins +caveosome,caveosomes +cave painting,cave paintings +cave pearl,cave pearls +caver,cavers +cavern,caverns +cavesson,cavessons +cavetto,cavettos,cavetti +cavewoman,cavewomen +cavezon,cavezons +cavicorn,cavicorns +caviid,caviids +cavilation,cavilations +cavil,cavils +caviler,cavilers +caviling,cavilings +cavillation,cavillations +caviller,cavillers +cavilling,cavillings +cavin,cavins +caviomorph,caviomorphs +cavitand,cavitands +cavitation,cavitations +cavity,cavities +cavity resonator,cavity resonators +cavity wall,cavity walls +cavo-atrial junction,cavo-atrial junctions +cavoatrial junction,cavoatrial junctions +cavoliniid,cavoliniids +cavorting,cavortings +cavum,cava +cavy,cavies +caw,caws +cawker,cawkers +caxixi,caxixis +caxon,caxons +Caxton,Caxtons +cay,cays +cayenne pepper,cayenne peppers +Cayley complex,Cayley complexes +Cayley graph,Cayley graphs +Cayley table,Cayley tables +cayman,caymans +Caymanian,Caymanians +caytonialean,caytonialeans +cayuca,cayucas +cayuco,cayucos +Cayuga,Cayugas,Cayuga +cayuse,cayuses +caza,cazas +cazic,cazics +cazique,caziques +CB radio,CB radios +c,c +CC boy,CC boys +C.,CC. +cc,ccs +CCD,CCDs +ccf,ccf +Ccf,Ccf +CCF,CCF +C-channel,C-channels +c*ck,c*cks +c*cksucker,c*cksuckers +C-clamp,C-clamps +C clef,C clefs +C-clef,C-clefs +C-clip,C-clips +C,Cs +c,cs,c's +CCU,CCUs +CCV,CCVs +CD3,CD3s +CD5,CD5s +CD burner,CD burners +cD,cDs +cddr,cddrs +CDer,CDers +cdesign proponentsist,cdesign proponentsists +CDing,CDings +CD key,CD keys +CDO-squared,CDO-squareds +CDP,CDPs +CD player,CD players +cdr,cdrs +CDRE,CDREs +CD-ROM,CD-ROMs +CD-ROM drive,CD-ROM drives +CD-RW,CD-RWs +ceanothus,ceanothuses +cease-fire,cease-fires +ceasefire,ceasefires +ceasing,ceasings +cebiche,cebiches +cebid,cebids +cebine,cebines +cebochoerid,cebochoerids +cecidium,cecidia +cecidomyid,cecidomyids +cecidomyiid,cecidomyiids +cecostomy,cecostomies +cecotrope,cecotropes +cecoureterocele,cecoureteroceles +cecropia,cecropias +cecropin,cecropins +cecum,ceca +cedar bird,cedar birds +cedar closet,cedar closets +cedent,cedents +cedi,cedis +cedilla,cedillas +cΓ©dille,cΓ©dilles +cedrat,cedrats +cedula,cedulas +cedule,cedules +cee,cees +cefalosporin,cefalosporins +cefotaximase,cefotaximases +ceiba,ceibas,ceiba +ceil,ceils +ceil function,ceil functions +ceili,ceilis +cΓ©ilidh,cΓ©ilidhs +ceilidh,ceilidhs,ceilidhean +ceilidh dance,ceilidh dances +ceiling,ceilings +ceiling fan,ceiling fans +ceiling function,ceiling functions +ceilometer,ceilometers +ceinid,ceinids +ceint,ceints +celadonite,celadonites +celandine,celandines +celatone,celatones +celature,celatures +cel,cels +celeb,celebs +celebrant,celebrants +celebration,celebrations +celebrator,celebrators +celebreality,celebrealities +celebretard,celebretards +celebrity,celebrities +celebutant,celebutants +celebutante,celebutantes +celebutard,celebutards +celeripede,celeripedes +cΓ©lΓ©ripede,cΓ©lΓ©ripedes +celery,celeries +celery salt,celery salts +celery vase,celery vases +celesbian,celesbians +celesta,celestas +celeste,celestes +celestial body,celestial bodies +celestial,celestials +celestial,celestials +celestial equator,celestial equators +celestial object,celestial objects +celestial pole,celestial poles +Celestine,Celestines +Celestinian,Celestinians +celestist,celestists +celetoid,celetoids +celiac,celiacs +celibatarian,celibatarians +celibate,celibates +celibatist,celibatists +cella,cellae +cell-adhesion molecule,cell-adhesion molecules +cellar,cellars +cellar,cellars +cellar door,cellar doors +cellar dweller,cellar dwellers +cellarer,cellarers +cellaress,cellaresses +cellaret,cellarets +cellarette,cellarettes +cellarful,cellarfuls,cellarsful +cellarist,cellarists +cellarium,cellaria +cellarman,cellarmen +cellblock,cellblocks +cell,cells +cell,cells +cellco,cellcos +cell death,cell deaths +cell division,cell divisions +celleporid,celleporids +cell group,cell groups +cellie,cellies +cellist,cellists +cell line,cell lines +cellmate,cellmates +cell-mediated immune response,cell-mediated immune responses +cell membrane,cell membranes +cellobiohydrolase,cellobiohydrolases +cellobioside,cellobiosides +'cello,'cellos,'celli +cello,cellos,celli +celloidin,celloidins +cellophane noodle,cellophane noodles +cellosolve,cellosolves +Cellosolve,Cellosolves +cellotaph,cellotaphs +cell phone,cell phones +cellphone,cellphones +cell phone lot,cell phone lots +cellphone lot,cellphone lots +cell plate,cell plates +cellubrevin,cellubrevins +cellula,cellulae +cellular automaton,cellular automata,cellular automatons +cellular,cellulars +cellular glass insulation,cellular glass insulations +cellularity,cellularities +cellularization,cellularizations +cellular mobile,cellular mobiles +cellular phone,cellular phones +cellular telephone,cellular telephones +cellular virome,cellular viromes +cellulase,cellulases +cellule,cellules +cellulosome,cellulosomes +cell wall,cell walls +cell-wall,cell-walls +celly,cellies +celoma,celomas +celom,celoms +celotomy,celotomies +celsius,celsius +celt,celts +Celtiberian,Celtiberians +Celtic cross,Celtic crosses +Celticism,Celticisms +celticist,celticists +Celtic Wiccan,Celtic Wiccans +celtuce,celtuces +celyphid,celyphids +cembalo,cembalos,cembali +cembra,cembras +cementation,cementations +cement copper,cement coppers +cementer,cementers +cementhead,cementheads +cement mixer,cement mixers +cemetery,cemeteries +cenacle,cenacles +cenancestor,cenancestors +cene,cenes +cenobite,cenobites +cenogram,cenograms +cenome,cenomes +cenosphere,cenospheres +cenotaph,cenotaphs +cenotaphy,cenotaphies +cenote,cenotes +cense,censes +censer,censers +censor,censors +censoring,censorings +censour,censours +censure,censures +censurer,censurers +census,censuses,censi +cental,centals +centare,centares +centaur,centaurs +Centaur,Centaurs +centauress,centauresses +centaurette,centaurettes +centauroid,centauroids +centaury,centauries +centavo,centavos +cent,cents,cent +centenar,centenars +centenarian,centenarians +centenary,centenaries +centenier,centeniers +centennial,centennials +center back,center backs +centerbit,centerbits +center-board,center-boards +centerboard,centerboards +center,centers +center circle,center circles +centerfield,centerfields +center fielder,center fielders +centerfielder,centerfielders +centerfire,centerfires +centerfold,centerfolds +center forward,center forwards +centerline,centerlines +centerman,centermen +center mark,center marks +center of attention,centers of attention +center of buoyancy,centers of buoyancy +center of curvature,centers of curvature +center of effort,center of efforts +center of gravity,centers of gravity +center of inertia,centers of inertia +center of lift,centers of lift +center of mass,centers of mass +center of symmetry,centers of symmetry +centerpiece,centerpieces +center punch,center punches +centerpunch,centerpunches +center spot,center spots +center spread,center spreads +center square,center squares +centesimo,centesimos +centesis,centeses +centesm,centesms +centiamp,centiamps +centiampere,centiamperes +centiare,centiares +centibel,centibels +centiday,centidays +centigrade,centigrades +centigram,centigrams +centigramme,centigrammes +centikatal,centikatals +centile,centiles +centiliter,centiliters +centilitre,centilitres +centiloquy,centiloquies +centime,centimes +centimeter,centimeters +centimetre,centimetres +centimo,centimos +centimorgan,centimorgans +centinel,centinels +centinewton,centinewtons +centipawn,centipawns +centiped,centipeds +centipede,centipedes +centipoise,centipoises +centisecond,centiseconds +centisome,centisomes +centistere,centisteres +centistoke,centistokes +centner,centners +cento,centos,centones +centonate,centonates +centracanthid,centracanthids +Central African,Central Africans +Central American,Central Americans +central angle,central angles +central bank,central banks +central business district,central business districts +central dogma,central dogmas +centrale,centralia +Central European,Central Europeans +central excise,central excises +centralisation,centralisations +centraliser,centralisers +centralist,centralists +centrality,centralities +centralization,centralizations +centralizer,centralizers +central limit theorem,central limit theorems +central location test,central location tests +central nervous system,central nervous systems +central pawn,central pawns +central processing unit,central processing units +central reservation,central reservations +central sulcus,central sulci +central trait,central traits +central vacuum,central vacuums +centrarchid,centrarchids +centre-axle trailer,centre-axle trailers +centre back,centre backs +centre-back,centre-backs +centreback,centrebacks +centrebit,centrebits +centre-board,centre-boards +centreboard,centreboards +centre,centres +centre circle,centre circles +centrefield,centrefields +centrefire,centrefires +centrefold,centrefolds +centre forward,centre forwards +centre-forward,centre-forwards +centre half,centre halves +centre-half,centre-halves +centreman,centremen +centre of attention,centres of attention +centre of buoyancy,centres of buoyancy +centre of curvature,centres of curvature +centre of effort,centre of efforts +centre of gravity,centres of gravity +centre of inertia,centres of inertia +centre of lift,centres of lift +centre of mass,centres of mass +centre of symmetry,centres of symmetry +centre parting,centre partings +centrepiece,centrepieces +centrepin,centrepins +centre spread,centre spreads +centre square,centre squares +centricity,centricities +centrifugal force,centrifugal forces +centrifugate,centrifugates +centrifuge,centrifuges +centring,centrings +centriole,centrioles +centriscid,centriscids +centrist,centrists +centroblast,centroblasts +centroceratid,centroceratids +centrocyte,centrocytes +centrode,centrodes +centroid,centroids +centrolenid,centrolenids +centrolinead,centrolineads +centrolophid,centrolophids +centromere,centromeres +centropagid,centropagids +centrophorid,centrophorids +centropomid,centropomids +centrosaurine,centrosaurines +centrosome,centrosomes +centrosphere,centrospheres +centrum,centra +centry,centries +centumvirate,centumvirates +centumvir,centumvirs,centumviri +centuplication,centuplications +centuriator,centuriators +centurion,centurions +centurist,centurists +century break,century breaks +century,centuries +century egg,century eggs +century plant,century plants +centzontle,centzontles +CEO,CEOs +cΓ©page,cΓ©pages +cep,ceps +cepe,cepes +cephalalgia,cephalalgias +cephalalgic,cephalalgics +cephalalgy,cephalalgies +cephalanthium,cephalanthia +cephalaspidomorph,cephalaspidomorphs +cephalgia,cephalgias +cephalic fin,cephalic fins +cephalin,cephalins +cephalization,cephalizations +cephalocarid,cephalocarids +cephalocaudal trend,cephalocaudal trends +cephalocele,cephaloceles +cephalochordate,cephalochordates +cephalodactyly,cephalodactylies +cephalogram,cephalograms +cephalohaematoma,cephalohaematomas,cephalohaematomata +cephalohematoma,cephalohematomas,cephalohematomata +cephalomere,cephalomeres +cephalometer,cephalometers +cephalomyid,cephalomyids +cephalon,cephalons +Cephalonian,Cephalonians +cephalophore,cephalophores +cephalopod,cephalopods +cephalopode,cephalopodes +cephalosome,cephalosomes +cephalosporin,cephalosporins +cephalostatin,cephalostatins +cephalothin,cephalothins +cephalothorax,cephalothoraxes,cephalothoraces +cephalotome,cephalotomes +cephalotribe,cephalotribes +cephalotripsy,cephalotripsies +cepham,cephams +cepheid,cepheids +cepheid variable,cepheid variables +cephem,cephems +cephid,cephids +cepolid,cepolids +cepstrum,cepstra +ceractinomorph,ceractinomorphs +cerambycid,cerambycids +ceramicist,ceramicists +ceramidase,ceramidases +ceramide,ceramides +ceramist,ceramists +ceraphronid,ceraphronids +ceras,cerata +cerastium,cerastiums +ceratiid,ceratiids +ceratitid,ceratitids +ceratobatrachid,ceratobatrachids +ceratobranchial,ceratobranchials +ceratodontid,ceratodontids +ceratohyal,ceratohyals +ceratophryid,ceratophryids +ceratophyllid,ceratophyllids +ceratopid,ceratopids +ceratopogonid,ceratopogonids +ceratopsian,ceratopsians +ceratopsid,ceratopsids +ceratosaur,ceratosaurs +ceratosaurian,ceratosaurians +ceratosaurid,ceratosaurids +ceraunoscope,ceraunoscopes +cercaria,cercariae +cercarian,cercarians +cercomegistid,cercomegistids +cercomonadid,cercomonadids +cercopid,cercopids +cercopithecid,cercopithecids +cercopithecin,cercopithecins +cercopithecoid,cercopithecoids +cercopod,cercopods +cercozoan,cercozoans +cercus,cerci +cereal bar,cereal bars +Cerealia,Cerealias +cerealogist,cerealogists +Cerean,Cereans +cerebation,cerebations +cerebel,cerebels +cerebellum,cerebellums,cerebella +cerebral aqueduct,cerebral aqueducts +cerebral cortex,cerebral cortices,cerebral cortexes +cerebral edema,cerebral edemas +cerebral hemisphere,cerebral hemispheres +cerebralist,cerebralists +cerebral localisation,cerebral localisations +cerebral localization,cerebral localizations +cerebrosidase,cerebrosidases +cerebroside,cerebrosides +cerebrotonia,cerebrotonias +cerebrovascular accident,cerebrovascular accidents +cerebrovasculature,cerebrovasculatures +cerebrum,cerebra,cerebrums +cere,ceres +cerecloth,cerecloths +cerement,cerements +ceremonial,ceremonials +ceremonial county,ceremonial counties +ceremonialism,ceremonialisms +ceremonialist,ceremonialists +ceremony,ceremonies +Cerenkov radiation,Pavel Alekseyevich Cherenkov,Cerenkov +cereologist,cereologists +cereology,cereologies +Cererian,Cererians +ceresin,ceresins +cereus,cereuses +cerin,cerins +Cerinthian,Cerinthians +cerionid,cerionids +ceriopyrochlore,ceriopyrochlores +ceriph,ceriphs +cerite,cerites +cerithiid,cerithiids +cerithiopsid,cerithiopsids +cermet,cermets +cero,ceros,ceroes +cerococcid,cerococcids +ceroferary,ceroferaries +cerofer,cerofers +cerograph,cerographs +ceroma,ceromata +ceroon,ceroons +cerophytid,cerophytids +cerrado,cerrados +certainty,certainties +certation,certations +cert,certs +certhid,certhids +certhiid,certhiids +certifiable,certifiables +certificate authority,certificate authorities +certificate,certificates +certificate of deposit,certificates of deposit +Certificate of Need,Certificates of Need +certification,certifications +certified check,certified checks +certified safety professional,certified safety professionals +certifier,certifiers +certiorari,certioraris +certitude,certitudes +cerumenolytic,cerumenolytics +cervelat,cervelats +cervical cap,cervical caps +cervical,cervicals +cervical collar,cervical collars +cervical smear,cervical smears +cervical spine,cervical spines +cervical vertebra,cervical vertebras,cervical vertebrae +cervicectomy,cervicectomies +cervid,cervids +cervix,cervixes,cervices +cervix uteri,cervices uteri,cervices uterorum +cerylid,cerylids +cerylonid,cerylonids +cesarean,cesareans +cesarean section,cesarean sections +cesarevitch,cesarevitches +CESG,CESGs +cessation,cessations +cessationist,cessationists +cessavit,cessavits +cess,cesses +cess,cesses +cesser,cessers +cessionary,cessionaries +cession,cessions +cessment,cessments +cessor,cessors +cesspipe,cesspipes +cess-pit,cess-pits +cesspit,cesspits +cesspool,cesspools +cest,cests +cestid,cestids +cestode,cestodes +cestoid,cestoids +cestoidean,cestoideans +cestraciont,cestracionts +Cestrian,Cestrians +cestrosphendone,cestrosphendones +cestus,cesti +cestuy,cestuys +cestuy que trust,cestuys que trust +cestuy que use,cestuys que use +cesura,cesuras +cetacean,cetaceans +cetane,cetanes +cetane number,cetane numbers +cetartiodactyl,cetartiodactyls +cete,cetes +ceterach,ceterachs +cetiosaurid,cetiosaurids +cetologist,cetologists +cetomimid,cetomimids +cetoniid,cetoniids +cetopsid,cetopsids +cetorhinid,cetorhinids +cetotheriid,cetotheriids +cetrarate,cetrarates +cetrimonium,cetrimoniums +Cetti's warbler,Cetti's warblers +cetyl,cetyls +ceviche,ceviches +Ceylonese,Ceyloneses,Ceylonese +cezve,cezves +CFA franc,CFA francs +C fiber,C fibers +CFLer,CFLers +CFP franc,CFP francs +CGI,CGIs +CGN,CGNs +chaat,chaats +chabasie,chabasies +chabazite,chabazites +chabouk,chabouks +chabrette,chabrettes +chabuk,chabuks +cha-cha-cha,cha-cha-chas +cha-cha,cha-chas +chacha,chachas +chachalaca,chachalacas +cha-ching,cha-chings +chachka,chachkas +chacid,chacids +chacma,chacmas +chaconne,chaconnes +Chaco nothura,Chaco nothuras +CH activation,CH activations +chadar,chadars +chaddar,chaddars +chaddi,chaddis +Chadian,Chadians +chadless punch,chadless punches +chador,chadors +chadri,chadris +chadur,chadurs +chaebol,chaebols +chaenopsid,chaenopsids +chaeta,chaetae +chaetiliid,chaetiliids +chaetodon,chaetodons +chaetodont,chaetodonts +chaetodontid,chaetodontids +chaetognath,chaetognaths +chΓ¦tognath,chΓ¦tognaths +chaetomellic acid,chaetomellic acids +chaetonotid,chaetonotids +chaetopod,chaetopods +chaetopterid,chaetopterids +chaetosomatid,chaetosomatids +chafer,chafers +chafer,chafers +chafery,chaferies +chafewax,chafewaxes +chaffer,chaffers +chafferer,chafferers +chaffern,chafferns +chaffinch,chaffinches +chaffing,chaffings +chaffwax,chaffwaxes +chaffweed,chaffweeds +chafing,chafings +chafing dish,chafing dishes +Chagossian,Chagossians +chainage,chainages +chaincase,chaincases +chain,chains +chain complex,chain complexes +chain drive,chain drives +chain ferry,chain ferries +chain gang,chain gangs +chain guard,chain guards +chain gun,chain guns +chaingun,chainguns +chaining,chainings +chainlet,chainlets +chain letter,chain letters +chainlink,chainlinks +chain locker,chain lockers +chainman,chainmen +chain of custody,chains of custody +chain-of-responsibility pattern,chain-of-responsibility patterns +chain of title,chains of title +chainplate,chainplates +chain pump,chain pumps +chain reaction,chain reactions +chainring,chainrings +chain saw,chain saws +chainsaw,chainsaws +chainsaw consultant,chainsaw consultants +chainset,chainsets +chain smoker,chain smokers +chain-smoker,chain-smokers +chainstay,chainstays +chain stitch,chain stitches +chain store,chain stores +chain story,chain stories +chain tower,chain towers +chainwale,chainwales +chairback,chairbacks +Chairboy,Chairboys +chair,chairs +chair conformation,chair conformations +chairholder,chairholders +chair lift,chair lifts +chairlift,chairlifts +chairmaker,chairmakers +chairman,chairmen +chairmanship,chairmanships +chair mat,chair mats +chairmat,chairmats +chairoplane,chairoplanes +chairperson,chairpersons,chairpeople +chairpersonship,chairpersonships +chair plug,chair plugs +chair rail,chair rails +chairwoman,chairwomen +chaise,chaises +chaise longue,chaise longues,chaises longues +chaise lounge,chaise lounges +chai tea,chai teas +chaitya,chaityas +chaiwallah,chaiwallahs +chaja,chajas +chakacha,chakachas +chakli,chaklis +Chakma,Chakmas,Chakma +chakra,chakras +chakram,chakrams +Chakravakam,Chakravakams +chalah,chalahs +chalaza,chalazas,chalazae +chalaze,chalazes +chalazion,chalazia +Chalcedonian,Chalcedonians +chalcedony,chalcedonies +chalchihuitl,chalchihuitls +chalcid,chalcids +chalcidid,chalcidids +chalcid wasp,chalcid wasps +chalcogen,chalcogens +chalcogenide,chalcogenides +chalcogenide glass,chalcogenide glasses +chalcographer,chalcographers +chalconoid,chalconoids +chalcophile,chalcophiles +chalcopyrite,chalcopyrites +ChaldΓ¦an,ChaldΓ¦ans +Chaldaic,Chaldaics +Chaldaism,Chaldaisms +Chaldean,Chaldeans +Chaldee,Chaldees +chalder,chalders +chaldron,chaldrons +chalet,chalets +chΓ’let,chΓ’lets +chalice,chalices +chalicothere,chalicotheres +chalicotheriid,chalicotheriids +chalinid,chalinids +chalk bag,chalk bags +chalkboard,chalkboards +chalkface,chalkfaces +chalkhill blue,chalkhill blues +chalk line,chalk lines +chalkpit,chalkpits +chalkstone,chalkstones +chalk talk,chalk talks +challan,challans,challan +challenge,challenges +challenger,challengers +chalon,chalons +Chalon,Chalons +chalone,chalones +chalumeau,chalumeaux +chalupa,chalupas +chalutz,chalutzes +chalybeate,chalybeates +chalybite,chalybites +chamade,chamades +chamaeleon,chamaeleons +chamΓ¦leon,chamΓ¦leons +chamaeleonid,chamaeleonids +chamaemyiid,chamaemyiids +chamaephyte,chamaephytes +chamal,chamals +chamar,chamars +chamber,chambers +chambered nautilus,chambered nautiluses,chambered nautili +chamber ensemble,chamber ensembles +chamberer,chamberers +chambering,chamberings +chamberlain,chamberlains +chambermaid,chambermaids +chambermate,chambermates +chamber of commerce,chambers of commerce +chamber orchestra,chamber orchestras +chamber organ,chamber organs +chamber pot,chamber pots +chamberpot,chamberpots +Chambertin,Chambertins +chambranle,chambranles +chambre,chambres +chamcha,chamchas +cham,chams +chameck,chamecks +chameleon,chameleons +chameleon mineral,chameleon minerals +chameli,chamelis +chamerophyte,chamerophytes +chamfer,chamfers +chamfrein,chamfreins +chamfret,chamfrets +chamfron,chamfrons +Chamicuro,Chamicuro +chamid,chamids +chamise,chamises +chamiso,chamisos +chamlet,chamlets +chamois,chamois +chamois leather,chamois leathers +chamomile,chamomiles +chamomilla,chamomillas +chamomille,chamomilles +Chamorro,Chamorros +chamotte,chamottes +champac,champacs +champagne flute,champagne flutes +champagne lounge,champagne lounges +champagne problem,champagne problems +champagne room,champagne rooms +champagne socialist,champagne socialists +champagne taste on a beer billfold,champagne tastes on a beer billfold +champagne taste on a beer budget,champagne tastes on a beer budget +champagne taste on a beer pocketbook,champagne tastes on a beer pocketbook +champagne taste on a beer salary,champagne tastes on a beer salary +champagne taste on a beer wallet,champagne tastes on a beer wallet +champagne whisk,champagne whisks +champaign,champaigns +champak,champaks +champ,champs +champ,champs +champe,champes +champeen,champeens +champer,champers +champers,champers +champertor,champertors +champerty,champerties +champfrein,champfreins +champian,champians +champignon,champignons +champion,champions +champion-elect,champions-elect +championess,championesses +championship,championships +champoo,champoos +champsodontid,champsodontids +champsosaurid,champsosaurids +champurrado,champurrados +chamsin,chamsins +Chance card,Chance cards +chance,chances +chancel,chancels +chanceler,chancelers +chanceller,chancellers +chancellery,chancelleries +chancellor,chancellors +chancelloriid,chancelloriids +chancellorship,chancellorships +chancellory,chancellories +chancellour,chancellours +chancellourship,chancellourships +chancelor,chancelors +chancel organ,chancel organs +chancelour,chancelours +chancelry,chancelries +chance-medley,chance-medleys +chancer,chancers +chancery,chanceries +chan,chans +chan,chans +chancre,chancres +chancroid,chancroids +chandelier,chandeliers +chandelier earring,chandelier earrings +chandid,chandids +chandler,chandlers +Chandlerism,Chandlerisms +chandlery,chandleries +chandry,chandries +chanfrin,chanfrins +chanfron,chanfrons +change,changes +changeling,changelings +changelog,changelogs +changemaker,changemakers +change of heart,changes of heart +change of innings,changes of innings +change of state,changes of state +change of tack,changes of tack +change of venue,changes of venue +change order,change orders +changeout,changeouts +changeover,changeovers +changer,changers +changeroom,changerooms +changeround,changerounds +changeset,changesets +change-up,change-ups +changeup,changeups +changing of the guard,changings of the guards +changing pad,changing pads +changing room,changing rooms +changkol,changkols +changseung,changseungs,changseung +changsung,changsungs,changsung +chanid,chanids +chank,chanks +chanlon,chanlons +channel,channels +channel,channels +channel coal,channel coals +channeler,channelers +channel flashing,channel flashings +Channel Island fox,Channel Island foxes +channelization,channelizations +channeller,channellers +channel of distribution,channels of distribution +channelopathy,channelopathies +channel stopper,channel stoppers +channichthyid,channichthyids +channid,channids +chanop,chanops +chanson,chansons +chansonnette,chansonnettes +chansonnier,chansonniers +chantarelle,chantarelles +chant,chants +chanter,chanters +chanterelle,chanterelles +chanteuse,chanteuses +chantey,chanteys +chanticleer,chanticleers +chantor,chantors +chantress,chantresses +chantry,chantries +chanty,chanties +chaoborid,chaoborids +chaolite,chaolites +chaologist,chaologists +chaosphere,chaospheres +chaotician,chaoticians +chaoticist,chaoticists +chaotization,chaotizations +chaparral,chaparrals +chaparral cock,chaparral cocks +chapati,chapatis +chapatti,chapattis +chapbook,chapbooks +chap,chaps +chap,chaps +chap,chaps +chapeau,chapeaus,chapeaux +chape,chapes +chapel,chapels +chapelet,chapelets +chapellany,chapellanies +chapelman,chapelmen +chapel of ease,chapels of ease +chapelry,chapelries +chaperon,chaperons +chaperone,chaperones +chaperonin,chaperonins +chapess,chapesses +chapiter,chapiters +chapka,chapkas +chaplain,chaplains +chaplaincy,chaplaincies +chaplet,chaplets +chapman,chapmen +Chapman code,Chapman codes +chapmanite,chapmanites +Chapman's antshrike,Chapman's antshrikes +chappal,chappals +chapparal,chapparals +chappati,chupatties +chappel,chappels +chappellane,chappellanes +chappell,chappells +chappess,chappesses +chappie,chappies +chappo,chappos +chappy,chappies +chaprasi,chaprasis +chaprassi,chaprassis,chaprassies +chapstick,chapsticks +chapter,chapters +chapter house,chapter houses +chapter-house,chapter-houses +chapterhouse,chapterhouses +chapterplay,chapterplays +chaptre,chaptres +chaptrel,chaptrels +chaqu,chaqu +charabanc,charabancs +characid,characids +characin,characins +charact,characts +character actor,character actors +character actress,character actresses +character assassination,character assassinations +character cell,character cells +character class,character classes +character encoding,character encodings +characterisation,characterisations +characterism,characterisms +characteristic,characteristics +characteristic function,characteristic functions +characteristick,characteristicks +characteristic polynomial,characteristic polynomials +characterization,characterizations +characterizer,characterizers +characterology,characterologies +character reference,character references +character set,character sets +character user interface,character user interfaces +character witness,character witnesses +charactery,characteries +charade,charades +charadriid,charadriids +charanga,charangas +charango,charangos +charanguista,charanguistas +charbocle,charbocles +charbon,charbons +charbroiler,charbroilers +char,chars +char,chars +char,chars,char +char,chars,char +Charcot-Leyden crystal,Charcot-Leyden crystals +chardonnay,chardonnays +chare,chares +charet,charets +charette,charettes +chargeback,chargebacks +charge card,charge cards +chargecard,chargecards +charge,charges +chargΓ© d'affaires,chargΓ©s d'affaires +charge density,charge densities +charge description master,charge description masters +charged particle,charged particles +chargee,chargees +charge hand,charge hands +charge-hand,charge-hands +chargehand,chargehands +charge master,charge masters +charge-master,charge-masters +chargemaster,chargemasters +charge nurse,charge nurses +charge off,charge offs +charge-off,charge-offs +chargeoff,chargeoffs +charger,chargers +chargeship,chargeships +chargino,charginos +chargon,chargons +charinid,charinids +chariot,chariots +chariotee,chariotees +charioteer,charioteers +charioteeress,charioteeresses +charismatic,charismatics +Charismatic,Charismatics +charism,charisms,charismata +charitable organization,charitable organizations +charitarian,charitarians +charitometrid,charitometrids +charity box,charity boxes +charity label,charity labels +charity mugger,charity muggers +charity shop,charity shops +charity stamp,charity stamps +charity stripe,charity stripes +charka,charkas +chark,charks +charkha,charkhas +charlady,charladies +charlatan,charlatans +Charleston,Charlestons +Charlestonian,Charlestonians +charley horse,charley horses +Charlie Brown tree,Charlie Brown trees +CharlieCard,CharlieCards +Charlie Chaplin mustache,Charlie Chaplin mustaches +Charlie Foxtrot,Charlie Foxtrots +charlie horse,charlie horses +charlock,charlocks +charlotte,charlottes +Charlotte,Charlottes +charlotte russe,charlottes russes +Charlottetonian,Charlottetonians +charm,charms +charm,charms +charmed life,charmed lives +charmer,charmers +charmeress,charmeresses +charmeuse,charmeuses +charmfest,charmfests +charm offensive,charm offensives +charmonium,charmoniums,charmonia +charm quark,charm quarks +charm school,charm schools +charmstone,charmstones +charnel,charnels +charnel house,charnel houses +charnelhouse,charnelhouses +charoite,charoites +charophyte,charophytes +charopid,charopids +charoset,charosets +charpie,charpies +charpoy,charpoys +charr,charr,charrs +charreada,charreadas +charret,charrets +charrette,charrettes +charro,charros +charrus,charruses +charset,charsets +char siu,char sius +chartbook,chartbooks +chartbuster,chartbusters +chart,charts +charter,charters +charterer,charterers +charterhouse,charterhouses +charter member,charter members +charter pilot,charter pilots +charter school,charter schools +charticle,charticles +chartist,chartists +Chartist,Chartists +chartometer,chartometers +chartre,chartres +chartreuse,chartreuses +Chartreux,Chartreux +chartroom,chartrooms +chartulary,chartularies +charva,charvas +charver,charvers +charvette,charvettes +charwoman,charwomen +charybdotoxin,charybdotoxins +chase,chases +chase,chases +chase,chases +chase gun,chase guns +chase plane,chase planes +chase port,chase ports +chaser,chasers +chasible,chasibles +chasing,chasings +chasma,chasmata +chasm,chasms +chasmophyte,chasmophytes +chasse,chasses +chassΓ©,chassΓ©s +Chasselas,Chasselases +chassepot,chassepots +chasseur,chasseurs +chassignite,chassignites +chassis,chassis +chΓ’ssis,chΓ’ssis +chastener,chasteners +chaste tree,chaste trees +chastisement,chastisements +chastiser,chastisers +chastity belt,chastity belts +chastity cage,chastity cages +chastity,chastities +chastizement,chastizements +chastushka,chastushkas +chasuble,chasubles +chatathon,chatathons +chatbot,chatbots +chatbox,chatboxes +chat,chats +chat,chats +chat,chats +chΓ’teau,chΓ’teaus,chΓ’teaux +chateau,chateaux,chateaus +chate,chates +chatelain,chatelains +chatelaine,chatelaines +chatelet,chatelets +chatellany,chatellanies +chatfest,chatfests +Chatham Islands penguin,Chatham Islands penguins +chati,chatis +chatline,chatlines +chatlog,chatlogs +chatmate,chatmates +chatoyant,chatoyants +chat room,chat rooms +chatroom,chatrooms +chat show,chat shows +chatshow,chatshows +Chattanoogan,Chattanoogans +chattel,chattels +chattel house,chattel houses +chattel paper,chattel papers +chatteration,chatterations +chatterbot,chatterbots +chatterbox,chatterboxes +chatter,chatters +chatterer,chatterers +chattering,chatterings +Chatty Cathy,Chatty Cathies +chat-up line,chat-up lines +Chaucerian,Chaucerians +chaudhuriid,chaudhuriids +chaud-medley,chaud-medleys +chauffer,chauffers +chauffeur,chauffeurs +chauldron,chauldrons +chaulmoogra,chaulmoogras +chaunacid,chaunacids +chaunce,chaunces +chauncel,chauncels +chaunceler,chauncelers +chaunceller,chauncellers +chauncellor,chauncellors +chauncellour,chauncellours +chauncelor,chauncelors +chauncelour,chauncelours +chaun,chauns +chaunt,chaunts +chaunter,chaunters +chaunterie,chaunteries +chaurasia,chaurasias +chaur,chaurs +chaus,chauses +Chausie,Chausies +chausse,chausses +chaussΓ©e,chaussΓ©es +chaussure,chaussures +Chautauqua,Chautauquas +chauvinist,chauvinists +chav,chavs +chavel,chavels +chavender,chavenders +chavette,chavettes +chavicyl,chavicyls +Chavista,Chavistas +chawarma,chawarmas +chawbacon,chawbacons +chaw,chaws +chawdron,chawdrons +chawnce,chawnces +chay,chays +chayote,chayotes +chay root,chay roots +Chazar,Chazars +chazzer,chazzers +cheap-arse Tuesday,cheap-arse Tuesdays +cheapass,cheapasses +cheap,cheaps +cheap drunk,cheap drunks +cheapener,cheapeners +cheapie,cheapies +cheapjack,cheapjacks +cheap John,cheap Johns +cheapo,cheapos +cheap shot,cheap shots +cheap-shot,cheap-shots +cheapshot,cheapshots +cheapskate,cheapskates +cheapstead,cheapsteads +cheapy,cheapies +cheare,cheares +Cheaster,Cheasters +cheat,cheats +cheat code,cheat codes +cheater,cheaters +cheater five,cheater fives +cheat grass,cheat grasses +cheatgrass,cheatgrasses +cheatline,cheatlines +cheat sheet,cheat sheets +cheat-sheet,cheat-sheets +cheatsheet,cheatsheets +chebacco,chebaccos +chebec,chebecs +chebec,chebecs +chechaquo,chechaquos +cheche,cheches +Chechen,Chechens +chechia,chechias +checkage,checkages +checkbook,checkbooks +check box,check boxes +checkbox,checkboxes +check-call,check-calls +check,checks +check,checks +check digit,check digits +checked build,checked builds +checked exception,checked exceptions +checkerberry,checkerberries +checkerbloom,checkerblooms +checkerboard,checkerboards +checker,checkers +checker,checkers +checker,checkers +checkered flag,checkered flags +checkerspot,checkerspots +check-fold,check-folds +check-in,check-ins +checking account,checking accounts +checking,checkings +checklist,checklists +check mark,check marks +checkmark,checkmarks +checkmate,checkmates +checkoff,checkoffs +checkout,checkouts +checkout chick,checkout chicks +checkout divider,checkout dividers +checkpoint,checkpoints +check rail,check rails +check-raise,check-raises +checkrein,checkreins +checkroll,checkrolls +checkroom,checkrooms +check scale,check scales +checksheet,checksheets +check side,check sides +checkside punt,checkside punts +checkstring,checkstrings +checksum,checksums +check swing,check swings +check-swing,check-swings +check-up,check-ups +checkup,checkups +check weigher,check weighers +checkweighman,checkweighmen +checkwriter,checkwriters +Cheddar cheese,Cheddar cheeses +Cheddarhead,Cheddarheads +cheddite,cheddites +cheder,cheders,chederim +chedi,chedis +cheechako,cheechakos,cheechakoes +chee chee,chee chees +chee-chee,chee-chees +cheekbone,cheekbones +cheek,cheeks +cheeke,cheekes +cheekpiece,cheekpieces +cheek pouch,cheek pouches +cheeky monkey,cheeky monkeys +cheep,cheeps +cheerer,cheerers +cheerer-upper,cheerer-uppers +cheering,cheerings +cheerio,cheerios +Cheerio,Cheerios +cheerleader,cheerleaders +cheeseball,cheeseballs +cheeseboard,cheeseboards +cheese box,cheese boxes +cheesebox,cheeseboxes +cheeseburger,cheeseburgers +cheesecake,cheesecakes +cheese crisp,cheese crisps +cheese curl,cheese curls +cheese dog,cheese dogs +cheese doodle,cheese doodles +cheese grater,cheese graters +cheesegrater,cheesegraters +cheesehead,cheeseheads +cheeselep,cheeseleps +cheeselet,cheeselets +cheeselip,cheeselips +cheesemaker,cheesemakers +cheesemeister,cheesemeisters +cheese mite,cheese mites +cheesemonger,cheesemongers +cheesepie,cheesepies +cheese puff,cheese puffs +cheeser,cheesers +cheesery,cheeseries +cheese slaw,cheese slaws +cheese slicer,cheese slicers +cheese spread,cheese spreads +cheesesteak,cheesesteaks +cheese straw,cheese straws +cheese wire,cheese wires +cheesy puff,cheesy puffs +cheetah,cheetahs +Cheeto,Cheetos +cheezie,cheezies +chef,chefs +chef de mission,chefs de mission +chef de partie,chefs de partie +chef d'Ε“uvre,chef d'Ε“uvres +chef d'oeuvre,chefs d'oeuvre +cheffonier,cheffoniers +chef salad,chef salads +chegoe,chegoes +chegre,chegres +Chehalem berry,Chehalem berries +Chehalem blackberry,Chehalem blackberries +cheiloceratid,cheiloceratids +cheilocystidium,cheilocystidia +cheilodactylid,cheilodactylids +cheireme,cheiremes +cheirogaleid,cheirogaleids +cheiromancy,cheiromancies +cheiromantist,cheiromantists +cheiropter,cheiropters +cheiropterygium,cheiropterygia +cheirurid,cheirurids +chela,chelae +chela,chele +chelandion,chelandions +chelate,chelates +chelate complex,chelate complexes +chelate compound,chelate compounds +chelating agent,chelating agents +chelator,chelators +chelicera,chelicerae +chelicerate,chelicerates +chelid,chelids +chelifer,chelifers +cheliped,chelipeds +chelisochid,chelisochids +chelodid,chelodids +chelone,chelones +chelonian,chelonians +chelonid,chelonids +cheloniid,cheloniids +chelsea boy,chelsea boys +Chelsea pensioner,Chelsea pensioners +Chelsea tractor,Chelsea tractors +chelurid,chelurids +chelydrid,chelydrids +chelyid,chelyids +chemesthesis,chemestheses +chemical abortion,chemical abortions +chemical affinity,chemical affinities +chemical agent,chemical agents +chemical bomb,chemical bombs +chemical bond,chemical bonds +chemical castration,chemical castrations +chemical cell,chemical cells +chemical change,chemical changes +chemical,chemicals +chemical clock,chemical clocks +chemical composition,chemical compositions +chemical compound,chemical compounds +chemical cosh,chemical coshes +chemical decomposition,chemical decompositions +chemical dependency,chemical dependencies +chemical depilatory,chemical depilatories +chemical element,chemical elements +chemical energy,chemical energies +chemical engine,chemical engines +chemical engineer,chemical engineers +chemical equation,chemical equations +chemical equilibrium,chemical equilibria +chemical fingerprint,chemical fingerprints +chemical flux,chemical fluxes +chemical hazard,chemical hazards +chemical hood,chemical hoods +chemical horn,chemical horns +chemical imbalance,chemical imbalances +chemical indicator,chemical indicators +chemical laser,chemical lasers +chemical law,chemical laws +chemical lithosphere,chemical lithospheres +chemical messenger,chemical messengers +chemical peel,chemical peels +chemical plant,chemical plants +chemical property,chemical properties +chemical reaction,chemical reactions +chemical reactor,chemical reactors +chemical rocket,chemical rockets +chemical sensitivity,chemical sensitivities +chemical series,chemical series +chemical shift,chemical shifts +chemical space,chemical spaces +chemical species,chemical species +chemical structure,chemical structures +chemical substance,chemical substances +chemical symbol,chemical symbols +chemical toilet,chemical toilets +chemical weapon,chemical weapons +chemic,chemics +chemiexcitation,chemiexcitations +chemiflux,chemifluxes +chemigation,chemigations +chemiloon,chemiloons +chemin de ronde,chemins de ronde +chemiosmosis,chemiosmoses +chemise cagoule,chemise cagoules +chemise,chemises +chemisette,chemisettes +chemist,chemists +chemitype,chemitypes +chemoattractand,chemoattractands +chemoattractant,chemoattractants +chemoattraction,chemoattractions +chemoautotroph,chemoautotrophs +chemo,chemos +chemocline,chemoclines +chemodectoma,chemodectomas,chemodectomata +chemoembolization,chemoembolizations +chemoheterotroph,chemoheterotrophs +chemoimmunotherapy,chemoimmunotherapies +chemokine,chemokines +chemokyne,chemokynes +chemolithoautotroph,chemolithoautotrophs +chemolithotroph,chemolithotrophs +chemometrician,chemometricians +chemopallidectomy,chemopallidectomies +chemoperception,chemoperceptions +chemophobic,chemophobics +chemopreventive,chemopreventives +chemoprophylactic,chemoprophylactics +chemoradiotherapy,chemoradiotherapies +chemoreception,chemoreceptions +chemoreceptor,chemoreceptors +chemoreflex,chemoreflexes +chemorepellant,chemorepellants +chemorepellent,chemorepellents +chemorepulsant,chemorepulsants +chemorepulsion,chemorepulsions +chemoresistance,chemoresistances +chemosensation,chemosensations +chemosensillum,chemosensilla +chemosensitisation,chemosensitisations +chemosensitivity,chemosensitivities +chemosensitization,chemosensitizations +chemosensitizer,chemosensitizers +chemosensor,chemosensors +chemosignal,chemosignals +chemosis,chemoses +chemosmosis,chemosmoses +chemospecificity,chemospecificities +chemostat,chemostats +chemosterilizer,chemosterilizers +chemosusceptibility,chemosusceptibilities +chemotaxonomist,chemotaxonomists +chemothalamectomy,chemothalamectomies +chemotherapeutic agent,chemotherapeutic agents +chemotherapeutic,chemotherapeutics +chemotherapist,chemotherapists +chemotroph,chemotrophs +chemotype,chemotypes +chemovar,chemovars +chempedak,chempedaks +chemtrail,chemtrails +cheng,chengs +chengguan,chengguans +chengyu,chengyu +chenodeoxycholate,chenodeoxycholates +chenopod,chenopods +cheongsam,cheongsams +cheque book,cheque books +chequebook,chequebooks +cheque card,cheque cards +cheque,cheques +chequeen,chequeens +chequerboard,chequerboards +chequer,chequers +chequered flag,chequered flags +chequered skipper,chequered skippers +chequer tree,chequer trees +chequewriter,chequewriters +chequing account,chequing accounts +chereme,cheremes +cherimoya,cherimoyas +cherimoyer,cherimoyers +cherisher,cherishers +cherishment,cherishments +chermesid,chermesids +chermid,chermids +chernetid,chernetids +Chernobyl,Chernobyls +cherogril,cherogrils +Cherokee,Cherokees +cheroot,cheroots +cherrie,cherries +cherryade,cherryades +cherry Bakewell tart,cherry Bakewell tarts +cherry birch,cherry birches +cherry blossom,cherry blossoms +cherry bomb,cherry bombs +cherry-bomb,cherry-bombs +cherry brandy,cherry brandies +cherry,cherries +Cherry,Cherrys +cherry graph,cherry graphs +cherry laurel,cherry laurels +cherry pepper,cherry peppers +cherry picker,cherry pickers +cherry-picker,cherry-pickers +cherrypicker,cherrypickers +cherrypie,cherrypies +cherry pitter,cherry pitters +cherry plum,cherry plums +cherry-popper,cherry-poppers +cherry red,cherry reds +cherrystone,cherrystones +cherry tomato,cherry tomatoes +cherry tree,cherry trees +chersonese,chersoneses +cherub,cherubs,cherubim +cherubin,cherubins,cherubin +cherup,cherups +chervonets,chervontsy +Chesapeake,Chesapeakes +Chesepian,Chesepians +chesible,chesibles +cheslip,cheslips +chesnut,chesnuts +chess-apple,chess-apples +chessboard,chessboards +chess,chesses +chess,chesses +chess clock,chess clocks +chessel,chessels +chessman,chessmen +chess master,chess masters +chess piece,chess pieces +chesspiece,chesspieces +chess player,chess players +chessplayer,chessplayers +chess set,chess sets +chesstree,chesstrees +chest breather,chest breathers +chest cavity,chest cavities +chest,chests +chest,chests +chesterfield,chesterfields +chesterite,chesterites +chesteyn,chesteyns +chestful,chestfuls,chestsful +chestguard,chestguards +chest hair, chest hair +chesthair, chesthair +chestnut-backed antshrike,chestnut-backed antshrikes +chestnut-flanked sparrowhawk,chestnut-flanked sparrowhawks +chestnut oak,chestnut oaks +chestnut rail,chestnut rails +chestnut teal,chestnut teals +chestnut tree,chestnut trees +chest of drawers,chests of drawers +chestpad,chestpads +chest pass,chest passes +chest press,chest presses +chest rub,chest rubs +chetah,chetahs +chetnik,chetniks +chetrum,chetrums +chetverik,chetveriks +chetvert,chetverts +chevachie,chevachies +chevage,chevages +cheval,chevaux +cheval de frise,chevaux de frise +cheval glass,cheval glasses +cheval-glass,cheval-glasses +chevalier,chevaliers +chevauchee,chevauchees +chevauchΓ©e,chevauchΓ©es +chevauchie,chevauchies +Chev,Chevs +chevelure,chevelures +cheven,chevens +cheventein,cheventeins +chevet,chevets +cheville,chevilles +chevin,chevins +cheviot,cheviots +chevisance,chevisances +chevisaunce,chevisaunces +chΓ¨vre,chΓ¨vres +Chevrel phase,Chevrel phases +chevrette,chevrettes +chevron bone,chevron bones +chevron,chevrons +chevronel,chevronels +chevrotain,chevrotains +chevy,chevies +Chevy,Chevies +Chewa,Chewas,Chewa +Chewbacca Defense,Chewbacca Defenses +chew,chews +chewer,chewers +chewet,chewets +chewie,chewies +chewing gum,chewing gums +chewing louse,chewing lice +chewing tobacco,chewing tobaccos +chewink,chewinks +chewit,chewits +chewre,chewres +chewstick,chewsticks +chew toy,chew toys +Cheyenne,Cheyenne,Cheyennes +cheyletid,cheyletids +chhertum,chhertums +Chianti,Chiantis +chiaro-oscuro,chiaro-oscuros +chiaroscurist,chiaroscurists +chiaroscuro,chiaroscuros,chiaroscuri +chiasma,chiasmas,chiasmata +chiasm,chiasms +chiasmodontid,chiasmodontids +chiasmus,chiasmi +chiastolite slate,chiastolite slates +chiaus,chiauses +chibbal,chibbals +chib,chibs +chibouk,chibouks +chibouque,chibouques +chica,chicas +Chicagoan,Chicagoans +Chicago dog,Chicago dogs +Chicagorilla,Chicagorillas +Chicago-style hot dog,Chicago-style hot dogs +Chicago typewriter,Chicago typewriters +Chicana,Chicanas +chicane,chicanes +chicaner,chicaners +Chicano,Chicanos +chic,chics +chicha,chichas +chich,chiches +Chichemec,Chichemecs +chicheme,chichemes +chi chi man,chi chi men +chi,chis +Chi,Chis +chichling,chichlings +chickabiddy,chickabiddies +chickadee,chickadees +chickaree,chickarees +Chickasaw,Chickasaws,Chickasaw +chick,chicks +chicken burger,chicken burgers +chickenburger,chickenburgers +chicken cannon,chicken cannons +chicken colonel,chicken colonels +chicken coop,chicken coops +chicken fillet,chicken fillets +chicken gun,chicken guns +chicken hawk,chicken hawks +chickenhawk,chickenhawks +chickenhead,chickenheads +chickenhouse,chickenhouses +chicken Kiev,chicken Kievs +chicken leg,chicken legs +chicken nugget,chicken nuggets +chicken or egg question,chicken or egg questions +chicken-or-egg question,chicken-or-egg questions +chicken run,chicken runs +chickenry,chickenries +chicken salad air,chicken salad airs +chicken scratch,chicken scratches +chicken-shit,chicken-shits +chicken tender,chicken tenders +chicken tractor,chicken tractors +chicken turtle,chicken turtles +chicken-turtle,chicken-turtles +chicken wing,chicken wings +chicken-wing,chicken-wings +chickenyard,chickenyards +chick flick,chick flicks +chickfriend,chickfriends +chicklet,chicklets +chickling,chicklings +chickpea,chickpeas +Chicksaw,Chicksaws,Chickasaw +chick with a dick,chicks with dicks +chicky,chickies +chiclero,chicleros +chiclet keyboard,chiclet keyboards +Chicom,Chicoms +chicory,chicories +chider,chiders +chideress,chideresses +chidester,chidesters +chiding,chidings +chief cell,chief cells +chief,chiefs +chief constable,chief constables +chief cook and bottle washer,chief cooks and bottle washers +chief cook and bottle-washer,chief cooks and bottle-washers,chief cook and bottle-washers +chiefdom,chiefdoms +chiefe,chiefes +chiefery,chieferies +chiefess,chiefesses +chief executive,chief executives +chief executive officer,chief executive officers +chief financial officer,chief financial officers +chief god,chief gods +chief hare,chief hares +chief information officer,chief information officers +chief legal officer,chief legal officers +chief mate,chief mates +Chief of Party,Chiefs of Party +chief of staff,chiefs of staff +chief of state,chiefs of state +chief operating officer,chief operating officers +chief petty officer,chief petty officers +chief petty officer first class,chief petty officers first class +chief petty officer second class,chief petty officers second class +chiefrie,chiefries +chief scientist,chief scientists +chiefship,chiefships +chieftain,chieftains +chieftaincy,chieftaincies +chieftainess,chieftainesses +chieftess,chieftesses +chiel,chiels +chield,chields +chievance,chievances +chiffarobe,chiffarobes +chiffchaff,chiffchaffs +chiffonade,chiffonades +chiffon cake,chiffon cakes +chiffon,chiffons +chiffonier,chiffoniers +chiffonnier,chiffonniers +chifforobe,chifforobes +chigger,chiggers +chigger,chiggers +chignon,chignons +chigoe,chigoes +chigoe flea,chigoe fleas +chigre,chigres +chigutisaurid,chigutisaurids +chihuahua,chihuahuas +Chihuahua,Chihuahuas +chi-ike,chi-ikes +chikan,chikan +chikara,chikaras +chilaca,chilacas +chilacayote,chilacayotes +chilblain,chilblains +childbearing,childbearings +child bride,child brides +child-bride,child-brides +childbride,childbrides +childcarer,childcarers +child carrier,child carriers +child,children,childer +child-fucker,child-fuckers +childhood,childhoods +childie,childies +childling,childlings +childlover,childlovers +childminder,childminders +child of the manse,children of the manse +child prodigy,child prodigies +childraiser,childraisers +child rape,child rapes +childrearer,childrearers +children's home,children's homes +child safety seat,child safety seats +Chilean,Chileans +Chilean eagle,Chilean eagles +Chilean flamingo,Chilean flamingos +Chilean sea bass,Chilean sea bass,Chilean sea basses +Chilean tinamou,Chilean tinamous +chile,chiles +chile,chillun,chirren +chile pepper,chile peppers +chilgoza,chilgozas +chiliad,chiliads +chiliaΓ«dron,chiliaΓ«drons +chiliagon,chiliagons +chiliahedron,chiliahedrons +chilian,chilians +Chilian,Chilians +chiliarch,chiliarchs +chiliarchy,chiliarchies +chiliasm,chiliasms +chiliast,chiliasts +chiliburger,chiliburgers +chili,chilis,chilies +chili con queso,chili con quesos +chili dog,chili dogs +chilidog,chilidogs +chilihead,chiliheads +chilinid,chilinids +chili oil,chili oils +chili pepper,chili peppers +chili sauce,chili sauces +chill,chills +chiller,chillers +chill girl,chill girls +chilli,chillis,chillies +chilli dog,chilli dogs +chilling effect,chilling effects +chilli pepper,chilli peppers +chill out,chill outs +chill-out,chill-outs +chillout,chillouts +chill pill,chill pills +chilltime,chilltimes +chillum,chillums +chilly bin,chilly bins +chilodontid,chilodontids +chilognath,chilognaths +chilometre,chilometres +chilopod,chilopods +chiltepe,chiltepes +chiltepin,chiltepins +chiltoma,chiltomas +chilver,chilvers +chimaera,chimaeras +chimΓ¦ra,chimΓ¦ras,chimΓ¦rΓ¦ +chimaerid,chimaerids +chimaerism,chimaerisms +chimango,chimangos,chimangoes +chimb,chimbs +chimbley,chimbleys +chime,chimes +chime,chimes +chimenea,chimeneas +chimera,chimeras +chimer,chimers +chimere,chimeres +chimichanga,chimichangas +chimichurri,chimichurris +chiminage,chiminages +chiminea,chimineas +chiming,chimings +chimist,chimists +chimley,chimleys +chimney-breast,chimney-breasts +chimney,chimneys +chimney corner,chimney corners +chimney-duty,chimney-dutys +chimney flashing,chimney flashings +chimneypiece,chimneypieces +chimney pot,chimney pots +chimneyscape,chimneyscapes +chimney stack,chimney stacks +chimney sweep,chimney sweeps +chimneysweep,chimneysweeps +chimpanzee,chimpanzees +chimp,chimps +chinaball,chinaballs +chinaberry,chinaberries +china cap,china caps +china,chinas +chinaldine,chinaldines +chinaman,chinamen +Chinaman,Chinamen +Chinaman's chance,Chinamen's chances +china marker,china markers +Chinantec,Chinantecs +chinar,chinars +China syndrome,China syndromes +Chinatown,Chinatowns +Chinatowner,Chinatowners +China White,China Whites +chincapin,chincapins +chinch,chinches +chinchilla rat,chinchilla rats +chinchillid,chinchillids +chin,chins +chin,chins +chin cough,chin coughs +Chindit,Chindits +chine,chines +chine,chines +Chinee,Chinees +Chinese bayberry,Chinese bayberries +Chinese burn,Chinese burns +Chinese celery,Chinese celeries +Chinese character,Chinese characters +Chinese compliment,Chinese compliments +Chinese Crested Dog,Chinese Crested Dogs +Chinese cypress,Chinese cypresses +Chinese date,Chinese dates +Chinese desert cat,Chinese desert cats +Chinese dragon,Chinese dragons +Chinese edible frog,Chinese edible frogs +Chinese fire drill,Chinese fire drills +Chinese gooseberry,Chinese gooseberries +Chinese hamster,Chinese hamsters +Chinese hawthorn,Chinese hawthorns +Chinese juniper,Chinese junipers +Chinese lantern,Chinese lanterns +Chineseman,Chinesemen +Chinese mantis,Chinese mantises +Chinese menu,Chinese menus +Chinese mountain cat,Chinese mountain cats +Chinese New Year,Chinese New Years +Chinese numeral,Chinese numerals +Chinese olive,Chinese olives +Chinese paddlefish,Chinese paddlefish +Chinese pangolin,Chinese pangolins +Chinese pheasant,Chinese pheasants +Chinese puzzle,Chinese puzzles +Chinese ragwort,Chinese ragworts +Chinese red,Chinese reds +Chinese room,Chinese rooms +chinese snooker,chinese snookers +Chinese snooker,Chinese snookers +Chinese squeeze,Chinese squeezes +Chinese strawberry tree,Chinese strawberry trees +Chinese truffle,Chinese truffles +Chinese unicorn,Chinese unicorns +Chinese Wall,Chinese Walls +chingadera,chingaderas +ching,chings +Chinggisid,Chinggisids +chin guard,chin guards +chinguard,chinguards +chiniquodontid,chiniquodontids +chinkapin,chinkapins +chinkara,chinkaras +chink,chinks +chink,chinks +chink,chinks +Chink,Chinks +chinkerinchee,chinkerinchees +chinkle,chinkles +chinky,chinkies +chinless wonder,chinless wonders +chinny,chinnies +chino,chinos +chinois,chinoises +chinone,chinones +chinook,chinooks +chinquapin,chinquapins +chinrest,chinrests +chin roll,chin rolls +chin shield,chin shields +chinshield,chinshields +chinstrap,chinstraps +chinstrap penguin,chinstrap penguins +chin strip,chin strips +chint,chints +chintz,chintzes +chin-up,chin-ups +chin wag,chin wags +chin-wag,chin-wags +chinwag,chinwags +chionid,chionids +chionidid,chionidids +chionophile,chionophiles +chioppine,chioppines +chipcard,chipcards +chip,chips +chipekwe,chipekwe +chiphead,chipheads +chip leader,chip leaders +chip log,chip logs +chipmaker,chipmakers +chipmunk,chipmunks +chipmunk voice,chipmunk voices +chip off the block,chips off the block +chip off the old block,chips off the old block +chipolata,chipolatas +chipotle,chipotles +chipped potato,chipped potatoes +chipper,chippers +Chippeway,Chippeways +chippie,chippies +chipping bird,chipping birds +chipping,chippings +chipping sparrow,chipping sparrows +chipping squirrel,chipping squirrels +chippy,chippies +chipset,chipsets +chip shop,chip shops +chip shot,chip shots +chip-shot,chip-shots +chipshot,chipshots +chiptune,chiptunes +chip wagon,chip wagons +chipyard,chipyards +chiral center,chiral centers +chiral centre,chiral centres +chiralon,chiralons +chiral resolution,chiral resolutions +chiretta,chirettas +chi-rho,chi-rhos +Chiricahua,Chiricahuas +chiridotid,chiridotids +chirm,chirms +chirocentrid,chirocentrids +chirocephalid,chirocephalids +chiro,chiros +chirodipterid,chirodipterids +chirodropid,chirodropids +chirograph,chirographs +chirographer,chirographers +chirographist,chirographists +chirologist,chirologists +chiromancer,chiromancers +chiromantist,chiromantists +chironemid,chironemids +chironomid,chironomids +chiroplast,chiroplasts +chiropodist,chiropodists +chiropractor,chiropractors +chiropteran,chiropterans +chiropter,chiropters +chiropterologist,chiropterologists +chirosophist,chirosophists +chirostylid,chirostylids +chiroteuthid,chiroteuthids +chirp,chirps +chirper,chirpers +chirping,chirpings +chirplet,chirplets +chirpy,chirpies +chirr,chirrs +chirrup,chirrups +chirruper,chirrupers +chiru,chirus +chirugion,chirugions +chirurgeon,chirurgeons +chirurgery,chirurgeries +chirurgion,chirurgions +chirurgy,chirurgies +chisel,chisels +chiseler,chiselers +chiseller,chisellers +Chishti,Chishtis +chi-square,chi-squares +chi-square distribution,chi-square distributions +chi-square test,chi-square tests +chistka,chistkas +chistorra,chistorras +chital,chitals +chit chat,chit chats +chit-chat,chit-chats +chitchat,chitchats +chit,chits +chit,chits +chit,chits +chitenge,chitenges +chitinase,chitinases +chiton,chitons +chiton,chitons +chitonid,chitonids +chitooligomer,chitooligomers +chitooligosaccharide,chitooligosaccharides +chitosan,chitosans +chitosome,chitosomes +chitterling,chitterlings +chitty,chitties +chitupa,chitupas +chivachie,chivachies +chiv,chivs +chive,chives +chivvier,chivviers +chivvy,chivvies +chivy,chivies +chkalovite,chkalovites +chk,chks +chladniite,chladniites +chlamydoselachid,chlamydoselachids +chlamydospore,chlamydospores +chlamyphore,chlamyphores +chlamys,chlamydes +Chleuh,Chleuhs +chloasma,chloasmas +chlodronate,chlodronates +chlopsid,chlopsids +chloracnegen,chloracnegens +chloralamide,chloralamides +chloralkali,chloralkalis +chloramine,chloramines +chlorapatite,chlorapatites +chlorarachniophyte,chlorarachniophytes +chlorate,chlorates +chloraurate,chloraurates +chlorella,chlorellae +chlorhydrin,chlorhydrins +chloride,chlorides +chlorinator,chlorinators +chlorin,chlorins +chlorine fluoride,chlorine fluorides +chlorine oxide,chlorine oxides +chlorite,chlorites +chlormethane,chlormethanes +chloroacetanilide,chloroacetanilides +chloroacetate,chloroacetates +chloroalkane,chloroalkanes +chloroalkene,chloroalkenes +chloroalkyl,chloroalkyls +chloroaluminate,chloroaluminates +chloroarene,chloroarenes +chlorobenzene,chlorobenzenes +chlorobenzoate,chlorobenzoates +chlorobenzyl,chlorobenzyls +chloroborane,chloroboranes +chloroborate,chloroborates +chlorocarbon,chlorocarbons +chlorocholesterol,chlorocholesterols +chlorochromate,chlorochromates +chlorocyphid,chlorocyphids +chlorodyne,chlorodynes +chloroethane,chloroethanes +chloroethanoic acid,chloroethanoic acids +chloroethylamine,chloroethylamines +chloroethyl,chloroethyls +chlorofibre,chlorofibres +chlorofluorocarbon,chlorofluorocarbons +chloroformate,chloroformates +chlorogenic acid,chlorogenic acids +chlorohydrin,chlorohydrins +chloroleucite,chloroleucites +chlorolipid,chlorolipids +chlorometer,chlorometers +chloromethane,chloromethanes +chloromethylation,chloromethylations +chloromethyl,chloromethyls +chloronium ion,chloronium ions +chloropal,chloropals +chloroperlid,chloroperlids +chlorophenol,chlorophenols +chlorophenyl,chlorophenyls +chlorophenylhydrazone,chlorophenylhydrazones +chlorophosphate,chlorophosphates +chlorophthalmid,chlorophthalmids +chlorophyllide,chlorophyllides +chlorophyllin,chlorophyllins +chlorophyte,chlorophytes +chloropid,chloropids +chloroplast,chloroplasts +chloroplastid,chloroplastids +chloroplatinate,chloroplatinates +chloropleth,chloropleths +chloropropane,chloropropanes +chloropropene,chloropropenes +chloropropyl,chloropropyls +chloropyrazine,chloropyrazines +chloropyridine,chloropyridines +chloropyridyl,chloropyridyls +chloroquinoline,chloroquinolines +chlorosilyl,chlorosilyls +chlorosome,chlorosomes +chlorostannate,chlorostannates +chlorosugar,chlorosugars +chlorosulfite,chlorosulfites +chlorosulfolipid,chlorosulfolipids +chlorosulfonated polyethylene,chlorosulfonated polyethylenes +chlorosulfonyl,chlorosulfonyls +chlorosulpholipid,chlorosulpholipids +chlorotoluene,chlorotoluenes +chlorotriazine,chlorotriazines +chlorovinyl,chlorovinyls +chloruret,chlorurets +chloryl,chloryls +choad,choads +choake,choakes +choana,choanae +choanocyte,choanocytes +choanoderm,choanoderms +choanoflagellate,choanoflagellates +chocaholic,chocaholics +chocard,chocards +choccie,choccies +choccy,choccies +choc ice,choc ices +choc-ice,choc-ices +chock,chocks +chock,chocks +chockstone,chockstones +choco,chocos +chocogasm,chocogasms +chocoholic,chocoholics +choco lab,choco labs +chocolate bar,chocolate bars +chocolate cake,chocolate cakes +chocolate channel,chocolate channels +chocolate chip,chocolate chips +chocolate diamond,chocolate diamonds +chocolate egg,chocolate eggs +chocolate face,chocolate faces +chocolate hot dog,chocolate hot dogs +chocolate milk,chocolate milks +chocolate soldier,chocolate soldiers +chocolate spread,chocolate spreads +chocolate starfish,chocolate starfishes +chocolate tree,chocolate trees +chocolate truffle,chocolate truffles +chocolatier,chocolatiers +chocolatine,chocolatines +chocolo,chocolos +chocophile,chocophiles +Choco tinamou,Choco tinamous +Choctaw,Choctaws +Choctaw turn,Choctaw turns +choda,chodas +chod,chods +chodder,chodders +chode,chodes +chΕ“nix,chΕ“nixes,chΕ“nices +chogset,chogsets +choice,choices +choil,choils +choir boy,choir boys +choirboy,choirboys +choir,choirs +choirgirl,choirgirls +choirman,choirmen +choirmaster,choirmasters +choirmate,choirmates +choirmistress,choirmistresses +choise,choises +chokeberry,chokeberries +chokecherry,chokecherries +choke,chokes +choke collar,choke collars +chokedar,chokedars +chokehold,chokeholds +choke pear,choke pears +chokepoint,chokepoints +choker,chokers +chokeslam,chokeslams +chokestrap,chokestraps +chokidar,chokidars +choking bloom,choking blooms +choking,chokings +cholaemia,cholaemias +cholagogue,cholagogues +cholane,cholanes +cholangiocarcinoma,cholangiocarcinomas +cholangiocyte,cholangiocytes +cholangiopathy,cholangiopathies +cholate,cholates +cholecyst,cholecysts +cholecystectomy,cholecystectomies +cholecystocausis,cholecystocauses +cholecystokinin,cholecystokinins +cholecystotomy,cholecystotomies +choledochojejunostomy,choledochojejunostomies +cholelithiasis,cholelithiases +cholemia,cholemias +cholent,cholents +choleretic,choleretics +cholestane,cholestanes +cholestanol,cholestanols +cholesteatoma,cholesteatomas,cholesteatomata +cholesteric,cholesterics +cholesterol,cholesterols +cholesteryl,cholesteryls +choliamb,choliambs +choliambic,choliambics +cholic,cholics +choli,cholis +cholinesterase,cholinesterases +cholinomimetic,cholinomimetics +cholla,chollas +cholo,cholos +choltry,choltries +chomma,chommas +chommie,chommies +chomo,chomos +chomophyte,chomophytes +chomp,chomps +chomper,chompers +chon,chon +chondracanthid,chondracanthids +chondrichthyan,chondrichthyans +chondrification,chondrifications +chondrinid,chondrinids +chondrite,chondrites +chondroblast,chondroblasts +chondroclast,chondroclasts +chondrocranium,chondrocrania +chondrocyte,chondrocytes +chondrogenesis,chondrogeneses +chondroitinase,chondroitinases +chondroitin,chondroitins +chondroma,chondromas,chondromata +chondrometer,chondrometers +chondronectin,chondronectins +chondrophyte,chondrophytes +chondropterygian,chondropterygians +chondrosarcoma,chondrosarcomas,chondrosarcomata +chondrosteid,chondrosteids +chondrotomy,chondrotomies +chondrule,chondrules +chooch,chooches +choo choo,choo choos +choo-choo,choo-choos +choo,choo-choos +choo choo train,choo choo trains +choo-choo train,choo-choo trains +choodle,choodles +chook,chooks +chookhouse,chookhouses +chookie,chookies +choon,choons +choose,chooses +chooseling,chooselings +chooser,choosers +chopboat,chopboats +chop,chops +chop,chops +chop,chops +chop,chops +chopchurch,chopchurches +chop dollar,chop dollars +chophouse,chophouses +chopin,chopins +chopine,chopines +chop logic,chop logics +chopper,choppers +chopping block,chopping blocks +chopping board,chopping boards +chopping,choppings +chop shop,chop shops +chopshop,chopshops +chopstick,chopsticks +choragus,choragi +choral,chorals +chorale,chorales +choralist,choralists +Chorasmian,Chorasmians +chordate,chordates +chord,chords +chordee,chordees +chordoma,chordomas,chordomata +chordophone,chordophones +chordotomy,chordotomies +chord progression,chord progressions +chorea,choreas,choreae,choreΓ¦ +chore,chores +chore,chores +choree,chorees +choregus,choregi +choreic,choreics +choreiform movement,choreiform movements +choreographer,choreographers +choreographist,choreographists +chorepiscopus,chorepiscopi +choreus,choreuses +choreutid,choreutids +Chorezmian,Chorezmians +choriamb,choriambs +choriambic,choriambics +choriambus,choriambuses,choriambi +chorine,chorines +chorioallantois,chorioallantoises,chorioallantoides +chorioangioma,chorioangiomas,chorioangiomata +choriocarcinoma,choriocarcinomas,choriocarcinomata +chorion,chorions +chorionic villus sampling,chorionic villus samplings +chorismate,chorismates +chorist,chorists +chorister,choristers +choristid,choristids +choristodere,choristoderes +choristoma,choristomas,choristomata +chorizo,chorizos +chorkor,chorkors +chorograph,chorographs +chorographer,chorographers +choroid,choroids +choroidea,choroideas +choroiditis,choroidites +choroidopathy,choroidopathies +choroisotherm,choroisotherms +choropleth map,choropleth maps +chortle,chortles +chortler,chortlers +chorus,choruses,chorusses +choruser,chorusers +chorus girl,chorus girls +chorus-girl,chorus-girls +chorusgirl,chorusgirls +chorus line,chorus lines +chose,choses +chose jugΓ©e,choses jugΓ©es +chotchke,chotchkes +chott,chotts +Chouan,Chouans +chough,choughs +choultry,choultries +chouriΓ§o,chouriΓ§os +chouse,chouses +chousingha,chousinghas +chout,chouts +choux pastry,choux pastries +chowder head,chowder heads +chowder-head,chowder-heads +chowderhead,chowderheads +chow hall,chow halls +chowhound,chowhounds +chowk,chowks +chowkidar,chowkidars +chow line,chow lines +chowline,chowlines +chowrie,chowries +chowry,chowries +choy root,choy roots +Chozar,Chozars +chrch,chrches +chresard,chresards +chresmologue,chresmologues +chrestomathy,chrestomathies +Chris Kindle,Chris Kindles +Chrismahanukwanzakah,Chrismahanukwanzakahs +chrismation,chrismations +chrismatory,chrismatories +chrism,chrisms +chrisom,chrisoms +Christadelphian,Christadelphians +christard,christards +Christard,Christards +christ,christs +Christ,Christs +christener,christeners +christening,christenings +Christer,Christers +christfag,christfags +Christfag,Christfags +Christian,Christians +Christianisation,Christianisations +Christianism,Christianisms +Christianist,Christianists +Christianization,Christianizations +Christian name,Christian names +Christian soldier,Christian soldiers +Christian year,Christian years +Christicide,Christicides +christie,christies +Christingle,Christingles +Christmas beetle,Christmas beetles +Christmas box,Christmas boxes +Christmas cake,Christmas cakes +Christmas card,Christmas cards +Christmascard,Christmascards +Christmas carol,Christmas carols +Christmas,Christmases +Christmas club,Christmas clubs +Christmas cookie,Christmas cookies +Christmas cracker,Christmas crackers +Christmas Day,Christmas Days +Christmas fern,Christmas ferns +Christmas graduate,Christmas graduates +Christmas Islander,Christmas Islanders +Christmas list,Christmas lists +Christmas number one,Christmas number ones +Christmas present,Christmas presents +Christmas pudding,Christmas puddings +Christmas rose,Christmas roses +Christmas seal,Christmas seals +Christmas season,Christmas seasons +Christmas stocking,Christmas stockings +Christmastide,Christmastides +Christmas time,Christmas times +Christmastime,Christmastimes +Christmas tree bill,Christmas tree bills +Christmas tree,Christmas trees +Christofascist,Christofascists +Christogram,Christograms +Christologist,Christologists +christom,christoms +Christophany,Christophanies +christophene,christophenes +christophine,christophines +Christ's thorn,Christ's thorns +christy,christies +chroma,chromas +chromagen,chromagens +chromalveolate,chromalveolates +chroman,chromans +chromane,chromanes +chromanol,chromanols +chromanone,chromanones +chromascope,chromascopes +chromate,chromates +chromatic number,chromatic numbers +chromatic scale,chromatic scales +chromatid,chromatids +chromatin,chromatins +chromatinization,chromatinizations +chromatogram,chromatograms +chromatograph,chromatographs +chromatophore,chromatophores +chromatopsia,chromatopsias +chromatoscope,chromatoscopes +chromatosome,chromatosomes +chromatosphere,chromatospheres +chromatrope,chromatropes +chromatype,chromatypes +chrome diopside,chrome diopsides +chrome dome,chrome domes +chrome-dome,chrome-domes +chromedome,chromedomes +chrome horn,chrome horns +chromene,chromenes +chromesthesia,chromesthesias +chromid,chromids +chromista,chromistas +chromoblast,chromoblasts +chromocene,chromocenes +chromocenter,chromocenters +chromo,chromos +chromo,chromos +chromocyte,chromocytes +chromodomain,chromodomains +chromodoridid,chromodoridids +chromogen,chromogens +chromogranin,chromogranins +chromograph,chromographs +chromography,chromographies +chromoleucite,chromoleucites +chromolithograph,chromolithographs +chromolithographer,chromolithographers +chromomere,chromomeres +chromomycin,chromomycins +chromonema,chromonemata +chromophane,chromophanes +chromophile,chromophiles +chromophobe,chromophobes +chromophore,chromophores +chromophyte,chromophytes +chromoplast,chromoplasts +chromoplastid,chromoplastids +chromoprotein,chromoproteins +chromoshadow,chromoshadows +chromosomal aberration,chromosomal aberrations +chromosomal localization,chromosomal localizations +chromosome,chromosomes +chromosphere,chromospheres +chromotherapist,chromotherapists +chromotherapy,chromotherapies +chromothripsis,chromothripses +chromotype,chromotypes +chromoxylograph,chromoxylographs +chromyl,chromyls +chronaxie,chronaxies +chronaxy,chronaxies +chron,chrons +chroneme,chronemes +chronic granulomatous disease,chronic granulomatous diseases +chronicle,chronicles +chronicler,chroniclers +chronic obstructive pulmonary disease,chronic obstructive pulmonary diseases +chronicon,chronicons +chronic traumatic encephalopathy,chronic traumatic encephalopathies +chronid,chronids +chroniosuchid,chroniosuchids +chronique,chroniques +chronobiologist,chronobiologists +chronoclasm,chronoclasms +chronofile,chronofiles +chronogeometry,chronogeometries +chronogram,chronograms +chronogrammatist,chronogrammatists +chronograph,chronographs +chronographer,chronographers +chronography,chronographies +chronoisotherm,chronoisotherms +chronolect,chronolects +chronologer,chronologers +chronologist,chronologists +chronometer,chronometers +chronometre,chronometres +chronometrist,chronometrists +chrononaut,chrononauts +chronon,chronons +chrononym,chrononyms +chronopher,chronophers +chronoscope,chronoscopes +chronosequence,chronosequences +chronotaxis,chronotaxes +chronotherapy,chronotherapies +chronotrope,chronotropes +chronotype,chronotypes +chronovisor,chronovisors +chronozone,chronozones +chrysalis,chrysalises,chrysalides +chrysandroside,chrysandrosides +chrysanth,chrysanths +chrysanthemum,chrysanthemums +chrysidid,chrysidids +Chrysler,Chryslers +chrysochlore,chrysochlores +chrysochlorid,chrysochlorids +chrysolite,chrysolites +chrysomelid,chrysomelids +chrysophanol,chrysophanols +chrysophile,chrysophiles +chrysophyte,chrysophytes +chrysopid,chrysopids +chrysotherapy,chrysotherapies +chrysotype,chrysotypes +chrystal,chrystals +chthamalid,chthamalids +chthoniid,chthoniids +chuba,chubas +chubasco,chubascos +chubb,chubbs +chubby,chubbies +chub,chubs +chub,chubs,chub +chubhead,chubheads +chubi,chubis +chubster,chubsters +chubsucker,chubsuckers +chuck,chucks +chuck,chucks +chuck,chucks +chuck,chucks +chucker,chuckers +chuckey,chuckeys +chuckhole,chuckholes +chuckiestone,chuckiestones +chuckle,chuckles +chucklehead,chuckleheads +chuckler,chucklers +chuckling,chucklings +chuck steak,chuck steaks +chuckstone,chuckstones +chuck wagon,chuck wagons +chuckwagon,chuckwagons +chuckwalla,chuckwallas +chuck-will's-widow,chuck-will's-widows +chuddah,chuddahs +chuddar,chuddars +chudder,chudders +chuddur,chuddurs +chuet,chuets +chufa,chufas +chuff,chuffs +chuff,chuffs +chuffle,chuffles +chug-a-lug,chug-a-lugs +chug,chugs +chug,chugs +chug,chugs +chugger,chuggers +chughole,chugholes +CHUI,CHUIs +chukar,chukars +chukar partridge,chukar partridges +chukka,chukkas +chukker,chukkers +chulengo,chulengos +chulent,chulents +chullo,chullos +chultun,chultuns,chultunob +chuman,chumans +chumar,chumars +chumbucket,chumbuckets +chum,chums +chummery,chummeries +chump chop,chump chops +chump,chumps +chum salmon,chum salmons +chunk,chunks +chunker,chunkers +chunky monkey,chunky monkeys +chunni,chunnis +chupacabra,chupacabras +chupacabras,chupacabras +chupatty,chupatties +chuppah,chuppahs,chuppot +chuquiragua,chuquiraguas +churada,churadas +church affiliation,church affiliations +church-ale,church-ales +church bell,church bells +church crawler,church crawlers +churchdom,churchdoms +church door,church doors +church-door,church-doors +churchdoor,churchdoors +churche,churches +churchful,churchfuls +church-goer,church-goers +churchgoer,churchgoers +churchhouse,churchhouses +Churchillian,Churchillians +churching,churchings +church key,church keys +churchkey,churchkeys +churchkhela,churchkhelas +churchling,churchlings +churchman,churchmen +churchperson,churchpersons,churchpeople +church planter,church planters +churchplanter,churchplanters +church service,church services +churchship,churchships +Church Slavonicism,Church Slavonicisms +churchward,churchwards +churchwarden,churchwardens +churchwarden pipe,churchwarden pipes +churchwardenship,churchwardenships +churchwarden's pew,churchwarden's pews +churchwoman,churchwomen +church-yard,church-yards +churchyard,churchyards +churchyard cough,churchyard coughs +churchy,churchies +churel,churels +churi,churis +churinga,churingas +churl,churls +churme,churmes +churnalist,churnalists +churn,churns +churner,churners +churning,churnings +churrascaria,churrascarias +churro,churros +chusquea,chusqueas +chute,chutes +chutter,chutters +Chuukese,Chuukese +Chuvash,Chuvashes +Chvostek sign,Chvostek signs +chyazate,chyazates +chylification,chylifications +chylomicron,chylomicrons +chylothorax,chylothoraces +chymase,chymases +chymist,chymists +chymotrypsinogen,chymotrypsinogens +chyometer,chyometers +chypre,chypres +Chypre,Chypres +chyromyid,chyromyids +chyron,chyrons +chyrstal,chyrstals +chytrid,chytrids +ciabatta,ciabattas +cibation,cibations +cibol,cibols +ciborium,ciboriums,ciboria +cicada,cicadas,cicadae +cicadellid,cicadellids +cicadid,cicadids +cicala,cicalas +cicatrice,cicatrices +cicatricle,cicatricles +cicatricula,cicatriculas +cicatricule,cicatricules +cicatrix,cicatrixes,cicatrices +cicatrizant,cicatrizants +cicatrization,cicatrizations +CIC,CICs +cicero,ciceros +cicerone,ciceroni +cichlid,cichlids +cicindelid,cicindelids +cicisbeo,cicisbeos,cicisbei +ciclatoun,ciclatouns +ciclosporin,ciclosporins +ciconiid,ciconiids +CICU,CICUs +cidarid,cidarids +CID,CIDs +cider house,cider houses +ciderist,ciderists +cidermaker,cidermakers +cidery,cideries +cierge,cierges +cigar box,cigar boxes +cigar,cigars +cigar cutter,cigar cutters +cigaret,cigarets +cigarette-boat,cigarette-boats +cigarette card,cigarette cards +cigarette,cigarettes +cigarette lighter,cigarette lighters +cigarillo,cigarillos,cigarilloes +cigarmaker,cigarmakers +cigar store Indian,cigar store Indians +cig,cigs +ciggie,ciggies +ciggy,ciggies +ciguateratoxin,ciguateratoxins +ciguatoxin,ciguatoxins +ciid,ciids +ciliary body,ciliary bodies +ciliary muscle,ciliary muscles +ciliary zonule,ciliary zonules +ciliate,ciliates +Cilician,Cilicians +ciliopathy,ciliopathies +cilium,cilia +cill,cills +cilly,cillies +cimar,cimars +cimbal,cimbals +cimbalom,cimbaloms +cimbalon,cimbalons +cimbasso,cimbassos,cimbassi +cimbia,cimbias +cimbicid,cimbicids +Cimbrian,Cimbrians +cimeliarch,cimeliarchs +cimeter,cimeters +cimex,cimices +cimicid,cimicids +cimicifuga,cimicifugas +cimid,cimids +Cimmerian,Cimmerians +cimmerianism,cimmerianisms +cimoliasaurid,cimoliasaurids +cimolodontid,cimolodontids +cimolomyid,cimolomyids +CINC,CINCs +cinch,cinches +cincher,cinchers +cinchona,cinchonas +cinchoninium,cinchoniniums +Cincinnatian,Cincinnatians +cincinnus,cincinni +cinclid,cinclids +cincture,cinctures +cinder block,cinder blocks +cinderblock,cinderblocks +cinder,cinders +cinder cone,cinder cones +cinderella,cinderellas +Cinderella,Cinderellas +cinderella stamp,cinderella stamps +cineast,cineasts +cineaste,cineastes +cine camera,cine cameras +cinecamera,cinecameras +cine film,cine films +cinΓ© film,cinΓ© films +cinΓ©film,cinΓ©films +cinemagoer,cinemagoers +cinemaphotographer,cinemaphotographers +cinematheque,cinematheques +cinematograph,cinematographs +cinematographer,cinematographers +cinematographist,cinematographists +cineol,cineols +cinephile,cinephiles +cineplex,cineplexes +cineradiograph,cineradiographs +cinerarium,cineraria +cinerary urn,cinerary urns +cinerator,cinerators +cinerecording,cinerecordings +cinereous tinamou,cinereous tinamous +cinereous vulture,cinereous vultures +cinerite,cinerites +cingle,cingles +cingulate cortex,cingulate cortexes +cingulate gyrus,cingulate gyri,cingulate gyruses +cingulid,cingulids +cingulopsid,cingulopsids +cingulotomy,cingulotomies +cinnabar moth,cinnabar moths +cinnamate,cinnamates +cinnamene,cinnamenes +cinnamon fern,cinnamon ferns +cinnamon roll,cinnamon rolls +cinnamon-rumped foliage-gleaner,cinnamon-rumped foliage-gleaners +cinnamon stick,cinnamon sticks +cinnamoyl,cinnamoyls +cinnamyl,cinnamyls +cinnoline,cinnolines +cinosternoid,cinosternoids +cinqfoil,cinqfoils +cinquain,cinquains +cinque,cinques +cinquedea,cinquedeas +cinquefoil,cinquefoils +cinque-pace,cinque-paces +cinsault,cinsaults +C instrument,C instruments +cinter,cinters +Cinzano,Cinzanos +cioid,cioids +cion,cions +cionid,cionids +cioppino,cioppinos +cipher,ciphers +cipherer,cipherers +ciphertext,ciphertexts +cipolline onion,cipolline onions +cipollini,cipollinis +cippus,cippuses,cippi +cI protein,cI proteins +circadian rhythm,circadian rhythms +circalittoral,circalittorals +circar,circars +Circassian,Circassians +circ,circs +circ,circs +circination,circinations +circle,circles +circle contact lens,circle contact lenses +circle jerk,circle jerks +circle-jerk,circle-jerks +circlejerk,circlejerks +circle lens,circle lenses +circle of fifths,circles of fifths +circle of friends,circles of friends +circle of Willis,circles of Willis +circle progression,circle progressions +circler,circlers +circle sector,circle sectors +circle segment,circle segments +circle skirt,circle skirts +circlet,circlets +circline,circlines +circling,circlings +circlip,circlips +circocele,circoceles +circovirus,circoviruses +circuit board,circuit boards +circuit breaker,circuit breakers +circuit-breaker,circuit-breakers +circuit,circuits +circuit court,circuit courts +circuiteer,circuiteers +circuiter,circuiters +circuition,circuitions +circuit race,circuit races +circuit rider,circuit riders +circuitry,circuitries +circuity,circuities +circulant,circulants +circular arc,circular arcs +circular argument,circular arguments +circular,circulars +circular definition,circular definitions +circular file,circular files +circular firing squad,circular firing squads +circular function,circular functions +circularisation,circularisations +circularization,circularizations +circular letter,circular letters +circular mil,circular mils +circular parry,circular parries +circular saw,circular saws +circular sector,circular sectors +circular segment,circular segments +circulator,circulators +circulatory,circulatories +circulatory system,circulatory systems +circulene,circulenes +circulet,circulets +circumambulation,circumambulations +circumambulator,circumambulators +circumbendibus,circumbendibuses +circumcellion,circumcellions +Circumcellion,Circumcellions +circumcenter,circumcenters +circumcentre,circumcentres +circumcircle,circumcircles +circumciser,circumcisers +circumcision,circumcisions +circumcisor,circumcisors +circumcursation,circumcursations +circumdiameter,circumdiameters +circumduction,circumductions +circumference,circumferences +circumferentor,circumferentors +circumfix,circumfixes +circumflection,circumflections +circumflex accent,circumflex accents +circumflex,circumflexes +circumflexion,circumflexions +circumfusion,circumfusions +circumgyration,circumgyrations +circumjovial,circumjovials +circumlocution,circumlocutions +circumnavigation,circumnavigations +circumnavigator,circumnavigators +circumorbital,circumorbitals +circumplex,circumplexes +circumposition,circumpositions +circumradius,circumradii +circumrotation,circumrotations +circumscriber,circumscribers +circumscription,circumscriptions +circumstance,circumstances +circumstantial,circumstantials +circumstantiality,circumstantialities +circumstaunce,circumstaunces +circumvallation,circumvallations +circumvection,circumvections +circumvention,circumventions +circumventor,circumventors +circumvolation,circumvolations +circumvolution,circumvolutions +circus,circuses +circus ring,circus rings +cirl bunting,cirl buntings +cirl,cirls +Cirneco dell'Etna,Cirnechi dell'Etna +cirolanid,cirolanids +cirque,cirques +cirratulid,cirratulids +cirrhitid,cirrhitids +cirrhosis,cirrhoses +cirrhus,cirrhi +cirrid,cirrids +cirriped,cirripeds +cirripede,cirripedes +cirrocumulus,cirrocumuli +cirrostratus,cirrostrati +cirroteuthid,cirroteuthids +cirrus,cirri +cirsocele,cirsoceles +cisco,ciscos,ciscoes +cisid,cisids +cis man,cis men +cisman,cismen +cisperson,cispersons,cispeople +cissexuality,cissexualities +cissid,cissids +cissoid,cissoids +cissy,cissies +cist,cists +cist,cists +cistecephalid,cistecephalids +Cistercian,Cistercians +cisterna,cisternae +cistern,cisterns +cisticolid,cisticolids +cis-trans isomer,cis-trans isomers +cistrome,cistromes +cistron,cistrons +cistus,cistuses +ciswoman,ciswomen +citadel,citadels +cital,citals +citation,citations +citation cord,citation cords +citation form,citation forms +citator,citators +cit,cits +citer,citers +citess,citesses +cithara,citharas,citharai +citharid,citharids +citharinid,citharinids +citharist,citharists +cither,cithers +cithern,citherns +citie,cities +citiner,citiners +citizen,citizens +citizeness,citizenesses +citizen extraordinaire,citizens extraordinaire +citizen journalist,citizen journalists +citizen's arrest,citizen's arrests,citizens' arrests +citola,citolas +citole,citoles +citral,citrals +citrange,citranges +citrangequat,citrangequats +citrate,citrates +citration,citrations +citrination,citrinations +citrine,citrines +citrometer,citrometers +citron,citrons +citronellol,citronellols +citronellyl,citronellyls +citrullination,citrullinations +citrulline,citrullines +citrumelo,citrumelos +citrus,citruses +citrus fruit,citrus fruits +cittern,citterns +cittern-head,cittern-heads +city administrator,city administrators +city banker,city bankers +city block,city blocks +city boy,city boys +city break,city breaks +citybus,citybuses +city center,city centers +city,cities +city council,city councils +city father,city fathers +city girl,city girls +city hall,city halls +cityscape,cityscapes +city slicker,city slickers +city state,city states +city symphony,city symphonies +city technology college,city technology colleges +city titty,city titties +civet,civets +civic crown,civic crowns +civic hacker,civic hackers +civil action,civil actions +civil discourse,civil discourses +civil enforcement officer,civil enforcement officers +civil engineer,civil engineers +civilian,civilians +civilisation,civilisations +civiliser,civilisers +civilist,civilists +civilization,civilizations +civilization-state,civilization-states +civilizer,civilizers +civil law,civil laws +civil marriage,civil marriages +civilogue,civilogues +civil partnership,civil partnerships +civil power,civil powers +civil registry,civil registries +civil servant,civil servants +civil service,civil services +civil-service,civil-services +civil suit,civil suits +civil trial,civil trials +civil union,civil unions +civil war,civil wars +civil wrong,civil wrongs +civil year,civil years +civitas,civitates +civvie,civvies +civvy,civvies +cixiid,cixiids +clachan,clachans +clacka bags,clacka bags +clacka,clackas +clack,clacks +clacker,clackers +clacking,clackings +Claddagh ring,Claddagh rings +clade,clades +cladist,cladists +cladoceran,cladocerans +cladode,cladodes +cladogram,cladograms +cladophore,cladophores +cladophyll,cladophylls +cladoselachid,cladoselachids +cladoxylopsid,cladoxylopsids +cladus,cladi +clagnut,clagnuts +claik,claiks +claimant,claimants +claim,claims +claime,claimes +claimer,claimers +claiming race,claiming races +claim jumper,claim jumpers +claims adjuster,claims adjusters +claim shanty,claim shanties +claim to fame,claims to fame +clairaudience,clairaudiences +clairon,clairons +clairvoyant,clairvoyants +clake,clakes +clamation,clamations +clamato,clamatos +clam bake,clam bakes +clambake,clambakes +clamber,clambers +clamberer,clamberers +clambroth,clambroths +clamburger,clamburgers +clam chowder,clam chowders +clam,clams +clam,clams +clamdigger,clamdiggers +clamdiggers,clamdiggers +clamjamphrie,clamjamphries +clammer,clammers +clamor,clamors +clamorer,clamorers +clamoring,clamorings +clamour,clamours +clamourer,clamourers +clamouring,clamourings +clamp,clamps +clampdown,clampdowns +clamper,clampers +clamp stand,clamp stands +clam shack,clam shacks +clamshell,clamshells +clamshell phone,clamshell phones +clam shrimp,clam shrimps +clam smacker,clam smackers +clam worm,clam worms +clan,clans +clancy,clancies +clang,clangs +clanger,clangers +clanging,clangings +clangor,clangors +clangour,clangours +clanjamfrie,clanjamfries +clank,clanks +clanker,clankers +clansman,clansmen +clansperson,clanspersons,clanspeople +clanswoman,clanswomen +clapalong,clapalongs +clapboard,clapboards +clap,claps +clap,claps +clape,clapes +clapmatch,clapmatches +clap net,clap nets +clapometer,clapometers +clapper board,clapper boards +clapperboard,clapperboards +clapper,clappers +clapper,clappers +clapping,clappings +clap skate,clap skates +claque,claques +claqueur,claqueurs +clarabella,clarabellas +clarain,clarains +Clare,Clares +clarence,clarences +Claret,Clarets +claribella,claribellas +clarichord,clarichords +clarification,clarifications +clarifier,clarifiers +clariid,clariids +clarinet,clarinets +clarinetist,clarinetists +clarinettist,clarinettists +clarino,clarinos +clarion call,clarion calls +clarion,clarions +clarionet,clarionets +clarithmetic,clarithmetics +Clarke orbit,Clarke orbits +clarkia,clarkias +claroteid,claroteids +clart,clarts +clash,clashes +clashing,clashings +clashy,clashies +clasp,clasps +clasper,claspers +clasping,claspings +clasp knife,clasp knives +clasp-knife,clasp-knives +class act,class acts +class action,class actions +class action lawsuit,class action lawsuits +class adapter pattern,class adapter patterns +class break,class breaks +class clown,class clowns +class diagram,class diagrams +classeme,classemes +classer,classers +classical computer,classical computers +classical era,classical eras +classical guitar,classical guitars +classicalist,classicalists +classicalization,classicalizations +classical logic,classical logics +classicalon,classicalons +classic,classics +classicist,classicists +classick,classicks +classification,classifications +classificationist,classificationists +classification scheme,classification schemes +classification society,classification societies +classified ad,classified ads +classified advertisement,classified advertisements +classified,classifieds +classifier,classifiers +classifying space,classifying spaces +class invariant,class invariants +classis,classes +classist,classists +classload,classloads +classloader,classloaders +classman,classmen +classmark,classmarks +classmate,classmates +classpath,classpathes +class reunion,class reunions +class ring,class rings +classroom,classrooms +classroomful,classroomfuls,classroomsful +class secretary,class secretaries +class variable,class variables +clast,clasts +clastogen,clastogens +clastogenesis,clastogeneses +clathrate,clathrates +clathrate compound,clathrate compounds +clathrinid,clathrinids +clathrochelate,clathrochelates +Clatsop,Clatsops,Clatsop +clatter,clatters +clatterer,clatterers +clatty,clattys +Claude glass,Claude glasses +Claude Lorraine glass,Claude Lorraine glasses +claudicant,claudicants +claudin,claudins +clause,clauses +clausidiid,clausidiids +clausiid,clausiids +clausiliid,clausiliids +claustrophile,claustrophiles +claustrophobe,claustrophobes +claustrophobic,claustrophobics +claustrum,claustra +clausula,clausulae +clavagellid,clavagellids +clavam,clavams +clavatulid,clavatulids +clave,claves +clavelin,clavelins +clavelinid,clavelinids +clavichord,clavichords +clavichordist,clavichordists +clavicle,clavicles +clavicorn,clavicorns +clavier,claviers +claviger,clavigers +claviger,clavigers +clavinet,clavinets +clavioline,claviolines +clavis,clavises,claves +clavula,clavulas,clavulae +clavulanate,clavulanates +clavule,clavules +clavus,clavuses +clavy,clavies +clawback,clawbacks +clawbed,clawbeds +claw,claws +clawed frog,clawed frogs +claw hammer,claw hammers +claw ring,claw rings +claxon,claxons +claybank,claybanks +claybed,claybeds +claybeg,claybegs +claycourt,claycourts +clayfield,clayfields +claykicker,claykickers +Claymate,Claymates +claymation,claymations +claym,clayms +claymore,claymores +claypan,claypans +clay pigeon,clay pigeons +claytonia,claytonias +CLDC,CLDCs +cleading,cleadings +cleanaholic,cleanaholics +clean and jerk,clean and jerks +clean bill of health,clean bills of health +clean chit,clean chits +clean,cleans +clean code,clean codes +clean copy,clean copies +cleaner,cleaners +cleaner fish,cleaner fishes,cleaner fish +cleaning,cleanings +cleaning shoe,cleaning shoes +cleanout,cleanouts +clean room,clean rooms +cleanroom,cleanrooms +cleanser,cleansers +clean sheet,clean sheets +clean shell,clean shells +cleansing,cleansings +clean skin,clean skins +cleanskin,cleanskins +clean slate,clean slates +clean sweep,clean sweeps +cleanup,cleanups +cleanup hitter,cleanup hitters +clearage,clearages +clear-air turbulence,clear-air turbulences +clearance hole,clearance holes +clear,clears +clearcoat,clearcoats +clearcutting,clearcuttings +cleardown,cleardowns +clearer,clearers +clearie,clearies +clearing bank,clearing banks +clearing,clearings +clearing house,clearing houses +clearinghouse,clearinghouses +clearing station,clearing stations +clear-out,clear-outs +clearout,clearouts +clear round,clear rounds +clearskin,clearskins +clearspan,clearspans +clearstarcher,clearstarchers +clearstory,clearstories +clear title,clear titles +clear view screen,clear view screens +clearway,clearways +clearweed,clearweeds +clearwing,clearwings +cleary,clearies +cleat,cleats +cleavage,cleavages +cleavage furrow,cleavage furrows +cleave,cleaves +cleaver,cleavers +cleek,cleeks +Cleese's woolly lemur,Cleese's woolly lemurs +cleeve,cleeves +clef,clefs +cleffer,cleffers +cleft chin,cleft chins +cleft,clefts +clefting,cleftings +cleft sentence,cleft sentences +cleft stick,cleft sticks +cleg,clegs +clegg,cleggs +cleidothaerid,cleidothaerids +cleistothecium,cleistothecia +cleit,cleits,cleitean +clematis,clematises,clematis +clem,clems +clementine,clementines +clench,clenches +clepe,clepes +clepsydra,clepsydras +cleptocracy,cleptocracies +cleptomaniac,cleptomaniacs +cleptoparasite,cleptoparasites +clerestory,clerestories +clergeon,clergeons +clergy,clergies +clergyman,clergymen +clergyperson,clergypersons,clergypeople +clergywoman,clergywomen +clerical,clericals +clerical collar,clerical collars +clericalist,clericalists +cleric,clerics +clerick,clericks +clerid,clerids +clerihew,clerihews +clerisy,clerisies +clerk-ale,clerk-ales +clerk,clerks +clerkess,clerkesses +clerkling,clerklings +clerkship,clerkships +clerodane,clerodanes +clerofascist,clerofascists +cleroterion,cleroteria +cleroterium,cleroteria +clerstory,clerstories +cleruchy,cleruchies +clethra,clethras +cleve,cleves +cleveite,cleveites +Cleveland steamer,Cleveland steamers +clever arse,clever arses +clever dick,clever dicks +cleversticks,cleversticks +clevis,clevises +clevis pin,clevis pins +clew,clews +clew-garnet,clew-garnets +clewline,clewlines +cley,cleys +cleystaff,cleystaffs +cliche,cliches +clichΓ©,clichΓ©s +click beetle,click beetles +click,clicks +click,clicks +click,clicks +clicker,clickers +clicket,clickets +clickhaler,clickhalers +clicking,clickings +clicking knife,clicking knives +clicko,clickos +clicko,clickos +clickprint,clickprints +clickstream,clickstreams +clickthrough,clickthroughs +clickthru,clickthrus +click track,click tracks +click wheel,click wheels +clickwrap license,clickwrap licenses +client,clients +clientship,clientships +cliff,cliffs +cliff,cliffs +cliff hanger,cliff hangers +cliff-hanger,cliff-hangers +cliffhanger,cliffhangers +cliffscape,cliffscapes +cliffside,cliffsides +cliff swallow,cliff swallows +clifftop,clifftops +clift,clifts +climacoceratid,climacoceratids +climacter,climacters +climacterical,climactericals +climacteric,climacterics +climacterid,climacterids +climate canary,climate canaries +climate,climates +climatic study,climatic studies +climatic summary,climatic summaries +climatisation,climatisations +climatography,climatographies +climatologist,climatologists +climatology,climatologies +climature,climatures +climax,climaxes +climax community,climax communities +climaxer,climaxers +climb,climbs +climb down,climb downs +climb-down,climb-downs +climbdown,climbdowns +climber,climbers +climbing bolt,climbing bolts +climbing frame,climbing frames +climbing gourami,climbing gouramis,climbing gouramies +climbing maidenhair fern,climbing maidenhair ferns +climbing nightshade,climbing nightshades +climbing wall,climbing walls +clime,climes +climograph,climographs +clinanthium,clinanthia +clinch,clinches +clincher,clinchers +clinch nut,clinch nuts +cline,clines +cling,clings +clinger,clingers +clingfish,clingfish,clingfishes +clingstone,clingstones +clinical death,clinical deaths +clinical stamp,clinical stamps +clinical trial,clinical trials +clinic,clinics +clinician,clinicians +clinid,clinids +clinique,cliniques +clinium,cliniums,clinia +clink,clinks +clinker block,clinker blocks +clinker,clinkers +clinker,clinkers +clinking,clinkings +clinoatacamite,clinoatacamites +clinochrysotile,clinochrysotiles +clinodiagonal,clinodiagonals +clinodome,clinodomes +clinoenstatite,clinoenstatites +clinometer,clinometers +clinometre,clinometres +clinopinacoid,clinopinacoids +clinopyroxene,clinopyroxenes +clinorotation,clinorotations +clinostat,clinostats +clint,clints +Clintonista,Clintonistas +Clintonite,Clintonites +cliometrician,cliometricians +clionaid,clionaids +clionid,clionids +clionitid,clionitids +cliopsid,cliopsids +clipboard,clipboards +clipbook,clipbooks +clip,clips +clip-clop,clip-clops +clipcock,clipcocks +clipeus,clipei +clip joint,clip joints +Clipper chip,Clipper chips +clipper,clippers +clippie,clippies +clip strip,clip strips +clique,cliques +clique number,clique numbers +cliquet,cliquets +clisospirid,clisospirids +clitch,clitches +clit,clits +clitellate,clitellates +clitellum,clitella +clitellus,clitelli +clitic,clitics +cliticization,cliticizations +clitoral glans,clitoral glans,clitoral glandes +clitoral hood,clitoral hoods +clitorectomy,clitorectomies +clitoridectomy,clitoridectomies +clitoris,clitorises,clitorides +clit teaser,clit teasers +clitter,clitters +clitty,clitties +clive,clives +clivia,clivias +clivity,clivities +cloaca,cloacae +cloak,cloaks +cloaking,cloakings +cloaking device,cloaking devices +cloakmaker,cloakmakers +cloakroom,cloakrooms +cloam,cloams +cloam oven,cloam ovens +cloath,cloaths +clobber,clobbers +clobberer,clobberers +clobbering,clobberings +CLOB,CLOBs +clochard,clochards +cloche,cloches +clockcase,clockcases +clock,clocks +clock,clocks +clock,clocks +clocke,clockes +clocker,clockers +clock face,clock faces +clockface,clockfaces +clock-face timetable,clock-face timetables +clock generator,clock generators +clockmaker,clockmakers +clock radio,clock radios +clock speed,clock speeds +clocksucker,clocksuckers +clock tower,clock towers +clocktower,clocktowers +clock vine,clock vines +clock watcher,clock watchers +clock-watcher,clock-watchers +clockwatcher,clockwatchers +clock-watching,clock-watchings +clockweight,clockweights +clockwork,clockworks +clockwork orange,clockwork oranges +clockwork universe,clockwork universes +clod,clods +clodhopper,clodhoppers +clodpate,clodpates +clodpole,clodpoles +clodpoll,clodpolls +clodronate,clodronates +cloff,cloffs +clog,clogs +clogger,cloggers +clog wog,clog wogs +clogwyn,clogwyns +cloisonne,cloisonne +cloister,cloisters +cloisterer,cloisterers +cloister vault,cloister vaults +cloistre,cloistres +cloistress,cloistresses +cloke,clokes +clome,clomes +clome oven,clome ovens +clomp,clomps +clomper,clompers +clone,clones +clonemate,clonemates +cloner,cloners +clone town,clone towns +clonewheel organ,clonewheel organs +clonk,clonks +clonotype,clonotypes +clonus,clonuses +clootie,clooties +clop,clops +close call,close calls +close,closes +close,closes +closed ball,closed balls +closed beta,closed betas +closed book,closed books +closed caption,closed captions +closed circuit,closed circuits +closed circulatory system,closed circulatory systems +closed compound,closed compounds +closed curve,closed curves +closed cut valley,closed cut valleys +closed-cut valley,closed-cut valleys +closed-end fund,closed-end funds +closed feedwater heater,closed feedwater heaters +closed file,closed files +closed formula,closed formulas +closed set,closed sets +closed shop,closed shops +closed syllable,closed syllables +closed system,closed systems +closed timelike curve,closed timelike curves +closed time loop,closed time loops +close encounter,close encounters +close helmet,close helmets +closeout,closeouts +close-packing,close-packings +close quarter,close quarters +closer,closers +close season,close seasons +close shave,close shaves +close stool,close stools +close-stool,close-stools +closestool,closestools +close stoole,close stooles +closest point of approach,closest points of approach +closet case,closet cases +closet,closets +closet drama,closet dramas +closetful,closetfuls,closetsful +close-up,close-ups +closeup,closeups +close-up lens,close-up lenses +closing,closings +closing time,closing times +closterovirus,closteroviruses +clostridium,clostridia +closure,closures +clotbur,clotburs +clot,clots +clothback,clothbacks +cloth,cloths,clothes +clothes-brush,clothes-brushes +clothes hanger,clothes hangers +clotheshorse,clotheshorses +clothes line,clothes lines +clothesline,clotheslines +clothes maiden,clothes maidens +clothesmaker,clothesmakers +clothes moth,clothes moths +clothes peg,clothes pegs +clothes-peg,clothes-pegs +clothespeg,clothespegs +clothespin,clothespins +clothespin vote,clothespin votes +clothespress,clothespresses +clothes shop,clothes shops +clothes tree,clothes trees +clothestree,clothestrees +clothes valet,clothes valets +clothier,clothiers +clothing bin,clothing bins +clothmaker,clothmakers +clotpoll,clotpolls +cloture,clotures +clΓ΄ture,clΓ΄tures +cloud bank,cloud banks +cloudbank,cloudbanks +cloud base,cloud bases +cloudberry,cloudberries +cloud burst,cloud bursts +cloud-burst,cloud-bursts +cloudburst,cloudbursts +cloudbust,cloudbusts +cloudbuster,cloudbusters +cloud ceiling,cloud ceilings +cloud chamber,cloud chambers +cloud,clouds +cloud deck,cloud decks +cloud ear,cloud ears +clouded leopard,clouded leopards +clouded yellow,clouded yellows +clouder,clouders +cloud forest,cloud forests +cloud genus,cloud genera +clouding,cloudings +cloudland,cloudlands +cloudless sulfur,cloudless sulfurs +cloudless sulphur,cloudless sulphurs +cloudlet,cloudlets +cloudline,cloudlines +cloudling,cloudlings +cloud on title,clouds on title +cloud point,cloud points +cloudscape,cloudscapes +cloud species,cloud species +cloud street,cloud streets +clough,cloughs +clough,cloughs +clout,clouts +cloutie,clouties +clout list,clout lists +clout-nail,clout-nails +clove,cloves +clove,cloves +clove,cloves +clove hitch,clove hitches +clove-hitch,clove-hitchs +clove hook,clove hooks +cloven hoof,cloven hooves +clove pink,clove pinks +clovepink,clovepinks +clover clamp,clover clamps +clover,clovers +cloverleaf,cloverleafs,cloverleaves +cloverleaf interchange,cloverleaf interchanges +clowd,clowds +clowder,clowders +clown car,clown cars +clown,clowns +clown doctor,clown doctors +clownfish,clownfish,clownfishes +clown shoe,clown shoes +cloyster,cloysters +cloze,clozes +CLT,CLTs +clubber,clubbers +clubbist,clubbists +club,clubs +club drug,club drugs +clubface,clubfaces +club fender,club fenders +clubfist,clubfists +club foot,club feet +clubfoot,clubfeet +club fungus,club fungi +clubgoer,clubgoers +club hair,club hairs +clubhand,clubhands +clubhauling,clubhaulings +clubhead,clubheads +club-hopper,club-hoppers +clubhouse,clubhouses +clubionid,clubionids +club kid,club kids +clubmaker,clubmakers +clubman,clubmen +clubmate,clubmates +club moss,club mosses +club-moss,club-mosses +clubmoss,clubmosses +club nine,club nines +clubroom,clubrooms +club-rush,club-rushes +clubrush,clubrushes +club sandwich,club sandwiches +club soda,club sodas +clubzine,clubzines +cluck,clucks +clucking,cluckings +cludge,cludges +cluebat,cluebats +clue-by-four,clue-by-fours +clue card,clue cards +clue,clues +clue stick,clue sticks +cluestick,cluesticks +Clumber spaniel,Clumber spaniels +clum,clums +clump block,clump blocks +clump,clumps +clumper,clumpers +clumsy,clumsies +Cluniac,Cluniacs +Cluniacensian,Cluniacensians +clunk,clunks +clunker,clunkers +cluon,cluons +clupanodonic acid,clupanodonic acids +clupeid,clupeids +clusiid,clusiids +cluster analysis,cluster analyses +cluster bomb,cluster bombs +clusterbomb,clusterbombs +cluster,clusters +cluster compound,cluster compounds +clustercore,clustercores +clustered index,clustered indices,clustered indexes +clusterfrack,clusterfracks +cluster fuck,cluster fucks +cluster-fuck,cluster-fucks +clusterfuck,clusterfucks +cluster headache,cluster headaches +clustering,clusterings +clusterisation,clusterisations +cluster state,cluster states +clutch bag,clutch bags +clutch,clutches +clutch,clutches +clutch initiation,clutch initiations +clutch pedal,clutch pedals +clutchplate,clutchplates +clutterer,clutterers +Clydesdale,Clydesdales +clypeasteroid,clypeasteroids +clypeosectid,clypeosectids +clypeus,clypei +clyster,clysters +cmavo,cmavo +cM,cM +CM,CMs +cmdlet,cmdlets +Cmdre,Cmdres +cmene,cmene +CNA,CNAs +CN,CNs +cnemis,cnemes +cnida,cnidae +cnidaria,cnidarias +cnidarian,cnidarians +cnidariologist,cnidariologists +cnidoblast,cnidoblasts +cnidocil,cnidocils +cnidocyst,cnidocysts +cnidocyte,cnidocytes +cnidopsin,cnidopsins +CNO cycle,CNO cycles +c note,c notes +c-note,c-notes +c*nt,c*nts +coaccumulation,coaccumulations +coaccused,coaccuseds +coacervate,coacervates +coacervation,coacervations +coach box,coach boxes +coachbox,coachboxes +coachbuilder,coachbuilders +coach,coaches +coachdog,coachdogs +coachee,coachees +coacher,coachers +coachfellow,coachfellows +coachful,coachfuls +coach gun,coach guns +coach horn,coach horns +coach horse,coach horses +coach lamp,coach lamps +coachload,coachloads +coachmaker,coachmakers +coachman,coachmen +coach roof,coach roofs +coachroof,coachroofs +coachsmith,coachsmiths +coachwhip,coachwhips +coachwoman,coachwomen +coachwork,coachworks +coachyard,coachyards +coaction,coactions +coactivation,coactivations +coactivator,coactivators +co-adaptation,co-adaptations +coadaptation,coadaptations +coadjustment,coadjustments +coadjutant,coadjutants +coadjutor bishop,coadjutor bishops +coadjutor,coadjutors +coadjutorship,coadjutorships +coadjutress,coadjutresses +coadjutrix,coadjutrixes,coadjutrices +coadjuvant,coadjuvants +coadministration,coadministrations +coadsorption,coadsorptions +coadventure,coadventures +coadventurer,coadventurers +co-affine,co-affines +coag,coags +coagency,coagencies +coagent,coagents +coagglutinin,coagglutinins +coaggregation,coaggregations +coagmentation,coagmentations +co-agonist,co-agonists +coagonist,coagonists +coagulant,coagulants +coagulase,coagulases +coagulate,coagulates +coagulator,coagulators +coagulin,coagulins +coagulometer,coagulometers +coagulum,coagula +coaita,coaitas +coaiti,coaitis +coak,coaks +coal ball,coal balls +coal bed,coal beds +coalbed,coalbeds +coal black,coal blacks +coal,coal,coals +coal drop,coal drops +coaler,coalers +coalery,coaleries +coalescence,coalescences +coalescent,coalescents +coalescer,coalescers +coalface,coalfaces +coalfield,coalfields +coalfish,coalfishes +coalgebra,coalgebras +coalheaver,coalheavers +coaling station,coaling stations +coalition,coalitions +coalitioner,coalitioners +coalitionist,coalitionists +coalition of the willing,coalitions of the willing +coally,coallies +coalman,coalmen +coal-meter,coal-meters +coal mine,coal mines +coalmine,coalmines +coalmouse,coalmouses,coalmice +coal oil,coal oils +coalpit,coalpits +coalsack,coalsacks +coal seam,coal seams +coal tar,coal tars +coal-tar,coal-tars +coal tit,coal tits +coaltit,coaltits +coal-whipper,coal-whippers +coalworker,coalworkers +coalworks,coalworks +coaming,coamings +coancestry,coancestries +coanchor,coanchors +coannihilation,coannihilations +coaptation,coaptations +coaptation splint,coaptation splints +coaptation suture,coaptation sutures +coarb,coarbs +coarchitect,coarchitects +coarse-graining,coarse-grainings +coarsener,coarseners +coarticulation,coarticulations +coassembly,assemblies +coassessor,coassessors +coassociator,coassociators +coastal motor boat,coastal motor boats +coastal squeeze,coastal squeezes +coast,coasts +coaster,coasters +coast fox,coast foxes +coast guard,coast guards +coastguard,coastguards +coastguardsman,coastguardsmen +coasting,coastings +coastline,coastlines +coast rat,coast rats +coastwatcher,coastwatchers +coat check,coat checks +coatdress,coatdresses +coatee,coatees +coater,coaters +coat hanger,coat hangers +coat-hanger,coat-hangers +coathanger,coathangers +coath,coaths +coathook,coathooks +coati,coatis +coatimundi,coatimundis +coating,coatings +coat of arms,coats of arms +coatomer,coatomers +coat rack,coat racks +coat-rack,coat-racks +coatrack,coatracks +coatroom,coatrooms +coat stand,coat stands +coat-stand,coat-stands +coatstand,coatstands +coattail,coattails +coat tree,coat trees +coaugmentation,coaugmentations +co-aunt,co-aunts +coauthor,coauthors +coauthorship,coauthorships +coaxation,coaxations +coax,coaxes +coax,coaxes +coaxer,coaxers +coaxial cable,coaxial cables +coaxis,coaxes +cobaea,cobaeas +cobalamin,cobalamins +cobalamine,cobalamines +cobaltate,cobaltates +cobalt blue,cobalt blues +cobaltinitrite,cobaltinitrites +cobaltocenium,cobaltoceniums +cobalt therapy,cobalt therapies +cobb,cobbs +cobber,cobbers +cobbing,cobbings +cobble,cobbles +cobbler,cobblers +cobblerfish,cobblerfish,cobblerfishes +cobblestone,cobblestones +Cobb salad,Cobb salads +cobelligerent,cobelligerents +cobette,cobettes +cobhouse,cobhouses +cobia,cobias,cobia +cobinding,cobindings +cobiron,cobirons +cobishop,cobishops +cobitid,cobitids +coble,cobles +cob nut,cob nuts +cobnut,cobnuts +coboose,cobooses +cobordism,cobordisms +coboson,cobosons +cobot,cobots +coboundary,coboundaries +cobourg,cobourgs +cobra,cobras +cobra de capello,cobras de capello +co-branding,co-brandings +co-brother,co-brothers +co-brother-in-law,co-brothers-in-law +cobstone,cobstones +cobswan,cobswans +cobwall,cobwalls +cobweb,cobwebs +cobweb site,cobweb sites +cobwebsite,cobwebsites +cobweb spider,cobweb spiders +Coca Cola,Coca Colas +Coca-Cola,Coca-Colas +cocalero,cocaleros +cocaptain,cocaptains +cocarcinogen,cocarcinogens +cocarde,cocardes +cocatalyst,cocatalysts +cocategory,cocategories +coccid,coccids +coccidia,coccidias +coccidian,coccidians +coccidioidomycosis,coccidioidomycoses +coccidiostat,coccidiostats +coccinellid,coccinellids +coccobacillus,coccobacilli +coccobacterium,coccobacteria +coccoid,coccoids +coccolite,coccolites +coccolith,coccoliths +coccolithophore,coccolithophores +coccolithophorid,coccolithophorids +coccosphere,coccospheres +cocculin,cocculins +cocculinellid,cocculinellids +cocculinid,cocculinids +coccygeal vertebra,coccygeal vertebrae +coccygectomy,coccygectomies +coccygeus,coccygei +coccyx,coccyges +cocelebrant,cocelebrants +Cocha antshrike,Cocha antshrikes +cochain,cochains +cochain complex,cochain complexes +co-chair,co-chairs +cochair,cochairs +co-channel interference,co-channel interferences +cochaperone,cochaperones +cochaperonin,cochaperonins +cochineal,cochineals +cochineal fig,cochineal figs +Cochin fowl,Cochin fowls +cochlea,cochleas,cochleae +cochlear implant,cochlear implants +cochleosaurid,cochleosaurids +co-citation,co-citations +cocitation,cocitations +cockade,cockades +cock-a-doodle-doo,cock-a-doodle-doos +cockalane,cockalanes +cock-a-leekie,cock-a-leekies +cockalorum,cockalorums +cockamamie,cockamamies +cock-and-bull story,cock-and-bull stories +cockapoo,cockapoos +cockateel,cockateels +cockatiel,cockatiels +cockatoo,cockatoos +cockatoo farmer,cockatoo farmers +cockatrice,cockatrices +cock-bawd,cock-bawds +cockbird,cockbirds +cock block,cock blocks +cockblock,cockblocks +cockblocker,cockblockers +cockboat,cockboats +cockbrain,cockbrains +cockchafer,cockchafers +cock,cocks +cock,cocks +cock,cocks +cock-crow,cock-crows +cockcrow,cockcrows +cockcrowing,cockcrowings +cocked hat,cocked hats +cocker,cockers +cocker,cockers +cockerel,cockerels +cockerney,cockerneys +Cockerney,Cockerneys +cockerpoo,cockerpoos +cocker spaniel,cocker spaniels +cocket,cockets +cocket writer,cocket writers +cockeye,cockeyes +cockface,cockfaces +cockfag,cockfags +cockfight,cockfights +cockfighter,cockfighters +cock gobbler,cock gobblers +cockhead,cockheads +cock-horse,cock-horses +cockhorse,cockhorses +cocking of a snook,cocking of snooks +cock juice,cock juices +cockleboat,cockleboats +cocklebur,cockleburs +cockleburr,cockleburrs +cockle,cockles +cockle,cockles +cockler,cocklers +cockleshell,cockleshells +cocklicker,cocklickers +cockling,cocklings +cockloft,cocklofts +cockmaster,cockmasters +cockmaster,cockmasters +cockmatch,cockmatches +cockmunch,cockmunches +cockmuncher,cockmunchers +cockneycality,cockneycalities +cockney,cockneys +cockneyfication,cockneyfications +cock of the plains,cocks of the plains +cock-of-the-rock,cocks-of-the-rock +cock of the roost,cocks of the roost +cock of the walk,cocks of the walk +cock-padle,cock-padles +cock pigeon,cock pigeons +cock pilot,cock pilots +cockpit,cockpits +cockpit recorder,cockpit recorders +cockpit voice recorder,cockpit voice recorders +cock pump,cock pumps +cockpunch,cockpunches +cock ring,cock rings +cockroach,cockroaches +cockroach taxi,cockroach taxis +cockroach wasp,cockroach wasps +cock-robin,cock-robins +cock rocker,cock rockers +cockscomb,cockscombs +cockserver,cockservers +cockshaft,cockshafts +cockshit,cockshits +cockshot,cockshots +cockshut,cockshuts +cockshy,cockshies +cocksman,cocksmen +cock sock,cock socks +cock-sparrow,cock-sparrows +cockspur,cockspurs +cock-stand,cock-stands +cockster,cocksters +cocksucker,cocksuckers +cockswain,cockswains +cocktail bar,cocktail bars +cocktail,cocktails +cocktail dress,cocktail dresses +cocktailery,cocktaileries +cocktail hat,cocktail hats +cocktailian,cocktailians +cocktail lounge,cocktail lounges +cocktail party,cocktail parties +cocktail party graph,cocktail party graphs +cocktail sausage,cocktail sausages +cocktail stick,cocktail sticks +cocktease,cockteases +cockteaser,cockteasers +cock throwing,cock throwings +cock-up,cock-ups +cockup,cockups +cocky,cockies +coclique,cocliques +coclustering,coclusterings +cocoa bean,cocoa beans +cocoanut,cocoanuts +coco,cocos +coco-de-mer,coco-de-mers +cocolonization,cocolonizations +cocondensation,cocondensations +co-conspirator,co-conspirators +coconspirator,coconspirators +coconsul,coconsuls +coconut crab,coconut crabs +coconut palm,coconut palms +coconut shy,coconut shies +cocoon,cocoons +cocoonery,cocooneries +Cocopah,Cocopah +coco palm,coco palms +cocopalm,cocopalms +cocopan,cocopans +cocoplum,cocoplums +co,cos +Cocos Islander,Cocos Islanders +cocounsel,cocounsels +cocoyam,cocoyams +cocreation,cocreations +cocreator,cocreators +cocrystal,cocrystals +cocrystallisation,cocrystallisations +cocrystallization,cocrystallizations +coction,coctions +cocultivation,cocultivations +coculture,cocultures +cocycle,cocycles +coda,codas +CODA,CODAs +cod-banger,cod-bangers +cod,cods +cod,cods +codder,codders +coddle,coddles +coddler,coddlers +codebase,codebases +code block,code blocks +codebook,codebooks +codebreaker,codebreakers +codebtor,codebtors +codec,codecs +code,codes +co-defendant,co-defendants +codefendant,codefendants +codel,codels +codelength,codelengths +codeletion,codeletions +code monkey,code monkeys +code name,code names +codename,codenames +code of conduct,codes of conduct +code of honour,codes of honour +code of practice,codes of practice +code of silence,codes of silence +code page,code pages +codepage,codepages +co-dependence,co-dependences +codependence,codependences +co-dependent,co-dependents +codependent,codependents +code point,code points +codepoint,codepoints +coder,coders +code review,code reviews +codeset,codesets +codeshare,codeshares +codesheet,codesheets +codesigner,codesigners +code smell,code smells +codespace,codespaces +codestream,codestreams +codetalker,codetalkers +codetection,codetections +codetta,codettas +codeveloper,codevelopers +codeword,codewords +codex,codices,codexes +codger,codgers +codhead,codheads +codicil,codicils +codicologist,codicologists +codification,codifications +codifier,codifiers +codimension,codimensions +coding,codings +codirector,codirectors +codiscovery,codiscoveries +codist,codists +codiversification,codiversifications +codlin,codlins +codline,codlines +codling,codlings +codling,codlings +codling moth,codling moths +codocyte,codocytes +codomain,codomains +codon,codons +codpiece,codpieces +codriver,codrivers +codrug,codrugs +coecilian,coecilians +co-ed,co-eds +coed,coeds +coeditor,coeditors +coeditorship,coeditorships +coeffect,coeffects +coefficient,coefficients +coΓ«fficient,coΓ«fficients +coefficient of friction,coefficients of friction +coefficient of thermal expansion,coefficients of thermal expansion +coehorn,coehorns +coelacanth,coelacanths +cΕ“lacanth,cΕ“lacanths +coelacanthid,coelacanthids +coelenterate,coelenterates +coelenteron,coelenterons,coelentera +coeliac,coeliacs +coelia,coeliae +cΕ“lia,cΕ“liΓ¦ +coelioscopy,coelioscopies +coeliotomy,coeliotomies +cΕ“liotomy,cΕ“liotomies +coelodont,coelodonts +cΕ“loma,cΕ“lomata,cΕ“lomas +coelomate,coelomates +coelom,coeloms +cΕ“lom,cΕ“loms +coelomocyte,coelomocytes +coelomycete,coelomycetes +coelophysid,coelophysids +coelopid,coelopids +cΕ“loscope,cΕ“loscopes +coelostat,coelostats +coelurid,coelurids +coelurosauravid,coelurosauravids +coelurosaur,coelurosaurs +coelurosaurian,coelurosaurians +cΕ“meterium,cΕ“meteria +cΕ“metery,cΕ“meteries +coemption,coemptions +cΕ“nΓ¦sthesia,cΕ“nΓ¦sthesias,cΕ“nΓ¦sthesiΓ¦ +cΕ“nΓ¦sthesis,cΕ“nΓ¦stheses +coenagrionid,coenagrionids +coend,coends +coendoo,coendoos +coendou,coendous +coenenchyma,coenenchymata +coenenchym,coenenchyms +coenobite,coenobites +coenobitid,coenobitids +cΕ“noblast,cΕ“noblasts +coenocyte,coenocytes +cΕ“nΕ“cium,cΕ“nΕ“cia +coenomyiid,coenomyiids +coenopopulation,coenopopulations +coenosarc,coenosarcs +cΕ“nosarc,cΕ“nosarcs +coenose,coenoses +cΕ“nosteum,cΕ“nosteums,cΕ“nostea +coenrichment,coenrichments +coenure,coenures +coenurosis,coenuroses +coenurus,coenuri +coenzyme,coenzymes +coequal,coequals +coercee,coercees +coercer,coercers +coercion,coercions +coercionist,coercionists +coercitivity,coercitivities +coerebid,coerebids +coestate,coestates +coetanean,coetaneans +coeternity,coeternities +coeval,coevals +coevent,coevents +coexecutor,coexecutors +coexecutrix,coexecutrixes,coexecutrices +coexistence,coexistences +coexistent,coexistents +coexposure,coexposures +coexpression,coexpressions +coextension,coextensions +coextinction,coextinctions +coextraction,coextractions +cofactor,cofactors +co-father,co-fathers +co-father-in-law,co-fathers-in-law +cofavorite,cofavorites +coferment,coferments +cofermion,cofermions +coffee bar,coffee bars +coffee bean,coffee beans +coffee break,coffee breaks +coffeecake,coffeecakes +coffee grinder,coffee grinders +coffee house,coffee houses +coffee-house,coffee-houses +coffeehouse,coffeehouses +coffee klatch,coffee klatches +coffee liqueur,coffee liqueurs +coffee machine,coffee machines +coffee maker,coffee makers +coffeemaker,coffeemakers +coffeeman,coffeemen +coffee morning,coffee mornings +coffee pot,coffee pots +coffeepot,coffeepots +coffee roll,coffee rolls +coffeeroom,coffeerooms +coffee royal,coffee royals +coffee shop,coffee shops +coffeeshop,coffeeshops +coffee table book,coffee table books +coffee-table book,coffee-table books +coffee table,coffee tables +coffer,coffers +coffer-dam,coffer-dams +cofferdam,cofferdams +cofferer,cofferers +coffice,coffices +coffice,coffices +coffin bone,coffin bones +coffin,coffins +coffin dodger,coffin dodgers +coffinite,coffinites +coffin nail,coffin nails +coffin ride,coffin rides +coffin ship,coffin ships +coffle,coffles +cofibration,cofibrations +cofilin,cofilins +cofocus,cofoci +coformulation,coformulations +co-founder,co-founders +cofounder,cofounders +coframe,coframes +cofunction,cofunctions +cofunctor,cofunctors +co-fusion,co-fusions +cog,cogs +cog,cogs +cog,cogs +cog,cogs +cogebra,cogebras +cogen,cogens +cogency,cogencies +cogenerator,cogenerators +cogener,cogeners +cogger,coggers +coggery,coggeries +coggle,coggles +coggle,coggles +cogitator,cogitators +coglycolide,coglycolides +cogman,cogmen +cognac,cognacs +cognacy,cognacies +cognate,cognates +cognation,cognations +cognisee,cognisees +cognisor,cognisors +cognit,cognits +cognitive behavioral therapist,cognitive behavioral therapists +cognitive behavioural therapist,cognitive behavioural therapists +cognitive disability,cognitive disabilities +cognitive science,cognitive sciences +cognizance,cognizances +cognizaunce,cognizaunces +cognizee,cognizees +cognizer,cognizers +cognizor,cognizors +cognomen,cognomens,cognomina +cognominal,cognominals +cognomination,cognominations +cognoscente,cognoscenti +cognovit,cognovits +cogovernor,cogovernors +co-grandfather,co-grandfathers +co-grandfather-in-law,co-grandfathers-in-law +co-grandmother,co-grandmothers +co-grandparent,co-grandparents +cograph,cographs +cogroup,cogroups +coguardian,coguardians +cogue,cogues +cog wheel,cog wheels +cogwheel,cogwheels +cohabitant,cohabitants +cohabitation,cohabitations +cohabitator,cohabitators +cohabitee,cohabitees +cohabiter,cohabiters +cohabitor,cohabitors +cohaversine,cohaversines +coheir,coheirs +coheiress,coheiresses +cohen,cohanim +coherald,coheralds +coherence,coherences +coherentist,coherentists +coherer,coherers +coheritor,coheritors +cohesin,cohesins +cohobation,cohobations +coho,cohos +cohoe,cohoes +coholder,coholders +cohomology,cohomologies +cohomotopy,cohomotopies +cohorn,cohorns +cohortative,cohortatives +cohort,cohorts +coho salmon,coho salmon +co-host,co-hosts +cohost,cohosts +cohostess,cohostesses +cohune,cohunes +co-husband,co-husbands +cohyponym,cohyponyms +coideal,coideals +coidentity,coidentities +coif,coifs +coiffeur,coiffeurs +coiffeuse,coiffeuses +coiffure,coiffures +coign,coigns +coigne,coignes +coign of vantage,coigns of vantage +coiid,coiids +coil,coils +coil,coils +coiler,coilers +coil gun,coil guns +coilgun,coilguns +coilon,coilons +coilopoceratid,coilopoceratids +coil winder,coil winders +coimetrophobia,coimetrophobias +coin belt,coin belts +coinbox,coinboxes +coin cell,coin cells +coincidence,coincidences +coΓ―ncidence,coΓ―ncidences +coincidence point,coincidence points +coincider,coinciders +coinciding,coincidings +coin,coins +coindication,coindications +coin dispenser,coin dispensers +co-induction,co-inductions +coinduction,coinductions +coine,coines +coiner,coiners +coinfection,coinfections +coinhabitant,coinhabitants +coinheritance,coinheritances +coinheritor,coinheritors +coinkidink,coinkidinks +coinkydink,coinkydinks +co-in-law,co-in-laws +coin-op,coin-ops +coin purse,coin purses +coinquination,coinquinations +coinquirer,coinquirers +coin slot,coin slots +coinsured,coinsureds +coinsurer,coinsurers +cointersection,cointersections +cointervention,cointerventions +coinventor,coinventors +coinverse,coinverses +coinversion,coinversions +coin walk,coin walks +coion,coions +COIP,COIPs +coistrel,coistrels +coistril,coistrils +coit,coits +cojuror,cojurors +coke,cokes +Coke,Cokes +cokehead,cokeheads +cokenay,cokenays +coker,cokers +cokernel,cokernels +cokernut,cokernuts +cokewold,cokewolds +cokstele,coksteles +colaborer,colaborers +colabourer,colabourers +cola,colas +colada,coladas +coladeira,coladeiras +colander,colanders +colascione,colasciones +COLAtard,COLAtards +colation,colations +colatitude,colatitudes +colature,colatures +Colbert Bump,Colbert Bumps +Colcestrian,Colcestrians +Colchian,Colchians +col,cols +cold abscess,cold abscesses +cold call,cold calls +cold-calling,cold-callings +cold case,cold cases +cold chain,cold chains +cold chisel,cold chisels +cold cock,cold cocks +cold-cock,cold-cocks +cold,colds +cold cream,cold creams +cold deck,cold decks +cold finger,cold fingers +cold fish,cold fish,cold fishes +cold frame,cold frames +cold front,cold fronts +coldie,coldies +cold meat,cold meats +cold one,cold ones +cold open,cold opens +cold read,cold reads +cold shoulder,cold shoulders +cold-shut,cold-shuts +cold snap,cold snaps +cold sore,cold sores +cold spot,cold spots +coldspot,coldspots +cold steel,cold steel +cold tap,cold taps +cold trap,cold traps +coldtrap,coldtraps +cold wave,cold waves +cole,coles +colectomy,colectomies +coleen,coleens +colegatee,colegatees +coleiid,coleiids +coleoid,coleoids +coleophorid,coleophorids +coleopteran,coleopterans +coleopter,coleopters +coleopterist,coleopterists +coleopterologist,coleopterologists +coleoptile,coleoptiles +coleorhiza,coleorhizae +coleseed,coleseeds +colessee,colessees +colessor,colessors +colestaff,colestaves +coleta,coletas +colet,colets +coletit,coletits +coleus,coleuses +coley,coleys +colibacillosis,colibacilloses +colic,colics +colichemarde,colichemardes +colicin,colicins +colicine,colicines +colicroot,colicroots +colid,colids +coliform,coliforms +coliid,coliids +colimitation,colimitations +colimit,colimits +colin,colins +coline,colines +coliphage,coliphages +coliseum,coliseums +colitose,colitoses +collab,collabs +collabo,collabos +collaboration,collaborations +collaborationism,collaborationisms +collaborationist,collaborationists +collaborative client,collaborative clients +collaborative,collaboratives +collaborative creation,collaborative creations +collaborator,collaborators +collaboratory,collaboratories +collabulary,collabularies +collage,collages +collagenase,collagenases +collagen,collagens +collager,collagers +collagist,collagists +collapsar,collapsars +collapse,collapses +collapsin,collapsins +collapsion,collapsions +collapsogram,collapsograms +collarbone,collarbones +collar-button abscess,collar-button abscesses +collar,collars +collard,collards +collared anteater,collared anteaters +collared antshrike,collared antshrikes +collared dove,collared doves +collared peccary,collared peccaries +collarette,collarettes +collarmaker,collarmakers +collar of esses,collars of esses +collatee,collatees +collateral,collaterals +collateral energy,collateral energies +collateral form,collateral forms +collateralized debt obligation,collateralized debt obligations +collateralized loan obligation,collateralized loan obligations +collateral science,collateral sciences +collater,collaters +collationer,collationers +collator,collators +colleague,colleagues +collectable,collectables +collect,collects +collecter,collecters +collectible,collectibles +collectin,collectins +collecting society,collecting societies +collection,collections +collection plate,collection plates +collection-plate,collection-plates +collection society,collection societys +collective agreement,collective agreements +collective call sign,collective call signs +collective,collectives +collective fruit,collective fruits +collective investment scheme,collective investment schemes +collective noun,collective nouns +collective number,collective numbers +collective numeral,collective numerals +collectivist,collectivists +collectivization,collectivizations +collectorate,collectorates +collector,collectors +collector lane,collector lanes +collector's edition,collector's editions +collectorship,collectorships +collectour,collectours +colledg,colledges +colledge,colledges +colleen,colleens +college,colleges +collegemate,collegemates +colleger,collegers +college try,college tries +collegian,collegians +collegiate church,collegiate churches +collegiate,collegiates +collegium,collegia,collegiums +collembola,collembolas +collembolan,collembolans +collenchyma,collenchymas +collet,collets +collet,collets +colleter,colleters +colleterium,colleteria +colletid,colletids +colletor,colletors +colley,colleys +colliculus,colliculi +collider,colliders +collidine,collidines +collie,collies +collier,colliers +colliery,collieries +collie-shangie,collie-shangies +collieshangie,collieshangies +colliflower,colliflowers +colligation,colligations +collignoniceratid,collignoniceratids +collimator,collimators +collineation,collineations +colline,collines +collins,collinses +Collins,Collinses +Collins glass,Collins glasses +colliquament,colliquaments +colliquation,colliquations +colliquefaction,colliquefactions +collision bulkhead,collision bulkheads +collision,collisions +collision course,collision courses +collision detection,collision detections +collision mat,collision mats +collision theory,collision theories +collitigant,collitigants +colloblast,colloblasts +collocate,collocates +collocation,collocations +collocution,collocutions +collocutor,collocutors +collodion,collodions +collodiotype,collodiotypes +collodium,collodia +colloid,colloids +collonade,collonades +colloniid,colloniids +collop,collops +collophore,collophores +Collop Monday,Collop Mondays +colloquialism,colloquialisms +colloquist,colloquists +colloquium,colloquiums,colloquia +colloquy,colloquies +collor,collors +collosol,collosols +collour,collours +colluctation,colluctations +colluder,colluders +collum,colla +collusion,collusions +collutory,collutories +colluvium,colluvia +collybist,collybists +colly,collies +collyrium,collyria,collyriums +colobine,colobines +coloboma,colobomas,colobomata +colobus,colobuses +colocalization,colocalizations +co-location,co-locations +colocation,colocations +colocolo,colocolos +colocynth,colocynths +cologarithm,cologarithms +Colognian,Colognians +colombellinid,colombellinids +Colombian,Colombians +Colombian crake,Colombian crakes +Colombianism,Colombianisms +Colombian necktie,Colombian neckties +colombophile,colombophiles +colonate,colonates +colon,colons +colon,colons,cola +colon,colons,cola +colΓ³n,colΓ³ns,colones +Colonel Blimp,Colonel Blimps +colonel,colonels +colonelcy,colonelcies +colonelship,colonelships +coloner,coloners +colonette,colonettes +colonial,colonials +colonialist,colonialists +colonialization,colonializations +coloniarch,coloniarchs +colonic,colonics +colonisation,colonisations +coloniser,colonisers +colonist,colonists +colonization,colonizations +colonizationism,colonizationisms +colonizationist,colonizationists +colonizer,colonizers +colonnade,colonnades +colonnette,colonnettes +colonocyte,colonocytes +colonoscope,colonoscopes +colonoscopist,colonoscopists +colonoscopy,colonoscopies +colony,colonies +colony counter,colony counters +coloop,coloops +colophany,colophanies +colophon,colophons +Colophonian,Colophonians +colophony,colophonies +coloproctologist,coloproctologists +coloquintida,coloquintidas +Colorado beetle,Colorado beetles +colorant,colorants +coloration,colorations +coloratura,coloratura,coloraturas +colorature,coloratures +color bar,color bars +color blindness,color blindnesses +color by number,color by numbers +color charge,color charges +color commentator,color commentators +color coordinate,color coordinates +colorectum,colorectums +colored,coloreds +colored egg,colored eggs +colored pencil,colored pencils +colorer,colorers +color fade,color fades +color force,color forces +colorimeter,colorimeters +colorimetrist,colorimetrists +coloring book,coloring books +coloring,colorings +colorist,colorists +colorization,colorizations +colorizer,colorizers +colormaker,colormakers +colorman,colormen +colormap,colormaps +color-octet,color-octets +coloron,colorons +colorpoint,colorpoints +color pop,color pops +colors,colors +color space,color spaces +colorspace,colorspaces +color TV,color TVs +colorway,colorways +coloscope,coloscopes +coloscopy,coloscopies +colossΓ¦um,colossΓ¦ums +colossal squid,colossal squids,colossal squid +colossendeid,colossendeids +colosseum,colosseums +Colossian,Colossians +colossus,colossuses,colossi +colosteid,colosteids +colostomy,colostomies +colotomy,colotomies +colourant,colourants +colouration,colourations +colour bar,colour bars +colourbearer,colourbearers +colourcast,colourcasts +colourcaster,colourcasters +colour charge,colour charges +colour code,colour codes +coloured,coloureds +colourer,colourers +colour force,colour forces +colourimeter,colourimeters +colouring book,colouring books +colouring,colourings +colourisation,colourisations +colouriser,colourisers +colourist,colourists +colourization,colourizations +colourizer,colourizers +colourmaker,colourmakers +colourman,colourmen +colourmap,colourmaps +colourpoint,colourpoints +colour retention agent,colour retention agents +colour scheme,colour schemes +colour sergeant,colour sergeants +colourspace,colourspaces +colour triangle,colour triangles +colourtype,colourtypes +colourway,colourways +colour wheel,colour wheels +colp,colps +colporrhaphy,colporrhaphies +colporter,colporters +colporteur,colporteurs +colposcope,colposcopes +colposcopy,colposcopies +colpus,colpi +colstaff,colstaves +coltan,coltans +colt,colts +colter,colters +coltivirus,coltiviruses +coltsfoot,coltsfoots,coltsfeet +colt's tooth,colt's teeth +colubrariid,colubrariids +colubrid,colubrids +colugo,colugos,colugo +columbariid,columbariids +columbarium,columbariums,columbaria +columbary,columbaries +columbate,columbates +columbellid,columbellids +columbiad,columbiads +Columbian,Columbians +columbid,columbids +columbine,columbines +columbite,columbites +columella,columellae +columelloplasty,columelloplasties +columnal,columnals +column,columns +column density,column densities +columniation,columniations +column inch,column inches +columnist,columnists +column shifter,column shifters +column space,column spaces +column vector,column vectors +colure,colures +coly,colies +colydiid,colydiids +colymbid,colymbids +colza,colzas +coma,comae +coma,comas +comaker,comakers +comanager,comanagers +Comanche,Comanches +Comanchero,Comancheros +comart,comarts +comast,comasts +comasterid,comasterids +comatrix,comatrices +comatulid,comatulids +combatant,combatants +combat armor suit,combat armor suits +combat armour suit,combat armour suits +combat boot,combat boots +combater,combaters +combat sport,combat sports +comb-brush,comb-brushes +comb,combs +comb,combs +combe,combes +comber,combers +comber,combers +combfish,combfishes,combfish +comb-footed spider,comb-footed spiders +combi,combis +combi deck,combi decks +combinate,combinates +combinational circuit,combinational circuits +combination,combinations +combination lock,combination locks +combination product,combination products +combination room,combination rooms +combinator,combinators +combinatorialist,combinatorialists +combinatoriality,combinatorialities +combine,combines +combined statistical area,combined statistical areas +combine harvester,combine harvesters +combiner,combiners +combing,combings +combing ridge,combing ridges +combining character,combining characters +combining form,combining forms +combining weight,combining weights +comb jelly,comb jellies +comb-jelly,comb-jellies +combjelly,combjellies +combo box,combo boxes +combo,combos +combo deck,combo decks +comboloio,comboloios +comb-over,comb-overs +combover,combovers +combtooth blenny,combtooth blennies +combuster,combusters +combustible,combustibles +combustion chamber,combustion chambers +combustion,combustions +combustion engine,combustion engines +combustor,combustors +.com,.coms +come-all-ye,come-all-ye's,come-all-yes +come-all-you,come-all-yous +come along,come alongs +come-around,come-arounds +comeback,comebacks +comebacker,comebackers +comeback kid,comeback kids +comedian,comedians +comediator,comediators +comedication,comedications +comedienne,comediennes +comedietta,comediettas +comedo,comedones +comedogen,comedogens +comedogenic,comedogenics +comedolytic,comedolytics +comedown,comedowns +comedy of errors,comedies of errors +comedy of manners,comedies of manners +come-hither,come-hithers +comeling,comelings +come on,come ons +come-on,come-ons +come-outer,come-outers +comeouter,comeouters +come-over,come-overs +comeover,comeovers +comephorid,comephorids +comer,comers +comessation,comessations +comestible,comestibles +cometabolism,cometabolisms +cometarium,cometaria +comet,comets +comet-finder,comet-finders +comether,comethers +cometographer,cometographers +cometography,cometographies +comeupance,comeupances +comeuppance,comeuppances +comfit,comfits +comfit,comfits +comfiture,comfitures +comfortable,comfortables +comfortative,comfortatives +comfort break,comfort breaks +comfort,comforts +comforter,comforters +comfort girl,comfort girls +comfortress,comfortresses +comfort station,comfort stations +comfort woman,comfort women +comfort zone,comfort zones +comic book,comic books +comic,comics +comice,comices +comiconomenclaturist,comiconomenclaturists +comic strip,comic strips +comicsverse,comicsverses +comicverse,comicverses +coming and going,comings and goings +coming,comings +coming-out party,coming-out parties +coming together,coming togethers +comitadji,comitadjis +comitative case,comitative cases +comitatus,comitati +comitia,comitiae,comitas +comitology,comitologies +comity,comities +comlink,comlinks +comma,commas,commata +commandant,commandants +command,commands +command economy,command economies +commander,commanders +commanderess,commanderesses +commander in chief,commanders in chief +commander-in-chief,commanders-in-chief +commandership,commanderships +commandery,commanderies +Command key,Command keys +command line,command lines +command line interface,command line interfaces +command-line interpreter,command-line interpreters +commandment,commandments +Commandment,Commandments +commando,commandos +command paper,command papers +command pattern,command patterns +command performance,command performances +command post,command posts +commandress,commandresses +commandry,commandries +comma splice,comma splices +commaund,commaunds +commaundment,commaundments +commelinid,commelinids +commemoration,commemorations +commemorative,commemoratives +commemorator,commemorators +commencement,commencements +commendam,commendams +commendatary,commendataries +commendation,commendations +commendator,commendators +commendatory,commendatories +commend,commends +commender,commenders +commensal,commensals +commensalism,commensalisms +commensurability,commensurabilities +commensuration,commensurations +commensurator,commensurators +commensurizer,commensurizers +commentariat,commentariats +commentary,commentaries +commentation,commentations +commentator,commentators +commentatour,commentatours +comment,comments +commenter,commenters +commerce raider,commerce raiders +commercial bank,commercial banks +commercial buster,commercial busters +commercial,commercials +commercial invoice,commercial invoices +commercialisation,commercialisations +commerciality,commercialities +commercial model,commercial models +commercial traveller,commercial travellers +commie,commies +commie,commies +commie,commies +Commie,Commies +commination,comminations +comminglement,comminglements +commingler,comminglers +commingling,comminglings +comminution,comminutions +commis,commises,commis +commiseration,commiserations +commiserator,commiserators +commish,commishes +commissaire,commissaires +commissar,commissars +commissariat,commissariats +commissary,commissaries +commissaryship,commissaryships +commissionaire,commissionaires +commission bid,commission bids +commission,commissions +commission de bene esse,commissions de bene esse +commissioned officer,commissioned officers +commissioner,commissioners +commissionership,commissionerships +commissioning,commissionings +commissionnaire,commissionnaires +commissionship,commissionships +commissive,commissives +commissive mood,commissive moods +commissure,commissures +commissurotomy,commissurotomies +commital,commitals +commit,commits +commitment,commitments +commitment-phobe,commitment-phobes +commitmentphobe,commitmentphobes +commitment-phobia,commitment-phobias +commitology,commitologies +commit point,commit points +committal,committals +committal hearing,committal hearings +committee,committees +committeeman,committeemen +committeeperson,committeepersons,committeepeople +committeewoman,committeewomen +committer,committers +commixion,commixions +commixtion,commixtions +commixture,commixtures +commlink,commlinks +commo,commos +commodate,commodates +commode,commodes +commoditie,commodities +commodity,commodities +commodity exchange,commodity exchanges +commodity market,commodity markets +commodity meat,commodity meats +commodore admiral,commodore admirals +commodore,commodores +common alder,common alders +commonality,commonalities +commonalty,commonalties +common ancestor,common ancestors +common antilogarithm,common antilogarithms +common antilog,common antilogs +common area,common areas +common ash,common ashes +common bean,common beans +common blue,common blues +common bullfinch,common bullfinches +common buttonbush,common buttonbushes +common buzzard,common buzzards +common carp,common carps +common chickweed,common chickweeds +common clothes moth,common clothes moths +common cockchafer,common cockchafers +common cold,common colds +common columbine,common columbines +common,commons +common coupling,common couplings +common crossing,common crossings +common dandelion,common dandelions +common death adder,common death adders +common denominator,common denominators +common difference,common differences +common dolphin,common dolphins +common eider,common eiders +common eland,common elands +commoner,commoners +common European earwig,common European earwigs +common fraction,common fractions +Common Gateway Interface,Common Gateway Interfaces +common glow-worm,common glow-worms +common glowworm,common glowworms +common goldeneye,common goldeneyes +common grackle,common grackles +common green lacewing,common green lacewings +common gull,common gulls +commonhold,commonholds +common hornbeam,common hornbeams +common horsetail,common horsetails +commonition,commonitions +common juniper,common junipers +common kestrel,common kestrels +common-law marriage,common-law marriages +common loon,common loons +common man,common men +common marmoset,common marmosets +common minnow,common minnows +common mora,common moras +common multiple,common multiples +common nail,common nails +common name,common names +common nightingale,common nightingales +common noun,common nouns +common or garden variety,common or garden varieties +commonplace book,commonplace books +commonplace-book,commonplace-books +commonplace,commonplaces +common purpose,common purposes +common purse,common purses +common quail,common quails +common rat,common rats +common raven,common ravens +common redstart,common redstarts +common reed,common reeds +common ringlet,common ringlets +common room,common rooms +common seal,common seals +common sedge,common sedges +common shelduck,common shelducks +commonship,commonships +common shrew,common shrews +common snipe,common snipes +common vole,common voles +commonweal,commonweals +commonwealth,commonwealths +commonwealthman,commonwealthmen +Commonwealth realm,Commonwealth realms +commonwealthsman,commonwealthsmen +common whitefish,common whitefish +common woodpigeon,common woodpigeons +common year,common years +commorance,commorances +commorant,commorants +commoration,commorations +commote,commotes +commotion,commotions +communalist,communalists +communal understanding,communal understandings +communard,communards +Communard,Communards +commune,communes +communicable scale,communicable scales +communicant,communicants +communication,communications +communication mix,communication mixes +communications zone,communications zones +communicator,communicators +communion,communions +communion wafer,communion wafers +communique,communiques +communiquΓ©,communiquΓ©s +communisation,communisations +communism,communisms +communist bandit,communist bandits +communist,communists +Communist,Communists +communitarian,communitarians +communitization,communitizations +community card,community cards +Community Chest card,Community Chest cards +community chest,community chests +community college,community colleges +community,communities +community interest company,community interest companies +community language,community languages +Community language,Community languages +community nurse,community nurses +community psychiatric nurse,community psychiatric nurses +communiversity,communiversities +commutant,commutants +commutation,commutations +commutative algebra,commutative algebras +commutative ring,commutative rings +commutator,commutators +commutator length,commutator lengths +commutator subgroup,commutator subgroups +commute,commutes +commuter belt,commuter belts +commuter,commuters +commuter marriage,commuter marriages +commy,commies +COMO,COMOs +comodule,comodules +comΕ“die,comΕ“dies +comΕ“dy,comΕ“dies +comonad,comonads +comonoid,comonoids +comonomer,comonomers +Comoran,Comorans +comorbidity,comorbidities +Comorian,Comorians +comorphism,comorphisms +co-mother,co-mothers +co-mother-in-law,co-mothers-in-law +comovement,comovements +compact car,compact cars +compact,compacts +compact,compacts +compact disc,compact discs +compact disk,compact disks +compacter,compacters +compact fluorescent lamp,compact fluorescent lamps +compactification,compactifications +compaction,compactions +compactivity,compactivities +compact neighborhood,compact neighborhoods +compact neighbourhood,compact neighbourhoods +compacton,compactons +compactor,compactors +compact space,compact spaces +compactum,compacta +compadre,compadres +compage,compages +compagination,compaginations +compander,companders +companding,compandings +compandor,compandors +companie,companies +companionability,companionabilities +companion animal,companion animals +companionate marriage,companionate marriages +companion cell,companion cells +companion,companions +companion ladder,companion ladders +companionship,companionships +companionway,companionways +companisation,companisations +companization,companizations +compansion,compansions +company clinic,company clinics +company front,company fronts +company man,company men +company seal,company seals +company sergeant major,company sergeants major,company sergeant majors +company store,company stores +company-store,company-stores +company town,company towns +comparability,comparabilities +comparable,comparables +comparable function,comparable functions +comparate,comparates +comparation,comparations +comparatist,comparatists +comparative case,comparative cases +comparative,comparatives +comparative degree,comparative degrees +comparative linguist,comparative linguists +comparative superlative,comparative superlatives +comparativist,comparativists +comparator,comparators +comparer,comparers +comparison,comparisons +comparison shop,comparison shops +comparison shopper,comparison shoppers +compartmentalizer,compartmentalizers +compartmentation,compartmentations +compartment,compartments +compartner,compartners +compass,compasses +compass deflection,compass deflections +compasse,compasses +compass error,compass errors +compassionate use,compassionate uses +compass needle,compass needles +compass point,compass points +compass rose,compass roses +compatibilisation,compatibilisations +compatibiliser,compatibilisers +compatibilist,compatibilists +compatibilization,compatibilizations +compatibilizer,compatibilizers +compatible,compatibles +compatriot,compatriots +comp,comps +compeer,compeers +compellation,compellations +compellative,compellatives +compeller,compellers +compend,compends +compendium,compendiums,compendia +compensation,compensations +compensation culture,compensation cultures +compensator,compensators +comper,compers +compere,comperes +compΓ¨re,compΓ¨res +competency,competencies +competitive advantage,competitive advantages +competitivity,competitivities +competitor,competitors +competitour,competitours +competitress,competitresses +competitrix,competrices +compiland,compilands +compilate,compilates +compilator,compilators +compile,compiles +compiler,compilers +compile time,compile times +complacency,complacencies +complainant,complainants +complainaunt,complainaunts +complainer,complainers +complaining,complainings +complaint,complaints +complanadine,complanadines +complection,complections +complementarian,complementarians +complementary antonym,complementary antonyms +complementary colour,complementary colours +complementary,complementaries +complementary function,complementary functions +complementary medicine,complementary medicines +complementary region,complementary regions +complement,complements +complementiser,complementisers +complementizer,complementizers +complement membrane attack complex,complement membrane attack complexes +complement system,complement systems +complete abortion,complete abortions +complete blood count,complete blood counts +complete graph,complete graphs +complete lattice,complete lattices +complete measure,complete measures +completeness axiom,completeness axioms +completer,completers +complete street,complete streets +completion,completions +completionist,completionists +completist,completists +completory,completories +complexation,complexations +complex,complexes +complex conjugate,complex conjugates +complex fraction,complex fractions +complex function,complex functions +complexin,complexins +complexing,complexings +complex ion,complex ions +complexion,complexions +complexity-hiding proxy,complexity-hiding proxies +complex measure,complex measures +complex number,complex numbers +complex plane,complex planes +complex sentence,complex sentences +complexus,complexus +complicacy,complicacies +complication,complications +complice,complices +complicity,complicities +complier,compliers +compliment,compliments +complimenter,complimenters +compline,complines +complot,complots +complotment,complotments +complotter,complotters +compluvium,compluvia +component,components +comportment,comportments +composer,composers +composing stick,composing sticks +composite board insulation,composite board insulations +composite bow,composite bows +composite,composites +composite function,composite functions +composite laminate,composite laminates +composite material,composite materials +composite number,composite numbers +composite particle,composite particles +composite pattern,composite patterns +composite type,composite types +compositing,compositings +compositional grammar,compositional grammars +composition book,composition books +composition,compositions +compositor,compositors +compositry,compositries +composograph,composographs +compostable,compostables +composter,composters +composture,compostures +compotation,compotations +compotator,compotators +compote,compotes +compound attack,compound attacks +compound bow,compound bows +compound,compounds +compound,compounds +compound curve,compound curves +compounder,compounders +compound eye,compound eyes +compound imperative,compound imperatives +compounding,compoundings +compound interval,compound intervals +compound machine,compound machines +compound microscope,compound microscopes +compound modifier,compound modifiers +compound pattern,compound patterns +compound sentence,compound sentences +compound symbol,compound symbols +compound word,compound words +comprador,compradors +compreg,compregs +comprehender,comprehenders +comprehensibility,comprehensibilities +comprehension,comprehensions +comprehensive,comprehensives +comprehensive school,comprehensive schools +comprehensivization,comprehensivizations +comprehensor,comprehensors +compresence,compresences +compress,compresses +compressibility,compressibilities +compression,compressions +compression fracture,compression fractures +compression pump,compression pumps +compression ratio,compression ratios +compression set,compression sets +compression wave,compression waves +compressive strength,compressive strengths +compressor,compressors +compressure,compressures +comprimario,comprimarios +comprisal,comprisals +comprobation,comprobations +compromisation,compromisations +compromise,compromises +compromiser,compromisers +comproportionation,comproportionations +comprovincial,comprovincials +compsognathid,compsognathids +comp stomp,comp stomps +compter,compters +compte rendu,comptes rendus +comptometer,comptometers +comptonization,comptonizations +comptrol,comptrols +comptroller,comptrollers +compulsion,compulsions +compulsive,compulsives +compulsory,compulsories +compunction,compunctions +compurgation,compurgations +compurgator,compurgators +computable function,computable functions +computationalist,computationalists +computational model,computational models +computation,computations +computation history,computation histories +computed tomography,computed tomographies +computer chip,computer chips +computer,computers +computer game,computer games +computerist,computerists +computer language,computer languages +computer model,computer models +computernik,computerniks +computerologist,computerologists +computerphile,computerphiles +computerphobe,computerphobes +computerphobic,computerphobics +computerphone,computerphones +computer processor,computer processors +computer program,computer programs +computer scientist,computer scientists +computer simulation,computer simulations +computer system,computer systems +computer technician,computer technicians +computer virus,computer viruses,computer virii +computing language,computing languages +computist,computists +computor,computors +compy,compies +compy,compies +comrade,comrades +comrade in arms,comrades in arms +comradery,comraderies +comradeship,comradeships +comrogue,comrogues +comsat,comsats +Comstock,Comstocks +comsymp,comsymps +Comtist,Comtists +comtrace,comtraces +comultiplication,comultiplications +comune,comuni,comunes +con artist,con artists +con-artist,con-artists +conation,conations +conatus,conatus,conatΓ»s +conazole,conazoles +conbulker,conbulkers +concameration,concamerations +concanamycin,concanamycins +concanavalin,concanavalins +concatamer,concatamers +concatemer,concatemers +concatenator,concatenators +concause,concauses +concave,concaves +concealer,concealers +concealment,concealments +conceder,conceders +conceivability,conceivabilities +conceiver,conceivers +concelebration,concelebrations +concentrate,concentrates +concentration camp,concentration camps +concentrator,concentrators +concentricity,concentricities +conceptacle,conceptacles +concept album,concept albums +concept,concepts +conceptionalist,conceptionalists +conception,conceptions +concept map,concept maps +conceptual analysis,conceptual analyses +conceptual definition,conceptual definitions +conceptual fallacy,conceptual fallacys +conceptual inverse,conceptual inverses +conceptualisation,conceptualisations +conceptualist,conceptualists +conceptualization,conceptualizations +conceptualizer,conceptualizers +conceptual metaphor,conceptual metaphors +conceptual model,conceptual models +conceptual schema,conceptual schemas +conceptus,conceptuses +concern troll,concern trolls +concertante,concertantes +concertation,concertations +concert bass drum,concert bass drums +concerted action,concerted actions +concertgoer,concertgoers +concert grand,concert grands +concert hall,concert halls +concertina,concertinas +concertinist,concertinists +concertino,concertinos +concertion,concertions +concertmaster,concertmasters +concertmeister,concertmeisters +concertmistress,concertmistresses +concerto,concertos,concerti +concert pitch,concert pitches +concert T-shirt,concert T-shirts +concessionaire,concessionaires +concessionary,concessionaries +concession,concessions +concessioner,concessioners +concessionist,concessionists +concessions stand,concessions stands +concessive,concessives +concessor,concessors +concestor,concestors +concetto,concetti +concha,conchas,conchΓ¦ +conchaspidid,conchaspidids +conch,conches,conchs +conchectomy,conchectomies +concher,conchers +conchifer,conchifers +conchiolin,conchiolins +conchite,conchites +concho,conchos +conchoid,conchoids +conchologist,conchologists +conchospiral,conchospirals +conchostracan,conchostracans +conchy,conchies +conchyliologist,conchyliologists +conciator,conciators +concierge,concierges +conciliable,conciliables +conciliabule,conciliabules +conciliarist,conciliarists +conciliation,conciliations +conciliationist,conciliationists +conciliator,conciliators +concionator,concionators +concipient,concipients +concitation,concitations +conclamation,conclamations +conclave,conclaves +conclavist,conclavists +concluder,concluders +conclusion,conclusions +conclusive presumption,conclusive presumptions +concocter,concocters +concoction,concoctions +concoctor,concoctors +concomitance,concomitances +concomitant,concomitants +con,cons +con,cons +con,cons +con,cons +concordance,concordances +concordancer,concordancers +concordancy,concordancies +concordat,concordats +concordaunce,concordaunces +concord,concords +concord,concords +Concord grape,Concord grapes +concordist,concordists +concorporation,concorporations +concourse,concourses +concrement,concrements +concrete canyon,concrete canyons +concrete jungle,concrete jungles +concrete mixer,concrete mixers +concrete noun,concrete nouns +concreter,concreters +concrete term,concrete terms +concrete verb,concrete verbs +concretion,concretions +concretisation,concretisations +concretist,concretists +concretization,concretizations +concretum,concreta +concreture,concretures +concubinarian,concubinarians +concubinate,concubinates +concubine,concubines +concurral,concurrals +concurrence,concurrences +concurrency,concurrencies +concurrency pattern,concurrency patterns +concurrent,concurrents +concurrent estate,concurrent estates +concussation,concussations +concussion,concussions +concussion fuse,concussion fuses +conde,condes +condemned,condemned +condemner,condemners +condemnor,condemnors +condensate,condensates +condensation,condensations +condensation product,condensation products +condensation reaction,condensation reactions +condensation trail,condensation trails +condenser,condensers +condensery,condenseries +condensin,condensins +conder,conders +condescender,condescenders +condescent,condescents +condicion,condicions +condiction,condictions +condiment,condiments +condisciple,condisciples +conditional agreement,conditional agreements +conditional assembly language,conditional assembly languages +conditional,conditionals +conditional entropy,conditional entropies +conditionalist,conditionalists +conditional mood,conditional moods +conditional probability,conditional probabilities +conditional proof,conditional proofs +conditional sentence,conditional sentences +conditional tense,conditional tenses +conditionate,conditionates +condition,conditions +conditioned reflex,conditioned reflexes +conditioned response,conditioned responses +conditioner,conditioners +condition precedent,condition precedents +conditory,conditories +condo,condos +condo hotel,condo hotels +condo-hotel,condo-hotels +condolement,condolements +condolence card,condolence cards +condoler,condolers +condolet,condolets +condom,condoms +condominium,condominiums +condonation,condonations +condoner,condoners +condop,condops +condor,condors,condor +condotel,condotels +condottiere,condottieres,condottieri +conductibility,conductibilities +conducting wire,conducting wires +conduction band,conduction bands +conductive pen,conductive pens +conductometer,conductometers +conductor,conductors +conductorship,conductorships +conductour,conductours +conductress,conductresses +conductrix,conductrices +conduit bender,conduit benders +conduit,conduits +conduplication,conduplications +conduritol,conduritols +condyle,condyles +condylocardiid,condylocardiids +condyloma,condylomas,condolymata +cone cell,cone cells +cone,cones +coneflower,coneflowers +conehead,coneheads +Cone-head,Cone-heads +Conehead,Coneheads +Cone Head,Cone Heads +Cone-Head,Cone-Heads +cone of shame,cones of shame +conepate,conepates +conepiece,conepieces +Conestoga wagon,Conestoga wagons +coney,coneys,conies +coney island,coney islands +Coney Island,Coney Islands +Coney Island hot dog,Coney Island hot dogs +confab,confabs +confabulation,confabulations +confabulator,confabulators +confarreation,confarreations +conf,confs +confect,confects +confectionary,confectionaries +confection,confections +confectioner,confectioners +confectioneress,confectioneresses +confectioner's,confectioner's +confectioner's cream,confectioner's creams +confecture,confectures +confederacy,confederacies +confederalism,confederalisms +confederalist,confederalists +confederate,confederates +Confederate,Confederates +confederateship,confederateships +confederation,confederations +confederationist,confederationists +confederator,confederators +conferee,conferees +conference call,conference calls +conference,conferences +conferencegoer,conferencegoers +conferencier,conferenciers +conferment,conferments +conferral,conferrals +conferree,conferrees +conferrer,conferrers +conferva,confervas,confervae +confessant,confessants +confessary,confessaries +confesser,confessers +confessio,confessiones +confessional chair,confessional chairs +confessional,confessionals +confessionalist,confessionalists +confessionalization,confessionalizations +confessionary,confessionaries +confession,confessions +confessionist,confessionists +confessor,confessors +confessoress,confessoresses +confessorship,confessorships +confessour,confessours +confidant,confidants +confidante,confidantes +confidee,confidees +confidence artist,confidence artists +confidence game,confidence games +confidence interval,confidence intervals +confidence level,confidence levels +confidence man,confidence men +confidence trick,confidence tricks +confidence trickster,confidence tricksters +confident,confidents +confidente,confidentes +confider,confiders +config,configs +configuration,configurations +configurationism,configurationisms +configuration section,configuration sections +configurator,configurators +confine,confines +confiner,confiners +confirmability,confirmabilities +confirmand,confirmands +confirmation,confirmations +confirmation name,confirmation names +confirmator,confirmators +confirmed bachelor,confirmed bachelors +confirmee,confirmees +confirmer,confirmers +confiscation,confiscations +confiscator,confiscators +confit,confits +confitent,confitents +confiteor,confiteors +confiture,confitures +confix,confixes +conflab,conflabs +conflagration,conflagrations +conflagrator,conflagrators +conflate,conflates +conflict,conflicts +confliction,conflictions +conflict of interest,conflicts of interest +confluence,confluences +confluency,confluencies +conflux,confluxes +confΕ“deracy,confΕ“deracies +confΕ“derate,confΕ“derates +confΕ“deration,confΕ“derations +conformability,conformabilities +conformal mapping,conformal mappings +conformance,conformances +conformateur,conformateurs +conformational analysis,conformational analyses +conformation,conformations +conformator,conformators +conformature,conformatures +conformer,conformers +conformist,conformists +confound,confounds +confounder,confounders +confounding variable,confounding variables +confoundment,confoundments +confraternity,confraternities +confrere,confreres +confrontation,confrontations +confrontationist,confrontationists +confronter,confronters +Confucian,Confucians +Confucianist,Confucianists +confuciusornithid,confuciusornithids +confusable,confusables +confused flour beetle,confused flour beetles +confusopoly,confusopolies +confutation,confutations +confuter,confuters +conga,congas +conga line,conga lines +con game,con games +congealed salad,congealed salads +congealment,congealments +conge,conges +congee,congees +congelation,congelations +congelifract,congelifracts +congemination,congeminations +congeneration,congenerations +congener,congeners +congeneric,congenerics +congenital heart defect,congenital heart defects +conger,congers +conger eel,conger eels +congeries,congeries +congest,congests +congestee,congestees +congestion,congestions +congestive heart failure,congestive heart failures +congestor,congestors +congiary,congiaries +congiopodid,congiopodids +congius,congii +conglobation,conglobations +conglobulation,conglobulations +conglomerate,conglomerates +conglomerateur,conglomerateurs +conglomeration,conglomerations +conglomerator,conglomerators +conglutinator,conglutinators +conglutin,conglutins +conglycinin,conglycinins +Congolese,Congolese +Congo Peggy,Congo peggies +Congo snake,Congo snakes +congratulant,congratulants +congratulation,congratulations +congratulator,congratulators +congregant,congregants +Congregational church,Congregational churches +Congregationalist,Congregationalists +congregation,congregations +congregator,congregators +congress,congresses +congresscritter,congresscritters +congression,congressions +congressman,congressmen +congressperson,congresspersons,congresspeople +congresswoman,congresswomen +congrid,congrids +congruence,congruences +congruity,congruities +conguero,congueros +conibear,conibears +conical buoy,conical buoys +conical flask,conical flasks +conic,conics +conic section,conic sections +conid,conids +conidioma,conidiomata +conidiophore,conidiophores +conidiospore,conidiospores +conidium,conidia +conifer,conifers +coniferization,coniferizations +coniferophyte,coniferophytes +conifold,conifolds +coniopterygid,coniopterygids +coniotomy,coniotomies +conisor,conisors +conium,coniums +conj,conjs +conjector,conjectors +conjectural,conjecturals +conjecturalist,conjecturalists +conjecturer,conjecturers +conjee,conjees +conjoined twin,conjoined twins +conjoiner,conjoiners +conjointment,conjointments +conjugality,conjugalities +conjugal visit,conjugal visits +conjugase,conjugases +conjugate acid-base pair,conjugate acid-base pairs +conjugate acid,conjugate acids +conjugate base,conjugate bases +conjugate,conjugates +conjugated protein,conjugated proteins +conjugate redox pair,conjugate redox pairs +conjugate transpose,conjugate transposes +conjugation,conjugations +conjugator,conjugators +conjunct,conjuncts +conjunction,conjunctions +conjunctiva,conjunctivas,conjunctivae +conjunctive adverb,conjunctive adverbs +conjunctive mood,conjunctive moods +conjunctivitis,conjunctivitides,conjunctivitises +conjuncturalist,conjuncturalists +conjuncture,conjunctures +conjuration,conjurations +conjurator,conjurators +conjurer,conjurers +conjuress,conjuresses +conjuring,conjurings +conjuror,conjurors +conjurour,conjurours +conk,conks +conkerberry,conkerberries +conker,conkers +conky joe,conky joes +conlang,conlangs +conlanger,conlangers +con man,con men +conman,conmen +con moto,con motos +connaisseur,connaisseurs +connation,connations +connature,connatures +conn,conns +connectance,connectances +connected component,connected components +connected graph,connected graphs +connected pawn,connected pawns +connected space,connected spaces +connecter,connecters +Connecticuter,Connecticuters +connecting rod,connecting rods +connecting tubule,connecting tubules +connectionist,connectionists +connective,connectives +connective tissue,connective tissues +connectome,connectomes +connector,connectors +connegative,connegatives +connemara,connemaras +conner,conners +connexin,connexins +connexion,connexions +connexive,connexives +connexon,connexons +connie,connies +conning tower,conning towers +conniption,conniptions +conniption fit,conniption fits +connivance,connivances +conniver,connivers +connivery,conniveries +connixation,connixations +connoisseur,connoisseurs +connoisseuse,connoisseuses +connotation,connotations +connubiality,connubialities +connusance,connusances +connusor,connusors +conodont,conodonts +conoid,conoids +conominee,conominees +conopid,conopids +conopophagid,conopophagids +CONOPS,CONOPSs +conorbid,conorbids +conotoxin,conotoxins +conperson,conpeople,conpersons +conquerer,conquerers +conqueress,conqueresses +conqueror,conquerors +conquerour,conquerours +conquest,conquests +conquistadora,conquistadoras +conquistador,conquistadors,conquistadores +conrod,conrods +consarcination,consarcinations +consarn,consarns +cons cell,cons cells +conscience,consciences +conscience vote,conscience votes +conscientious objector,conscientious objectors +cons,conses +conscript,conscripts +consecrater,consecraters +consecration,consecrations +consecrator,consecrators +consectary,consectaries +consectator,consectators +consecution,consecutions +consense,consenses +consension,consensions +consensual crime,consensual crimes +consensus,consensuses +consensus trance,consensus trances +consent,consents +consent decree,consent decrees +consenter,consenters +consent search,consent searches +consequence,consequences +consequent,consequents +consequentialism,consequentialisms +consequentialist,consequentialists +consequentiality,consequentialities +consequent phrase,consequent phrases +conservancy,conservancies +conservatard,conservatards +conservatee,conservatees +conservationist,conservationists +conservation law,conservation laws +conservatism,conservatisms +conservative,conservatives +conservative model,conservative models +conservative treatment,conservative treatments +conservativism,conservativisms +conservatoire,conservatoires +conservator,conservators +conservatorship,conservatorships +conservatory,conservatories +conservatory,conservatories +conservatour,conservatours +conservatrix,conservatrices +conserve,conserves +conserved sequence,conserved sequences +conserver,conservers +conshie,conshies +considerance,considerances +consideration,considerations +considerator,considerators +considerer,considerers +consigliere,consiglieri,consiglieres +consignatary,consignataries +consignation,consignations +consignatory,consignatories +consigne,consignes +consignee,consignees +consigner,consigners +consignification,consignifications +consignment,consignments +consignor,consignors +consilience,consiliences +consist,consists +consistency,consistencies +consistent,consistents +consistory,consistories +consociate,consociates +consociation,consociations +consolation,consolations +consolation goal,consolation goals +consolation prize,consolation prizes +consolator,consolators +consolatory,consolatories +consol,consols +console,consoles +console converter,console converters +consolement,consolements +consoler,consolers +console table,console tables +consolidation,consolidations +consolidator,consolidators +consoling,consolings +consolute point,consolute points +consommΓ©,consommΓ©s +consonance,consonances +consonant,consonants +consonant stem,consonant stems +consortium,consortia,consortiums +consortship,consortships +conspecific,conspecifics +conspectus,conspectuses +conspicuity,conspicuities +conspicuous consumer,conspicuous consumers +conspiracist,conspiracists +conspiracy,conspiracies +conspiracy of silence,conspiracies of silence +conspiracy theorist,conspiracy theorists +conspiracy theory,conspiracy theories +conspiration,conspirations +conspirator,conspirators +conspiratour,conspiratours +conspirer,conspirers +conspiring,conspirings +constable,constables +constablery,constableries +constableship,constableships +constabless,constablesses +constablewick,constablewicks +constabulatory,constabulatories +constaff,constaff +constancy,constancies +constant,constants +constant function,constant functions +Constantia,Constantias +Constantinopolitan,Constantinopolitans +constant of integration,constants of integration +constant speed drive,constant speed drives +constatation,constatations +constat,constats +const,consts +constellation,constellations +constituency,constituencies +constituent,constituents +constituent country,constituent countries +constitute,constitutes +constituter,constituters +constitutional amendment,constitutional amendments +constitutional,constitutionals +constitutionalist,constitutionalists +constitutionalization,constitutionalizations +constitutional monarchist,constitutional monarchists +constitutional monarchy,constitutional monarchies +constitutional type,constitutional types +constitution,constitutions +constitutionist,constitutionists +constitutive ablation,constitutive ablations +constrainer,constrainers +constraint,constraints +constriction,constrictions +constrictor,constrictors +construal,construals +construct,constructs +constructed language,constructed languages +constructer,constructers +constructio ad sensum,constructiones ad sensum +construction,constructions +construction helmet,construction helmets +constructionism,constructionisms +constructionist,constructionists +construction paper,construction papers +construction site,construction sites +constructive eviction,constructive evictions +constructive logic,constructive logics +constructive memory,constructive memories +constructive trust,constructive trusts +constructivism,constructivisms +constructivist,constructivists +constructor,constructors +constructure,constructures +construe,construes +consubstantialist,consubstantialists +consubstantiation,consubstantiations +consuetude,consuetudes +consuetudinary,consuetudinaries +consulage,consulages +consularity,consularities +consulate,consulates +consul,consuls +consul general,consul generals +consulship,consulships +consultancy,consultancies +consultant,consultants +consultation,consultations +consult,consults +consultee,consultees +consulter,consulters +consulting detective,consulting detectives +consultor,consultors +consumable,consumables +consumer,consumers +consumer good,consumer goods +consumerist,consumerists +consummation,consummations +consummator,consummators +consumptive,consumptives +contact ball,contact balls +contact,contacts +contactee,contactees +contact high,contact highs +contactin,contactins +contact language,contact languages +contact lens,contact lenses +contact level,contact levels +contactor,contactors +contact print,contact prints +contact sport,contact sports +contagion,contagions +contagionist,contagionists +containant,containants +container,containers +container-deposit,container-deposits +containerful,containerfuls,containersful +containerization,containerizations +containerload,containerloads +container ship,container ships +containership,containerships +contaminant,contaminants +contamination,contaminations +contaminator,contaminators +contango,contangos +contemner,contemners +contemnor,contemnors +contemplatist,contemplatists +contemplative,contemplatives +contemplator,contemplators +contemporanean,contemporaneans +contemporary,contemporaries +contemporisation,contemporisations +contemporization,contemporizations +contempt,contempts +contemptive,contemptives +contendent,contendents +contender,contenders +contendress,contendresses +contenement,contenements +contentation,contentations +content,contents +content coupling,content couplings +content farm,content farms +contention,contentions +contention system,contention systems +content key,content keys +content management system,content management systems +content repository,content repositories +content word,content words +content wrangling,content wranglings +contessa,contessas +contesseration,contesserations +contestant,contestants +contestation,contestations +contest competition,contest competitions +context,contexts +context-free grammar,context-free grammars +context menu,context menus +contextomy,contextomies +contextual criticism,contextual criticisms +contextualist,contextualists +contextualization,contextualizations +contextualizer,contextualizers +contexture,contextures +contig,contigs +contignation,contignations +contiguity,contiguities +continental breakfast,continental breakfasts +continental,continentals +continental divide,continental divides +continentalism,continentalisms +continental quilt,continental quilts +continental shelf,continental shelves +continental shift,continental shifts +continental slope,continental slopes +continent,continents +Continent,Continents +contingence,contingences +contingencies fund,contingencies funds +contingency plan,contingency plans +contingency table,contingency tables +contingent claim,contingent claims +contingent,contingents +contingent remainder,contingent remainders +continuant,continuants +continuation bet,continuation bets +continuation,continuations +continuation line,continuation lines +continuation passing style,continuation passing styles +continuation-passing style,continuation-passing styles +continuative,continuatives +continuator,continuators +continue,continues +continued fraction,continued fractions +continuer,continuers +continuo,continuos +continuous function,continuous functions +continuously variable transmission,continuously variable transmissions +continuous phase,continuous phases +continuous variable,continuous variables +continuum,continuums,continua +contline,contlines +contoid,contoids +contorniate,contorniates +contortion,contortions +contortionist,contortionists +contour,contours +contour feather,contour feathers +contour interval,contour intervals +contourite,contourites +contourlet,contourlets +contour line,contour lines +contour map,contour maps +contour tone,contour tones +contrabander,contrabanders +contrabandist,contrabandists +contrabass clarinet,contrabass clarinets +contrabass,contrabasses +contrabassist,contrabassists +contrabasso,contrabassos,contrabassi +contrabassoon,contrabassoons +contrabassoonist,contrabassoonists +contraceptive,contraceptives +contra,contras +Contra,Contras +contractability,contractabilitys +contract,contracts +contractee,contractees +contractile vacuole,contractile vacuoles +contractility,contractilities +contraction,contractions +contract killer,contract killers +contract of sale,contracts of sale +contractor combatant,contractor combatants +contractor,contractors +contractorization,contractorizations +contractual obligation,contractual obligations +contractual right,contractual rights +contracture,contractures +contra dance,contra dances +contradance,contradances +contradanza,contradanzas +contradicter,contradicters +contradiction in terms,contradictions in terms +contradictor,contradictors +contradictory,contradictories +contradistinction,contradistinctions +contrafact,contrafacts +contrafactum,contrafacta +contrafield,contrafields +contrafissure,contrafissures +contraflow,contraflows +contragestive,contragestives +contraharmonic mean,contraharmonic means +contrail,contrails +contraindicant,contraindicants +contraindication,contraindications +contraindicator,contraindicators +contralto,contraltos,contralti +contranym,contranyms +contra-octave,contra-octaves +contraparallelogram,contraparallelograms +contraposition,contrapositions +contrapositive,contrapositives +contrapposto,contrapposto,contrapposti +contraption,contraptions +contrapuntist,contrapuntists +contraremonstrant,contraremonstrants +contrarian,contrarians +contrariety,contrarieties +contrary,contraries +contrast agent,contrast agents +contrastimulant,contrastimulants +contrastivist,contrastivists +contrast medium,contrast media +contrast ratio,contrast ratios +contrast set,contrast sets +contratenor,contratenors +contravallation,contravallations +contravariant functor,contravariant functors +contravener,contraveners +contravention,contraventions +contraversion,contraversions +contrayerva,contrayervas +contrecoup,contrecoups +contree,contrees +contretemps,contretemps +contributer,contributers +contribution,contributions +contributor,contributors +contributour,contributours +contributress,contributresses +contributrix,contributrices +contrite,contrites +contrivance,contrivances +contrivement,contrivements +contriver,contrivers +control arm,control arms +control character,control characters +control chart,control charts +control code,control codes +control coupling,control couplings +controlee,controlees +control freak,control freaks +control gene,control genes +control group,control groups +control joint,control joints +control key,control keys +controlled-access highway,controlled-access highways +controlled explosion,controlled explosions +controlled substance,controlled substances +controlled vocabulary,controlled vocabularies +controller,controllers +controlling image,controlling images +control mechanism,control mechanisms +controlment,controlments +control order,control orders +control panel,control panels +control rod,control rods +control room,control rooms +control structure,control structures +control surface,control surfaces +control tower,control towers +control verb,control verbs +contronym,contronyms +controul,controuls +controull,controulls +controverse,controverses +controverser,controversers +controversialist,controversialists +controversor,controversors +controversy,controversies +controverter,controverters +controvertist,controvertists +conturbation,conturbations +contusion,contusions +conule,conules +conundrum,conundrums,conundra +conurbation,conurbations +conure,conures +conusor,conusors +convalescence,convalescences +convalescent,convalescents +convalidation,convalidations +convallaria,convallarias +convection cell,convection cells +convection microwave,convection microwaves +convection microwave oven,convection microwave ovens +convection oven,convection ovens +convective current,convective currents +convective temperature,convective temperatures +convector,convectors +convener,conveners +convenience class,convenience classes +convenience,conveniences +convenience food,convenience foods +convenience method,convenience methods +convenience store,convenience stores +conveniency,conveniencies +convenor,convenors +convent,convents +conventicle,conventicles +conventicler,conventiclers +conventional,conventionals +conventionalist,conventionalists +conventionalization,conventionalizations +conventional mortgage loan,conventional mortgage loans +conventional oven,conventional ovens +conventional war,conventional wars +conventional weapon,conventional weapons +conventional wisdom,conventional wisdoms +convention bump,convention bumps +convention,conventions +conventioneer,conventioneers +conventioner,conventioners +conventiongoer,conventiongoers +conventionist,conventionists +conventionnel,conventionnels +convention state,convention states +Conventionsthaler,Conventionsthalers +conventual,conventuals +converb,converbs +convergency,convergencies +convergent,convergents +convergent extension,convergent extensions +convergent sequence,convergent sequences +convergent series,convergent series +converger,convergers +conversa,conversas +conversant,conversants +conversationalist,conversationalists +conversation,conversations +conversationism,conversationisms +conversationist,conversationists +conversation piece,conversation pieces +conversazione,conversaziones,conversazioni +converse,converses +converse,converses +converser,conversers +conversion,conversions +conversion disorder,conversion disorders +conversion rate,conversion rates +conversion therapy,conversion therapies +converso,conversos +convertance,convertances +convertase,convertases +convert,converts +convertee,convertees +convertend,convertends +converter,converters +convertible,convertibles +convertible mark,convertible marks +convertible security,convertible securities +convertiplane,convertiplanes +convertite,convertites +convertor,convertors +convex combination,convex combinations +convex,convexes +convex hull,convex hulls +convexification,convexifications +convexity,convexities +convex lens,convex lenses +convex set,convex sets +conveyance,conveyances +conveyancer,conveyancers +conveyaunce,conveyaunces +conveyer belt,conveyer belts +conveyer,conveyers +conveyor belt,conveyor belts +conveyor,conveyors +conveyour,conveyours +convict,convicts +convict hour,convict hours +conviction,convictions +convincement,convincements +convincer,convincers +convive,convives +convivialist,convivialists +convivium,convivia +convocation,convocations +convocationist,convocationists +convo,convos +convolutid,convolutids +convolution,convolutions +convolver,convolvers +convolvulus,convolvuluses,convolvuli +convoy,convoys +convulsant,convulsants +convulsionary,convulsionaries +convulsion,convulsions +convulsionist,convulsionists +con woman,con women +conwoman,conwomen +cony-catcher,cony-catchers +cony,conies +cooch,cooches +coochie,coochies +coochy,coochies +coochy coo,coochy coos +cooee,cooees +coof,coofs +cooing,cooings +cooja,coojas +coojong,coojongs +cook book,cook books +cookbook,cookbooks +cook,cooks +cookee,cookees +cooker,cookers +cooker hood,cooker hoods +cookery book,cookery books +cookey,cookeys +cookhouse,cookhouses +cookie,cookies +cookie cutter,cookie cutters +cookiecutter,cookiecutters +cookiecutter shark,cookiecutter sharks +cookie jar,cookie jars +cookie sheet,cookie sheets +cooking apple,cooking apples +cooking oil,cooking oils +cooking pot,cooking pots +cooking-pot,cooking-pots +cooking spray,cooking sprays +cooking utensil,cooking utensils +Cook Islander,Cook Islanders +cookline,cooklines +cookmaid,cookmaids +cook-off,cook-offs +cookoff,cookoffs +cookout,cookouts +cookroom,cookrooms +cookshop,cookshops +Cook's tour,Cook's tours +cookstove,cookstoves +cooktop,cooktops +cook-up,cook-ups +cooky,cookies +coolabah,coolabahs +coolamon,coolamons +coolant,coolants +coolbox,coolboxes +cool change,cool changes +cooldown,cooldowns +cooldrink,cooldrinks +cooley,cooleys +cool gray,cool grays +cool grey,cool greys +coolhunter,coolhunters +coolibah,coolibahs +coolibar,coolibars +coolie,coolies +cooling,coolings +cooling-off period,cooling-off periods +cooling tower,cooling towers +coolroom,coolrooms +coolung,coolungs +cooly,coolies +coomassie,coomassies +coomb,coombs +coombe,coombes +coonass,coonasses +coon cat,coon cats +coon,coons +coondog,coondogs +coon hound,coon hounds +coonhound,coonhounds +coon-skin cap,coon-skin caps +coonskin cap,coonskin caps +coonskin,coonskins +coon-skin hat,coon-skin hats +coonskin hat,coonskin hats +co-op,co-ops +coop,coops +coop,coops +Co-op,Co-ops +cooperant,cooperants +coΓΆperant,coΓΆperants +cooperative,cooperatives +cooperative game,cooperative games +cooperativity,cooperativities +cooperator,cooperators +coΓΆperator,coΓΆperators +cooper,coopers +cooperite,cooperites +cooperon,cooperons +Cooper pair,Cooper pairs +Cooper's hawk,Cooper's hawks +coopery,cooperies +co-optation,co-optations +cooptation,cooptations +coΓΆptation,coΓΆptations +co-option,co-options +cooption,cooptions +co-ordinate axis,co-ordinate axes +coordinate axis,coordinate axes +coordinate bond,coordinate bonds +co-ordinate,co-ordinates +coordinate,coordinates +coΓΆrdinate,coΓΆrdinates +coordinate system,coordinate systems +coordinate term,coordinate terms +coordination compound,coordination compounds +coordination number,coordination numbers +coordinatization,coordinatizations +co-ordinator,co-ordinators +coordinator,coordinators +coΓΆrdinator,coΓΆrdinators +co-organizer,co-organizers +coorganizer,coorganizers +coorse,coorses +cootch,cootches +coot,coots +cooter,cooters +cooter,cooters +cootie catcher,cootie catchers +cootie,cooties +cootling,cootlings +cooty,cooties +coowner,coowners +cooze,coozes +copacker,copackers +copaiba,copaibas +coparcenary,coparcenaries +coparcener,coparceners +coparceny,coparcenies +co-parent,co-parents +coparticipant,coparticipants +copartment,copartments +copartner,copartners +copartnership,copartnerships +copartnery,copartneries +copatriot,copatriots +copay,copays +copayment,copayments +cop,cops +cop,cops +cop,cops +cope chisel,cope chisels +copeck,copecks +cope,copes +copedant,copedants +copel,copels +copeman,copemen +Copenhagen blue,Copenhagen blues +Copenhagener,Copenhageners +copepod,copepods +copepodid,copepodids +copepodite,copepodites +coper,copers +coper,copers +copesmate,copesmates +copestone,copestones +copher,cophers +cophin,cophins +copiapite,copiapites +copicide,copicides +copier,copiers +copilot,copilots +coping,copings +copiotroph,copiotrophs +copious free time,copious free times +copist,copists +cop killer,cop killers +cop-killer,cop-killers +coplane,coplanes +copoclephile,copoclephiles +copoint,copoints +copolyester,copolyesters +copolyimide,copolyimides +copolymer,copolymers +copolymerization,copolymerizations +cop-out,cop-outs +copout,copouts +coppa,coppas +coppel,coppels +copperbar,copperbars +copper beech,copper beeches +copper captain,copper captains +copper chopper,copper choppers +copper,coppers +copperhead,copperheads +Copperhead,Copperheads +copperheadism,copperheadisms +coppering,copperings +copperleaf,copperleafs +copper moki,copper moki +copper ore,copper ores +copperplate,copperplates +copper shark,copper sharks +coppersmith,coppersmiths +coppersmithy,coppersmithies +copperworker,copperworkers +copperworks,copperworks +copperworm,copperworms +coppice,coppices +coppin,coppins +copple,copples +copple-crown,copple-crowns +copplestone,copplestones +copps,coppses +copra,copras +co-precipitation,co-precipitations +coprecipitation,coprecipitations +copredication,copredications +copresence,copresences +copresenter,copresenters +coprimary,coprimaries +coprocess,coprocesses +co-processor,co-processors +coprocessor,coprocessors +coproducer,coproducers +coproduct,coproducts +coproduction,coproductions +coprolite,coprolites +coprolith,coproliths +copromorphid,copromorphids +coprophagan,coprophagans +coprophage,coprophages +coprophagous grin,coprophagous grins +coprophil,coprophils +coprophile,coprophiles +coprophiliac,coprophiliacs +coprophilia,coprophilias +coprophyte,coprophytes +coproporphyrin,coproporphyrins +coprostanol,coprostanols +copse,copses +cop shop,cop shops +Copt,Copts +copter,copters +coptoclavid,coptoclavids +copublisher,copublishers +copula,copulas,copulae +copular verb,copular verbs +copulative,copulatives +copulin,copulins +copurification,copurifications +copyback,copybacks +copybook,copybooks +copy boy,copy boys +copyboy,copyboys +copy cat,copy cats +copy-cat,copy-cats +copycat,copycats +copycatter,copycatters +copy constructor,copy constructors +copy,copies +copy desk,copy desks +copy editor,copy editors +copyeditor,copyeditors +copyer,copyers +copyfight,copyfights +copygirl,copygirls +copygraph,copygraphs +copyholder,copyholders +copyholding,copyholdings +copyist,copyists +copyleftist,copyleftists +copyleft symbol,copyleft symbols +copy machine,copy machines +copy number,copy numbers +copy number polymorphism,copy number polymorphisms +copy-number variant,copy-number variants +copy number variation,copy number variations +copy-on-write proxy,copy-on-write proxies +copyparty,copyparties +copyrightable,copyrightables +copyright infringement,copyright infringements +copyright symbol,copyright symbols +copy room,copy rooms +copy shop,copy shops +copyshop,copyshops +copy sort,copy sorts +copy test,copy tests +copy typist,copy typists +copy writer,copy writers +copywriter,copywriters +coq,coqs +coquaternion,coquaternions +coqueluche,coqueluches +coquet,coquets +coquetry,coquetries +coquette,coquettes +coquetter,coquetters +coqui,coquis +coquΓ­,coquΓ­s +coqui frog,coqui frogs +coquilla nut,coquilla nuts +coquille,coquilles +coquina,coquinas +coraciid,coraciids +coracle,coracles +coracoid,coracoids +coracoid process,coracoid processes +coralfish,coralfishes,coralfish +coral island,coral islands +corallian,corallians +coralliid,coralliids +coralline,corallines +coralline sponge,coralline sponges +corallinite,corallinites +coralliophilid,coralliophilids +corallite,corallites +corallivore,corallivores +corallum,corallums,coralla +coral reef,coral reefs +coralroot,coralroots +coral snake,coral snakes +coral stitch,coral stitches +coral vine,coral vines +corambid,corambids +coranach,coranachs +corank,coranks +corannulene,corannulenes +corant,corants +coranto,corantos,corantoes +corban,corbans +corb,corbs +corbeil,corbeils +corbel,corbels +corbell,corbells +corbel table,corbel tables +corbicula,corbiculae +corbiculid,corbiculids +corbie,corbies +corbie step,corbie steps +corbiestep,corbiesteps +corbito,corbitos +cor bovinum,cor bovinums +corbulid,corbulids +corcelet,corcelets +corchorus,corchoruses +corcle,corcles +cor,cors +corcule,corcules +cordage,cordages +cordaite,cordaites +cordal,cordals +cord,cords +cordebec,cordebecs +cordebeck,cordebecks +cordectomy,cordectomies +Cordelier,Cordeliers +cordeliere,cordelieres +cordelle,cordelles +cordial,cordials +cordillera,cordilleras +cordiner,cordiners +cording,cordings +cordless phone,cordless phones +cordless telephone,cordless telephones +cordoba,cordobas +Cordoban,Cordobans +cordon,cordons +cordon sanitaire,cordons sanitaires +cordotomy,cordotomies +Cordovan,Cordovans +cordulegasterid,cordulegasterids +cordulegastrid,cordulegastrids +corduliid,corduliids +corduroy,corduroys +corduroy road,corduroy roads +cordwainer,cordwainers +cordylid,cordylids +cordyline,cordylines +coreceptor,coreceptors +corecognition,corecognitions +core competency,core competencies +core constituency,core constituencies +core constituent,core constituents +core,cores +core,cores +core,cores +core,cores +corectopia,corectopias +core curriculum,core curricula,core curriculums +core drill,core drills +core dump,core dumps +core eudicot,core eudicots +coreference,coreferences +coregency,coregencies +coregent,coregents +coregulation,coregulations +coregulator,coregulators +core hole,core holes +corehole,coreholes +coreid,coreids +core lane,core lanes +co-relation,co-relations +corelet,corelets +core-level,core-levels +co-religionary,co-religionaries +coreligionary,coreligionaries +co-religionist,co-religionists +coreligionist,coreligionists +corella,corellas +coreopsis,coreopses,coreopsises +corepresentation,corepresentations +corepressor,corepressors +corequisite,corequisites +corer,corers +corespondent,corespondents +core temperature,core temperatures +corethrellid,corethrellids +corf,corves,corfes +Corfiot,Corfiots +Corfiote,Corfiotes +Corfute,Corfutes +corgi,corgis,corgwn +corillid,corillids +corimelaenid,corimelaenids +coring,corings +corinnid,corinnids +corino,corinos +corinth,corinths +corinthian,corinthians +Corinthian,Corinthians +Corinthian spirit,Corinthian spirits +Coriolis force,Coriolis forces +coriscid,coriscids +corium,coria +corival,corivals +corixid,corixids +cork-board,cork-boards +corkboard,corkboards +corker,corkers +corkindrill,corkindrills +corking pin,corking pins +cork oak,cork oaks +Corkonian,Corkonians +corkscrew,corkscrews +corkscrew flower,corkscrew flowers +corkwing,corkwings +corkwood,corkwoods +corm,corms +Cormo,Cormos +cormophyte,cormophytes +cormorant,cormorants +cormus,cormi +cornamute,cornamutes +cornball,cornballs +corn bunting,corn buntings +corncake,corncakes +corn-cob,corn-cobs +corncob,corncobs +corncockle,corncockles +corn,corns +corncrake,corncrakes +corn crib,corn cribs +corncrib,corncribs +corncutter,corncutters +corndodger,corndodgers +corn dog,corn dogs +corndog,corndogs +corn dolly,corn dollies +cornea,corneas +cornel,cornels +Cornellian,Cornellians +cornemuse,cornemuses +corneocyte,corneocytes +corneodesmosome,corneodesmosomes +cornerback,cornerbacks +corner boy,corner boys +cornercap,cornercaps +corner,corners +corner flag,corner flags +corner forward,corner forwards +corner infield,corner infields +corner infielder,corner infielders +corner kick,corner kicks +cornerman,cornermen +corner office,corner offices +cornerpiece,cornerpieces +corner shop,corner shops +corner solution,corner solutions +corner-stone,corner-stones +cornerstone,cornerstones +corner store,corner stores +corner time,corner times +corner tooth,corner teeth +cornet,cornets +cornet,cornets +cornetcy,cornetcies +corneter,corneters +cornetfish,cornetfishes,cornetfish +cornetist,cornetists +cornett,cornetts +cornettino,cornettinos,cornettini +cornettist,cornettists +cornetto,cornettos +corneule,corneules +corn exchange,corn exchanges +corn-factor,corn-factors +cornfield,cornfields +cornfield meet,cornfield meets +cornflake,cornflakes +cornfloor,cornfloors +cornflower blue,cornflower blues +cornflower,cornflowers +cornhole,cornholes +corn house,corn houses +cornhusk,cornhusks +cornhusker,cornhuskers +Cornhusker,Cornhuskers +cornice,cornices +corniche,corniches +cornichon,cornichons +cornicle,cornicles +cornicular,corniculars +corniculum,cornicula +cornification,cornifications +corniplume,corniplumes +cornish,cornishes +Cornish fairing,Cornish fairings +Cornishman,Cornishmen +Cornish pastie,Cornish pasties +Cornish pasty,Cornish pasties +Cornish Rex,Cornish Rexes +Cornishwoman,Cornishwomen +cornist,cornists +corn liquor,corn liquors +cornloft,cornlofts +cornmarket,cornmarkets +cornmuse,cornmuses +corno di bassetto,corni di bassetto +corn oil,corn oils +cornopean,cornopeans +corn pone,corn pones +cornpone,cornpones +corn poppy,corn poppies +corn roast,corn roasts +corn roaster,corn roasters +cornrow,cornrows +cornsheller,cornshellers +cornshuck,cornshucks +cornsilk,cornsilks +corn snake,corn snakes +cornstalk,cornstalks +corn starch,corn starches +cornstick,cornsticks +corn sugar,corn sugars +corn syrup,corn syrups +corn thistle,corn thistles +cornu ammonis,cornua ammonis +cornu,cornua +cornuto,cornutos,cornutoes +cornutor,cornutors +corn whiskey,corn whiskeys +corocore,corocores +corocotta,corocottas +corody,corodies +corol,corols +corolla,corollas,corollae,corollΓ¦ +corollary,corollaries +corollet,corollets +Coromandel gooseberry,Coromandel gooseberries +coronach,coronachs +corona,coronas,coronae,coronΓ¦ +coronagraph,coronagraphs +coronal,coronals +coronal mass ejection,coronal mass ejections +coronal plane,coronal planes +coronal suture,coronal sutures +coronand,coronands +coronary artery,coronary arteries +coronary,coronaries +coronation,coronations +coronato,coronatos +coronavirus,coronaviruses +coronel,coronels +coroner,coroners +coronet,coronets +coronilla,coronillas +coronis,coronides +coronograph,coronographs +coronosaurian,coronosaurians +coronule,coronules +coronulid,coronulids +corophiid,corophiids +coroplast,coroplasts +corosso,corossos +corotation,corotations +coroun,corouns +co-routine,co-routines +coroutine,coroutines +corozo,corozos +corpectomy,corpectomies +corpes,corpeses +corphyrin,corphyrins +corpocracy,corpocracies +corporace,corporaces +corporal,corporals +corporal,corporals +corporale,corporales +corporality,corporalities +corporal punishment,corporal punishments +corporalship,corporalships +corporas,corporases +corporate,corporates +corporate executive,corporate executives +corporate ladder,corporate ladders +corporate monster,corporate monsters +corporate seal,corporate seals +corporate tax,corporate taxes +corporate veil,corporate veils +corporation,corporations +corporation sole,corporations sole +corporatism,corporatisms +corporatist,corporatists +corporator,corporators +corporealisation,corporealisations +corporealist,corporealists +corporealization,corporealizations +corporeity,corporeities +corporisation,corporisations +corporization,corporizations +corporosity,corporosities +corposant,corposants +corps,corps +corpse,corpses +corpsicle,corpsicles +corpsman,corpsmen +corpswoman,corpswomen +cor pulmonale,cor pulmonales +corpus allatum,corpora allata +corpusant,corpusants +corpus callosum,corpora callosa +corpus cavernosum,corpora cavernosa +corpuscle,corpuscles +corpus,corpora,corpuses +corpuscularian,corpuscularians +corpuscule,corpuscules +corpus delicti,corpora delicti +corpus juris,corpora juris +corpus luteum,corpora lutea +corpus striatum,corpora striata +corpus vile,corpora vilia +corral,corrals +corrasion,corrasions +correcting fluid,correcting fluids +correctional facility,correctional facilities +correctional institution,correctional institutions +correctional officer,correctional officers +correction,corrections +correctioner,correctioners +correction factor,correction factors +correction line,correction lines +correction officer,correction officers +corrections officer,corrections officers +corrective,correctives +corrective rape,corrective rapes +corrector,correctors +corrector magnet,corrector magnets +correctour,correctours +correfoc,correfocs +corregidor,corregidors +correlate,correlates +correlation coefficient,correlation coefficients +correlation,correlations +correlation energy,correlation energies +correlative,correlatives +correlator,correlators +correligionist,correligionists +correlogram,correlograms +correntropy,correntropies +correspondent,correspondents +correspondentship,correspondentships +corresponding author,corresponding authors +corresponding,correspondings +correus,correi +correus debendi,correi debendi +correxion,correxions +corrida,corridas +corrido,corridos +corridor,corridors +corridor of uncertainty,corridors of uncertainty +corridor warrior,corridor warriors +corrie,corries +corrigendum,corrigenda +corrigent,corrigents +corrin,corrins +corrinoid,corrinoids +corrival,corrivals +corrivation,corrivations +corroborant,corroborants +corroboration,corroborations +corroborative,corroboratives +corroborator,corroborators +corroboree,corroborees +corrobory,corrobories +corrodant,corrodants +corrodent,corrodents +corrody,corrodies +corrosion,corrosions +corrosive,corrosives +corrugation,corrugations +corrugator,corrugators +corrupter,corrupters +corruptible,corruptibles +corruptionist,corruptionists +corruptor,corruptors +corruptress,corruptresses +corruscation,corruscations +corsac,corsacs +corsac fox,corsac foxes +corsage,corsages +corsair,corsairs +corse,corses +corselet,corselets +corselette,corselettes +corsepresent,corsepresents +corset,corsets +corsetmaker,corsetmakers +Corsican,Corsicans +corsive,corsives +corslet,corslets +cortado,cortados +cortege,corteges +cortΓ¨ge,cortΓ¨ges +cortical column,cortical columns +cortical plate,cortical plates +cortical reaction,cortical reactions +corticoid,corticoids +corticosteroid,corticosteroids +corticotrope,corticotropes +corticotroph,corticotrophs +cortile,cortiles +Cortina,Cortinas +cortinar,cortinars +coruscation,coruscations +corve,corves +corvee,corvees +corvΓ©e,corvΓ©es +corvesor,corvesors +corvet,corvets +corvette,corvettes +corvetto,corvettos +corvid,corvids +corvorant,corvorants +corycaeid,corycaeids +corydalid,corydalids +corydalis,corydalises +corydoras,corydoras +corylophid,corylophids +corymb,corymbs +corynebacterium,corynebacteria +corynid,corynids +coryphaenid,coryphaenids +coryphaeus,coryphaeuses,coryphaei +coryphΓ©e,coryphΓ©es +coryphene,coryphenes +corypheus,corypheuses,coryphei +coryphodont,coryphodonts +corystid,corystids +corytophanid,corytophanids +coscreenwriter,coscreenwriters +cosecant,cosecants +cosegregation,cosegregations +cosenage,cosenages +cosening,cosenings +coset,cosets +cosh,coshes +cosheaf,cosheaves +cosherer,cosherers +cosh pocket,cosh pockets +co-sibling-in-law,co-siblings-in-law +cosier,cosiers +cosignatory,cosignatories +cosigner,cosigners +cosine,cosines +co-sister,co-sisters +co-sister-in-law,co-sisters-in-law +cosleeper,cosleepers +cosmaceutical,cosmaceuticals +cosmeceutical,cosmeceuticals +cosmesis,cosmeses +cosmetic,cosmetics +cosmetic dentistry,cosmetic dentistrys +cosmetician,cosmeticians +cosmetic second,cosmetic seconds +cosmetic surgeon,cosmetic surgeons +cosmetic surgery,cosmetic surgeries +cosmetid,cosmetids +cosmetologist,cosmetologists +cosmic joker,cosmic jokers +cosmic latte,cosmic lattes +cosmic ray,cosmic rays +cosmic string,cosmic strings +cosmic wall,cosmic walls +cosmid,cosmids +cosmocercid,cosmocercids +cosmochemist,cosmochemists +cosmochronometer,cosmochronometers +cosmo,cosmos +cosmocrat,cosmocrats +cosmodicy,cosmodicies +cosmodrome,cosmodromes +cosmogenist,cosmogenists +cosmogonist,cosmogonists +cosmogony,cosmogonies +cosmogram,cosmograms +cosmographer,cosmographers +cosmographist,cosmographists +cosmolabe,cosmolabes +cosmoline,cosmolines +cosmological argument,cosmological arguments +cosmological city,cosmological cities +cosmological decade,cosmological decades +cosmological horizon,cosmological horizons +cosmologist,cosmologists +cosmonaut,cosmonauts +cosmopolis,cosmopolises,cosmopoleis +cosmopolitan,cosmopolitans +cosmopolitanism,cosmopolitanisms +cosmopolite,cosmopolites +cosmoport,cosmoports +cosmopterigid,cosmopterigids +cosmopterygid,cosmopterygids +cosmorama,cosmoramas +cosmosphere,cosmospheres +cosmotheist,cosmotheists +cosmotron,cosmotrons +cosolvent,cosolvents +cosovereign,cosovereigns +cosphere,cospheres +cosplayer,cosplayers +cosponsor,cosponsors +cossack,cossacks +Cossack,Cossacks +coss,cosses,coss +cosset,cossets +cosseter,cosseters +cossette,cossettes +cossid,cossids +cossid,cossids +cossie,cossies +cossyrite,cossyrites +costa,costas,costae +costage,costages +costain gun,costain guns +costamere,costameres +co-star,co-stars +costar,costars +costard,costards +costardmonger,costardmongers +Costa Rican,Costa Ricans +cost benefit analysis,cost benefit analyses +cost-benefit analysis,cost-benefit analyses +cost center,cost centers +cost centre,cost centres +cost,costs +cost,costs +cost,costs +costeaning,costeanings +costectomy,costectomies +cost-effectiveness,cost-effectivenesses +costellariid,costellariids +coster,costers +costermonger,costermongers +cost function,cost functions +costimulant,costimulants +costimulation,costimulations +costimulator,costimulators +costing,costings +costning,costnings +cost objective,cost objectives +cost of goods sold,costs of goods sold +cost of living,costs of living +costotome,costotomes +cost overrun,cost overruns +cost price,cost prices +costrel,costrels +costume,costumes +costume drama,costume dramas +costume party,costume parties +costumer,costumers +costumier,costumiers +costus,costus +cosubstrate,cosubstrates +cosurety,cosureties +cosustainer,cosustainers +cosy,cosies +cosysop,cosysops +cotangent,cotangents +cotchel,cotchels +cot,cots +cot death,cot deaths +cote,cotes +cotehardie,cotehardies +cotemporality,cotemporalities +cotemporary,cotemporaries +cΓ΅tempt,cΓ΅tempts +cōtempt,cōtempts +cotenant,cotenants +coterie,coteries +coterminal,coterminals +cothouse,cothouses +cothurn,cothurns +cothurnus,cothurni +cotillion,cotillions +cotillon,cotillons +cotinga,cotingas +cotingid,cotingids +cotise,cotises +cotoneaster,cotoneasters +cot-quean,cot-queans +cotquean,cotqueans +cotranscription,cotranscriptions +co-transfection,co-transfections +cotransfection,cotransfections +cotransformation,cotransformations +cotransporter,cotransporters +cotreatment,cotreatments +cotrustee,cotrustees +Cotswold,Cotswolds +cottage cheese ass,cottage cheese asses +cottage,cottages +cottage hospital,cottage hospitals +cottage industry,cottage industries +cottage loaf,cottage loaves +cottage pie,cottage pies +cottage pudding,cottage puddings +cottager,cottagers +Cottager,Cottagers +cottar,cottars +cotter,cotters +cotter,cotters +cotter pin,cotter pins +cottid,cottids +cottier,cottiers +cottise,cottises +cottocomephorid,cottocomephorids +cottoid,cottoids +cottonade,cottonades +cotton boll,cotton bolls +cottonfield,cottonfields +cotton gin,cotton gins +cottonmouth,cottonmouths +cottonoid,cottonoids +cotton reel,cotton reels +cottonseed,cottonseeds +cottonseed oil,cottonseed oils +cotton swab,cotton swabs +cottontail,cottontails +cottontop,cottontops +cottontop tamarin,cottontop tamarins +cottonweed,cottonweeds +cottonwood,cottonwoods +cotton wool bud,cotton wool buds +cottrel,cottrels +cotunnite,cotunnites +cotutor,cotutors +cotwin,cotwins +cotyle,cotyles +cotyledon,cotyledons +cotylosaur,cotylosaurs +coua,couas +coucal,coucals +couch,couches +couchee,couchees +coucher,couchers +couchette,couchettes +couching,couchings +couch potato,couch potatoes +coudee,coudees +cougar,cougars +cough button,cough buttons +cough,coughs +cough drop,cough drops +coughdrop,coughdrops +cougher,coughers +coughing,coughings +cough mixture,cough mixtures +coulΓ©,coulΓ©s +coulee,coulees +coulibiac,coulibiacs +coulisse,coulisses +couloir,couloirs +Coulomb barrier,Coulomb barriers +Coulomb blockade,Coulomb blockades +Coulomb collision,Coulomb collisions +coulomb,coulombs +Coulomb energy,Coulomb energies +Coulomb explosion,Coulomb explosions +coulometer,coulometers +Coulterism,Coulterisms +coulterneb,coulternebs +coumarate,coumarates +coumaric acid,coumaric acids +coumarin,coumarins +coumaroyl,coumaroyls +council area,council areas +council,councils +council estate,council estates +council house,council houses +councilist,councilists +councillor,councillors +councillour,councillours +councilman,councilmen +councilmember,councilmembers +councilor,councilors +councilour,councilours +councilperson,councilpersons +council tax,council taxes +councilwoman,councilwomen +co-uncle,co-uncles +counion,counions +counit,counits +counsel,counsels +counselee,counselees +counsell,counsells +counsellee,counsellees +counseller,counsellers +counsellor,counsellors +counsellour,counsellours +counselor,counselors +counselorship,counselorships +counselour,counselours +countable set,countable sets +countback,countbacks +Count Branicki's mouse,Count Branicki's mice +count,counts +count,counts +count down,count downs +count-down,count-downs +countdown,countdowns +countenance,countenances +countenancer,countenancers +countenaunce,countenaunces +counteraccusation,counteraccusations +counteracter,counteracters +counteraction,counteractions +counteractor,counteractors +counteragent,counteragents +counteranion,counteranions +counterappeal,counterappeals +counterargument,counterarguments +counterassault,counterassaults +counterassertion,counterassertions +counter-attack,counter-attacks +counterattack,counterattacks +counterattacker,counterattackers +counterattraction,counterattractions +counterbalance,counterbalances +counterbalancer,counterbalancers +counter batten,counter battens +counterbeat,counterbeats +counterbid,counterbids +counterbidder,counterbidders +counterblast,counterblasts +counterblow,counterblows +counterbluff,counterbluffs +counterbore,counterbores +counterboycott,counterboycotts +counterbuff,counterbuffs +countercall,countercalls +countercampaign,countercampaigns +countercase,countercases +countercast,countercasts +countercaster,countercasters +countercation,countercations +counterchallenge,counterchallenges +counterchange,counterchanges +countercharge,countercharges +countercharm,countercharms +counter check,counter checks +countercheck,counterchecks +counterclaimant,counterclaimants +counterclaim,counterclaims +countercoalition,countercoalitions +countercomplainant,countercomplainants +countercomplaint,countercomplaints +countercounterargument,countercounterarguments +counter-countermeasure,counter-countermeasures +countercountermeasure,countercountermeasures +counter,counters +counter,counters +counter,counters +countercoup,countercoups +countercry,countercries +counterculturalist,counterculturalists +counter culture,counter cultures +counterculture,countercultures +countercurrent,countercurrents +countercurse,countercurses +counterdefense,counterdefenses +counterdefinition,counterdefinitions +counterdemonstration,counterdemonstrations +counterdemonstrator,counterdemonstrators +counterdiscourse,counterdiscourses +countereffect,countereffects +countereffort,counterefforts +counteremotion,counteremotions +counterestablishment,counterestablishments +counter-evidence,counter-evidences +counterevidence,counterevidences +counterexample,counterexamples +counterface,counterfaces +counterfactual,counterfactuals +counterfeisance,counterfeisances +counterfeit,counterfeits +counterfeiter,counterfeiters +counterfeiting,counterfeitings +counterfeitress,counterfeitresses +counterfeminist,counterfeminists +counterfigure,counterfigures +counterfoil,counterfoils +counterforce,counterforces +counterfort,counterforts +countergambit,countergambits +countergesture,countergestures +counterglow,counterglows +counterguard,counterguards +counterhegemony,counterhegemonies +counterimage,counterimages +counterinitiative,counterinitiatives +counterinstance,counterinstances +counterinsurgency,counterinsurgencies +counterinsurgent,counterinsurgents +counterintuition,counterintuitions +counterinvestigation,counterinvestigations +counterion,counterions +counterirritant,counterirritants +counterjab,counterjabs +counterjumper,counterjumpers +counterkilling,counterkillings +counterline,counterlines +counterman,countermen +countermand,countermands +countermander,countermanders +countermanifesto,countermanifestos +countermarch,countermarches +countermark,countermarks +countermeasure,countermeasures +countermeeting,countermeetings +countermelody,countermelodies +countermemo,countermemos +counter-mine,counter-mines +countermine,countermines +countermodel,countermodels +countermotion,countermotions +countermove,countermoves +countermovement,countermovements +countermure,countermures +countermyth,countermyths +counternarrative,counternarratives +counternotice,counternotices +counternotification,counternotifications +counter-offensive,counter-offensives +counteroffensive,counteroffensives +counteroffer,counteroffers +counteroperation,counteroperations +counterorder,counterorders +counterpane,counterpanes +counter-parry,counter-parries +counterpart,counterparts +counter-party,counter-parties +counterparty,counterparties +counterperson,counterpersons,counterpeople +counterpetition,counterpetitions +counterphilosophy,counterphilosophies +counterpicket,counterpickets +counterplay,counterplays +counterplayer,counterplayers +counterplea,counterpleas +counterplot,counterplots +counterplotter,counterplotters +counterploy,counterploys +counterpoint,counterpoints +counterpoise,counterpoises +counterpoison,counterpoisons +counterpole,counterpoles +counterposition,counterpositions +counterpower,counterpowers +counterproject,counterprojects +counterproof,counterproofs +counterprophecy,counterprophecies +counter-proposal,counter-proposals +counterproposal,counterproposals +counterproposition,counterpropositions +counterprotest,counterprotests +counterprotester,counterprotesters +counterpunch,counterpunches +counterpuncher,counterpunchers +counterquestion,counterquestions +counterrally,counterrallies +counterreaction,counterreactions +counterreceptor,counterreceptors +Counter-Reformation,Counter-Reformations +counterreformer,counterreformers +counterremark,counterremarks +counterreply,counterreplies +counter-revolutionary,counter-revolutionaries +counterrevolutionary,counterrevolutionaries +counterrevolution,counterrevolutions +counterrhythm,counterrhythms +counterriot,counterriots +counter-roll,counter-rolls +counterscarp,counterscarps +countershaft,countershafts +countershot,countershots +countersignal,countersignals +countersignatory,countersignatories +countersignature,countersignatures +countersign,countersigns +countersink,countersinks +counterslogan,counterslogans +counterspell,counterspells +counterspy,counterspies +counterstain,counterstains +counterstep,countersteps +counterstory,counterstories +counter strategy,counter strategies +counter-strategy,counter-strategies +counterstrategy,counterstrategies +counterstrike,counterstrikes +counterstroke,counterstrokes +counterstudy,counterstudies +countersubject,countersubjects +countersuit,countersuits +countersunk hole,countersunk holes +countersurge,countersurges +countersway,countersways +countertactic,countertactics +countertendency,countertendencies +counter-tenor,counter-tenors +countertenor,countertenors +counterterm,counterterms +counterterrorist,counterterrorists +countertheme,counterthemes +countertheory,countertheories +counterthesis,countertheses +counterthought,counterthoughts +counterthreat,counterthreats +counterthrust,counterthrusts +counter-time,counter-times +countertop,countertops +countertop oven,countertop ovens +countertradition,countertraditions +countertransference,countertransferences +countertrend,countertrends +counter-trial,counter-trials +counterturn,counterturns +countertype,countertypes +countervailing duty,countervailing duties +countervallation,countervallations +counterview,counterviews +counterviewpoint,counterviewpoints +countervirus,counterviruses +countervision,countervisions +counterwave,counterwaves +counterweight,counterweights +counterwheel,counterwheels +counterwind,counterwinds +counterwoman,counterwomen +counterword,counterwords +counterworker,counterworkers +counterworker,counterworkers +countess,countesses +counthry,counthries +Countian,Countians +counting cell hemocytometer,counting cell hemocytometers +counting,countings +counting glass,counting glasses +countinghouse,countinghouses +counting measure,counting measures +counting number,counting numbers +counting-out game,counting-out games +counting rod,counting rods +countline,countlines +countling,countlings +count noun,count nouns +countor,countors +countre,countres +countrey,countreys +countrie,countries +country beam,country beams +country bumpkin,country bumpkins +country club,country clubs +country code,country codes +country,countries +country cousin,country cousins +country dance,country dances +country-dance,country-dances +country house,country houses +countryman,countrymen +countrymate,countrymates +country mile,country miles +country of origin,countries of origin +country of provenance,countries of provenance +country park,country parks +countryperson,countrypersons,countrypeople +country seat,country seats +countryseat,countryseats +countryside,countrysides +countrysider,countrysiders +country store,country stores +country wife,country wives +countrywoman,countrywomen +countship,countships +countwheel,countwheels +county,counties +county fair,county fairs +county family,county families +county seat,county seats +county town,county towns +coup,coups +coup d'arret,coups d'arret +coup de force,coups de force +coup de foudre,coups de foudre +coup de grΓ’ce,coups de grΓ’ce +coup de maitre,coups de maitre +coup d'etat,coups d'etat,coup d'etats +coup d'Γ©tat,coups d'Γ©tat,coup d'Γ©tats +coup de theatre,coups de theatre +coup de théÒtre,coups de théÒtre +coup d'Ε“il,coups d'Ε“il +coupe,coupes +coupΓ©,coupΓ©s +coupee,coupees +coupe-gorge,coupe-gorges +couple-beggar,couple-beggars +couple-close,couple-closes +couple,couples +couplement,couplements +coupler,couplers +couplet,couplets +couplezilla,couplezillas +coupling,couplings +coupon code,coupon codes +coupon,coupons +couponer,couponers +coupon site,coupon sites +coup stick,coup sticks +coupure,coupures +courant,courants +courant,courants +courante,courantes +couranto,courantos,courantoes +courbette,courbettes +courche,courches +coureur de bois,coureurs de bois +courgette,courgettes +courier,couriers +courlan,courlans +Courlander,Courlanders +courol,courols +course authoring tool,course authoring tools +coursebook,coursebooks +course,courses +course credit,course credits +courseload,courseloads +coursemate,coursemates +course of action,courses of action +coursepack,coursepacks +courser,coursers +coursey,courseys +court appearance,court appearances +court-baron,court-barons,courts-baron +court baron,courts baron +court bouillon,court bouillons +court card,court cards +court,courts +court-cupboard,court-cupboards +court customary,courts customary +courtepy,courtepies +courter,courters +courtesan,courtesans +courtesy card,courtesy cards +courtesy copy,courtesy copies +courtesy name,courtesy names +courtezan,courtezans +court fee,court fees +court-house,court-houses +courthouse,courthouses +courtier,courtiers +courtisanerie,courtisaneries +court jester,court jesters +court-leet,court-leets,courts-leet +courtling,courtlings +court-martial,courts-martial +court martial,courts martial,court martials +court of cassation,courts of cassation +court of equity,courts of equity +court of last resort,courts of last resort +court of law,courts of law +court of record,courts of record +court order,court orders +court plaster,court plasters +court reporter,court reporters +courtroom,courtrooms +courtsey,courtseys +courtship,courtships +court shoe,court shoes +courtyard,courtyards +couscous,couscouses +couscoussier,couscoussiers +Coushatta,Coushattas,Coushatta +cousin-aunt,cousin-aunts +cousin brother,cousin brothers +cousin-brother,cousin-brothers +cousin,cousins +cousin-german,cousin-germans,cousins-german +cousin-in-law,cousin-in-laws,cousins-in-law +cousin prime,cousin primes +cousinry,cousinries +cousinship,cousinships +cousin sister,cousin sisters +cousin-sister,cousin-sisters +cousin-uncle,cousin-uncles +coussinet,coussinets +couta boat,couta boats +couteau,couteaus +couteau de chasse,couteaux de chasse +couturier,couturiers +couvade,couvades +covaledictorian,covaledictorians +covalence,covalences +covalency,covalencies +covalent bond,covalent bonds +covariable,covariables +covariance,covariances +covariantisation,covariantisations +covariantization,covariantizations +covariate,covariates +covariation,covariations +covariogram,covariograms +covarion,covarions +cove,coves +cove,coves +covector,covectors +covenant,covenants +covenantee,covenantees +covenanter,covenanters +covenant of title,covenants of title +covenantor,covenantors +covenaunt,covenaunts +coven,covens +covendom,covendoms +covener,coveners +covenstead,covensteads +covent,covents +coverall,coveralls +cover artist,cover artists +coverb,coverbs +cover board,cover boards +cover charge,cover charges +coverchief,coverchiefs +covercle,covercles +cover,covers +cover crop,cover crops +coverdisc,coverdiscs +coverdisk,coverdisks +cover drive,cover drives +covered bridge,covered bridges +covered call,covered calls +covered way,covered ways +coverer,coverers +cover-few,cover-fews +cover girl,cover girls +coverglass,coverglasses +covering letter,covering letters +covering space,covering spaces +coverlet,coverlets +cover letter,cover letters +coverlid,coverlids +cover meter,cover meters +covermeter,covermeters +covermount,covermounts +cover note,cover notes +cover point,cover points +coversed sine,coversed sines +coversheet,coversheets +coversine,coversines +cover slip,cover slips +coverslip,coverslips +cover song,cover songs +cover story,cover stories +covertape,covertapes +covert-coat,covert-coats +covert,coverts +covertex,covertices +covert hound,covert hounds +covert stutter,covert stutters +covert stuttering,covert stutterings +coverture,covertures +cover-up,cover-ups +coverup,coverups +cover version,cover versions +covery,coveries +coveter,coveters +covey,coveys +covey,coveys +coving,covings +covolatility,covolatilities +cowage,cowages +cowan,cowans +coward,cowards +cowarde,cowardes +cowardly lion,cowardly lions +cowardy custard,cowardy custards +cowberry,cowberries +cowbird,cowbirds +cowboy,cowboys +cowboy hat,cowboy hats +cowboy shot,cowboy shots +cowcatcher,cowcatchers +cow corner,cow corners +cow,cows +cow,cows,cattle +cowcumber,cowcumbers +cowdie,cowdies +cowen,cowens +cowerer,cowerers +cowfish,cowfishes,cowfish +cowgirl,cowgirls +cowgirl position,cowgirl positions +cowhand,cowhands +cowherd,cowherds +cowhiding,cowhidings +cow hitch,cow hitches +cowhouse,cowhouses +Cowichan,Cowichans,Cowichan +cowie,cowies +co-wife,co-wives +cowkeeper,cowkeepers +cowl,cowls +cowleech,cowleeches +cowlick,cowlicks +cowling,cowlings +cowling,cowlings +cowlneck,cowlnecks +cowlstaff,cowlstaffs +cowman,cowmen +cownose ray,cownose rays +co-worker,co-workers +cow-orker,cow-orkers +coworker,coworkers +cow parsley,cow parsleys +cow parsnip,cow parsnips +cow pat,cow pats +cowpat,cowpats +cowpath,cowpaths +cow patty,cow patties +cowpea,cowpeas +cowper,cowpers +Cowper's gland,Cowper's glands +cowperson,cowpersons,cowpeople +cow pie,cow pies +cowpie,cowpies +cow-pilot,cow-pilots +cowpock,cowpocks +cowpoke,cowpokes +cow pool,cow pools +cowpool,cowpools +cowpool,cowpools +cowpuncher,cowpunchers +cowquake,cowquakes +cowrie,cowries +cowriter,cowriters +cowry,cowries +cowshed,cowsheds +cow shot,cow shots +cowslip,cowslips +cowson,cowsons +cow town,cow towns +cowtown,cowtowns +cow tree,cow trees +cow-tree,cow-trees +cow-wheat,cow-wheats +cowyard,cowyards +coxa,coxae +coxalgia,coxalgias +coxcomb,coxcombs +cox,coxes +coxless four,coxless fours +coxless pair,coxless pairs +coxsackievirus,coxsackieviruses +Cox's Orange Pippin,Cox's Orange Pippins +coxswain,coxswains +coy,coys +coy dog,coy dogs +coydog,coydogs +coyn,coyns +coyne,coynes +coyote,coyotes +coypu,coypus,coypu +coywolf,coywolves +cozenage,cozenages +cozener,cozeners +cozening,cozenings +cozie,cozies +cozier,coziers +cozy,cozies +cozzer,cozzers +cozzie,cozzies +CPE,CPEs +C-pillar,C-pillars +CPK model,CPK models +CP/Mer,CP/Mers +CPN,CPNs +CPO,CPOs +C-post,C-posts +CPU,CPUs +CPU,CPUs +CPU time,CPU times +crab apple,crab apples +crab-apple,crab-apples +crabapple,crabapples +crabber,crabbers +crab boil,crab boils +crab burger,crab burgers +crabburger,crabburgers +crabcake,crabcakes +crab canon,crab canons +crab,crabs +crab,crabs +crab,crabs +crab,crabs +crab-eater,crab-eaters +crabeater,crabeaters +crab-eating fox,crab-eating foxes +crab-eating raccoon,crab-eating raccoons +craber,crabers +crablet,crablets +crabling,crablings +crab louse,crab lice +crabmeat,crabmeats +crab plover,crab plovers +crab puff,crab puffs +crab rangoon,crab rangoons +crabronid,crabronids +crab spider,crab spiders +crabspider,crabspiders +crabstick,crabsticks +crabstick,crabsticks +crab tree,crab trees +crab-tree,crab-trees +crabtree,crabtrees +cracid,cracids +cracka,crackas,crackaz +crack baby,crack babies +crackberry,crackberries +crack,cracks +crackdown,crackdowns +crackerass,crackerasses +crackerberry,crackerberries +cracker bonbon,cracker bonbons +crackerbox,crackerboxes +cracker,crackers +cracker,crackers +crackerjack,crackerjacks +crack head,crack heads +crackhead,crackheads +crack house,crack houses +crackhouse,crackhouses +cracking,crackings +crackleberry,crackleberries +crackle,crackles +cracknel,cracknels +crackow,crackows +crack pipe,crack pipes +crack-pipe,crack-pipes +crackpipe,crackpipes +crackpot,crackpots +crack seed,crack seeds +cracksman,cracksmen +crack snacker,crack snackers +crack train,crack trains +cracktro,cracktros +crackup,crackups +crack whore,crack whores +crackwhore,crackwhores +crack willow,crack willows +cracky,crackies +cracky wagon,cracky wagons +Cracovian,Cracovians +cracovienne,cracoviennes +cracowe,cracowes +cracticid,cracticids +cradleboard,cradleboards +cradle cap,cradle caps +Cradle Catholic,Cradle Catholics +cradle,cradles +cradle robber,cradle robbers +cradle-robber,cradle-robbers +cradle snatch,cradle snatchs +cradle snatcher,cradle snatchers +cradling,cradlings +craftable,craftables +craft centre,craft centres +crafter,crafters +craftist,craftists +crafts centre,crafts centres +craftsman,craftsmen +craftsmaster,craftsmasters +craftsperson,craftspersons,craftspeople +craftswoman,craftswomen +craftworker,craftworkers +crag,crags +cragger,craggers +cragsman,cragsmen +craig flounder,craig flounders +Craigslister,Craigslisters +craigslisting,craigslistings +craik,craiks +craisin,craisins +crakeberry,crakeberries +crake,crakes +craker,crakers +crambid,crambids +cram,crams +cramdown,cramdowns +crammer,crammers +cramp,cramps +crampet,crampets +crampfish,crampfishes +cramp iron,cramp irons +crampit,crampits +crampon,crampons +crampoon,crampoons +cramp ring,cramp rings +cram school,cram schools +cram session,cram sessions +cranachan,cranachans +cranberry,cranberries +cranberry juice,cranberry juices +cranberry morpheme,cranberry morphemes +crance,crances +crance iron,crance irons +crancelin,crancelins +cranchiid,cranchiids +cran,crans +cran,crans,cran +crane,cranes +cranefly,craneflies +cranequin,cranequins +cranesbill,cranesbills +crang,crangs +crangonid,crangonids +crangonyctid,crangonyctids +cranial nerve,cranial nerves +cranial orbit,cranial orbits +craniate,craniates +cranidium,cranidiums +craniectomy,craniectomies +craniid,craniids +cranioclast,cranioclasts +craniologist,craniologists +craniometer,craniometers +craniopagus,craniopagi +craniopharyngioma,craniopharyngiomas,craniopharyngiomata +cranioscopist,cranioscopists +craniotomy,craniotomies +cranium,craniums,crania +crank angle,crank angles +crank angle degree,crank angle degrees +crankarm,crankarms +crankbird,crankbirds +crank call,crank calls +crank caller,crank callers +crankcase,crankcases +crank,cranks +crankle,crankles +crankpin,crankpins +crankset,cranksets +crankshaft,crankshafts +crannock,crannocks +crannog,crannogs +cranny,crannies +cranoglanidid,cranoglanidids +cranse iron,cranse irons +crantara,crantaras +crant,crants +crants,crantses +crap artist,crap artists +crapaud,crapauds +crapaudine,crapaudines +crap,craps +crapehanger,crapehangers +crape myrtle,crape myrtles +crapface,crapfaces +crapfest,crapfests +crapgame,crapgames +crap hat,crap hats +craphat,craphats +craphead,crapheads +craphole,crapholes +craphouse,craphouses +crapitalist,crapitalists +craple,craples +craplet,craplets +crapload,craploads +crapmobile,crapmobiles +crapper,crappers +crappie,crappies,crappie +crapple,crapples +crapplet,crapplets +crapplication,crapplications +crap-shoot,crap-shoots +crapshoot,crapshoots +crapshooter,crapshooters +crapstain,crapstains +crapstorm,crapstorms +crapula,crapulae +crapulence,crapulences +crare,crares +crash barrier,crash barriers +crash box,crash boxes +crash cart,crash carts +crash course,crash courses +crash,crashes +crash cymbal,crash cymbals +crash diet,crash diets +crashdump,crashdumps +crasher,crashers +crash gearbox,crash gearboxes +crash helmet,crash helmets +crash landing,crash landings +crash-landing,crash-landings +crashpad,crashpads +crash test,crash tests +crash test dummy,crash test dummies +crash trolley,crash trolleys +crasis,crases +crassament,crassaments +crassamentum,crassamenta +crassatellid,crassatellids +crassitude,crassitudes +crassula,crassulas +crastination,crastinations +crataegus,crataeguses +cratch,cratches +C-rat,C-rats +crate,crates +crateful,cratefuls,cratesful +crateload,crateloads +crater,craters +crater,craters +crater face,crater faces +crater lake,crater lakes +craterlet,craterlets +C-ration,C-rations +craton,cratons +cratur,craturs +cravat,cravats +craven,cravens +cravenoceratid,cravenoceratids +craver,cravers +craving,cravings +craw,craws +crawdad,crawdads +crawfish,crawfishes,crawfish +crawl,crawls +crawl,crawls +crawler,crawlers +crawler,crawlers +crawl space,crawl spaces +crawlspace,crawlspaces +crawthumper,crawthumpers +cray,crays +craye,crayes +crayer,crayers +Crayette,Crayettes +crayfish,crayfishes,crayfish +crayfisher,crayfishers +crayfisherman,crayfishermen +crayfishery,crayfisheries +crayon,crayons +crayoning,crayonings +craytur,crayturs +craze,crazes +crazy bone,crazy bones +crazy,crazies +crazymaker,crazymakers +crazy quilt,crazy quilts +crazyquilt,crazyquilts +CRC,CRCs +creaght,creaghts +creak,creaks +creaker,creakers +creaking,creakings +cream cake,cream cakes +creamcake,creamcakes +cream cheese,cream cheeses +cream cracker,cream crackers +cream,creams +creamer,creamers +creamery,creameries +cream-fruit,cream-fruits +cream horn,cream horns +creamometer,creamometers +cream pie,cream pies +creampie,creampies +cream puff,cream puffs +creampuff,creampuffs +creamsicle,creamsicles +cream slice,cream slices +cream tea,cream teas +creance,creances +creancer,creancers +crease,creases +crease,creases +creaser,creasers +creasing,creasings +creat,creats +creatinase,creatinases +creatine kinase,creatine kinases +creational pattern,creational patterns +creationist,creationists +creation myth,creation myths +creative work,creative works +creator,creators +creatour,creatours +creatress,creatresses +creatrix,creatrices +creatur,creaturs +creature comfort,creature comforts +creature,creatures +creΓ€ture,creΓ€tures +creature feature,creature features +creche,creches +crΓ¨che,crΓ¨ches +cred,creds +credendum,credenda +credential,credentials +credenza,credenzas +credibility gap,credibility gaps +credit card,credit cards +credit card tart,credit card tarts +credit crunch,credit crunches +credit default option,credit default options +credit default swap,credit default swaps +credit-deposit ratio,credit-deposit ratios +credit event,credit events +credit line,credit lines +credit note,credit notes +creditor,creditors +creditour,creditours +credit rating,credit ratings +credit reference,credit references +credit report,credit reports +creditress,creditresses +credit risk,credit risks +credit score,credit scores +credit transfer,credit transfers +credit union,credit unions +crednerite,crednerites +credobaptist,credobaptists +credo,credos +credophile,credophiles +Cree,Crees,Cree +creed,creeds +creediid,creediids +creek bed,creek beds +creekbed,creekbeds +creek,creeks +Creek,Creeks +creekfish,creekfish +creekside,creeksides +creel,creels +creeler,creelers +creepage,creepages +creepazoid,creepazoids +creep,creeps +creeper,creepers +creephole,creepholes +creepie,creepies +creeping buttercup,creeping buttercups +creeping thistle,creeping thistles +creep joint,creep joints +creeple,creeples +creepmeter,creepmeters +creepmouse,creepmice +creepoid,creepoids +creepy-crawly,creepy-crawlies +creepy-crawly,creepy-crawlies +creepy-peepy,creepy-peepies +creese,creeses +creetur,creeturs +crellid,crellids +crΓ©maillΓ¨re,crΓ©maillΓ¨res +cremaster,cremasters +cremation,cremations +cremationist,cremationists +cremator,cremators +crematorium,crematoriums,crematoria +crematory,crematories +crΓ¨me anglaise,crΓ¨mes anglaise +creme brulee,creme brulees +crΓ¨me brΓ»lΓ©e,crΓ¨me brΓ»lΓ©es,crΓ¨mes brΓ»lΓ©es,crΓ¨mes brΓ»lΓ©e +crΓ¨me caramel,crΓ¨me caramels +creme,cremes +crΓ¨me,crΓ¨mes +crΓ¨me fraΓche,crΓ¨mes fraΓches +cremini,creminis +cremocarp,cremocarps +Cremona,Cremonas +cremor,cremors +cremulator,cremulators +crenarchaeon,crenarchaea +crenarchaeote,crenarchaeotes +crenate,crenates +crenature,crenatures +crenelated molding,crenelated moldings +crenelation,crenelations +crenel,crenels +crenellated moulding,crenellated mouldings +crenellation,crenellations +crenelle,crenelles +crenic acid,crenic acids +crenotherapy,crenotherapies +crenuchid,crenuchids +crenula,crenulae +crenulation,crenulations +creo,creos +creodont,creodonts +Creolean,Creoleans +creole,creoles +Creole,Creoles +Creolian,Creolians +creolin,creolins +creotard,creotards +crepance,crepances +crepe,crepes +crΓͺpe,crΓͺpes +crΓͺpe de chine,crΓͺpe de chines,crΓͺpes de chine +crepe de Chine,crepes de Chine,crepe de Chines +crΓͺpe de Chine,crepes de Chine,crepe de Chines +crepehanger,crepehangers +creperie,creperies +crΓͺpe Suzette,crΓͺpes Suzette +crepidoma,crepidomas +crepitation,crepitations +crepon,crepons +crepuscle,crepuscles +crepuscular ray,crepuscular rays +crepuscule,crepuscules +crescendo,crescendos,crescendi,crescendoes +crescent,crescents +crescent moon,crescent moons +crescent roll,crescent rolls +crescent spanner,crescent spanners +cresolate,cresolates +cresol,cresols +crespine,crespines +cress,cresses +cresselle,cresselles +cresset,cressets +cressid,cressids +crest cloud,crest clouds +crest,crests +crested lark,crested larks +crested oriole,crested orioles +crested penguin,crested penguins +crested screamer,crested screamers +crested tit,crested tits +crestie,cresties +cresting,crestings +cresyl,cresyls +Cretacean,Cretaceans +Cretan,Cretans +Cretan rockrose,Cretan rockroses +Crete,Cretes +Cretian,Cretians +cretin,cretins +cretoxyrhinid,cretoxyrhinids +creutzer,creutzers +crevalle,crevalles +crevasse,crevasses +crevet,crevets +crevice,crevices +crevis,crevises +crew chief,crew chiefs +crew,crews +crew,crews +crew,crews +crew cut,crew cuts +crewcut,crewcuts +crewel,crewels +crewer,crewers +crewet,crewets +crewman,crewmen +crewmate,crewmates +crewmember,crewmembers +crew neck,crew necks +crewneck,crewnecks +crewperson,crewpersons,crewpeople +crew-served weapon,crew-served weapons +crewwoman,crewwomen +cria,crias +cribber,cribbers +cribble,cribbles +crib board,crib boards +crib,cribs +crib death,crib deaths +cribellum,cribella +cribhouse,cribhouses +crib lizard,crib lizards +crib mattress,crib mattresses +crib note,crib notes +cribration,cribrations +cribriform plate,cribriform plates +cribrilinid,cribrilinids +crib sheet,crib sheets +cribsheet,cribsheets +cricetid,cricetids +crichtonite,crichtonites +crick,cricks +crick,cricks +crick,cricks +cricket ball,cricket balls +cricket bat,cricket bats +cricket,crickets +cricketer,cricketers +cricket field,cricket fields +cricket ground,cricket grounds +cricket pitch,cricket pitches +crickety,cricketies +crico-arytΓ¦noid,crico-arytΓ¦noids +cricoid,cricoids +cricondenbar,cricondenbars +cricondentherm,cricondentherms +cricopharyngeus,cricopharyngei +cricothyroidotomy,cricothyroidotomies +cricothyrotomy,cricothyrotomies +cri de coeur,cris de coeur +cri de cΕ“ur,cris de cΕ“ur +crier,criers +crik,criks +crim,crims +crime against humanity,crimes against humanity +crime against nature,crimes against nature +crime buster,crime busters +crime-buster,crime-busters +crimebuster,crimebusters +crimefighter,crimefighters +crime lord,crime lords +crimelord,crimelords +crime of passion,crimes of passion +crime passionel,crimes passionels +crime passionnel,crimes passionnels +crime scene,crime scenes +crimewave,crimewaves +criminal code,criminal codes +criminal,criminals +criminalist,criminalists +criminalizer,criminalizers +criminal law,criminal laws +criminal lawyer,criminal lawyers +criminal negligence,criminal negligences +criminal offence,criminal offences +criminal procedure,criminal procedures +criminal psychologist,criminal psychologists +criminal record,criminal records +crimination,criminations +crimini,criminis +criminologist,criminologists +crimosin,crimosins +crimp,crimps +crimp,crimps +crimper,crimpers +crimson,crimsons +crimson tide,crimson tides +crincum-crancum,crincum-crancums +crinel,crinels +crinet,crinets +cringe,cringes +cringeling,cringelings +cringer,cringers +cringle,cringles +criniere,crinieres +crinivirus,criniviruses +crinkle,crinkles +crinkling,crinklings +crinkum-crankum,crinkum-crankums +crinoid,crinoids +crinoidean,crinoideans +crinoline,crinolines +criodrilid,criodrilids +criosphinx,criosphinxes +crioulo,crioulos +crip,crips +Crip,Crips +cripple,cripples +crippler,cripplers +crippling,cripplings +crisis center,crisis centers +crisis,crises +crispation,crispations +crispature,crispatures +crisp bread,crisp breads +crisp,crisps +crisper,crispers +crisphead,crispheads +Crispin,Crispins +crispness,crispnesses +crispy,crispies +criss-cross,criss-crosses +crisscross,crisscrosses +crisscross-row,crisscross-rows +crissum,crissa +crista,cristae +cristoballite,cristoballites +crit,crits +criterion,criteria +criterium,criteriums +crith,criths +critical angle,critical angles +critical,criticals +critical function,critical functions +criticality,criticalities +critical load,critical loads +critical mass,critical masses +critical path,critical paths +critical point,critical points +critical section,critical sections +critical temperature,critical temperatures +critical tide level,critical tide levels +criticaster,criticasters +critic,critics +criticiser,criticisers +criticizer,criticizers +critick,criticks +critique,critiques +critiquer,critiquers +critter,critters +crizzel,crizzels +crizzle,crizzles +cRNA,cRNAs +croak,croaks +croaker,croakers +croaking,croakings +Croat,Croats +Croatian,Croatians +Croatian Sheepdog,Croatian Sheepdogs +crocacin,crocacins +croc,crocs +croche,croches +crochet,crochets +crocheter,crocheters +crocidolite,crocidolites +crock,crocks +crocker,crockers +crocket,crockets +crocketing,crocketings +crock of gold,crocks of gold +crock of shit,crocks of shit +crock pot,crock pots +crockpot,crockpots +crocodile bird,crocodile birds +crocodile clip,crocodile clips +crocodile,crocodiles +crocodile tear,crocodile tears +crocodilian,crocodilians +crocodylian,crocodylians +crocodylid,crocodylids +crocodyliform,crocodyliforms +crocodylomorph,crocodylomorphs +croconate,croconates +crocosmia,crocosmias +crocotta,crocottas +crocus,crocuses,croci +crocuta,crocutas +croft,crofts +crofter,crofters +croggan,croggans +croggy,croggies +croisade,croisades +croisado,croisados,croisadoes +croise,croises +croisΓ©,croisΓ©s +croissant,croissants +croker,crokers +Cro-Magnon,Cro-Magnons +crome,cromes +cromlech,cromlechs +cromoglicate,cromoglicates +cromoglycate,cromoglycates +cromolyn,cromolyns +cromorna,cromornas +Cromwellian,Cromwellians +crone,crones +Crone,Crones +cronel,cronels +cronet,cronets +cronjob,cronjobs +crontab,crontabs +cronut,cronuts +crony,cronies +crook and nanny,crooks and nannies +crookback,crookbacks +crookbill,crookbills +crook,crooks +Crookes radiometer,Crookes radiometers +Crookes tube,Crookes tubes +crookneck,crooknecks +croon,croons +crooner,crooners +crooning,croonings +crop circle,crop circles +crop,crops +cropduster,cropdusters +crop-ear,crop-ears +cropout,cropouts +cropper,croppers +cropper,croppers +cropper,croppers +crop top,crop tops +croque-madame,croque-madames +croquembouche,croquembouches +croque-monsieur,croque-monsieurs +croqueta,croquetas +croqueter,croqueters +croquet mallet,croquet mallets +croquette,croquettes +crore,crores +crorepati,crorepatis +crosier,crosiers +croslet,croslets +crosne,crosnes +cross assembler,cross assemblers +crossbanding,crossbandings +crossbar,crossbars +cross bat,cross bats +crossbeak,crossbeaks +crossbeam,crossbeams +cross-bench,cross-benches +cross-bencher,cross-benchers +crossbencher,crossbenchers +cross bike,cross bikes +crossbill,crossbills +cross-birth,cross-births +crossbirth,crossbirths +crossbite,crossbites +crossbody,crossbodies +cross-border ticket,cross-border tickets +cross bore,cross bores +crossbow,crossbows +crossbower,crossbowers +crossbowman,crossbowmen +crossbreed,crossbreeds +crossbreeder,crossbreeders +cross-breeding,cross-breedings +crossbuck,crossbucks +cross cap,cross caps +cross-cap,cross-caps +crosscap,crosscaps +cross channel,cross channels +cross check,cross checks +crosscheck,crosschecks +crossclaim,crossclaims +cross compiler,cross compilers +cross-compiler,cross-compilers +cross-correlation,cross-correlations +crosscorrelation,crosscorrelations +cross-country,cross-countrys +crosscoupling,crosscouplings +cross-cousin,cross-cousins +cross cover version,cross cover versions +cross,crosses +cross crosslet,crosses crosslet +crosscurrent,crosscurrents +crosscut,crosscuts +crosscut saw,crosscut saws +cross dowel,cross dowels +cross-dresser,cross-dressers +crossdresser,crossdressers +crosse,crosses +crossed line,crossed lines +crossed loop sensor,crossed loop sensors +crosser,crossers +crossette,crossettes +cross examination,cross examinations +cross-examination,cross-examinations +cross-examiner,cross-examiners +cross-eye,cross-eyes +crossfade,crossfades +crossfader,crossfaders +crossfeed,crossfeeds +cross-fertilization,cross-fertilizations +crossfish,crossfishes,crossfish +cross flory,crosses flory +crossflow,crossflows +cross-garnet,cross-garnets +crossgrade,crossgrades +crossguard,crossguards +crosshair,crosshairs +cross-halving joint,cross-halving joints +crosshead,crossheads +crossing,crossings +crossing guard,crossing guards +crossing number,crossing numbers +crossing-sweeper,crossing-sweepers +crossjack,crossjacks +cross-jack yard,cross-jack yards +cross join,cross joins +cross junction,cross junctions +cross-kick,cross-kicks +crosskick,crosskicks +cross-lag,cross-lags +crosslet,crosslets +cross-light,cross-lights +cross-link,cross-links +crosslink,crosslinks +crosslinker,crosslinkers +crossmetathesis,crossmetatheses +crossnumber,crossnumbers +cross of Lorraine,crosses of Lorraine +crossopterygian,crossopterygians +crossover,crossovers +crossover dribble,crossover dribbles +crossover vote,crossover votes +cross-patch,cross-patches +crosspatch,crosspatches +cross peen hammer,cross peen hammers +crosspiece,crosspieces +crosspipe,crosspipes +crossplayer,crossplayers +crosspoint,crosspoints +crosspost,crossposts +crossposter,crossposters +cross product,cross products +cross purpose,cross purposes +cross-purpose,cross-purposes +cross-question,cross-questions +cross-ratio,cross-ratios +crossratio,crossratios +crossreaction,crossreactions +cross-reactivity,cross-reactivities +crossreactivity,crossreactivities +cross-reading,cross-readings +crossref,crossrefs +cross-reference,cross-references +crossroad,crossroads +crossrow,crossrows +crossruff,crossruffs +cross sea,cross seas +cross section,cross sections +cross-section,cross-sections +crosssection,crosssections +cross-shot,cross-shots +cross-spall,cross-spalls +cross spider,cross spiders +cross-springer,cross-springers +cross-staff,cross-staffs +cross-stitcher,cross-stitchers +cross tab,cross tabs +cross-tab,cross-tabs +crosstab,crosstabs +crosstable,crosstables +cross tabulation,cross tabulations +crosstabulation,crosstabulations +cross-tail,cross-tails +crosstalk,crosstalks +cross-tie,cross-ties +cross-trainer,cross-trainers +crosstree,crosstrees +cross vault,cross vaults +crossvein,crossveins +crosswalk,crosswalks +crossway,crossways +crosswind,crosswinds +crossword,crosswords +crossword puzzle,crossword puzzles +crosswort,crossworts +crost,crosts +crotalaria,crotalarias +crotale,crotales +crotalid,crotalids +crotalo,crotalos,crotaloes +crotaloid,crotaloids +crotalum,crotalums +crotaphite,crotaphites +crotaphytid,crotaphytids +crotch critter,crotch critters +crotch,crotches +crotch dropping,crotch droppings +crotch-dropping,crotch-droppings +crotchdropping,crotchdroppings +crotch dumpling,crotch dumplings +crotchet,crotchets +crotchet rest,crotchet rests +crotchline,crotchlines +crotchling,crotchlings +crotch rocket,crotch rockets +crotonaldehyde,crotonaldehydes +crotonamide,crotonamides +crotonase,crotonases +crotonate,crotonates +Croton bug,Croton bugs +croton,crotons +Croton,Crotons +crotonid,crotonids +crotonylation,crotonylations +crotonyl,crotonyls +crotonylene,crotonylenes +crotylation,crotylations +crotylboration,crotylborations +crotyl,crotyls +crouch,crouches +crouch,crouches +croucher,crouchers +croud,crouds +crouke,croukes +croupade,croupades +croup,croups +croupe,croupes +crouper,croupers +croupier,croupiers +croustade,croustades +crouton,croutons +croΓ»ton,croΓ»tons +crowbait,crowbaits +crowbar,crowbars +crowbar hotel,crowbar hotels +crowberry,crowberries +crow,crows +crowd catch,crowd catches +crowd,crowds +crowd,crowds +crowder,crowders +crowd-pleaser,crowd-pleasers +crowdpleaser,crowdpleasers +crowd-poisoning,crowd-poisonings +crowdsourcer,crowdsourcers +crowd surfer,crowd surfers +crow eater,crow eaters +crow-eater,crow-eaters +croweater,croweaters +crowflower,crowflowers +crowfoot cell,crowfoot cells +crowfoot,crowfoots +crowkeeper,crowkeepers +Crowleyan,Crowleyans +Crown attorney,Crown attorneys +crown cactus,crown cactuses +crown corporation,crown corporations +Crown corporation,Crown corporations +crown,crowns +crowne,crownes +crowned crane,crowned cranes +crowned pigeon,crowned pigeons +crowner,crowners +crownet,crownets +crown ether,crown ethers +crown flower,crown flowers +crown gall,crown galls +crown green,crown greens +crown immunity,crown immunities +crowning,crownings +crownlet,crownlets +crown mammal,crown mammals +crown molding,crown moldings +crownpiece,crownpieces +crownpost,crownposts +crown prince,crown princes +crown princess,crown princesses +crown prosecutor,crown prosecutors +Crown prosecutor,Crown prosecutors +crown saw,crown saws +Crown Vic,Crown Vics +crown ward,crown wards +crown wheel,crown wheels +crownwork,crownworks +crow scarer,crow scarers +crow's nest,crow's nests +crowstep,crowsteps +crowstone,crowstones +crowth,crowths +crowtoe,crowtoes +Croydon facelift,Croydon facelifts +croze,crozes +croze iron,croze irons +crozier,croziers +CRT,CRTs +CRT television,CRT televisions +crubeen,crubeens +crucian carp,crucian carps +crucian,crucians +cruciate sulcus,cruciate sulci +crucible,crucibles +crucifer,crucifers +crucifier,crucifiers +crucifix,crucifixes +crucifixion,crucifixions +cruciverbalist,cruciverbalists +cruck,crucks +cru,crus +crud,cruds +crude birth rate,crude birth rates +crude,crudes +crude death rate,crude death rates +crueltie,cruelties +cruentation,cruentations +cruet,cruets +cruise,cruises +cruise liner,cruise liners +cruiseliner,cruiseliners +cruise missile,cruise missiles +cruiser,cruisers +cruiserweight,cruiserweights +cruise ship,cruise ships +cruive,cruives +cruize,cruizes +cruller,crullers +crumbcloth,crumbcloths +crumb,crumbs +crumb cruncher,crumb crunchers +crumb-cruncher,crumb-crunchers +crumbcruncher,crumbcrunchers +crumb crusher,crumb crushers +crumb-crusher,crumb-crushers +crumbcrusher,crumbcrushers +crumber,crumbers +crumb grinder,crumb grinders +crumbgrinder,crumbgrinders +crumbler,crumblers +crumblet,crumblets +crumbum,crumbums +crum cake,crum cakes +crumcake,crumcakes +crumhorn,crumhorns +crummock,crummocks +crummy,crummies +crump,crumps +crumpet,crumpets +crumple,crumples +crumpler,crumplers +crumple zone,crumple zones +crumpling,crumplings +crunch,crunches +cruncher,crunchers +crunchie,crunchies +crunching,crunchings +crunch-time,crunch-times +crunchy granola,crunchy granolas +crunode,crunodes +crup,crups +crupper,cruppers +crureus,crureuses +crusade,crusades +crusader,crusaders +crusado,crusados,crusadoes +crus,crura +cruse,cruses +cruset,crusets +crush,crushes +crushed sugar,crushed sugars +crushee,crushees +crusher,crushers +crusher gauge,crusher gauges +crush hat,crush hats +crush party,crush parties +crush pen,crush pens +crush room,crush rooms +crustacean,crustaceans,crustacea +crustaceologist,crustaceologists +crustacyanin,crustacyanins +crustation,crustations +crustie,crusties +crustquake,crustquakes +crusty,crusties +crutch,crutches +crut,cruts +cruth,cruths +crutter,crutters +crux,cruxes,cruces +crux gammata,cruces gammatae +Cruyff turn,Cruyff turns +cruzado,cruzados +cruzeiro,cruzeiros +crwth,crwths +cryalf,cryalfs +cryand,cryands +cry baby,cry babies +cry-baby,cry-babies +crybaby,crybabies +cry,cries +cryept,cryepts +cryer,cryers +cryert,cryerts +cry for help,cries for help +crying bird,crying birds +crying call,crying calls +crying,cryings +crying shame,crying shames +cryobench,cryobenches +cryobiologist,cryobiologists +cryoblation,cryoblations +cryobuffer,cryobuffers +cryochrept,cryochrepts +cryoconcentration,cryoconcentrations +cryocondensation,cryocondensations +cryocooler,cryocoolers +cryodetector,cryodetectors +cryoextraction,cryoextractions +cryoextractor,cryoextractors +cryofixation,cryofixations +cryogen,cryogens +cryogenesis,cryogeneses +cryogenicist,cryogenicists +cryogenic liquid,cryogenic liquids +cryoglobulin,cryoglobulins +cryohydrate,cryohydrates +cryolathe,cryolathes +cryoll,cryolls +cryometer,cryometers +cryomicrograph,cryomicrographs +cryomodule,cryomodules +cryomold,cryomolds +cryomould,cryomoulds +cryonaut,cryonauts +cryophile,cryophiles +cryophorus,cryophoruses +cryophyte,cryophytes +cryopreservative,cryopreservatives +cryoprobe,cryoprobes +cryoprostatectomy,cryoprostatectomies +cryoprotectant,cryoprotectants +cryopsamment,cryopsamments +cryopump,cryopumps +cryoregime,cryoregimes +cryoscope,cryoscopes +cryosection,cryosections +cryoseism,cryoseisms +cryosol,cryosols +cryosolvent,cryosolvents +cryospray,cryosprays +cryostat,cryostats +cryosurgeon,cryosurgeons +cryotechnology,cryotechnologies +cryotemperature,cryotemperatures +cryotherapist,cryotherapists +cryotome,cryotomes +cryotrap,cryotraps +cryotron,cryotrons +cryotube,cryotubes +cryoturbation,cryoturbations +cryovial,cryovials +cryovolcano,cryovolcanoes,cryovolcanos +cryptacanthodid,cryptacanthodids +cryptanalysis,cryptanalyses +cryptanalyst,cryptanalysts +cryptand,cryptands +cryptarithm,cryptarithms +cryptate,cryptates +crypt,crypts +cryptic crossword,cryptic crosswords +cryptic,cryptics +cryptid,cryptids +cryptoanalyst,cryptoanalysts +cryptobiont,cryptobionts +cryptobranchid,cryptobranchids +cryptocelid,cryptocelids +cryptocercid,cryptocercids +cryptochirid,cryptochirids +cryptochrome,cryptochromes +cryptocleidid,cryptocleidids +cryptoclidid,cryptoclidids +cryptoclidus,cryptocliduses +cryptococcus,cryptococci +cryptocracy,cryptocracies +crypto,cryptos +cryptocurrency,cryptocurrencies +cryptodepression,cryptodepressions +cryptoexotic,cryptoexotics +crypto-fascist,crypto-fascists +cryptofascist,cryptofascists +cryptogam,cryptogams +cryptogame,cryptogames +cryptogamist,cryptogamists +cryptogram,cryptograms +cryptogramme,cryptogrammes +cryptograph,cryptographs +cryptographer,cryptographers +cryptographist,cryptographists +cryptolect,cryptolects +cryptologist,cryptologists +cryptomeria,cryptomerias +cryptomodule,cryptomodules +cryptomonad,cryptomonads +cryptomorphism,cryptomorphisms +cryptoniscid,cryptoniscids +cryptonym,cryptonyms +cryptophagid,cryptophagids +cryptophane,cryptophanes +cryptophone,cryptophones +cryptophyte,cryptophytes +cryptopine,cryptopines +cryptoplacid,cryptoplacids +cryptoprocessor,cryptoprocessors +cryptorchid,cryptorchids +cryptorchidism,cryptorchidisms +cryptorchism,cryptorchisms +cryptosporidium,cryptosporidia +cryptosystem,cryptosystems +cryptozoologist,cryptozoologists +crystal ball,crystal balls +crystalisation,crystalisations +crystal lattice,crystal lattices +crystalline,crystallines +crystallisation,crystallisations +crystallite,crystallites +crystallization,crystallizations +crystallizer,crystallizers +crystalloclast,crystalloclasts +crystallogen,crystallogens +crystallographer,crystallographers +crystalloid,crystalloids +crystallophone,crystallophones +crystal momentum,crystal momentums,crystal momenta +crystal set,crystal sets +crystal stone,crystal stones +crystal system,crystal systems +csar,csars +csardas,csardas +C-section,C-sections +cSNP,cSNPs +CSP,CSPs +C-spine,C-spines +C-suite,C-suites +c**t,c**ts +ctenid,ctenids +ctenidium,ctenidia +ctenizid,ctenizids +ctenochasmatid,ctenochasmatids +ctenocyst,ctenocysts +ctenodactylid,ctenodactylids +ctenoid,ctenoids +ctenoidean,ctenoideans +ctenomyid,ctenomyids +ctenophile,ctenophiles +ctenophore,ctenophores +ctenoplanid,ctenoplanids +ctenoplectrid,ctenoplectrids +ctenosauriscid,ctenosauriscids +ctenostylid,ctenostylids +ctenuchid,ctenuchids +cttee,cttees +cuadrilla,cuadrillas +cuartilla,cuartillas +Cuban,Cubans +cubanelle,cubanelles +Cubanelle,Cubanelles +Cuban heel,Cuban heels +Cubanism,Cubanisms +Cuban red macaw,Cuban red macaws +Cuban sandwich,Cuban sandwiches +cubbridge-head,cubbridge-heads +cubby,cubbies +cubby hole,cubby holes +cubbyhole,cubbyholes +cubby house,cubby houses +cub,cubs +cubeb berry,cubeb berries +cubeb,cubebs +cube,cubes +cube,cubes +cubelet,cubelets +cuber,cubers +cube root,cube roots +CubeSat,CubeSats +cubewano,cubewanos +cube with handles,cubes with handles +cubhood,cubhoods +cubic capacity,cubic capacities +cubic centimeter,cubic centimeters +cubic centimetre,cubic centimetres +cubic,cubics +cubic curve,cubic curves +cubic equation,cubic equations +cubic foot,cubic feet +cubic function,cubic functions +cubic inch,cubic inches +cubicle,cubicles +cubic meter,cubic meters +cubic metre,cubic metres +cubiculum,cubiculums,cubicula +cubic yard,cubic yards +cubie,cubies +cubile,cubiles +cubist,cubists +Cubist,Cubists +cubital,cubitals +cubit,cubits +cubitiere,cubitieres +cubitus,cubiti +cuboctahedron,cuboctahedrons,cuboctahedra +cuboid bone,cuboid bones +cuboid,cuboids +cubomedusa,cubomedusas,cubomedusae +cubooctahedron,cubooctahedrons,cubooctahedra +cubozoan,cubozoans +cub reporter,cub reporters +cub-reporter,cub-reporters +Cub Scout,Cub Scouts +cuchifrito,cuchifritos +cucking stool,cucking stools +cucklebur,cuckleburs +cuckleburr,cuckleburrs +cuckold,cuckolds +cuckoobud,cuckoobuds +cuckoo clock,cuckoo clocks +cuckoo,cuckoos +cuckoo-dove,cuckoo-doves +cuckooflower,cuckooflowers +cuckooing,cuckooings +cuckoopint,cuckoopints +cuckoo sign,cuckoo signs +cuckquean,cuckqueans +cucquean,cucqueans +cucujid,cucujids +cucujo,cucujos +cucujoid,cucujoids +cuculid,cuculids +cucullaeid,cucullaeids +cucumariid,cucumariids +cucumber beetle,cucumber beetles +cucumber,cucumbers +cucumberfish,cucumberfish,cucumberfishes +cucumber fish,cucumber fishes,cucumber fish +cucumovirus,cucumoviruses +cucurbitacin,cucurbitacins +cucurbit,cucurbits +cucurbite,cucurbites +cucurbituril,cucurbiturils +cudden,cuddens +cudden,cuddens +cuddle bunny,cuddle bunnies +cuddle-bunny,cuddle-bunnies +cuddle,cuddles +cuddlefest,cuddlefests +cuddler,cuddlers +cuddly toy,cuddly toys +cuddy,cuddies +cuddy,cuddies +cudgel,cudgels +cudgeler,cudgelers +cudgerie,cudgeries +cudighi,cudighis +cudweed,cudweeds +cue ball,cue balls +cueball,cueballs +cuebid,cuebids +cue card,cue cards +cue,cues +cue,cues +cueillette,cueillettes +cue mark,cue marks +cue sport,cue sports +cuesport,cuesports +cuesta,cuestas +cuestick,cuesticks +cuff,cuffs +cuff,cuffs +cuffee,cuffees +cuff link,cuff links +cufflink,cufflinks +cuff on the ear,cuffs on the ear +cuffy,cuffies +cuica,cuicas +cuirass,cuirasses +cuirassier,cuirassiers +Cuisenaire rod,Cuisenaire rods +cuish,cuishes +cuisine,cuisines +cuke,cukes +culasse,culasses +culb,culbs +culchie,culchies +Culdee,Culdees +culdesac,culdesacs +cul-de-sac,cul-de-sacs,culs-de-sac +culdocentesis,culdocenteses +culdoscope,culdoscopes +culet,culets +culex,culices +culicid,culicids +culicine,culicines +culinarian,culinarians +cull,culls +cull,culls +cullender,cullenders +culler,cullers +cullin,cullins +culling,cullings +cullion,cullions +cullis,cullises +cully,cullies +culm,culms +culmen,culmens +culmination,culminations +culotte,culottes +culpability,culpabilities +culprit,culprits +cultbuster,cultbusters +cult classic,cult classics +cult,cults +culter,culters +cult hit,cult hits +cultigen,cultigens +cultism,cultisms +cultist,cultists +cultivar,cultivars +cultivator,cultivators +cult of personality,cults of personality +culturalist,culturalists +culture,cultures +culture hero,culture heroes +culture-hero,culture-heroes +culture jamming,culture jammings +culture maker,culture makers +culturemaker,culturemakers +culture medium,culture media +culture minister,culture ministers +culture shock,culture shocks +culture vulture,culture vultures +culture war,culture wars +culturgen,culturgens +culturist,culturists +culver,culvers +culverhouse,culverhouses +culverin,culverins +culverkey,culverkeys +culvert,culverts +Cuman,Cumans +cumball,cumballs +cumball tree,cumball trees +Cumberbabe,Cumberbabes +Cumberbitch,Cumberbitches +cumberbund,cumberbunds +Cumberfan,Cumberfans +cumberground,cumbergrounds +Cumberland sausage,Cumberland sausages +Cumbrian,Cumbrians +cumbucket,cumbuckets +cum dump,cum dumps +cum-dump,cum-dumps +cumdump,cumdumps +cum dumpster,cum dumpsters +cum-dumpster,cum-dumpsters +cumdumpster,cumdumpsters +cumec,cumecs +cumerbund,cumerbunds +cum guzzler,cum guzzlers +cum-guzzler,cum-guzzlers +cumguzzler,cumguzzlers +cum hole,cum holes +cum-hole,cum-holes +cumhole,cumholes +cummerbund,cummerbunds +cummer,cummers +cummingtonite,cummingtonites +cumquat,cumquats +cum rag,cum rags +cum-rag,cum-rags +cumrag,cumrags +cumshaw,cumshaws +cum shot,cum shots +cumshot,cumshots +cumsicle,cumsicles +cumskin,cumskins +cum slut,cum sluts +cum-slut,cum-sluts +cumslut,cumsluts +cum towel,cum towels +cumulant,cumulants +cumulate,cumulates +cumulation,cumulations +cumulative effect,cumulative effects +cumulene,cumulenes +cumulo-nimbus,cumulo-nimbi +cumulonimbus,cumulonimbi +cumulus,cumuli +cum whore,cum whores +cum-whore,cum-whores +cumwhore,cumwhores +cumyl,cumyls +cumyxaphist,cumyxaphists +Cuna,Cunas +cunctator,cunctators +cundum,cundums +cuneiform bone,cuneiform bones +cuneiform,cuneiforms +cuneiformist,cuneiformists +cunette,cunettes +cuneus,cunei +cuniculid,cuniculids +cuniculture,cunicultures +cuniculus,cuniculi +cuniform,cuniforms +cunjevoi,cunjevois,cunjevoi +cunji,cunji +cunner,cunners +cunnilinctor,cunnilinctors +cunnilinguist,cunnilinguists +cunning,cunnings +cunning folk,cunning folks +cunningham,cunninghams +cunning man,cunning men +cunningman,cunningmen +cunning woman,cunning women +cunny,cunnies +cunny,cunnies +cuntass,cuntasses +cuntbiscuit,cuntbiscuits +cuntboy,cuntboys +cunt bucket,cunt buckets +cuntbucket,cuntbuckets +cunt-buster,cunt-busters +cuntbutt,cuntbutts +cunt cap,cunt caps +cunt dropping,cunt droppings +cuntface,cuntfaces +cuntfest,cuntfests +cuntfuck,cuntfucks +cuntfucker,cuntfuckers +cunthead,cuntheads +cunt juice,cunt juices +cunt-lapper,cunt-lappers +cuntlicker,cuntlickers +cuntline,cuntlines +cuntling,cuntlings +cuntshit,cuntshits +cunt splice,cunt splices +cuntsucker,cuntsuckers +cunt whore,cunt whores +cunt-whore,cunt-whores +cunt/whore,cunt/whores +cuntwhore,cuntwhores +cuny,cunies +cup-bearer,cup-bearers +cupbearer,cupbearers +cupboard,cupboards +cupboardful,cupboardfuls,cupboardsful +cupcake,cupcakes +cupcakery,cupcakeries +cup,cups +cupedid,cupedids +cupel,cupels +cupellation,cupellations +cupful,cupfuls,cupsful +cupholder,cupholders +cupid,cupids +cupidity,cupidities +Cupid's bow,Cupid's bows +cupmaker,cupmakers +cup of joe,cups of joe +cup of tea,cups of tea +cup o' joe,cups o' joe +cupola,cupolas,cupolae +cupon,cupons +cuppa,cuppas +cupper,cuppers +cupping,cuppings +cupping glass,cupping glasses +cupping jar,cupping jars +cuprammonium,cuprammoniums +cuprate,cuprates +cupration,cuprations +cupressacean,cupressaceans +cuprobismutite,cuprobismutites +cuproenzyme,cuproenzymes +cupronickel,cupronickels +cuprophyte,cuprophytes +cuproprotein,cuproproteins +cup-rose,cup-roses +cupset,cupsets +cup size,cup sizes +cup that cheers,cups that cheer +cupule,cupules +CuraΓ§aoan,CuraΓ§aoans +curacao,curacaos +curacy,curacies +curandera,curanderas +curandero,curanderos,curanderoes +curassow,curassows +curat,curats +curate,curates +curate's egg,curates' eggs +curateship,curateships +curation,curations +curator,curators +curatorship,curatorships +curatour,curatours +curatress,curatresses +curatrix,curatrixes,curatrices +curb bit,curb bits +curb,curbs +curber,curbers +curbing,curbings +curb number,curb numbers +curb roof,curb roofs +curbside,curbsides +curb stomp,curb stomps +curbstone,curbstones +curbstoner,curbstoners +curcas,curcases +curch,curches +curculio,curculios +curculionid,curculionids +curcuminoid,curcuminoids +cur,curs +curd cheese,curd cheeses +curd,curds +curdlan,curdlans +curdog,curdogs +cure-all,cure-alls +cureall,curealls +curebie,curebies +cure,cures +curer,curers +curettage,curettages +curette,curettes +curfew,curfews +curia,curiae +curialist,curialists +curiality,curialities +curie,curies +Curie point,Curie points +curiet,curiets +Curie temperature,Curie temperatures +curimatid,curimatids +curio,curios +curiosity,curiosities +curl,curls +curler,curlers +curlew,curlews +curlew sandpiper,curlew sandpipers +curlicue,curlicues +curlicue fractal,curlicue fractals +curling iron,curling irons +curling stick,curling sticks +curling tongs,curling tongs +curly brace,curly braces +curly-braces language,curly-braces languages +curly bracket,curly brackets +curly-bracket language,curly-bracket languages +curlycue,curlycues +curly,curlies +curlyhead,curlyheads +curly quote,curly quotes +curmudgeon,curmudgeons +curmur,curmurs +curple,curples +currach,currachs +curragh,curraghs +currant,currants +currawong,currawongs +currency adjustment factor,currency adjustment factors +currency code,currency codes +currency sign,currency signs +currency war,currency wars +current account,current accounts +current asset,current assets +current,currents +curricle,curricles +curriculum,curricula,curriculums +curriculum vitΓ¦,curricula vitΓ¦ +curriculum vitae,curricula vitae,curricula vitarum +currie,curries +currier,curriers +curry code,curry codes +curry comb,curry combs +currycomb,currycombs +curry,curries +curry house,curry houses +currying,curryings +currymuncher,currymunchers +curry paste,curry pastes +curry powder,curry powders +curse,curses +curser,cursers +curse word,curse words +cursitor,cursitors +cursive,cursives +cursor,cursors +cursor key,cursor keys +cursour,cursours +curtail,curtails +curtail dog,curtail dogs +curtailer,curtailers +curtailment,curtailments +curtain call,curtain calls +curtain,curtains +curtain twitcher,curtain twitchers +curtain-twitcher,curtain-twitchers +curtainwall,curtainwalls +curtal,curtals +curtal friar,curtal friars +curtana,curtanas +curtation,curtations +curtein,curteins +curtelasse,curtelasses +curtilage,curtilages +curtonotid,curtonotids +curtsey,curtsies,curtseys +curtsy,curtsies +cururo,cururos +curvative,curvatives +curvaton,curvatons +curvature,curvatures +curveball,curveballs +curve-billed tinamou,curve-billed tinamous +curve,curves +curve deficiency,curve deficiencies +curvelet,curvelets +curvet,curvets +curvilinead,curvilineads +curvimeter,curvimeters +curving,curvings +curvograph,curvographs +cuscus,cuscuses +cusec,cusecs +cushag,cushags +cushat,cushats +cushat dove,cushat doves +cushat-dove,cushat-doves +cushaw,cushaws +cush,cushes +cushion,cushions +cushionet,cushionets +cushoon,cushoons +cusimanse,cusimanses +cusk,cusks +cuskin,cuskins +cusp,cusps +cusper,cuspers +cuspidariid,cuspidariids +cuspid,cuspids +cuspidor,cuspidors +cuspiness,cuspinesses +cuspis,cuspes +cuss,cusses +cusser,cussers +cuss word,cuss words +cussword,cusswords +custard apple,custard apples +custard cream,custard creams +custard pie,custard pies +custode,custodes +custodia,custodias +custodian,custodians +custodianship,custodianships +custodier,custodiers +customary,customaries +customary unit,customary units +custom,customs +customer base,customer bases +customer,customers +custom house,custom houses +customhouse,customhouses +customisation,customisations +customization,customizations +customizer,customizers +customs officer,customs officers +customs union,customs unions +custos,custodes +custos regni,custodes regni +custrel,custrels +custron,custrons +custumal,custumals +custumary,custumaries +cutan,cutans +cut-and-shut,cut-and-shuts +cutaway,cutaways +cut-back,cut-backs +cutback,cutbacks +cutcherry,cutcherries +cutchery,cutcheries +cut,cuts +cutdown,cutdowns +cute hoor,cute hoors +cutensil,cutensils +cuterebrid,cuterebrids +cutey,cuteys +cut fastball,cut fastballs +cuticle,cuticles +cuticula,cuticulae +cutie,cuties +cutie pie,cutie pies +cutie-pie,cutie-pies +cutinase,cutinases +cutin,cutins +cutireaction,cutireactions +cutis,cutes,cutises +cutlass bearing,cutlass bearings +cutlass,cutlasses +cutlassfish,cutlassfishes,cutlassfish +cutler,cutlers +cutlet,cutlets +cut line,cut lines +cutline,cutlines +cut off,cut offs +cut-off,cut-offs +cutoff,cutoffs +cut-out,cut-outs +cutout,cutouts +cutover,cutovers +cutpoint,cutpoints +cutpurse,cutpurses +cutround,cutrounds +Cutsahnim,Cutsahnims +cut scene,cut scenes +cutscene,cutscenes +cutset,cutsets +cut splice,cut splices +cutter,cutters +cutterman,cuttermen +cutter-offer,cutter-offers +cutthroat,cutthroats +cut-throat razor,cut-throat razors +cuttie,cutties +cutting board,cutting boards +cutting fluid,cutting fluids +cutting room,cutting rooms +cuttlebone,cuttlebones +cuttle,cuttles +cuttle,cuttles +cuttle,cuttles +cuttlefish bone,cuttlefish bones +cuttlefish,cuttlefishes,cuttlefish +cut to black,cuts to black +cutty,cutties +cuttystool,cuttystools +cut-up,cut-ups +cutup,cutups +cutwal,cutwals +cutwater,cutwaters +cutworm,cutworms +cuvette,cuvettes +cuz,cuzzes +CVA,CVAs +CVC,CVCs +CVP,CVPs +CVT,CVTs +CW complex,CW complexes +cwm,cwms +cwmwd,cwmwds +c-word,c-words +cwtch,cwtches +cwt.,cwt. +cyamid,cyamids +cyamiid,cyamiids +cyamodontid,cyamodontids +cyanamide,cyanamides +cyanate,cyanates +cyanation,cyanations +cyanato,cyanatos +cyanaurate,cyanaurates +cyaneid,cyaneids +cyanic acid,cyanic acids +cyanidation,cyanidations +cyanide process,cyanide processes +cyanidiophyte,cyanidiophytes +cyanin,cyanins +cyanine,cyanines +cyanite,cyanites +cyanoacetate,cyanoacetates +cyanoacetyl,cyanoacetyls +cyanoacrylate,cyanoacrylates +cyanoalkyl,cyanoalkyls +cyanobacterium,cyanobacteria +cyanobactin,cyanobactins +cyanobenzaldehyde,cyanobenzaldehydes +cyanobiphenyl,cyanobiphenyls +cyanoborohydride,cyanoborohydrides +cyanocarbon acid,cyanocarbon acids +cyanocarbon,cyanocarbons +cyanocarboxylate,cyanocarboxylates +cyanochromone,cyanochromones +cyanocuprate,cyanocuprates +cyano,cyanos +cyanoethylation,cyanoethylations +cyanoethyl,cyanoethyls +cyanoformate,cyanoformates +cyanogenesis,cyanogeneses +cyanoguanide,cyanoguanides +cyanohydrin,cyanohydrins +cyanol,cyanols +cyanometalate,cyanometalates +cyanometallate,cyanometallates +cyanometer,cyanometers +cyanope,cyanopes +cyanophage,cyanophages +cyanophenyl,cyanophenyls +cyanophosphorylation,cyanophosphorylations +cyanophyte,cyanophytes +cyanopolyyne,cyanopolyynes +cyanopyridine,cyanopyridines +cyanosilylation,cyanosilylations +cyanosis,cyanoses +cyanotoxin,cyanotoxins +cyanotrichite,cyanotrichites +cyanotype,cyanotypes +cyanurate,cyanurates +cyanuret,cyanurets +cyanuric acid,cyanuric acids +cyathium,cyathia +cyatholipid,cyatholipids +cyatholith,cyatholiths +cyathophylloid,cyathophylloids +cybaeid,cybaeids +cyberactivist,cyberactivists +cyberaddict,cyberaddicts +cyberaffair,cyberaffairs +cyberanarchist,cyberanarchists +cyberartist,cyberartists +cyberassault,cyberassaults +cyberattack,cyberattacks +cyberattacker,cyberattackers +cyberauction,cyberauctions +cyberbabe,cyberbabes +cyberbank,cyberbanks +cyberbarrier,cyberbarriers +cyberbattle,cyberbattles +cyberbazaar,cyberbazaars +cyberbook,cyberbooks +cyberbridge,cyberbridges +cyberbuddy,cyberbuddies +cyberbully,cyberbullies +cybercafe,cybercafes +cybercafΓ©,cybercafΓ©s +cybercampaign,cybercampaigns +cybercapitalist,cybercapitalists +cybercasino,cybercasinos +cybercast,cybercasts +cybercaster,cybercasters +cyberchondriac,cyberchondriacs +cyberchurch,cyberchurches +cybercitizen,cybercitizens +cybercity,cybercities +cyberclass,cyberclasses +cyberclassroom,cyberclassrooms +cybercloset,cyberclosets +cybercommunity,cybercommunities +cyberconference,cyberconferences +cyberconspiracy,cyberconspiracies +cyberconversation,cyberconversations +cybercop,cybercops +cybercorporation,cybercorporations +cybercowboy,cybercowboys +cybercreature,cybercreatures +cybercrew,cybercrews +cybercrime,cybercrimes +cybercriminal,cybercriminals +cybercritic,cybercritics +cybercrook,cybercrooks +cybercult,cybercults +cyberczar,cyberczars +cyberdate,cyberdates +cyberdeck,cyberdecks +cyberdetective,cyberdetectives +cybereconomy,cybereconomies +cyberelite,cyberelites +cyberenvironment,cyberenvironments +cyberfeminist,cyberfeminists +cyberflaneur,cyberflaneurs +cyberflirt,cyberflirts +cyberfreak,cyberfreaks +cyberfriend,cyberfriends +cyberfrontier,cyberfrontiers +cyberfuture,cyberfutures +cybergame,cybergames +cybergang,cybergangs +cybergeek,cybergeeks +cyberghetto,cyberghettos +cybergirl,cybergirls +cybergirlfriend,cybergirlfriends +cybergroup,cybergroups +cyberhacker,cyberhackers +cyberheist,cyberheists +cyberhero,cyberheroes +cyberhole,cyberholes +cyberhug,cyberhugs +cyberian,cyberians +cyberinfrastructure,cyberinfrastructures +cyberintruder,cyberintruders +cyberjournalist,cyberjournalists +cyberjunkie,cyberjunkies +cyberkid,cyberkids +cyberlawyer,cyberlawyers +cyberlibertarian,cyberlibertarians +cyberlibrary,cyberlibraries +cyberlocker,cyberlockers +cyberloser,cyberlosers +cyberlover,cyberlovers +cyberman,cybermen +cybermarket,cybermarkets +cybermarketplace,cybermarketplaces +cybermuseum,cybermuseums +cybername,cybernames +cybernaut,cybernauts +cybernerd,cybernerds +cybernetician,cyberneticians +cyberneticist,cyberneticists +cybernetwork,cybernetworks +cyberpal,cyberpals +cyberpark,cyberparks +cyberpath,cyberpaths +cyberpatient,cyberpatients +cyberpet,cyberpets +cyberphobe,cyberphobes +cyberpioneer,cyberpioneers +cyberpirate,cyberpirates +cyberpoet,cyberpoets +cyberprotest,cyberprotests +cyberprotester,cyberprotesters +cyberpsychologist,cyberpsychologists +cyberrelationship,cyberrelationships +cyberscape,cyberscapes +cyberschool,cyberschools +cyberself,cyberselves +cybershop,cybershops +cybershopper,cybershoppers +cyberslacker,cyberslackers +cybersleuth,cybersleuths +cyberslut,cybersluts +cybersphere,cyberspheres +cyberspy,cyberspies +cyber squatter,cyber squatters +cybersquatter,cybersquatters +cyberstalker,cyberstalkers +cyberstore,cyberstores +cyberstructure,cyberstructures +cyberstud,cyberstuds +cyberstudent,cyberstudents +cybersuit,cybersuits +cybersurfer,cybersurfers +cybersurgeon,cybersurgeons +cybersystem,cybersystems +cyberteacher,cyberteachers +cyberteam,cyberteams +cyberterritory,cyberterritories +cyberterrorist,cyberterrorists +cybertext,cybertexts +cybertheorist,cybertheorists +cybertherapist,cybertherapists +cyberthief,cyberthieves +cyberthreat,cyberthreats +cyberthriller,cyberthrillers +cyberthug,cyberthugs +cybertopia,cybertopias +cybertopian,cybertopians +cybertrail,cybertrails +cybertraveler,cybertravelers +cybertraveller,cybertravellers +cybertutor,cybertutors +cyberutopia,cyberutopias +cyberutopian,cyberutopians +cybervandal,cybervandals +cyberverse,cyberverses +cybervillage,cybervillages +cybervulnerability,cybervulnerabilities +cyberwallet,cyberwallets +cyberwarrior,cyberwarriors +cyberweapon,cyberweapons +cyberwedding,cyberweddings +cyberwife,cyberwives +cyberwizard,cyberwizards +cyberzine,cyberzines +cybiid,cybiids +cyborg,cyborgs +cybrarian,cybrarians +cybrary,cybraries +cybrid,cybrids +cycad,cycads +cycadophyte,cycadophytes +cyc,cyces +cyclamate,cyclamates +cyclamen,cyclamens +cyclase,cyclases +cycle chord,cycle chords +cycle,cycles +cycle lane,cycle lanes +cycle of fifths,cycles of fifths +cycle path,cycle paths +cycler,cyclers +cycler,cyclers +cycle rickshaw,cycle rickshaws +cycle time,cycle times +cycleway,cycleways +cyclicality,cyclicalities +cyclic chorus,cyclic choruses +cyclic group,cyclic groups +cyclic nucleotide,cyclic nucleotides +cyclic poet,cyclic poets +cyclic quadrilateral,cyclic quadrilaterals +cyclic redundancy check,cyclic redundancy checks +cyclide,cyclides +cyclinac,cyclinacs +cyclin,cyclins +cyclisation,cyclisations +cyclist,cyclists +cyclitol,cyclitols +cyclization,cyclizations +cycloaddition,cycloadditions +cycloadduct,cycloadducts +cycloalkane,cycloalkanes +cycloalkanone,cycloalkanones +cycloalkene,cycloalkenes +cycloalkenone,cycloalkenones +cycloalkyl,cycloalkyls +cycloalkyne,cycloalkynes +cycloamylose,cycloamyloses +cyclobutadiene,cyclobutadienes +cyclobutannulation,cyclobutannulations +cyclobutanol,cyclobutanols +cyclobutanone,cyclobutanones +cyclobutaphane,cyclobutaphanes +cyclobutene,cyclobutenes +cyclobutyl,cyclobutyls +cyclocoelid,cyclocoelids +cyclocrinitid,cyclocrinitids +cycloctenid,cycloctenids +cyclo,cyclos +cyclodehydration,cyclodehydrations +cyclodepsipeptide,cyclodepsipeptides +cyclodextrin,cyclodextrins +cyclodialysis,cyclodialyses +cyclodiene,cyclodienes +cyclodimer,cyclodimers +cyclodimerization,cyclodimerizations +cyclodipeptide,cyclodipeptides +cyclodiphosphate,cyclodiphosphates +cyclododecane,cyclododecanes +cyclododecatriene,cyclododecatrienes +cyclododecyl,cyclododecyls +cycloelimination,cycloeliminations +cyclofructan,cyclofructans +cyclofunctionalization,cyclofunctionalizations +cycloganoid,cycloganoids +cyclogenesis,cyclogeneses +cyclograph,cyclographs +cyclohedron,cyclohedra +cycloheptadiene,cycloheptadienes +cycloheptane,cycloheptanes +cycloheptannulation,cycloheptannulations +cycloheptanone,cycloheptanones +cycloheptaphane,cycloheptaphanes +cycloheptatriene,cycloheptatrienes +cycloheptene,cycloheptenes +cycloheptenone,cycloheptenones +cycloheptylamine,cycloheptylamines +cyclohexadiene,cyclohexadienes +cyclohexadienedione,cyclohexadienediones +cyclohexannulation,cyclohexannulations +cyclohexaphane,cyclohexaphanes +cyclohexenone,cyclohexenones +cyclohexylamine,cyclohexylamines +cyclohexyl,cyclohexyls +cycloid,cycloids +cycloidian,cycloidians +cycloisomerase,cycloisomerases +cycloisomerisation,cycloisomerisations +cycloisomerization,cycloisomerizations +cyclol,cyclols +cyclolignan,cyclolignans +cyclolignane,cyclolignanes +cyclolobid,cyclolobids +cyclolysis,cyclolyses +cyclomaltodextrinase,cyclomaltodextrinases +cyclomaltodextrin,cyclomaltodextrins +cyclomer,cyclomers +cyclomerization,cyclomerizations +cyclometalation,cyclometalations +cyclometallation,cyclometallations +cyclometer,cyclometers +cyclomixer,cyclomixers +cyclon,cyclons +cyclone cellar,cyclone cellars +cyclone,cyclones +cyclone fence,cyclone fences +cycloneolignane,cycloneolignanes +cycloneuralian,cycloneuralians +cyclooctadiene,cyclooctadienes +cyclooctannulation,cyclooctannulations +cyclooctatetraene,cyclooctatetraenes +cyclooctatriene,cyclooctatrienes +cyclooctene,cyclooctenes +cyclooctenone,cyclooctenones +cyclooctylamine,cyclooctylamines +cyclooctyne,cyclooctynes +cycloolefin,cycloolefins +cyclo-oxygenase,cyclo-oxygenases +cyclooxygenase,cyclooxygenases +cyclopΓ¦dia,cyclopΓ¦diΓ¦,cyclopΓ¦dias +cyclopaedia,cyclopaedias +cyclopalladation,cyclopalladations +cycloparaffin,cycloparaffins +cycloparaphenylene,cycloparaphenylenes +cyclopedist,cyclopedists +cyclopel,cyclopels +cyclopentaarsine,cyclopentaarsines +cyclopentaazane,cyclopentaazanes +cyclopentadecenone,cyclopentadecenones +cyclopentadienide,cyclopentadienides +cyclopentadienone,cyclopentadienones +cyclopentadienyl complex,cyclopentadienyl complexes +cyclopentadienyl,cyclopentadienyls +cyclopentannulation,cyclopentannulations +cyclopentanone,cyclopentanones +cyclopentaphane,cyclopentaphanes +cyclopentenone,cyclopentenones +cyclopentenyl,cyclopentenyls +cyclopentyl,cyclopentyls +cyclopeptide,cyclopeptides +cyclophane,cyclophanes +cyclophilin,cyclophilins +cyclophorid,cyclophorids +cyclophyllid,cyclophyllids +cyclopia,cyclopias +cyclopid,cyclopids +cycloplegic,cycloplegics +cyclopoid,cyclopoids +cyclopolyarsine,cyclopolyarsines +cyclopolymerization,cyclopolymerizations +cyclopropanation,cyclopropanations +cyclopropannulation,cyclopropannulations +cyclopropaphane,cyclopropaphanes +cyclopropene,cyclopropenes +cyclopropenium,cyclopropeniums +cyclopropyl,cyclopropyls +cyclops,cyclops,cyclopes,cyclopses +cyclopterid,cyclopterids +cyclopyrrolone,cyclopyrrolones +cyclorama,cycloramas +cycloreversion,cycloreversions +cyclorrhaphan,cyclorrhaphans +cycloscope,cycloscopes +cyclosilazane,cyclosilazanes +cyclosilicate,cyclosilicates +cyclosiloxane,cyclosiloxanes +cyclosis,cycloses +cyclosome,cyclosomes +cyclosporine,cyclosporines +cyclosportive,cyclosportives +cyclostome,cyclostomes +cyclostrematid,cyclostrematids +cyclostyle,cyclostyles +cyclotetramer,cyclotetramers +cyclotetramerization,cyclotetramerizations +cycloteuthid,cycloteuthids +cyclothem,cyclothems +cyclotide,cyclotides +cyclotomic field,cyclotomic fields +cyclotomy,cyclotomies +cyclotornid,cyclotornids +cyclotrigallane,cyclotrigallanes +cyclotrigermene,cyclotrigermenes +cyclotrigermenium,cyclotrigermeniums +cyclotrimer,cyclotrimers +cyclotrimerization,cyclotrimerizations +cyclotron,cyclotrons +cycloxygenase,cycloxygenases +cydere,cyderes +cydippid,cydippids +cydnid,cydnids +cyematid,cyematids +cyen,cyens +cyesis,cyeses +cygnet,cygnets +cyle,cyles +cylichnid,cylichnids +cylinder,cylinders +cylinder function,cylinder functions +cylinder head,cylinder heads +cylindrachetid,cylindrachetids +cylindroid,cylindroids +cylindroleberidid,cylindroleberidids +cylindrotomid,cylindrotomids +cylix,cylixes +cyma inversa,cymae inversae,cymΓ¦ inversΓ¦ +cymar,cymars +cyma recta,cymae rectae,cymΓ¦ rectΓ¦ +cyma reversa,cymae reversae,cymΓ¦ reversΓ¦ +cymatiid,cymatiids +cymatoceratid,cymatoceratids +cymatoscope,cymatoscopes +cymbal,cymbals +cymbalist,cymbalists +cymbalon,cymbalons +cymbling,cymblings +cymbuliid,cymbuliids +cyme,cymes +cyme,cymes +cymenol,cymenols +cymling,cymlings +cymograph,cymographs +cymoscope,cymoscopes +cymothoid,cymothoids +Cymric,Cymrics +Cymrophone,Cymrophones +cymule,cymules +cymwd,cymwds +cynanche,cynanches +cynanthropy,cynanthropies +cynarrhodium,cynarrhodia +cynic,cynics +cynick,cynicks +cynipid,cynipids +cynocephalid,cynocephalids +cynocephaly,cynocephalys +cynodont,cynodonts +cynodontid,cynodontids +cynoglossid,cynoglossids +cynognathid,cynognathids +cynologist,cynologists +cynomolgus,cynomolguses +cynomorph,cynomorphs +cynophile,cynophiles +cynophobe,cynophobes +cynophobia,cynophobias +cynosure,cynosures +cyolite,cyolites +cyon,cyons +cyperus,cyperuses +cypherpunk,cypherpunks +cypionate,cypionates +cypovirus,cypoviruses +cypraeid,cypraeids +cypress,cypresses +cypress vine,cypress vines +Cyprian,Cyprians +cyprid,cyprids +cypridid,cypridids +cypridinid,cypridinids +cyprinid,cyprinids +cypriniform,cypriniforms +cyprinodont,cyprinodonts +cyprinodontid,cyprinodontids +cyprinoid,cyprinoids +Cypriot,Cypriots +cypripedium,cypripediums +cypris,cypris +Cyprus cedar,Cyprus cedars +cypsela,cypselae,cypselas +cypselid,cypselids +cypselosomatid,cypselosomatids +Cyrenaic,Cyrenaics +Cyrenian,Cyrenians +Cyrillization,Cyrillizations +cyrtaucheniid,cyrtaucheniids +cyrtid,cyrtids +cystadenoma,cystadenomas,cystadenomata +cystatin,cystatins +cyst,cysts +cystectomy,cystectomies +cysteinal,cysteinals +cysteinyl leukotriene,cysteinyl leukotrienes +cysticerce,cysticerces +cysticercus,cysticerci +cysticule,cysticules +cystid,cystids +cystidean,cystideans +cystidium,cystidia +cystiscid,cystiscids +cystitis,cystitides +cystoblast,cystoblasts +cystocarp,cystocarps +cystocele,cystoceles +cystocentesis,cystocenteses +cystogastrostomy,cystogastrostomies +cystoid,cystoids +cystoidean,cystoideans +cystolith,cystoliths +cystoma,cystomas +cystopeltid,cystopeltids +cystoplasty,cystoplasties +cystoprostatectomy,cystoprostatectomies +cystoscope,cystoscopes +cystoscopy,cystoscopies +cystostomy,cystostomies +cystotome,cystotomes +cystotomy,cystotomies +cytase,cytases +cytee,cytees +cytherellid,cytherellids +cytidine,cytidines +cytisus,cytisuses +cytoanalysis,cytoanalyses +cytoarchitecture,cytoarchitectures +cytoband,cytobands +cytoblast,cytoblasts +cytoblastema,cytoblastemas,cytoblastemata +cytobrush,cytobrushes +cytocentrifugation,cytocentrifugations +cytocentrifuge,cytocentrifuges +cytochalasin,cytochalasins +cytochemokine,cytochemokines +cytochrome,cytochromes +cytocide,cytocides +cytode,cytodes +cytodomain,cytodomains +cytofluorogram,cytofluorograms +cytofluorometer,cytofluorometers +cytogenetic band,cytogenetic bands +cytogeneticist,cytogeneticists +cytoglobin,cytoglobins +cytokeratin,cytokeratins +cytokine,cytokines +cytokine storm,cytokine storms +cytokinin,cytokinins +cytologist,cytologists +cytolysin,cytolysins +cytomegalovirus,cytomegaloviruses +cytomembrane,cytomembranes +cytometer,cytometers +cytopathologist,cytopathologists +cytopathy,cytopathies +cytopenia,cytopenias +cytopharynx,cytopharynxes,cytopharynges +cytophotometer,cytophotometers +cytoplasm,cytoplasms +cytoplasmic determinant,cytoplasmic determinants +cytoplast,cytoplasts +cytoproct,cytoprocts +cytoprotectant,cytoprotectants +cytoprotective,cytoprotectives +cytosine,cytosines +cytosis,cytoses +cytoskeleton,cytoskeletons +cytosol,cytosols +cytosome,cytosomes +cytospin,cytospins +cytostatic,cytostatics +cytostome,cytostomes +cytotechnologist,cytotechnologists +cytotoxic T cell,cytotoxic T cells +cytotoxin,cytotoxins +cytotrophoblast,cytotrophoblasts +cytotype,cytotypes +cytozoon,cytozoa,cytozoons +cyttid,cyttids +cytula,cytulas +cywydd,cywyddau +Cyzican,Cyzicans +czapka,czapkas +czarate,czarates +czar,czars +czardas,czardas +czardom,czardoms +czarevich,czareviches +czarevitch,czarevitches +czarevna,czarevnas +czaricide,czaricides +czarina,czarinas +czarist,czarists +czaritsa,czaritsas +czaritza,czaritzas +czarocracy,czarocracies +czarocrat,czarocrats +czarowitz,czarowitzes +czarship,czarships +Czech,Czechs +Czech hedgehog,Czech hedgehogs +Czechoslovak,Czechoslovaks +Czechoslovakian,Czechoslovakians +d00d,d00ds,d00dz +daad,daads +daal,daals +daal,daals +daalder,daalders +dabbawala,dabbawalas +dabbawalla,dabbawallas +dabbawallah,dabbawallahs +dabber,dabbers +dabbler,dabblers +dabbling,dabblings +dabbling duck,dabbling ducks +dabb lizard,dabb lizards +dabchick,dabchicks +dab,dabs +dab,dabs +dab,dabs +dab hand,dab hands +daboia,daboias +dabster,dabsters +dace,dace,daces +dacha,dachas +dachshund,dachshunds +Dacian,Dacians +dacite,dacites +dacoit,dacoits +Dacota,Dacotas +Dacotah,Dacotahs +dacrocyte,dacrocytes +dacron,dacrons +dacryocystorhinostomy,dacryocystorhinostomies +dacryocystorhinotomy,dacryocystorhinotomies +dacryolith,dacryoliths +dactyl,dactyls +dactylectomy,dactylectomies +dactylet,dactylets +dactylic,dactylics +dactylic rhyme,dactylic rhymes +dactylist,dactylists +dactylogram,dactylograms +dactylopatagium,dactylopatagia +dactylopterid,dactylopterids +dactyloscopid,dactyloscopids +dactylozooid,dactylozooids +dactyly,dactylies +da da,da das +dada,dadas +dadaist,dadaists +Dadaist,Dadaists +da,das +da,das +dad,dads +dad dancer,dad dancers +daddie,daddies +daddock,daddocks +daddy,daddies +daddy longlegs,daddy longlegs +daddy long-legs spider,daddy long-legs spiders +daddy-o,daddy-os +dad joke,dad jokes +dado,dados,dadoes +dado rail,dado rails +daedalum,daedala +daedatelum,daedatela +daemon,daemons +daemon,daemons +dΓ¦mon,dΓ¦mons +daesiid,daesiids +daeva,daevas +dafachronic acid,dafachronic acids +daf,dafs +daffadowndilly,daffadowndillies +daff,daffs +daff,daffs +daffock,daffocks +daffodil,daffodils +daffodowndilly,daffodowndillies +Daffy Duck,Daffy Ducks +daffynition,daffynitions +dafter,dafters +daftie,dafties +dafty,dafties +dag,dags +dag,dags +dag,dags +dag,dags +dag,dags +dag,dags +dagesh,dageshes +dagesh forte,dagesh fortes +dagesh lene,dagesh lenes +Dagestani,Dagestanis +dagger board,dagger boards +daggerboard,daggerboards +dagger,daggers +dagger,daggers +Dagger,Daggers +daggerman,daggermen +daggerpoint,daggerpoints +daggle-tail,daggle-tails +daglock,daglocks +dagmar,dagmars +dagoba,dagobas +dagobah,dagobahs +dago,dagoes,dagos +dagon,dagons +Dagonite,Dagonites +Dagor,Dagors +daguerreotype,daguerreotypes +daguerreotyper,daguerreotypers +daguerreotypist,daguerreotypists +daguerrotype,daguerrotypes +Dagur,Dagurs +dagwood,dagwoods +dagwood dog,dagwood dogs +dahabeah,dahabeahs +dahabieh,dahabiehs +dah,dahs +dahl,dahls +dahlia,dahlias +dahling,dahlings +Dahomean,Dahomeans +Dahomeyan,Dahomeyans +Dahur,Dahurs +daie,daies +daikon,daikons +daily,dailies +daily disposable,daily disposables +daily grind,daily grinds +daimio,daimios,daimioes +daimon,daimons +daimyo,daimyo,daimyos +daintrel,daintrels +dainty,dainties +daiquiri,daiquiris +dairid,dairids +dairy,dairies +dairygirl,dairygirls +dairyhouse,dairyhouses +dairyland,dairylands +dairymaid,dairymaids +dairyman,dairymen +dairy product,dairy products +dairywoman,dairywomen +dais,daises +daΓ―s,daΓ―ses +daisy chain,daisy chains +daisy-chain,daisy-chains +daisy cutter,daisy cutters +daisy,daisies +daisywheel,daisywheels +daisy wheel printer,daisy wheel printers +daisywheel printer,daisywheel printers +dajid,dajids +dak bungalow,dak bungalows +dak,daks +daker,dakers +daker-hen,daker-hens +dakimakura,dakimakura,dakimakuras +dakir,dakirs +dakoit,dakoits +dakoity,dakoities +Dakota,Dakotas +Dakotan,Dakotans +dakuten,dakuten +Dalai Lama,Dalai Lamas +dalasi,dalasis,dalasi +dalatiid,dalatiids +dalcerid,dalcerids +dal,dals +Dalecarlian,Dalecarlians +dale,dales +dalek,daleks +Dalek,Daleks +Dalek voice,Dalek voices +daleside,dalesides +dalesman,dalesmen +dalgite,dalgites +daliance,daliances +daliaunce,daliaunces +Dalit,Dalits +dalk,dalks +dalk,dalks +dalliance,dalliances +dallier,dalliers +dallol,dallols +dallop,dallops +Dall sheep,Dall sheep +Dall's sheep,Dall's sheep +dally,dallies +dalmanitid,dalmanitids +dalmatian,dalmatians +Dalmatian,Dalmatians +dalmatic,dalmatics +dalton,daltons +daltonide,daltonides +daltonist,daltonists +damage control,damage controls +damager,damagers +daman,damans +damascene,damascenes +damascenone,damascenones +damascone,damascones +Damascus barrel,Damascus barrels +damask,damasks +damaskin,damaskins +damassΓ©,damassΓ©s +dambo,dambos +dam,dams +dam,dams +dame,dames +damehood,damehoods +damelopre,damelopres +damesellid,damesellids +DAMF,DAMFs +Damianist,Damianists +damma,dammas,damma +dammara,dammaras +dammer,dammers +dammit,dammits +damn,damns +damnification,damnifications +damn Yankee,damn Yankees +Damocloid,Damocloids +damoiselle,damoiselles +damosel,damosels +damosella,damosellas +D&C,D&Cs +damp course,damp courses +dampener,dampeners +dampening,dampenings +damper,dampers +damping,dampings +damping ratio,damping ratios +damp squib,damp squibs +damp squid,damp squids +damsel,damsels +damselfish,damselfishes,damselfish +damselfly,damselflies +damsel in distress,damsels in distress +damsire,damsires +damson,damsons +Danaan,Danaans +danaid,danaids +danaide,danaides +danaine,danaines +dan buoy,dan buoys +dancathon,dancathons +danceaholic,danceaholics +danceathon,danceathons +dance card,dance cards +dance,dances +dancefest,dancefests +dance floor,dance floors +dancefloor,dancefloors +dancegoer,dancegoers +dance hall,dance halls +dance-hall,dance-halls +dancehall,dancehalls +dancemaker,dancemakers +dance mat,dance mats +dance-off,dance-offs +dance pad,dance pads +dancercise,dancercises +dancer,dancers +danceress,danceresses +dancescape,dancescapes +dance school,dance schools +dance studio,dance studios +dancing girl,dancing girls +dancing-girl,dancing-girls +dan,dans +dan,dans +Dan,Dans +dandarid,dandarids +dandelion clock,dandelion clocks +dandelion wine,dandelion wines +Dandie Dinmont,Dandie Dinmonts +dandiprat,dandiprats +dandiya,dandiyas +dandler,dandlers +dandling,dandlings +dandy,dandies +dandy horse,dandy horses +dandy-horse,dandy-horses +dandyism,dandyisms +dandyling,dandylings +dandy's stick,dandy's sticks +dandy stick,dandy sticks +Dane,Danes +danewort,daneworts +danger area,danger areas +danger,dangers +dangerisation,dangerisations +dangerman,dangermen +danger space,danger spaces +danger zone,danger zones +dangleberry,dangleberries +dangle,dangles +dangler,danglers +dangling modifier,dangling modifiers +dangling participle,dangling participles +Daniel come to judgement,Daniels come to judgement +daniel,daniels +Daniell cell,Daniell cells +danio,danios +danionin,danionins +Danish crow,Danish crows +Danish dog,Danish dogs +Danish pastry,Danish pastries +Danite,Danites +dank,danks +danophone,danophones +DA-notice,DA-notices +danse,danses +Dansker,Danskers +dansyl,dansyls +Danton collar,Danton collars +Danube bleak,Danube bleaks +Danubian,Danubians +danzΓ³n,danzΓ³ns +danzonete,danzonetes +Daoism,Daoisms +Daoist,Daoists +dap,daps +daphnane,daphnanes +daphne,daphnes +daphnia,daphnias +Daphnian,Daphnians +daphnid,daphnids +daphniid,daphniids +dapifer,dapifers +dappa,dappas +Dapper Dan,Dapper Dans +dapperling,dapperlings +dapple,dapples +daptomycin,daptomycins +daraelitid,daraelitids +daraf,darafs +darbar,darbars +darbari,darbaris +darb,darbs +darbouka,darboukas +darbuka,darbukas +darby,darbies +Darbyite,Darbyites +darcy,darcys,darcies +Darcy friction factor,Darcy friction factors +Dardanian,Dardanians +dar,dars +Dard,Dards +dare,dares +dare,dares +daredevil,daredevils +darer,darers +dargah,dargahs +darg,dargs +darg,dargs +Darghin,Darghins +Dargin,Dargins +dargue,dargues +Dargwa,Dargwas +daric,darics +dariole,darioles +dark art,dark arts +dark culture,dark cultures +dark current,dark currents +dark elf,dark elves +darkener,darkeners +darkey,darkeys +dark factory,dark factories +dark green fritillary,dark green fritillaries +darkhorse candidate,darkhorse candidates +dark horse,dark horses +darkie,darkies +dark lantern,dark lanterns +dark-lantern,dark-lanterns +dark-lanthorn,dark-lanthorns +darkling,darklings +dark nebula,dark nebulas,dark nebulae +darknesse,darknesses +darknet,darknets +darkon,darkons +dark ride,dark rides +darkroom,darkrooms +dark sleeper,dark sleepers +dark slide,dark slides +darkslide,darkslides +dark space,dark spaces +dark store,dark stores +darkwaver,darkwavers +darky,darkies +darling,darlings +Darlington amplifier,Darlington amplifiers +Darlington,Darlingtons +darlingtonia,darlingtonias +darn,darns +darner,darners +darning egg,darning eggs +darning last,darning lasts +darning mushroom,darning mushrooms +darning needle,darning needles +daroo tree,daroo trees +darr,darrs +dartboard,dartboards +dart,darts +darter,darters +Darth Vader,Darth Vaders +darting,dartings +Darvon cocktail,Darvon cocktails +Darwinian,Darwinians +Darwinist,Darwinists +Darwin's finch,Darwin's finches +Darwin's frog,Darwin's frogs +Darwin's nothura,Darwin's nothuras +Darwin's rhea,Darwin's rheas +Darwin stubby,Darwin stubbies +dashboard,dashboards +dashcam,dashcams +dash cherry,dash cherries +dash,dashes +dasheen,dasheens +dasher,dashers +dashiki,dashikis,daishiki +dashpot,dashpots +dassie,dassies +dastar,dastars +dastard,dastards +dastardling,dastardlings +dasyatid,dasyatids +dasyclad,dasyclads +dasymeter,dasymeters +dasypodid,dasypodids +dasyproctid,dasyproctids +dasytid,dasytids +dasyure,dasyures +dasyurid,dasyurids +data access object,data access objects +databack,databacks +data bank,data banks +databank,databanks +database administrator,database administrators +database analyst,database analysts +data base,data bases +database,databases +database engine,database engines +database management system,database management systems +database model,database models +database transaction,database transactions +databook,databooks +databox,databoxes +data bus,data buses,data busses +databus,databuses,databusses +data cable,data cables +Data Carrier Equipment,Data Carrier Equipments +datacast,datacasts +datacaster,datacasters +data center,data centers +datacenter,datacenters +data centre,data centres +datacentre,datacentres +Data Circuit-Terminating Equipment,Data Circuit-Terminating Equipments +Data Communications Equipment,Data Communications Equipments +data controller,data controllers +data coupling,data couplings +data cube,data cubes +datacube,datacubes +data division,data divisions +data element,data elements +datafile,datafiles +data flow,data flows +dataflow,dataflows +data flow diagram,data flow diagrams +data fusion,data fusions +data glove,data gloves +dataglove,datagloves +datagram,datagrams +datahub,datahubs +data mart,data marts +datamart,datamarts +data miner,data miners +data model,data models +data path,data paths +datapath,datapaths +dataphone,dataphones +data point,data points +datapoint,datapoints +data rate,data rates +datarate,datarates +datary,dataries +data set,data sets +dataset,datasets +datasheet,datasheets +data stick,data sticks +data store,data stores +data stream,data streams +datastream,datastreams +data structure,data structures +data-structured coupling,data-structured couplings +data table,data tables +data terminal equipment,data terminal equipments +data transfer object,data transfer objects +data transfer rate,data transfer rates +data type,data types +datatype,datatypes +data warehouse,data warehouses +datcha,datchas +DAT,DATs +datebook,datebooks +date,dates +date,dates +datedness,datednesses +dateline,datelines +date mussel,date mussels +date night,date nights +date of birth,dates of birth,dates of births +date palm,date palms +datepalm,datepalms +date plum,date plums +date rape,date rapes +date rape drug,date rape drugs +date rapist,date rapists +date-rapist,date-rapists +dater,daters +datestamp,datestamps +datestone,datestones +date tree,date trees +date with destiny,dates with destiny +datholite,datholites +datil,datils +dating agency,dating agencies +dating,datings +dation,dations +dation in payment,dations in payment +datiscin,datiscins +dative bond,dative bonds +dative case,dative cases +dative,datives +dative executor,dative executors +dative of purpose,datives of purpose +datolite,datolites +datum circle,datum circles +datum,data,datums +datum line,datum lines +datum plane,datum planes +datum point,datum points +datum surface,datum surfaces +datura,daturas +daube,daubes +daubentoniid,daubentoniids +dauber,daubers +daubing,daubings +daubster,daubsters +dauer,dauers +dauerlarva,dauerlarvae +dauermodification,dauermodifications +daugh,daughs +daughterboard,daughterboards +daughtercard,daughtercards +daughter cell,daughter cells +daughter company,daughter companies +daughter,daughters,daughtren +daughterfucker,daughterfuckers +daughter-in-law,daughters-in-law +daughter language,daughter languages +daughterling,daughterlings +daughter nuclide,daughter nuclides +daughter of the manse,daughters of the manse +daughter sauce,daughter sauces +daunce,daunces +dauncer,dauncers +daunosamine,daunosamines +daunter,daunters +dauphin,dauphins +dauphine,dauphines +dauphiness,dauphinesses +Daur,Daurs +Daurian jackdaw,Daurian jackdaws +dauw,dauws +davaineid,davaineids +davenport,davenports +Davey Crockett cap,Davey Crockett caps +Davey Crockett hat,Davey Crockett hats +davit,davits +Davy Crockett cap,Davy Crockett caps +Davy Crockett hat,Davy Crockett hats +davy,davys +Davy lamp,Davy lamps +dawah,dawahs +daw,daws +dawdle,dawdles +dawdler,dawdlers +dawg,dawgs +dawghtor,dawghtors +dawing,dawings +dawk,dawks +Dawkinite,Dawkinites +dawncer,dawncers +dawn chorus,dawn choruses +dawning,dawnings +dawn patrol,dawn patrols +dawn prayer,dawn prayers +day after,days after +day-after recall test,day-after recall tests +Dayak,Dayaks +daybeam,daybeams +day bed,day beds +daybed,daybeds +dayboat,dayboats +daybook,daybooks +day boy,day boys +day care center,day care centers +daycarer,daycarers +daycation,daycations +daycoach,daycoaches +day count convention,day count conventions +day,days +daydream,daydreams +daydreamer,daydreamers +daydreaming,daydreamings +daye,dayes +dayee,dayees +dayer,dayers +dayereh,dayerehs +day fine,day fines +day-fine,day-fines +dayflower,dayflowers +dayfly,dayflies +dayglow,dayglows +day job,day jobs +day laborer,day laborers +day labourer,day labourers +day lark,day larks +daylength,daylengths +daylight overdraft,daylight overdrafts +daylight robbery,daylight robberies +daylight savings time,daylight savings times +daylight-savings time,daylight-savings times +daylight saving time,daylight saving times +day lily,day lilies +daylily,daylilies +daymare,daymares +daymark,daymarks +day-net,day-nets +day-nighter,day-nighters +day off,days off +day of reckoning,days of reckoning +day out,days out +day pack,day packs +daypack,daypacks +day pupil,day pupils +dayrise,dayrises +day room,day rooms +dayroom,dayrooms +daysack,daysacks +daysailer,daysailers +daysailing,daysailings +day school,day schools +day shift,day shifts +dayshift,dayshifts +dayside,daysides +day sign,day signs +daysleeper,daysleepers +daysman,daysmen +dayspring,daysprings +daystar,daystars +day time,day times +daytimer,daytimers +day trade,day trades +day-trade,day-trades +daytrade,daytrades +day trader,day traders +day-trader,day-traders +daytrader,daytraders +day trip,day trips +day-tripper,day-trippers +daytripper,daytrippers +daywork,dayworks +daze,dazes +dazibao,dazibaos,dazibao +dazzle,dazzles +dazzlement,dazzlements +dazzler,dazzlers +dazzling,dazzlings +dba,dbas +D-bag,D-bags +DBN,DBNs +DBS,DBSes +DCG,DCGs +d*ck,d*cks +DCS,DCSs +D-Day,D-Days +DDL,DDLs +ddNTP,ddNTPs +DDO,DDOs +DDR,DDRs +D,Ds +D,Ds +Dβˆ’,Dβˆ’'s +deaccession,deaccessions +deacetylase,deacetylases +deacetylation,deacetylations +deacetyltransferase,deacetyltransferases +deacidification,deacidifications +deacon,deacons +deaconess,deaconesses +deaconess-house,deaconess-houses +deaconry,deaconries +deacon's bench,deacon's benches +deaconship,deaconships +deactivation,deactivations +deactivator,deactivators +deacylation,deacylations +dead-air space,dead-air spaces +dead ball,dead balls +dead bat,dead bats +deadbeat dad,deadbeat dads +dead beat,dead beats +deadbeat,deadbeats +dead bird,dead birds +deadbolt,deadbolts +dead calm,dead calms +deadcart,deadcarts +dead cat bounce,dead cat bounces +dead cert,dead certs +dead,dead +dead donkey,dead donkeys +dead drop,dead drops +dead duck,dead ducks +dead end,dead ends +dead-end,dead-ends +deadend,deadends +dead-ender,dead-enders +deadener,deadeners +deadenylase,deadenylases +deadenylation,deadenylations +deader,deaders +deadeye,deadeyes +deadfall,deadfalls +dead furrow,dead furrows +dead giveaway,dead giveaways +deadhead,deadheads +Deadhead,Deadheads +dead heat,dead heats +deadhouse,deadhouses +deadjectival,deadjectivals +dead key,dead keys +dead language,dead languages +deadlatch,deadlatches +dead leg,dead legs +dead letter,dead letters +dead letter office,dead letter offices +deadlift,deadlifts +dead-light,dead-lights +deadlight,deadlights +deadline,deadlines +dead link,dead links +deadlink,deadlinks +dead load,dead loads +deadlock,deadlocks +deadly embrace,deadly embraces +deadly nightshade,deadly nightshades +deadly sin,deadly sins +dead man,dead men +deadman,deadmen +dead man's brake,dead man's brakes +deadman's brake,deadman's brakes +dead man's hand,dead man's hands +dead man's switch,dead man's switches +dead man walking,dead men walking +dead march,dead marches +dead-march,dead-marches +dead marine,dead marines +dead metaphor,dead metaphors +deadnettle,deadnettles +dead president,dead presidents +dead-red,dead-reds +dead ringer,dead ringers +deadrise,deadrises +dead rubber,dead rubbers +Dead Sea apple,Dead Sea apples +dead set,dead sets +dead-set,dead-sets +dead soldier,dead soldiers +dead stick,dead sticks +deadstick landing,deadstick landings +deadtime,deadtimes +dead tree,dead trees +dead tree edition,dead tree editions +dead week,dead weeks +dead weight,dead weights +deadweight,deadweights +deadweight ton,deadweight tons +dead white European male,dead white European males +dead zone,dead zones +dea ex machina,deae ex machina +deaf aid,deaf aids +deafie,deafies +Deaflympian,Deaflympians +deaf-mute,deaf-mutes +deafmute,deafmutes +deagglomeration,deagglomerations +deal breaker,deal breakers +dealbreaker,dealbreakers +deal,deals +deal,deals +deal,deals +deale,deales +dealer,dealers +dealership,dealerships +dealfish,dealfishes,dealfish +dealie,dealies +dealkylation,dealkylations +deallocation,deallocations +deallocator,deallocators +deal-maker,deal-makers +dealmaker,dealmakers +dealumination,dealuminations +deal with the devil,deals with the devil +dealy,dealies +deambulatory,deambulatories +deamidation,deamidations +deaminase,deaminases +deamination,deaminations +dean and chapter,deans and chapters +dean,deans +deanery,deaneries +deaness,deanesses +deanship,deanships +deanthropomorphisation,deanthropomorphisations +dearborn,dearborns +Dearborn,Dearborns +dear,dears +dearest,dearests +dear heart,dear hearts +dearheart,dearhearts +dearie,dearies +Dear John letter,Dear John letters +dearling,dearlings +dearn,dearns +dearomatization,dearomatizations +dear sir,dear sirs +dearth,dearths +deary,dearies +deas,deases +death adder,death adders +death angel,death angels +death bed,death beds +death-bed,death-beds +deathbed,deathbeds +death bell,death bells +deathbell,deathbells +deathblow,deathblows +death by cop,deaths by cop +death camp,death camps +death cap,death caps +death certificate,death certificates +death chamber,death chambers +death clock,death clocks +deathday,deathdays +death,deaths +death duty,death duties +deather,deathers +death erection,death erections +death factor,death factors +death grip,death grips +death grunt,death grunts +deathhawk,deathhawks +death house,death houses +deathhouse,deathhouses +death knell,death knells +death-knell,death-knells +deathlock,deathlocks +death march,death marches +death mask,death masks +deathmatch,deathmatches +death metaller,death metallers +deathmonger,deathmongers +death panel,death panels +death rate,death rates +death rattle,death rattles +death-rattle,death-rattles +death ray,death rays +death-ray,death-rays +deathray,deathrays +deathrocker,deathrockers +death sentence,death sentences +death's head,death's heads +death's-head,death's-heads +death's-head hawkmoth,death's-head hawkmoths +deathsman,deathsmen +death spiral,death spirals +death squad,death squads +death stick,death sticks +death tax,death taxes +death throe,death throes +deathtime,deathtimes +death toll,death tolls +deathtrap,deathtraps +Death Valley driver,Death Valley drivers +death warrant,death warrants +death-watch beetle,death-watch beetles +deathwatch beetle,deathwatch beetles +deathwatch,deathwatches +death wish,death wishes +deathwish,deathwishes +death zone,death zones +deazaflavin,deazaflavins +deazapurine,deazapurines +debacle,debacles +dΓ©bΓ’cle,dΓ©bΓ’cles +debagging,debaggings +debarkation,debarkations +debarment,debarments +debasement,debasements +debaser,debasers +debater,debaters +debation,debations +debauch,debauches +debauchee,debauchees +debaucher,debauchers +debauchery,debaucheries +debauchment,debauchments +Debbie Downer,Debbie Downers +deb,debs +debenture,debentures +debenzylation,debenzylations +debilitant,debilitants +debilitation,debilitations +debility,debilities +debit card,debit cards +debit,debits +debite,debites +debitive,debitives +debitor,debitors +deboner,deboners +deboronation,deboronations +deboshment,deboshments +debouch,debouches +dΓ©bouchΓ©,dΓ©bouchΓ©s +debouchure,debouchures +debouncer,debouncers +debridement,debridements +dΓ©bridement,dΓ©bridements +debriefer,debriefers +debriefing,debriefings +debris field,debris fields +debrite,debrites +de Broglie wavelength,de Broglie wavelengths +debromination,debrominations +debt bondage,debt bondages +debt burden,debt burdens +debt,debts +debtee,debtees +debtholder,debtholders +debt instrument,debt instruments +debtor,debtors +debtor in possession,debtors in possession +debtour,debtours +debuff,debuffs +debuggee,debuggees +debugger,debuggers +debug mode,debug modes +debunker,debunkers +debunking,debunkings +debuscope,debuscopes +debutant,debutants +dΓ©butant,dΓ©butants +debutante,debutantes +dΓ©butante,dΓ©butantes +debΓ»tante,debΓ»tantes +debut,debuts +dΓ©but,dΓ©buts +debutyration,debutyrations +debye,debyes +decacarbonyl,decacarbonyls +decachord,decachords +decad,decads +decade,decades +decadent,decadents +dΓ©cadi,dΓ©cadis +decadienal,decadienals +decadiene,decadienes +decadist,decadists +decadrachm,decadrachms +decaf,decafs +decaff,decaffs +decagon,decagons +decagram,decagrams +decagramme,decagrammes +decahedron,decahedrons,decahedra +decahydrate,decahydrates +decahydroisoquinoline,decahydroisoquinolines +decahydroquinoline,decahydroquinolines +decakatal,decakatals +decalage,decalages +decalcifier,decalcifiers +decal,decals +decaliter,decaliters +decalitre,decalitres +decalog,decalogs +decalogist,decalogists +decalogue,decalogues +Decalogue,Decalogues +decalogy,decalogies +decalumen,decalumens +decamer,decamers +decameride,decamerides +decameter,decameters +decametre,decametres +decampment,decampments +decan,decans +decanethiol,decanethiols +decanoate,decanoates +decanol,decanols +decanoyl,decanoyls +decantation,decantations +decanter,decanters +decaoxide,decaoxides +decapeptide,decapeptides +decapitation,decapitations +decapitator,decapitators +decaplet,decaplets +decapod,decapods +Decapod,Decapods +decapping,decappings +decapsulation,decapsulations +decarbonatization,decarbonatizations +decarbonizer,decarbonizers +decarbonylase,decarbonylases +decarbonylation,decarbonylations +decarbopalladation,decarbopalladations +decarboxylase,decarboxylases +decarboxylation,decarboxylations +decare,decares +decasaccharide,decasaccharides +decasecond,decaseconds +decastere,decasteres +decastich,decastichs +decastyle,decastyles +decasulfide,decasulfides +decasulphide,decasulphides +decasyllable,decasyllables +decatenation,decatenations +decatetraene,decatetraenes +decathlete,decathletes +decathlon,decathlons +decatriene,decatrienes +decavanadate,decavanadates +decaversary,decaversaries +decay chain,decay chains +decayer,decayers +deceased,deceased +deceaser,deceasers +decedent,decedents +deceit,deceits +deceiver,deceivers +decelerator,decelerators +decellularisation,decellularisations +decellularization,decellularizations +Decemberist,Decemberists +Decembrist,Decembrists +decemvirate,decemvirates +decemvir,decemvirs,decemviri +decene,decenes +decennary,decennaries +decennial,decennials +decennium,decenniums,decennia +decentralisation,decentralisations +decentralist,decentralists +decentralization,decentralizations +decentration,decentrations +decenylene,decenylenes +deception,deceptions +deceptive cadence,deceptive cadences +decerniture,decernitures +decerption,decerptions +decertation,decertations +decertification,decertifications +decession,decessions +dechanneling,dechannelings +dechlorinase,dechlorinases +dechlorination,dechlorinations +dechristianization,dechristianizations +deciamp,deciamps +deciampere,deciamperes +deciban,decibans +decibel,decibels +decidability,decidabilities +decider,deciders +decidua,deciduas,deciduae +decidualization,decidualizations +deciduous tooth,deciduous teeth +decigrade,decigrades +decigram,decigrams +decigramme,decigrammes +decikatal,decikatals +decile,deciles +deciliter,deciliters +decilitre,decilitres +decillion,decillions +decillionth,decillionths +decimal dozen,decimal dozens +decimal fraction,decimal fractions +decimal number,decimal numbers +decimal place,decimal places +decimal point,decimal points +decimation,decimations +decimator,decimators +decimeter,decimeters +decimetre,decimetres +decimole,decimoles +decimosexto,decimosextos +decine,decines +decipherer,decipherers +decipol,decipols +decisecond,deciseconds +decision height,decision heights +decisionist,decisionists +decisionmaker,decisionmakers +decision market,decision markets +decision problem,decision problems +decision tree,decision trees +decistere,decisteres +deck chair,deck chairs +deckchair,deckchairs +deck,decks +deckel,deckels +decker,deckers +deckhand,deckhands +deckhead,deckheads +deckhouse,deckhouses +deckle,deckles +decklid,decklids +deckman,deckmen +deck roof,deck roofs +deckscrub,deckscrubs +deck shoe,deck shoes +decktop,decktops +declaimant,declaimants +declaimer,declaimers +declamation,declamations +declamator,declamators +declarant,declarants +declaration,declarations +declaration of war,declarations of war +declarative memory,declarative memories +declarator,declarators +declaratory judgment,declaratory judgments +declarer,declarers +declassification,declassifications +declension,declensions +declensionist,declensionists +declination,declinations +declinator,declinators +declinatory plea,declinatory pleas +declinature,declinatures +decline,declines +decliner,decliners +declinist,declinists +declinometer,declinometers +declivity,declivities +declutterer,declutterers +decoction,decoctions +decocture,decoctures +decode,decodes +decoder,decoders +decoding,decodings +decoit,decoits +decoke,decokes +decollation,decollations +decollator,decollators +decolletage,decolletages +dΓ©colletage,dΓ©colletages +decolonisation,decolonisations +decolonization,decolonizations +decolorant,decolorants +decoloration,decolorations +decolorisation,decolorisations +decoloriser,decolorisers +decolorizer,decolorizers +decolouration,decolourations +decolourisation,decolourisations +decolouriser,decolourisers +decolourizer,decolourizers +decomino,decominoes +decompaction,decompactions +decompensation,decompensations +decompilation,decompilations +decompiler,decompilers +decomplexation,decomplexations +decomposer,decomposers +decomposite,decomposites +decomposition,decompositions +decomposition potential,decomposition potentials +decompound,decompounds +decompression bomb,decompression bombs +decompressor,decompressors +decon,decons +decondensation,decondensations +decongestant,decongestants +deconjugation,deconjugations +deconsecration,deconsecrations +deconsolidation,deconsolidations +deconstruction,deconstructions +deconstructionist,deconstructionists +deconstructivist,deconstructivists +deconstructor,deconstructors +decontamination,decontaminations +decontraction,decontractions +decontrol,decontrols +deconversion,deconversions +deconvert,deconverts +deconvolution,deconvolutions +decorament,decoraments +decoration,decorations +decorative,decoratives +decorator,decorators +decorator pattern,decorator patterns +decor,decors +dΓ©cor,dΓ©cors +decorement,decorements +decorin,decorins +decorporation,decorporations +decorrelation,decorrelations +decorrelator,decorrelators +decortication,decortications +decorticator,decorticators +decose,decoses +decoupage,decoupages +decoupler,decouplers +decoupling,decouplings +decoy,decoys +decoy-duck,decoy-ducks +decoyer,decoyers +decoyman,decoymen +decrease,decreases +decreasement,decreasements +decreaser,decreasers +decreasing function,decreasing functions +decree absolute,decrees absolute +decree arbitral,decrees arbitral +decree,decrees +decreer,decreers +decreet,decreets +decrementation,decrementations +decrement,decrements +decrementer,decrementers +decrepitation,decrepitations +decrepitaton,decrepitatons +decrescendo,decrescendos +decrescent,decrescents +decretage,decretages +decretal,decretals +decretion,decretions +decretist,decretists +decrial,decrials +decrier,decriers +decrucifier,decrucifiers +decrypt,decrypts +decrypter,decrypters +decryptor,decryptors +dectin,dectins +decuman,decumans +decumbiture,decumbitures +decumulation,decumulations +decuple,decuples +decuplet,decuplets +decurionate,decurionates +decurion,decurions +decursion,decursions +decurtation,decurtations +decury,decuries +decussation,decussations +decyl,decyls +decylmaltoside,decylmaltosides +decyne,decynes +decypher,decyphers +Dedekind domain,Dedekind domains +dedendum,dedendums,dedenda +dE,dEs +dedicatee,dedicatees +dedicator,dedicators +dedicatory,dedicatories +dedifferentiation,dedifferentiations +dedimus,dedimuses +dedition,deditions +deduced amino acid sequence,deduced amino acid sequences +deducer,deducers +deductee,deductees +deductibility,deductibilities +deductible,deductibles +deduction,deductions +deduction theorem,deduction theorems +deductive closure,deductive closures +deductive inference,deductive inferences +deductivist,deductivists +deductor,deductors +deductor,deductors +de-dupe,de-dupes +deduster,dedusters +deed,deeds +deede,deedes +dee,dees +deedholder,deedholders +deed poll,deeds poll +deejay,deejays +deem,deems +deemer,deemers +de-emphasis,de-emphases +deemster,deemsters +de-emulsifier,de-emulsifiers +deener,deeners +deep abscess,deep abscesses +deep copy,deep copies +deep drawing,deep drawings +deep embedding,deep embeddings +deep end,deep ends +deepener,deepeners +deep-fat fryer,deep-fat fryers +deep freeze,deep freezes +deep-freeze,deep-freezes +deep-fry,deep-fries +deep fryer,deep fryers +deep geological repository,deep geological repositories +deep inelastic collision,deep inelastic collisions +deepity,deepities +deep pile carpet,deep pile carpets +deep pocket,deep pockets +deep point,deep points +deep-sea prawn,deep-sea prawns +deep sky object,deep sky objects +deep stack,deep stacks +deep thinker,deep thinkers +Deep Throat,Deep Throats +deepwater cardinalfish,deepwater cardinalfishes +deepwater prawn,deepwater prawns +deerberry,deerberries +deerburger,deerburgers +deer,deer,deers +deere,deeres +deer fly,deer flies +deerfly,deerflies +deer fly fever,deer fly fevers +deerfold,deerfolds +Deer gun,Deer guns +deerhound,deerhounds +deer ked,deer keds +deerlet,deerlets +deerlick,deerlicks +deerling,deerlings +deer-neck,deer-necks +deer-skin,deer-skins +deerskin,deerskins +deerslayer cap,deerslayer caps +deerslayer hat,deerslayer hats +deerstalker cap,deerstalker caps +deer stalker,deer stalkers +deerstalker,deerstalkers +deerstalker hat,deerstalker hats +deer stalking,deer stalkings +deer tick,deer ticks +de-escalation,de-escalations +deescalation,deescalations +deesis,deeses +deess,deesses +deev,deevs +deevil,deevils +de-excitation,de-excitations +deexcitation,deexcitations +defacement,defacements +defacer,defacers +defacing,defacings +de facto corporation,de facto corporations +de facto,de factos +defacto,defactos +defΓ¦cation,defΓ¦cations +defailance,defailances +defailment,defailments +defalcation,defalcations +defalcator,defalcators +defamation,defamations +defamer,defamers +defamiliarisation,defamiliarisations +defamiliarization,defamiliarizations +defaming,defamings +defasciculation,defasciculations +default,defaults +defaulter,defaulters +defeasance,defeasances +defeasaunce,defeasaunces +defeasibility,defeasibilities +defeasible fee,defeasible fees +defeat,defeats +defeater,defeaters +defeatican,defeaticans +defeatist,defeatists +defeatocrat,defeatocrats +defeature,defeatures +defecation,defecations +defecator,defecators +defect,defects +defectibility,defectibilities +defection,defections +defectionist,defectionists +defective,defectives +defective number,defective numbers +defective verb,defective verbs +defector,defectors +defectuosity,defectuosities +defemination,defeminations +defence accord,defence accords +defence,defences +defenceman,defencemen +defendant,defendants +defendaunt,defendaunts +defendee,defendees +defender,defenders +defending zone,defending zones +defendor,defendors +defendour,defendours +defendress,defendresses +defenestration,defenestrations +defensative,defensatives +defense,defenses +dΓ©fense,dΓ©fenses +defenseman,defensemen +defense mechanism,defense mechanisms +defenser,defensers +defensin,defensins +defensive back,defensive backs +defensive,defensives +defensive design,defensive designs +defensive field,defensive fields +defensive halfback,defensive halfbacks +defensive midfielder,defensive midfielders +defensive programming,defensive programmings +defensive tackle,defensive tackles +defensive zone,defensive zones +defensor,defensors +defensour,defensours +deferent,deferents +deferment,deferments +deferral,deferrals +deferrer,deferrers +deferrization,deferrizations +defervescence,defervescences +defibration,defibrations +defibrillation,defibrillations +defibrillator,defibrillators +defibrination,defibrinations +deficience,deficiences +deficient number,deficient numbers +deficit,deficits +defier,defiers +defilade,defilades +defile,defiles +defiler,defilers +defiliation,defiliations +defiltration,defiltrations +define,defines +definement,definements +definer,definers +definiendum,definienda +definiens,definientia +defining characteristic,defining characteristics +defining moment,defining moments +defining vocabulary,defining vocabularies +definite article,definite articles +definite clause,definite clauses +definite,definites +definite integral,definite integrals +definition by pointing,definitions by pointing +definition,definitions +definition list,definition lists +definitive,definitives +deflagrating spoon,deflagrating spoons +deflagration,deflagrations +deflagrator,deflagrators +deflation,deflations +deflationist,deflationists +deflator,deflators +deflavorizing machine,deflavorizing machines +deflection change,deflection changes +deflection,deflections +deflection difference,deflection differences +deflectometer,deflectometers +deflector,deflectors +deflexion,deflexions +deflexure,deflexures +deflocculation,deflocculations +defloration,deflorations +deflourer,deflourers +deflowerer,deflowerers +deflowering,deflowerings +deflowerment,deflowerments +defluxion,defluxions +defoamer,defoamers +defogger,defoggers +defoliant,defoliants +defoliator,defoliators +deforceor,deforceors +deforcer,deforcers +deforciant,deforciants +deforestation,deforestations +deformation,deformations +deformation energy,deformation energies +deformation retract,deformation retracts +deformer,deformers +deformity,deformities +deformylase,deformylases +defragger,defraggers +defragmentation,defragmentations +defragmenter,defragmenters +defraudation,defraudations +defrauder,defrauders +defraudment,defraudments +defrayal,defrayals +defrayer,defrayers +defroster,defrosters +deftster,deftsters +defugalty,defugalties +defunction,defunctions +defuser,defusers +defusion,defusions +defuzzification,defuzzifications +defy,defies +degasification,degasifications +degasser,degassers +degausser,degaussers +deg,degs +dEG,dEGs +DEG,DEGs +degen,degens +degeneracy,degeneracies +degenerate,degenerates +degenerationist,degenerationists +degenerescence,degenerescences +degerminator,degerminators +deglaciation,deglaciations +deglomeration,deglomerations +deglycosylation,deglycosylations +degmacyte,degmacytes +degradation,degradations +degrader,degraders +degradome,degradomes +degradosome,degradosomes +degravitation,degravitations +degreaser,degreasers +degreasing,degreasings +degree absolute,degrees absolute +degree Celsius,degrees Celsius +degree day,degree days +degree-day,degree-days +degree,degrees +degree Fahrenheit,degrees Fahrenheit +degree Kelvin,degrees Kelvin +degree mill,degree mills +degree of freedom,degrees of freedom +degree of frost,degrees of frost +degree of glory,degrees of glory +degree of ionization,degrees of ionization +degringolade,degringolades +degu,degus +degustation,degustations +degustation menu,degustation menus +dehalogenase,dehalogenases +dehalogenation,dehalogenations +dehiscence,dehiscences +dehorter,dehorters +dehuller,dehullers +dehumanisation,dehumanisations +dehumanization,dehumanizations +dehumanizer,dehumanizers +dehumidifier,dehumidifiers +dehydrase,dehydrases +dehydratase,dehydratases +dehydration,dehydrations +dehydration reaction,dehydration reactions +dehydrator,dehydrators +dehydriding,dehydridings +dehydrin,dehydrins +dehydroalanine,dehydroalanines +dehydroamino acid,dehydroamino acids +dehydroarene,dehydroarenes +dehydroascorbate,dehydroascorbates +dehydrobenzene,dehydrobenzenes +dehydrobromination,dehydrobrominations +dehydrochlorinase,dehydrochlorinases +dehydrochlorination,dehydrochlorinations +dehydrocyclization,dehydrocyclizations +dehydrogenase,dehydrogenases +dehydrogenation,dehydrogenations +dehydrohalogenation,dehydrohalogenations +dehydropalladation,dehydropalladations +dehydropeptidase,dehydropeptidases +deicer,deicers +deicide,deicides +deicing boot,deicing boots +deicing,deicings +deictic,deictics +deie,deies +deifier,deifiers +deil's buckie,deil's buckies +deiminase,deiminases +deimination,deiminations +deindexation,deindexations +deindustrialisation,deindustrialisations +deindustrialization,deindustrializations +deinocheirid,deinocheirids +deinonychosaur,deinonychosaurs +deinonychus,deinonychuses +deinopid,deinopids +deinosaur,deinosaurs +deinothere,deinotheres +deinotheriid,deinotheriids +deinotherium,deinotheriums +deintercalation,deintercalations +deinterlacer,deinterlacers +deiodase,deiodases +deiodination,deiodinations +deionisation,deionisations +deionization,deionizations +deipnophobia,deipnophobias +deipnosophist,deipnosophists +deiseal,deiseals +deism,deisms +deist,deists +Deist,Deists +deity,deities +deixis,deixes +deja vu,deja vus +dejecter,dejecters +dejection,dejections +dΓ©jeunΓ©,dΓ©jeunΓ©s +dejitterizer,dejitterizers +dekagram,dekagrams +dekaliter,dekaliters +dekameter,dekameters +dekastere,dekasteres +dek,deks +deke,dekes +dekko,dekkos +dekle,dekles +dekopon,dekopons +delaceration,delacerations +delafossite,delafossites +delamination,delaminations +delapsion,delapsions +delation,delations +delative case,delative cases +delator,delators +Delawarean,Delawareans +Delaware,Delawares +delay,delays +delay differential equation,delay differential equations +delayed miscarriage,delayed miscarriages +delayer,delayers +Del Boy,Del Boys +del,dels +del,dels +Del,Dels +delectable,delectables +delectus,delectuses +dele,deles +delegacy,delegacies +delegate,delegates +delegatee,delegatees +delegation,delegations +delegator,delegators +delegee,delegees +deleptonization,deleptonizations +Delete,Deletes +deleted scene,deleted scenes +deletee,deletees +deleter,deleters +deletery,deleteries +deletion,deletions +deletory,deletories +delf,delves,delf +delft,delfts +Delhian,Delhians +Delhiite,Delhiites +delibation,delibations +deliberation,deliberations +deliberative,deliberatives +deliberator,deliberators +delicacy,delicacies +delicata,delicatas +delicate,delicates +delicates,delicates +delicatessen,delicatessens +delice,delices +delict,delicts +deli,delis +deligation,deligations +delight,delights +delighter,delighters +delimitation,delimitations +delimitator,delimitators +delimiter,delimiters +delineament,delineaments +delineation,delineations +delineator,delineators +delinker,delinkers +delinquency,delinquencies +delinquent,delinquents +delinter,delinters +delipidate,delipidates +delipidation,delipidations +deliquifier,deliquifiers +deliquium,deliquiums +delirament,deliraments +deliriant,deliriants +delirifacient,delirifacients +delirium,deliriums,deliria +delisting,delistings +deliverable,deliverables +deliverance,deliverances +deliverer,deliverers +deliveress,deliveresses +delivery,deliveries +deliveryman,deliverymen +deliveryperson,deliverypersons,deliverypeople +delivery room,delivery rooms +deliverywoman,deliverywomen +delivraunce,delivraunces +delivre,delivres +Dellacruscan,Dellacruscans +dell,dells +Delmonico steak,Delmonico steaks +delosperma,delospermas +deloul,delouls +delphacid,delphacids +Delphian,Delphians +delphinid,delphinids +delphinion,delphinions +delphinium,delphiniums +delta connection,delta connections +delta,deltas +delta iron,delta irons +delta metal,delta metals +delta particle,delta particles +deltaproteobacterium,deltaproteobacteria +delta ray,delta rays +deltaretrovirus,deltaretroviruses +delta-sigma converter,delta-sigma converters +delta-v,delta-vs +delta wing,delta wings +delt,delts +deltidium,deltidiums,deltidia +deltiologist,deltiologists +deltohedron,deltohedra,deltohedrons +deltoid,deltoids +deltoideus,deltoidei +deltoideus muscle,deltoideus muscles +deltoid muscle,deltoid muscles +deluder,deluders +deluge,deluges +delusion,delusions +delusion of grandeur,delusions of grandeur +delvauxite,delvauxites +delve,delves +delver,delvers +delysid,delysids +demagnetisation,demagnetisations +demagnetization,demagnetizations +demagnetizer,demagnetizers +demagnification,demagnifications +demagog,demagogs +demagogue,demagogues +demagoguery,demagogueries +demagogy,demagogies +demain,demains +demake,demakes +demandant,demandants +demand characteristic,demand characteristics +demand,demands +demand deposit,demand deposits +demand draft,demand drafts +demander,demanders +demand note,demand notes +demand valve,demand valves +demanganization,demanganizations +demantoid,demantoids +demanufacturer,demanufacturers +demarcation,demarcations +demarcation potential,demarcation potentials +demarc,demarcs +demarc extension,demarc extensions +demarch,demarchs +demarche,demarches +dΓ©marche,dΓ©marches +demarkation,demarkations +demaunder,demaunders +demean,demeans +deme,demes +dememorization,dememorizations +dement,dements +dementor,dementors +Demerara,Demeraras +demerger,demergers +demerit,demerits +demerit point,demerit points +demesman,demesmen +demesne,demesnes +demetallation,demetallations +demethylase,demethylases +demethylation,demethylations +demethylimination,demethyliminations +demibastion,demibastions +demibrigade,demibrigades +demicadence,demicadences +demicannon,demicannons,demicannon +demicircle,demicircles +demiculverin,demiculverins +demi,demis +demidevil,demidevils +demiflat,demiflats +demi-glace,demi-glaces +demiglace,demiglaces +demi-god,demi-gods +demigod,demigods +demigoddess,demigoddesses +demigorge,demigorges +demigration,demigrations +demijohn,demijohns +demilance,demilances +demilancer,demilancers +demilitarisation,demilitarisations +demilitarization,demilitarizations +demilitarized zone,demilitarized zones +demilune,demilunes +demiman,demimen +demimondaine,demimondaines +demimonde,demimondes +demineralisation,demineralisations +demineralization,demineralizations +deminer,deminers +demiquaver,demiquavers +demirelief,demireliefs +demirep,demireps +demise,demises +demisemiquaver,demisemiquavers +demisexual,demisexuals +demisharp,demisharps +demisoloist,demisoloists +demission,demissions +demister,demisters +demitasse,demitasses +demitazza,demitazzas +demitint,demitints +demitone,demitones +demiurge,demiurges +demi-vegetarian,demi-vegetarians +demivolt,demivolts +demiwolf,demiwolves +demixing,demixings +demobilisation,demobilisations +demobilization,demobilizations +democide,democides +democoder,democoders +democracy,democracies +democrat,democrats +Democrat,Democrats +democratic deficit,democratic deficits +democratic socialist,democratic socialists +democratiser,democratisers +democratist,democratists +democrat wagon,democrat wagons +democrazy,democrazies +demo,demos +demodicid,demodicids +demodulator,demodulators +demogrant,demogrants +demographer,demographers +demographic,demographics +demographic transition,demographic transitions +demo group,demo groups +demogroup,demogroups +demoiselle crane,demoiselle cranes +demoiselle,demoiselles +de Moivre number,de Moivre numbers +demolisher,demolishers +demolition,demolitions +demolition derby,demolition derbies +demolitionist,demolitionists +demomaker,demomakers +demon,demons +demoness,demonesses +demonetization,demonetizations +demoniac,demoniacs +demonisation,demonisations +demonist,demonists +demonization,demonizations +demonizer,demonizers +demonocracy,demonocracies +demonographer,demonographers +demonography,demonographies +demonologer,demonologers +demonologist,demonologists +demonology,demonologies +demonomist,demonomists +demonry,demonries +demonstrater,demonstraters +demonstration,demonstrations +demonstrative adjective,demonstrative adjectives +demonstrative,demonstratives +demonstrative determiner,demonstrative determiners +demonstrative pronoun,demonstrative pronouns +demonstrator,demonstrators +demonstratorship,demonstratorships +demonym,demonyms +demoparty,demoparties +demophile,demophiles +demorage,demorages +demoralizer,demoralizers +De Morgan algebra,De Morgan algebras +De Morgan's law,De Morgan's laws +demo scene,demo scenes +demoscene,demoscenes +demoscener,demosceners +demos,demoi +demosponge,demosponges +demospongian,demospongians +demotee,demotees +demoter,demoters +demotic,demotics +demoticist,demoticists +demotion,demotions +demotist,demotists +demotivator,demotivators +dempster,dempsters +demster,demsters +demulcent,demulcents +demulsification,demulsifications +demulsifier,demulsifiers +demultiplexer,demultiplexers +demur,demurs +demurral,demurrals +demurrer,demurrers +demurrer to evidence,demurrers to evidence +demutualisation,demutualisations +demutualization,demutualizations +demux,demuxes +demy,demies +demyship,demyships +demystifier,demystifiers +Dena'ina,Dena'inas,Dena'ina +denar,denars,denari +denarian,denarians +denarius,denarii,denariuses +denary,denaries +denaskulo,denaskuloj +denaturant,denaturants +denaturating,denaturatings +denaturation,denaturations +den,dens +dendrachate,dendrachates +dendrerpetontid,dendrerpetontids +dendrigraft,dendrigrafts +dendrimer,dendrimers +dendrimersome,dendrimersomes +dendrite,dendrites +dendritic cell,dendritic cells +dendrobatid,dendrobatids +dendrobium,dendrobiums +dendroceratid,dendroceratids +dendrochronologist,dendrochronologists +dendroclimatologist,dendroclimatologists +dendrocoelid,dendrocoelids +dendrocolaptid,dendrocolaptids +dendrocygnid,dendrocygnids +dendrocyte,dendrocytes +dendrodoridid,dendrodoridids +dendroglyph,dendroglyphs +dendrogram,dendrograms +dendroid,dendroids +dendrolite,dendrolites +dendrologist,dendrologists +dendrometer,dendrometers +dendron,dendrons +dendronotid,dendronotids +dendrophile,dendrophiles +dendrophobia,dendrophobias +dendrophylliid,dendrophylliids +dendrotoxin,dendrotoxins +dene,denes +dene,denes +Dene,Denes +denegation,denegations +denervation,denervations +denial,denials +denialist,denialists +denial-of-service attack,denial-of-service attacks +denibbing,denibbings +denier,deniers +denier,deniers +denigration,denigrations +denigrator,denigrators +Denisovan,Denisovans +denitration,denitrations +denitrator,denitrators +denitrification,denitrifications +denitrifier,denitrifiers +denivelation,denivelations +denizen,denizens +den mother,den mothers +dennet,dennets +den of iniquity,dens of iniquity +denominationalist,denominationalists +denominationist,denominationists +denominative,denominatives +denominator,denominators +denotation,denotations +denotator,denotators +denotatum,denotata +denotee,denotees +denotement,denotements +denouement,denouements +dΓ©nouement,dΓ©nouements +denouncement,denouncements +denouncer,denouncers +densification,densifications +densifier,densifiers +densimeter,densimeters +densitometer,densitometers +density,densities +density dependence,density dependences +densovirus,densoviruses +dental alveolus,dental alveoli +dental,dentals +dental hygienist,dental hygienists +dental identification,dental identifications +dentaliid,dentaliids +dentalium,dentalia,dentaliums +dental spa,dental spas +dentary bone,dentary bones +dentary,dentaries +dentation,dentations +dent,dents +dent,dents +dentel,dentels +dentelle,dentelles +dentex,dentexes +denticipitid,denticipitids +denticity,denticities +denticle,denticles +denticulation,denticulations +denticule,denticules +dentifrice,dentifrices +dentilabial,dentilabials +dentilation,dentilations +dentil,dentils +dentile,dentiles +dentiloquist,dentiloquists +dentiphone,dentiphones +dentiscalp,dentiscalps +dentist,dentists +dentro,dentros +denture,dentures +denturist,denturists +denuclearisation,denuclearisations +denuclearization,denuclearizations +denuder,denuders +denunciation,denunciations +denunciator,denunciators +Denver boot,Denver boots +Denverite,Denverites +deobfuscator,deobfuscators +deobstruent,deobstruents +deodand,deodands +deodar cedar,deodar cedars +deodar,deodars +deodate,deodates +deodorant,deodorants +deodorisation,deodorisations +deodoriser,deodorisers +deodorization,deodorizations +deodorizer,deodorizers +deodourant,deodourants +deontic logic,deontic logics +deontologist,deontologists +deonym,deonyms +deoppilative,deoppilatives +deordination,deordinations +deoxidant,deoxidants +deoxidization,deoxidizations +deoxidizer,deoxidizers +deoxycholate,deoxycholates +deoxychorismate,deoxychorismates +deoxycytidine,deoxycytidines +deoxycytidylate,deoxycytidylates +deoxygenase,deoxygenases +deoxygenation,deoxygenations +deoxygluconate,deoxygluconates +deoxygluconic acid,deoxygluconic acids +deoxyglucose,deoxyglucoses +deoxyglucosone,deoxyglucosones +deoxyhemoglobin,deoxyhemoglobins +deoxyinosine,deoxyinosines +deoxyketohexose,deoxyketohexoses +deoxynivalenol,deoxynivalenols +deoxynucleoside,deoxynucleosides +deoxynucleotide,deoxynucleotides +deoxynucleotidyl,deoxynucleotidyls +deoxynucleotidyltransferase,deoxynucleotidyltransferases +deoxyoligonucleotide,deoxyoligonucleotides +deoxyribofuranose,deoxyribofuranoses +deoxyribonuclease,deoxyribonucleases +deoxyribonucleate,deoxyribonucleates +deoxyribonucleoside,deoxyribonucleosides +deoxyribonucleotide,deoxyribonucleotides +deoxyribose nucleic acid,deoxyribose nucleic acids +deoxyriboside,deoxyribosides +deoxystreptamine,deoxystreptamines +deoxy sugar alcohol,deoxy sugar alcohols +deoxy sugar,deoxy sugars +deoxysugar,deoxysugars +deoxyuridine,deoxyuridines +depacketizer,depacketizers +depainter,depainters +depalmitoylation,depalmitoylations +depanneur,depanneurs +dΓ©panneur,dΓ©panneurs +deparaffination,deparaffinations +deparaffinization,deparaffinizations +departed,departed +departee,departees +dΓ©partement,dΓ©partements +departer,departers +departmentalisation,departmentalisations +departmentalization,departmentalizations +departmentation,departmentations +department,departments +department store,department stores +departure,departures +dependability,dependabilities +dependable,dependables +dependance,dependances +dependant,dependants +dependee,dependees +dependence,dependences +dependency culture,dependency cultures +dependency,dependencies +dependency injection,dependency injections +dependency ratio,dependency ratios +dependent clause,dependent clauses +dependent,dependents +dependent variable,dependent variables +depender,dependers +dependovirus,dependoviruses +dephasing,dephasings +dephenylation,dephenylations +dephlegmator,dephlegmators +dephosphorylation,dephosphorylations +depicter,depicters +depiction,depictions +depictor,depictors +depigmentation,depigmentations +depilatory,depilatories +depinning,depinnings +depleter,depleters +depletion,depletions +depletive,depletives +deplorer,deplorers +deployability,deployabilities +deploy,deploys +deployer,deployers +deployment,deployments +depocenter,depocenters +depocentre,depocentres +depolariser,depolarisers +depolarizer,depolarizers +depolymerase,depolymerases +depolymerisation,depolymerisations +depolymerization,depolymerizations +deponent,deponents +deponer,deponers +depopulation,depopulations +depopulator,depopulators +deportation,deportations +deportee,deportees +deporter,deporters +deportment,deportments +deposal,deposals +deposer,deposers +depositary,depositaries +depositary receipt,depositary receipts +deposit contract,deposit contracts +deposit,deposits +deposite,deposites +depositee,depositees +deposition,depositions +depositor,depositors +depository,depositories +depositum,depositums +depositure,depositures +depot,depots +dΓ©pΓ΄t,dΓ©pΓ΄ts +depotentiation,depotentiations +depravation,depravations +depravement,depravements +depraver,depravers +depravity,depravities +deprecator,deprecators +depreciator,depreciators +depredator,depredators +depressariid,depressariids +depressive,depressives +depressogenic,depressogenics +depressoid,depressoids +depressomotor,depressomotors +depressor,depressors +depriver,deprivers +deprogrammer,deprogrammers +deprojection,deprojections +deproteination,deproteinations +deproteinization,deproteinizations +deprotonation,deprotonations +depside,depsides +depsipeptide,depsipeptides +depth charge,depth charges +depth,depths +depth-first search,depth-first searches +depth of field,depths of field +depucelage,depucelages +depurant,depurants +depuration,depurations +depurative,depuratives +depurator,depurators +depurination,depurinations +depurinization,depurinizations +deputation,deputations +deputator,deputators +deputy,deputies +deque,deques +dequeue,dequeues +deracemization,deracemizations +deracination,deracinations +derail,derails +derailer,derailers +derailing,derailings +derailleur,derailleurs +derailment,derailments +derangement,derangements +deranger,derangers +derating,deratings +deratization,deratizations +derbid,derbids +der-brain,der-brains +derby,derbies +Derbyshire spar,Derbyshire spars +derecho,derechos +derecognition,derecognitions +dere,deres +dereferer,dereferers +deregulator,deregulators +derelict,derelicts +derepression,derepressions +deribosylation,deribosylations +derichthyid,derichthyids +derider,deriders +deringer,deringers +Deringer,Deringers +derivate,derivates +derivation,derivations +derivatisation,derivatisations +derivative,derivatives +derivative instrument,derivative instruments +derivatives market,derivatives markets +derivative work,derivative works +derivatization,derivatizations +derived function,derived functions +derived group,derived groups +derived subgroup,derived subgroups +derived unit,derived units +derivement,derivements +deriver,derivers +derivitization,derivitizations +dermabrader,dermabraders +derma,dermas +dermanyssid,dermanyssids +dermanyssoid,dermanyssoids +dermapteran,dermapterans +dermasurgeon,dermasurgeons +dermatemydid,dermatemydids +dermatitis,dermatitises,dermatitides +dermatogen,dermatogens +dermatologist,dermatologists +dermatome,dermatomes +dermatome,dermatomes +dermatopathologist,dermatopathologists +dermatophyte,dermatophytes +dermatophytid,dermatophytids +dermatophytosis,dermatophytoses +dermatoplasty,dermatoplasties +dermatosis,dermatoses +dermatoxin,dermatoxins +derm,derms +derm,derms +dermestid,dermestids +dermochelid,dermochelids +dermochelyid,dermochelyids +dermoid cyst,dermoid cysts +dermomyotome,dermomyotomes +dermopalatine,dermopalatines +dermophyte,dermophytes +dermoplasty,dermoplasties +dermopteran,dermopterans +dermoskeleton,dermoskeletons +dermostosis,dermostoses +dern,derns +dern,derns +dernier cri,derniers cris +derny,dernies +derobement,derobements +dero,deros +dero,deros +derodontid,derodontids +derogation,derogations +derogator,derogators +derogatory,derogatories +derotation,derotations +derotator,derotators +derrick,derricks +derrickman,derrickmen +derriere,derrieres +derriΓ¨re,derriΓ¨res +derringer,derringers +Derringer,Derringers +dervise,dervises +dervish,dervishes +desacralization,desacralizations +desalting,desaltings +desanctification,desanctifications +desander,desanders +desaparecido,desaparecidos +desargination,desarginations +desart,desarts +desaturase,desaturases +desaturation,desaturations +descabello,descabellos +descaler,descalers +descanso,descansos +descant,descants +descanter,descanters +descarga,descargas +Descemet's membrane,Descemet's membranes +descendant,descendants +descendence,descendences +descender,descenders +descendeur,descendeurs +descendibility,descendibilities +descending colon,descending colons +descending s,descending Ss +descension,descensions +descensory,descensories +descent,descents +descloizite,descloizites +descrambler,descramblers +descrescendo,descrescendos,decrescendi +described video,described videos +describent,describents +describer,describers +descrier,descriers +description,descriptions +description logic,description logics +descriptive adjective,descriptive adjectives +descriptive,descriptives +descriptive geometry,descriptive geometries +descriptivist,descriptivists +descriptor,descriptors +desecrater,desecraters +desecration,desecrations +desecrator,desecrators +desegregation,desegregations +deselection,deselections +desensitiser,desensitisers +desensitizer,desensitizers +deserializer,deserializers +desert cat,desert cats +desert,deserts +desert,deserts +deserter,deserters +desert hare,desert hares +desertion,desertions +desert island,desert islands +desert pavement,desert pavements +desert rat,desert rats +desertrice,desertrices +desertrix,desertrices +desert rose,desert roses +desert varnish,desert varnishes +deserver,deservers +deserving,deservings +deshielding,deshieldings +deshopper,deshoppers +desialylation,desialylations +desiatina,desiatinas +desiccant,desiccants +desiccated coconut,desiccated coconuts +desiccation,desiccations +desiccative,desiccatives +desiccator,desiccators +desid,desids +desideration,desiderations +desiderative,desideratives +desideratum,desiderata +desi,desis +Desi,Desis +desier,desiers +desight,desights +designated driver,designated drivers +designated hitter,designated hitters +designated runner,designated runners +designated survivor,designated survivors +designation,designations +designator,designators +designatum,designata +design critique,design critiques +design,designs +designee,designees +designer baby,designer babies +designer,designers +designer drug,designer drugs +designer dyke,designer dykes +designer label,designer labels +designment,designments +design pattern,design patterns +design to cost,design to costs +desilication,desilications +desilylation,desilylations +desinence,desinences +desinential inflection,desinential inflections +desingularization,desingularizations +desirable,desirables +dΓ©sire,dΓ©sires +desire line,desire lines +desirement,desirements +desire path,desire paths +desirer,desirers +desiring,desirings +desistance,desistances +desition,desitions +desitive,desitives +deskband,deskbands +deskbook,deskbooks +desk,desks +deskfast,deskfasts +desk job,desk jobs +desk jockey,desk jockeys +desklamp,desklamps +deskman,deskmen +deskmate,deskmates +desk pilot,desk pilots +deskside,desksides +desktop computer,desktop computers +desktop,desktops +desktop environment,desktop environments +desktop picture,desktop pictures +desktop publisher,desktop publishers +desmacellid,desmacellids +desman,desmans +desmatophocid,desmatophocids +desmethylsterane,desmethylsteranes +desmethylsterol,desmethylsterols +desmid,desmids +desmoceratid,desmoceratids +desmocollin,desmocollins +desmocyte,desmocytes +desmodium,desmodiums +desmodont,desmodonts +desmoglein,desmogleins +desmoid,desmoids +desmond,desmonds +desmoplakin,desmoplakins +desmoplasia,desmoplasias +desmopterid,desmopterids +desmosome,desmosomes +desmostylid,desmostylids +desocialization,desocializations +desolater,desolaters +desolation,desolations +desolator,desolators +desolvate,desolvates +desolvation,desolvations +desorber,desorbers +desoxazoline,desoxazolines +desoxycholate,desoxycholates +desoxyribonucleic acid,desoxyribonucleic acids +desoxyribose,desoxyriboses +desoxyribose nucleic acid,desoxyribose nucleic acids +despairer,despairers +despatch,despatches +despatcher,despatchers +desperado,desperadoes,desperados +despisal,despisals +despiser,despisers +despoil,despoils +despoiler,despoilers +despoilment,despoilments +despoliation,despoliations +despondence,despondences +despondency,despondencies +desponder,desponders +desponsation,desponsations +desponsory,desponsories +despotat,despotats +despotate,despotates +despot,despots +despotism,despotisms +despotist,despotists +despumation,despumations +dess,desses +dessert,desserts +dessert grape,dessert grapes +dessert spoon,dessert spoons +dessertspoon,dessertspoons +dessertspoonful,dessertspoonfuls,dessertspoonsful +dessert wine,dessert wines +dessiatina,dessiatinas +dessiatine,dessiatines +dessjatine,dessjatines +destabilisation,destabilisations +destabiliser,destabilisers +destabilization,destabilizations +destabilizer,destabilizers +destaining,destainings +dest,dests +destemper,destempers +destination,destinations +destination wedding,weddings +destinative,destinatives +destinist,destinists +destiny,destinies +destitution,destitutions +destratificator,destratificators +destresser,destressers +destressification,destressifications +destrier,destriers +destroyer,destroyers +destroyer escort,destroyer escorts +destroyer leader,destroyer leaders +destroyer minesweeper,destroyer minesweepers +destroying angel,destroying angels +destruction,destructions +destructionist,destructionists +destruction permit,destruction permits +destructor,destructors +destructuration,destructurations +desuccinylase,desuccinylases +desuccinylation,desuccinylations +desudation,desudations +desulfation,desulfations +desulfhydrase,desulfhydrases +desulfonation,desulfonations +desulfurase,desulfurases +desulfuration,desulfurations +desulfurization,desulfurizations +desulphurase,desulphurases +desulphurization,desulphurizations +desuperheater,desuperheaters +desyatina,desyatinas +desyatin,desyatins +desymmetrization,desymmetrizations +desynchronization,desynchronizations +detached house,detached houses +detacher,detachers +detailee,detailees +detailer,detailers +detailing,detailings +detainder,detainders +detainee,detainees +detainer,detainers +detangler,detanglers +detecter,detecters +detection,detections +detection dog,detection dogs +detective,detectives +detectograph,detectographs +detector,detectors +detectorist,detectorists +detector van,detector vans +detent,detents +detention basin,detention basins +detention centre,detention centres +detention home,detention homes +detergent,detergents +deteriorationist,deteriorationists +determent,determents +determinable,determinables +determinacy,determinacies +determinant,determinants +determinate,determinates +determinative,determinatives +determinator,determinators +determiner,determiners +determiner phrase,determiner phrases +determinist,determinists +determinization,determinizations +deterration,deterrations +deterrent,deterrents +deterritorialization,deterritorializations +detersive,detersives +detestation,detestations +detester,detesters +de-thatcher,de-thatchers +dethatcher,dethatchers +deth,deths +dethermalizer,dethermalizers +dethreading,dethreadings +dethronement,dethronements +dethroner,dethroners +dethronization,dethronizations +detinner,detinners +detinue,detinues +detitanation,detitanations +detonability,detonabilities +detonation,detonations +detonator,detonators +detorsion,detorsions +detour,detours +detournement,detournements +detox,detoxes +detoxer,detoxers +detoxication,detoxications +detoxification unit,detoxification units +detoxifier,detoxifiers +detracter,detracters +detractor,detractors +detractour,detractours +detractress,detractresses +detrainment,detrainments +dΓ©traquΓ©,dΓ©traquΓ©s +detriment,detriments +detrition,detritions +detritivore,detritivores +detrivore,detrivores +detrusor,detrusors +dette,dettes +deturbation,deturbations +detur,deturs +deturpation,deturpations +detyrosination,detyrosinations +deubiquitinase,deubiquitinases +deubiquitination,deubiquitinations +deubiquitinylation,deubiquitinylations +deubiquitylase,deubiquitylases +deuce coupe,deuce coupes +deuce,deuces +deuce,deuces +Deuel's halo sign,Deuel's halo signs +deuteragonist,deuteragonists +deuteranopia,deuteranopias +deuteration,deuterations +deuteriation,deuteriations +deuteride,deuterides +deuterium,deuteriums +deuterobenzene,deuterobenzenes +deuterogamist,deuterogamists +deuteron,deuterons +Deuteronomist,Deuteronomists +deuterophlebiid,deuterophlebiids +deuterostome,deuterostomes +deuterotheme,deuterothemes +deuteroxide,deuteroxides +deuterozooid,deuterozooids +deutocerebrum,deutocerebra +deutonymph,deutonymphs +deutosulphuret,deutosulphurets +deutoxide,deutoxides +Deutsche Mark,Deutsche Marks,Deutsche Mark +Deutschmark,Deutschmarks,Deutschmark +deutzia,deutzias +devachan,devachans +devadasi,devadasis +deva,devas +devaluation,devaluations +devaluator,devaluators +devaluer,devaluers +devaluing,devaluings +Devanagari numeral,Devanagari numerals +devascularization,devascularizations +devastation,devastations +devastator,devastators +devastavit,devastavits +devata,devatas +dev,devs +devel,devels +develin,develins +developable surface,developable surfaces +developer,developers +developer program,developer programs +developmental biology,developmental biologies +developmental,developmentals +developmental disability,developmental disabilities +developmental position,developmental positions +developmental psychologist,developmental psychologists +developmentation,developmentations +deverbal,deverbals +deverbative,deverbatives +deviance,deviances +deviancy,deviancies +deviant,deviants +deviate,deviates +deviated nasal septum,deviated nasal septa +deviation,deviations +deviationist,deviationists +deviation ratio,deviation ratios +deviator,deviators +device,devices +device driver,device drivers +devil bird,devil birds +devil,devils +devil dog,devil dogs +deviless,devilesses +devilet,devilets +devilfish,devilfishes,devilfish +deviling,devilings +devilkin,devilkins +devilment,devilments +devilry,devilries +devil's advocate,devil's advocates +devil's coach-horse,devil's coach-horses +devil screecher,devil screechers +devil's food cake,devil's food cakes +devil's proof,devil's proofs +devil's purse,devil's purses +devil's strip,devil's strips +devil strip,devil strips +deviltry,devilries +devilwood,devilwoods +devisal,devisals +devise,devises +devisee,devisees +devisement,devisements +deviser,devisers +devision,devisions +devisor,devisors +devitation,devitations +devitrification,devitrifications +devkit,devkits +/dev/null,/dev/nulls +devocation,devocations +devoir,devoirs +devolatilization,devolatilizations +devolatilizer,devolatilizers +devolution,devolutions +devon,devons +Devon,Devons +Devonian,Devonians +Devon Rex,Devon Rexes +Devonshire tea,Devonshire teas +devotary,devotaries +devotchka,devotchkas +devotee,devotees +devotement,devotements +devoter,devoters +devotional,devotionals +devotionalist,devotionalists +devoto,devotos,devotoes +devotor,devotors +devourer,devourers +devouress,devouresses +devout,devouts +devvel,devvels +dewan,dewans +dewar,dewars +Dewar,Dewars +Dewar flask,Dewar flasks +Dewar vessel,Dewar vessels +dewata,dewatas +dewberry,dewberries +dewclaw,dewclaws +dew drop,dew drops +dewdrop,dewdrops +dew-fall,dew-falls +dewfall,dewfalls +dewlap,dewlaps +dew point,dew points +dewpoint,dewpoints +dew water,dew waters +dewwater,dewwaters +dewworm,dewworms +dexamethasone,dexamethasones +dexaminid,dexaminids +dex,dexes +dexter chief,dexter chiefs +dexter,dexters +dextral fault,dextral faults +dextran,dextrans +dextrinase,dextrinases +dextrin,dextrins +dextrocardiac,dextrocardiacs +dextrogere,dextrogeres +dextrotartaric acid,dextrotartaric acids +dey,deys +dey,deys +dezh,dezhes +DFL,DFLs +D-frame,D-frames +DFT,DFTs +dhaal,dhaals +dhak,dhaks +dhaki,dhakis +dhal,dhals +dhampir,dhampirs +dharna,dharnas +dhikr,dhikrs +dhimma,dhimmas +dhimmi,dhimmis +dhobi,dhobis +dhoby,dhobies +dholak,dholaks +dholaki,dholakis +dhol,dhols +dhole,dholes,dhole +dholki,dholkis +dhoney,dhoneys,dhonies +dhoni,dhonis +dhony,dhonies +dhoti,dhotis +dhow,dhows +dhurrie,dhurries +diabatization,diabatizations +diabetic,diabetics +diabetic embryopathy,diabetic embryopathies +diabetologist,diabetologists +diable,diables +diablerie,diableries +diablo,diablos +Diablo,Diablos +diabolism,diabolisms +diabolo,diabolos +diabologue,diabologues +diacatholicon,diacatholicons +diacaustic,diacaustics +diacetate,diacetates +diacetylene,diacetylenes +diachronicity,diachronicities +diachylon,diachylons +diacid,diacids +diaclasis,diaclases +diacodium,diacodiums +diaconate,diaconates +diacritical,diacriticals +diacritical hook,diacritical hooks +diacritical mark,diacritical marks +diacritic,diacritics +diacrylate,diacrylates +diacylamine,diacylamines +diacylation,diacylations +diacylglyceride,diacylglycerides +diacylglycerol,diacylglycerols +diad,diads +diadduct,diadducts +diadectid,diadectids +diadematid,diadematids +diadematoid,diadematoids +diadem,diadems +diademed sifaka,diademed sifakas +diadochokinesis,diadochokineses +diadrom,diadroms +diaeresis,diaereses +diΓ¦resis,diΓ¦reses +diagenesis,diageneses +diaglyph,diaglyphs +diagnosee,diagnosees +diagnoser,diagnosers +diagnosis,diagnoses +diagnostic,diagnostics +diagnostician,diagnosticians +diagnostick,diagnosticks +diagometer,diagometers +diagonal,diagonals +diagonal element,diagonal elements +diagonalisation,diagonalisations +diagonalization,diagonalizations +diagonal matrix,diagonal matrices +diagram chase,diagram chases +diagram,diagrams +diagramme,diagrammes +diagraph,diagraphs +diagrid,diagrids +dialdehyde,dialdehydes +dial,dials +dialdose,dialdoses +dialect continuum,dialect continua +dialect,dialects +dialectic,dialectics +dialectician,dialecticians +dialectick,dialecticks +dialectism,dialectisms +dialectologist,dialectologists +dialefe,dialefes +dialer,dialers +dialetheia,dialetheia +dialid,dialids +dial indicator,dial indicators +dialing,dialings +dialist,dialists +dialkene,dialkenes +dialkylamine,dialkylamines +dialkylamino,dialkylaminos +dialkylammonium,dialkylammoniums +dialkylation,dialkylations +diallage,diallages +diallage,diallages +dialler,diallers +dialling,diallings +dialling tone,dialling tones +diallist,diallists +dialog box,dialog boxes +dialog,dialogs +dialogism,dialogisms +dialogist,dialogists +dialogue box,dialogue boxes +dialogue,dialogues +dialoguist,dialoguists +dial tone,dial tones +dial-up,dial-ups +dialup,dialups +dialuric acid,dialuric acids +dialysate,dialysates +dialyser,dialysers +dialysis,dialyses +dialytic telescope,dialytic telescopes +dialyzate,dialyzates +dialyzer,dialyzers +diamagnet,diamagnets +diamagnetic,diamagnetics +diamagnetization,diamagnetizations +diamantaire,diamantaires +diamante,diamantes +diamantΓ©,diamantΓ©s +diam,diams +diam.,diams. +diameter,diameters +diametral,diametrals +diametre,diametres +diamictite,diamictites +diamide,diamides +diamidide,diamidides +diamidine,diamidines +diamidino,diamidinos +diamine,diamines +diaminoalkane,diaminoalkanes +diaminobenzene,diaminobenzenes +diaminobenzidine,diaminobenzidines +diaminocyclohexyl,diaminocyclohexyls +diaminoethane,diaminoethanes +diaminofluorescein,diaminofluoresceins +diaminonaphthalene,diaminonaphthalenes +diaminonaphthotriazole,diaminonaphthotriazoles +diaminophenol,diaminophenols +diaminopimelate,diaminopimelates +diaminopimelic acid,diaminopimelic acids +diaminopyrimidine,diaminopyrimidines +diammoniate,diammoniates +diamond anvil cell,diamond anvil cells +diamondback,diamondbacks +diamondback rattlesnake,diamondback rattlesnakes +diamond crossing,diamond crossings +diamond crossover,diamond crossovers +diamond cutter,diamond cutters +diamond,diamonds +diamond frame,diamond frames +diamond in the rough,diamonds in the rough +diamond junction,diamond junctions +diamond lane,diamond lanes +diamond number,diamond numbers +diamondoid,diamondoids +diamond paste,diamond pastes +diamond plate,diamond plates +diamond ring,diamond rings +diamond saw,diamond saws +diamonds,diamonds +diamonte,diamontes +diamylene,diamylenes +Diana monkey,Diana monkeys +dianhydride,dianhydrides +Dianic Wiccan,Dianic Wiccans +dianion,dianions +dianthovirus,dianthoviruses +dianthus,dianthuses +diapase,diapases +diapasm,diapasms +diapason,diapasons +diapause,diapauses +diapedesis,diapedeses +diapensia,diapensias +diapente,diapentes +diaper,diapers +diapering,diaperings +diaper lover,diaper lovers +diaper rash,diaper rashes +diaphane,diaphanes +diaphanid,diaphanids +diaphanometer,diaphanometers +diaphanoscope,diaphanoscopes +diaphanotype,diaphanotypes +diaphone,diaphones +diaphone,diaphones +diaphorase,diaphorases +diaphoresis,diaphoreses +diaphoretic,diaphoretics +diaphote,diaphotes +diaphragm,diaphragms +diaphragm wall,diaphragm walls +diaphysis,diaphyses +diapir,diapirs +diapophysis,diapophyses +diapositive,diapositives +diapriid,diapriids +diapsid,diapsids +diaptomid,diaptomids +diarchy,diarchies +diaresis,diareses +diarginate,diarginates +diarist,diarists +diaromatic,diaromatics +diarsane,diarsanes +diarsenide,diarsenides +diarsine,diarsines +diarsinine,diarsinines +diarsole,diarsoles +diarthrophallid,diarthrophallids +diarthrosis,diarthroses +diary,diaries +diarylamine,diarylamines +diarylation,diarylations +diarylethene,diarylethenes +diaryliodonium,diaryliodoniums +diarylmaleimide,diarylmaleimides +diarylquinoline,diarylquinolines +diary-writer,diary-writers +diaspidid,diaspidids +diaspora,diasporas +diaspore,diaspores +diastase,diastases +diastatid,diastatids +diastema,diastemas,diastemata +diastem,diastems +diaster,diasters +diastereoisomer,diastereoisomers +diastereoisomerism,diastereoisomerisms +diastereoisomerization,diastereoisomerizations +diastereomer,diastereomers +diastereomerization,diastereomerizations +diastereoselection,diastereoselections +diastereoselectivity,diastereoselectivities +diastolic blood pressure,diastolic blood pressures +diastrophism,diastrophisms +diastyle,diastyles +diastylid,diastylids +diasystem,diasystems +diatessaron,diatessarons,diatessara +diathermy,diathermies +diathesis,diatheses +diatom,diatoms +diatomic,diatomics +diatomite,diatomites +diatonic scale,diatonic scales +diatreme,diatremes +diatribe,diatribes +diatribist,diatribists +diatrizoate,diatrizoates +diatryma,diatrymas +diatyposis,diatyposes +diazaanthracene,diazaanthracenes +diazaborolane,diazaborolanes +diazafluorene,diazafluorenes +diazanaphthalene,diazanaphthalenes +diazanylidene,diazanylidenes +diazaphenanthrene,diazaphenanthrenes +diazaphospholane,diazaphospholanes +diazecine,diazecines +diazepam,diazepams +diazide,diazides +diazinane,diazinanes +diazine,diazines +diazinon,diazinons +diaziridine,diaziridines +diazirine,diazirines +diazoacetate,diazoacetates +diazoamino compound,diazoamino compounds +diazoate,diazoates +diazocane,diazocanes +diazocine,diazocines +diazo compound,diazo compounds +diazohydroxide,diazohydroxides +diazoimine,diazoimines +diazol,diazols +diazole,diazoles +diazonamide,diazonamides +diazonaphthoquinone,diazonaphthoquinones +diazonid,diazonids +diazonium compound,diazonium compounds +diazonium,diazoniums +diazonium salt,diazonium salts +diazo reaction,diazo reactions +diazotate,diazotates +diazotisation,diazotisations +diazotization,diazotizations +diazotroph,diazotrophs +dibamid,dibamids +dibaryon,dibaryons +dibber,dibbers +dibble,dibbles +dibbler,dibblers +dibbly-dobbler,dibbly-dobblers +dibbuk,dibbuks +dib,dibs +DIB,DIBs +dibenzazepine,dibenzazepines +dibenzimidazole,dibenzimidazoles +dibenzodiazepine,dibenzodiazepines +dibenzo,dibenzos +dibenzodioxin,dibenzodioxins +dibenzofuran,dibenzofurans +dibenzopyran,dibenzopyrans +dibenzothiazepine,dibenzothiazepines +dibenzothiophene,dibenzothiophenes +dibenzoxazepine,dibenzoxazepines +dibenzpentacene,dibenzpentacenes +diboration,diborations +diboride,diborides +diboson,dibosons +dibranchiate,dibranchiates +dibromide,dibromides +dibromoethane,dibromoethanes +dibstone,dibstones +dicaeid,dicaeids +dicamptodontid,dicamptodontids +dicaprin,dicaprins +dicarbene,dicarbenes +dicarbenium,dicarbeniums +dicarbide,dicarbides +dicarbonate,dicarbonates +dicarboxamide,dicarboxamides +dicarboximide,dicarboximides +dicarboxylate,dicarboxylates +dicarboxylic acid,dicarboxylic acids +dicast,dicasts +dicastery,dicasteries +dication,dications +dicebox,diceboxes +dice,dice,dices +dicemaker,dicemakers +diceratiid,diceratiids +dicer,dicers +dice run,dice runs +dice snake,dice snakes +dichalcogenide,dichalcogenides +dichloramine,dichloramines +dichloride,dichlorides +dichlorination,dichlorinations +dichloroacetate,dichloroacetates +dichlorobenzene,dichlorobenzenes +dichlorobiphenyl,dichlorobiphenyls +dichloroindophenol,dichloroindophenols +dichloroiodate,dichloroiodates +dichloromethyl,dichloromethyls +dichlorophenol,dichlorophenols +dichobunid,dichobunids +dichotomisation,dichotomisations +dichotomist,dichotomists +dichotomization,dichotomizations +dichotomous key,dichotomous keys +dichotomy,dichotomies +dichroiscope,dichroiscopes +dichromat,dichromats +dichromate,dichromates +dichroscope,dichroscopes +dicing,dicings +dickass,dickasses +dickbag,dickbags +dick-brain,dick-brains +dickbrain,dickbrains +dickcissel,dickcissels +dick,dicks +dick,dicks +Dickensian,Dickensians +dicker,dickers +dickey,dickeys +dickface,dickfaces +dickfest,dickfests +dickfuck,dickfucks +dickgirl,dickgirls +dick-head,dick-heads +dickhead,dickheads +dickhole,dickholes +dickhole,dickholes +dickie,dickies +dicking,dickings +dickinsoniid,dickinsoniids +dick juice,dick juices +dickjuice,dickjuices +dicklet,dicklets +dickling,dicklings +dick munch,dick munches +dicknut,dicknuts +dickslap,dickslaps +dicksplash,dicksplashes +dicksplat,dicksplats +dickster,dicksters +dicksucker,dicksuckers +dicktard,dicktards +Dick test,Dick tests +dickty,dickties +dickwad,dickwads +dick weed,dick weeds +dickweed,dickweeds +dickwod,dickwods +dicky bird,dicky birds +dicky-bird,dicky-birds +dicky bow,dicky bows +dicky,dickies +dicluster,diclusters +dicolon,dicolons,dicola +dicone,dicones +dicoronene,dicoronenes +dicoronylene,dicoronylenes +dicot,dicots +dicotyledon,dicotyledons +dicraeosaurid,dicraeosaurids +dicrurid,dicrurids +dictamen,dictamens +dictamnus,dictamnuses +dictaphone,dictaphones +dictate,dictates +dictation machine,dictation machines +dictator,dictators +dictatorship,dictatorships +dictatorship of the majority,dictatorships of the majority +dictatour,dictatours +dictatourship,dictatourships +dictatress,dictatresses +dictatrix,dictatrices +dictature,dictatures +DICT,DICTs +dictionarian,dictionarians +dictionary attack,dictionary attacks +dictionary attacker,dictionary attackers +dictionary definition,dictionary definitions +dictionary,dictionaries +dictionary form,dictionary forms +dictum,dicta,dictums +dictyate,dictyates +dicty,dicties +dictynid,dictynids +dictynid spider,dictynid spiders +dictyochophyte,dictyochophytes +dictyodendrin,dictyodendrins +dictyogen,dictyogens +dictyopharid,dictyopharids +dictyopteran,dictyopterans +dictyosome,dictyosomes +dictyostele,dictyosteles +dictyostelid,dictyostelids +dictyotene,dictyotenes +dicumarol,dicumarols +dicyanamide,dicyanamides +dicyanide,dicyanides +dicyanoargentate,dicyanoargentates +dicyanoaurate,dicyanoaurates +dicyanoethane,dicyanoethanes +dicyanomethylene,dicyanomethylenes +dicyclopentadiene,dicyclopentadienes +dicyemid,dicyemids +dicynodont,dicynodonts +dicynodontid,dicynodontids +dicysteine,dicysteines +didact,didacts +didactic,didactics +didacticist,didacticists +didactyl,didactyls +didal,didals +didapper,didappers +didcap,didcaps +diddle,diddles +diddler,diddlers +diddly,diddlies +diddly,diddlies +didee,didees +didelphid,didelphids +didemnaketal,didemnaketals +didemnid,didemnids +didendron,didendrons +dideoxide,dideoxides +dideoxynucleotide,dideoxynucleotides +dideoxyribonucleoside,dideoxyribonucleosides +dideoxysugar,dideoxysugars +didgeridoo,didgeridoos +didgeridooer,didgeridooers +didgeridooist,didgeridooists +didicoi,didicois +didicoy,didicoys +didie,dies +dI,dIs +DI,DIs +didjeridoo,didjeridoos +didjeridu,didjeridus +dido,didoes +didomain,didomains +Didonia,Didonias +didrachma,didrachmas +didrachm,didrachms +diduch,diduchs +diduction,diductions +didukh,didukhs +dieback,diebacks +die-cast,die-casts +diecast,diecasts +die,dies,dice +dieffenbachia,dieffenbachias +diegesis,diegeses +diehard,diehards +dielectric,dielectrics +dielectric grease,dielectric greases +dielectron,dielectrons +Diels-Alder reaction,Diels-Alder reactions +diemaker,diemakers +dienamine,dienamines +diencephalon,diencephalons,diencephala +diene,dienes +dienedioate,dienedioates +dienitol,dienitols +dienoate,dienoates +dienofuge,dienofuges +dienoic acid,dienoic acids +dienolate,dienolates +dienol,dienols +dienolide,dienolides +dienone,dienones +dienophile,dienophiles +dienoyl,dienoyls +dienyl,dienyls +dienyne,dienynes +die-off,die-offs +dieoff,dieoffs +dier,diers +dieresis,diereses +diesel engine,diesel engines +diesel generator,diesel generators +dieselization,dieselizations +diesel knock,diesel knocks +diesel motor,diesel motors +dies infaustus,dies infausti +diesinker,diesinkers +diesis,dieses +dies juridicus,dies juridici +diester,diesters +diestock,diestocks +dietarian,dietarians +dietary indiscretion,dietary indiscretions +dietary supplement,dietary supplements +diet,diets +diΓ«t,diΓ«ts +dieter,dieters +dietetist,dietetists +diether,diethers +diethylamide,diethylamides +diethylamino,diethylaminos +diethyldithiocarbamate,diethyldithiocarbamates +diethyl maleate,diethyl maleates +dietician,dieticians +dietine,dietines +dietist,dietists +dietitian,dietitians +dif,difs +difermion,difermions +diff,diffs +diffeomorphism,diffeomorphisms +difference engine,difference engines +difference equation,difference equations +different,differents +differentiability,differentiabilities +differentia,differentiae +differential,differentials +differential equation,differential equations +differential gear,differential gears +differential medium,differential media +differentiator,differentiators +diff file,diff files +difficult nut to crack,difficult nuts to crack +difficult pill to swallow,difficult pills to swallow +difficulty,difficulties +difficulty level,difficulty levels +difflugid,difflugids +difformity,difformities +diffraction,diffractions +diffraction grating,diffraction gratings +diffractionist,diffractionists +diffraction pattern,diffraction patterns +diffractogram,diffractograms +diffractometer,diffractometers +diffractor,diffractors +diffuser,diffusers +diffusibility,diffusibilities +diffusion-barrier,diffusion-barriers +diffusion,diffusions +diffusionist,diffusionists +diffusivity,diffusivities +diffuson,diffusons +difluence,difluences +difluoride,difluorides +difluorine,difluorines +difluoroamine,difluoroamines +difluorocarbene,difluorocarbenes +difluorodiazene,difluorodiazenes +difluoroethane,difluoroethanes +difuran,difurans +digallane,digallanes +digamasellid,digamasellids +digamist,digamists +digamma,digammas +digamy,digamies +digastric,digastrics +dig,digs +dIG,dIGs +DIG,DIGs +digenean,digeneans +digenesis,digeneses +digermane,digermanes +digest,digests +digester,digesters +digestif,digestifs +digestive biscuit,digestive biscuits +digestive,digestives +digestive system,digestive systems +digestive tract,digestive tracts +digestor,digestors +digger,diggers +Digger,Diggers +digger wasp,digger wasps +digging,diggings +digging fork,digging forks +dighter,dighters +Digibox,Digiboxes +digicam,digicams +digilante,digilantes +digipack,digipacks +digipak,digipaks +digipeater,digipeaters +digital camera,digital cameras +digital certificate,digital certificates +digital commons,digital commons +digital computer,digital computers +digital converter box,digital converter boxes +digital divide,digital divides +digital footprint,digital footprints +digital good,digital goods +digital graffiti,digital graffitis +digitalin,digitalins +digitalis,digitales +digital library,digital libraries +digital media,digital medias +digital overhead,digital overheads +digital piano,digital pianos +digital press,digital presses +digital remastering,digital remasterings +digital service provider,digital service providers +digital signal,digital signals +digital still camera,digital still cameras +digital stimulation,digital stimulations +digital subscriber line,digital subscriber lines +digital target,digital targets +digital-to-analog converter,digital-to-analog converters +digital video recorder,digital video recorders +digital watch,digital watches +digital watermark,digital watermarks +digitation,digitations +digit,digits +digitigrade,digitigrades +digitisation,digitisations +digitiser,digitisers +digitized target,digitized targets +digitizer,digitizers +digitorium,digitoriums +digitule,digitules +digladiation,digladiations +diglot,diglots +digluconate,digluconates +diglucuronide,diglucuronides +digluon,digluons +diglyceride,diglycerides +diglycine,diglycines +diglyph,diglyphs +dignation,dignations +dignitary,dignitaries +dignitie,dignities +dignity,dignities +dignotion,dignotions +digon,digons +digoxigenin,digoxigenins +digram,digrams +digraph,digraphs +digraph,digraphs +digression,digressions +digue,digues +diguetid,diguetids +dihadron,dihadrons +dihalide,dihalides +dihedral angle,dihedral angles +dihedral,dihedrals +dihedral group,dihedral groups +dihedron,dihedrons,dihedra +diheterabenzene,diheterabenzenes +dihole,diholes +dihybrid,dihybrids +dihydrate,dihydrates +dihydrazone,dihydrazones +dihydride,dihydrides +dihydridooxidonitrogen,dihydridooxidonitrogens +dihydroanthracene,dihydroanthracenes +dihydrocarbazole,dihydrocarbazoles +dihydrochalcone,dihydrochalcones +dihydrochloride,dihydrochlorides +dihydrocytosine,dihydrocytosines +dihydrodipicolinate,dihydrodipicolinates +dihydrofolate,dihydrofolates +dihydrofuran,dihydrofurans +dihydroimidazole,dihydroimidazoles +dihydroisoxazole,dihydroisoxazoles +dihydrolase,dihydrolases +dihydrooxazine,dihydrooxazines +dihydropyridine,dihydropyridines +dihydropyrimidinase,dihydropyrimidinases +dihydropyrone,dihydropyrones +dihydropyrrole,dihydropyrroles +dihydroquinoline,dihydroquinolines +dihydrosphingomyelin,dihydrosphingomyelins +dihydrothiophene,dihydrothiophenes +dihydroxide,dihydroxides +dihydroxyacridine,dihydroxyacridines +dihydroxyanthraquinone,dihydroxyanthraquinones +dihydroxybenzene,dihydroxybenzenes +dihydroxybenzoate,dihydroxybenzoates +dihydroxybenzoic acid,dihydroxybenzoic acids +dihydroxylation,dihydroxylations +dihydroxyl,dihydroxyls +dihydroxynaphthoquinone,dihydroxynaphthoquinones +dihydroxyphenylalanine,dihydroxyphenylalanines +diiamb,diiambs +diiambus,diiambi +diimidazole,diimidazoles +diimide,diimides +diimine,diimines +diindole,diindoles +diindolylmethane,diindolylmethanes +diiodide,diiodides +diiodoethane,diiodoethanes +diisocyanate,diisocyanates +diisocyante,diisocyantes +diisoquinoline,diisoquinolines +dijet,dijets +dijudicant,dijudicants +dikaryon,dikaryons +dik-dik,dik-diks +dike,dikes +dikelocephalid,dikelocephalids +diker,dikers +diketone,diketones +diketopiperazine,diketopiperazines +diketose,diketoses +dikinase,dikinases +dikka,dikkas +dikkop,dikkops +diktat,diktats +dilactate,dilactates +dilactone,dilactones +dilambdodont,dilambdodonts +dilapidation,dilapidations +dilapidator,dilapidators +dilarid,dilarids +dilatancy,dilatancies +dilatant,dilatants +dilatator,dilatators +dilater,dilaters +dilatino,dilatinos +dilation,dilations +dilatometer,dilatometers +dilaton,dilatons +dilator,dilators +dilaurate,dilaurates +Dilazak,Dilazaks,Dilazak +dildo,dildos +dildo,dildos,dildoes +dilection,dilections +dilemma,dilemmas,dilemmata +dilepton,dileptons +dilettant,dilettants +dilettante,dilettanti,dilettantes +DILF,DILFs +diligence,diligences +dillenid,dillenids +dilleniid,dilleniids +dilling,dillings +dillseed,dillseeds,dillseed +dilly bag,dilly bags +dillybag,dillybags +dilly,dillies +dilly,dillies +dilogarithm,dilogarithms +dilogy,dilogies +dilophosaurid,dilophosaurids +diluent,diluents +dilutant,dilutants +diluter,diluters +dilution,dilutions +dilutionist,dilutionists +diluvialist,diluvialists +Diluvialist,Diluvialists +diluvium,diluviums,diluvia +Dilzak,Dilzaks,Dilzak +dimber damber upright man,dimber damber upright men +dimble,dimbles +dim bulb,dim bulbs +dimbulb,dimbulbs +dime bag,dime bags +dime-bag,dime-bags +dime,dimes +dime novel,dime novels +dimensionalisation,dimensionalisations +dimensionality,dimensionalities +dimensionalization,dimensionalizations +dimensional shingle,dimensional shingles +dimensional stability,dimensional stabilities +dimension,dimensions +dimensioner,dimensioners +dimensionless quantity,dimensionless quantities +dime piece,dime pieces +dimeran,dimerans +dimercaptosuccinate,dimercaptosuccinates +dimer,dimers +dimerisation,dimerisations +dimerizer,dimerizers +dimeroceratid,dimeroceratids +dime store,dime stores +dimestore,dimestores +dimeter,dimeters +dimethoxyflavone,dimethoxyflavones +dimethylamino,dimethylaminos +dimethylaminohydrolase,dimethylaminohydrolases +dimethylammonium,dimethylammoniums +dimethylarginine,dimethylarginines +dimethylation,dimethylations +dimethylbenzanthracene,dimethylbenzanthracenes +dimethylbenzene,dimethylbenzenes +dimethylbutane,dimethylbutanes +dimethylfuran,dimethylfurans +dimethylhydrazine,dimethylhydrazines +dimethylpyridine,dimethylpyridines +dimethylsiloxane,dimethylsiloxanes +dimethylsilyl,dimethylsilyls +dimethyltransferase,dimethyltransferases +dimethyltryptamine,dimethyltryptamines +dimethylurea,dimethylureas +dimetrodon,dimetrodons +dimication,dimications +dimidiation,dimidiations +diminished fifth,diminished fifths +diminished fourth,diminished fourths +diminished interval,diminished intervals +diminished ninth,diminished ninths +diminished octave,diminished octaves +diminished radix complement,diminished radix complements +diminished second,diminished seconds +diminished seventh chord,diminished seventh chords +diminished seventh,diminished sevenths +diminished sixth,diminished sixths +diminished third,diminished thirds +diminished triad,diminished triads +diminisher,diminishers +diminishing,diminishings +diminishment,diminishments +diminuendo,diminuendos +diminution,diminutions +diminutive,diminutives +diminutivisation,diminutivisations +diminutivization,diminutivizations +dimission,dimissions +dimity,dimities +DIMM,DIMMs +dimmer,dimmers +dimmer switch,dimmer switches +dimming,dimmings +dimorph,dimorphs +dimorphid,dimorphids +dimorphism,dimorphisms +dimorphoceratid,dimorphoceratids +dimorphodontid,dimorphodontids +dimorphotheca,dimorphothecas +dimp,dimps +dimpled chad,dimpled chads +dimple,dimples +dimplement,dimplements +dim sim,dim sims +dimuon,dimuons +dimwit,dimwits +dimyarian,dimyarians +dimyid,dimyids +dinarchy,dinarchies +dinar,dinars +Dinarization,Dinarizations +din,dins +dineolignan,dineolignans +dineolignane,dineolignanes +diner,diners +dinette,dinettes +dineutron,dineutrons +ding-a-ling,ding-a-lings +dingaling,dingalings +dingbat,dingbats +dingbatter,dingbatters +ding,dings +ding,dings +ding,dings +ding dong,ding dongs +ding-dong,ding-dongs +dingdong,dingdongs +ding-dong ditch,ding-dong ditches +dinge,dinges +dinger,dingers +dingey,dingeys +dinghy,dinghies +dingleberry,dingleberries +dingle,dingles +dinglehopper,dinglehoppers +dingo,dingos,dingoes +dingthrift,dingthrifts +dingus,dinguses +dingwad,dingwads +dingy,dingies +dingy skipper,dingy skippers +dinichthyid,dinichthyids +dining car,dining cars +dining facility,dining facilities +dining hall,dining halls +dining-hall,dining-halls +dining leaf,dining leaves +dining needle,dining needles +dining room,dining rooms +dining-room,dining-rooms +dining table,dining tables +dinitrate,dinitrates +dinitride,dinitrides +dinitrile,dinitriles +dinitroaniline,dinitroanilines +dinitrobenzene,dinitrobenzenes +dinitrophenol,dinitrophenols +dinitrophenylhydrazine,dinitrophenylhydrazines +dinitrotoluene,dinitrotoluenes +dink,dinks +dinmont,dinmonts +dinner hour,dinner hours +dinner-hour,dinner-hours +dinnerhour,dinnerhours +dinner jacket,dinner jackets +dinner lady,dinner ladies +dinner party,dinner parties +dinner plate,dinner plates +dinnerplate,dinnerplates +dinner shirt,dinner shirts +dinner suit,dinner suits +dinner table,dinner tables +dinner time,dinner times +dinner-time,dinner-times +dinnertime,dinnertimes +dinocarid,dinocarids +dinocephalian,dinocephalians +dinoceratan,dinoceratans +dinocyst,dinocysts +dino,dinos +DINO,DINOs +dinoflagellate,dinoflagellates +dinomaniac,dinomaniacs +dinomastigote,dinomastigotes +dinomyid,dinomyids +dinophile,dinophiles +dinophyte,dinophytes +dinopid,dinopids +dinornithid,dinornithids +dinosaur,dinosaurs +dinosaurian,dinosaurians +dinosauriform,dinosauriforms +dinosauromorph,dinosauromorphs +dinospore,dinospores +dinothere,dinotheres +dinotherium,dinotheriums +dinoxide,dinoxides +dinucleophile,dinucleophiles +dinucleosome,dinucleosomes +dinucleotide,dinucleotides +dinuncleotide,dinuncleotides +diocesan,diocesans +diocese,dioceses +dioch,diochs +diocotron instability,diocotron instabilities +diode,diodes +diodelaser,diodelasers +diodont,diodonts +diodontid,diodontids +diΕ“cese,diΕ“ceses +diogenid,diogenids +diogenite,diogenites +diolate,diolates +diol,diols +diolefin,diolefins +diolein,dioleins +diomedeid,diomedeids +dionaea,dionaeas +dione,diones +dionysia,dionysias +dionysia,dionysias +dioperad,dioperads +Diophantine equation,Diophantine equations +diopsid,diopsids +diopside,diopsides +diopter,diopters +diopteric aberration,diopteric aberrations +dioptid,dioptids +dioptometer,dioptometers +dioptre,dioptres +dioptric,dioptrics +dioptry,dioptries +diorama,dioramas +diorism,diorisms +diorite,diorites +diorthosis,diorthoses +diosphenol,diosphenols +diota,diotas,diotae +dioxaborolane,dioxaborolanes +dioxane,dioxanes +dioxanone,dioxanones +dioxepine,dioxepines +dioxepino,dioxepinos +dioxetane,dioxetanes +dioxgyenase,dioxgyenases +dioxide,dioxides +dioxin,dioxins +dioxindole,dioxindoles +dioxirane,dioxiranes +dioxocane,dioxocanes +dioxolan,dioxolans +dioxolane,dioxolanes +dioxolanone,dioxolanones +dioxole,dioxoles +dioxydithiomolybdate,dioxydithiomolybdates +dioxygenase,dioxygenases +dioxygenyl,dioxygenyls +dipchick,dipchicks +dip,dips +dip,dips +dipeptidase,dipeptidases +dipeptide,dipeptides +diphenanthrene,diphenanthrenes +diphenol,diphenols +diphenoloxidase,diphenoloxidases +diphenylbutylpiperidine,diphenylbutylpiperidines +diphenylcyclopropenone,diphenylcyclopropenones +diphenyleneiodonium,diphenyleneiodoniums +diphenylethylene,diphenylethylenes +diphenylmethane,diphenylmethanes +diphenylmethylpiperazine,diphenylmethylpiperazines +diphenyltetrazolium,diphenyltetrazoliums +diphenylurea,diphenylureas +diphone,diphones +diphosphatase,diphosphatases +diphosphate,diphosphates +diphosphide,diphosphides +diphosphine,si +diphosphoglycerate,diphosphoglycerates +diphosphoinositide,diphosphoinositides +diphosphokinase,diphosphokinases +diphosphonate,diphosphonates +diphosphonite,diphosphonites +diphosphonucleoside,diphosphonucleosides +diphosphooligosaccharide,diphosphooligosaccharides +diphosphopyridine nucleotide,diphosphopyridine nucleotides +diphosphotransferase,diphosphotransferases +diphoton,diphotons +diphthongation,diphthongations +diphthong,diphthongs +diphthongisation,diphthongisations +diphthongization,diphthongizations +diphyodont,diphyodonts +diphyozooid,diphyozooids +di-pimethane rearrangement,di-pimethane rearrangements +dipinto,dipinti +dipion,dipions +diple,diples +diplegic,diplegics +dipleidoscope,dipleidoscopes +diplexer,diplexers +diplocaulid,diplocaulids +diplocercid,diplocercids +diplococcus,diplococci +diplodactylid,diplodactylids +diplodocid,diplodocids +diplodocoid,diplodocoids +diplodocus,diplodocuses +diploe,diploes +diploΓ«,diploΓ«s +diplogyniid,diplogyniids +diploid,diploids +diploidization,diploidizations +diplomacy,diplomacies +diploma,diplomas,diplomata +diploma mill,diploma mills +diplomat,diplomats +diplomate,diplomates +diplomatic bag,diplomatic bags +diplomatic flu,diplomatic flus +diplomatic mission,diplomatic missions +diplomatic pouch,diplomatic pouches +diplomatics,diplomatics +diplomatist,diplomatists +diplommatinid,diplommatinids +diplomystid,diplomystids +diplont,diplonts +diplophyte,diplophytes +diplopia,diplopias +diplopod,diplopods +diplosegment,diplosegments +diplosome,diplosomes +diplostemonous,diplostemonouss +diplotriaenid,diplotriaenids +dipluran,diplurans +diplurid,diplurids +dipnoan,dipnoans +dipnorhynchid,dipnorhynchids +dipod,dipods +dipodid,dipodids +dipody,dipodies +dipolarophile,dipolarophiles +dipole antenna,dipole antennas +dipole,dipoles +dipole wave,dipole waves +dipositronium,dipositroniums +dipped candle,dipped candles +dipped headlight,dipped headlights +dipper,dippers +Dipper,Dippers +dipperful,dipperfuls,dippersful +dipping needle,dipping needles +dipping tank,dipping tanks +diprionid,diprionids +diprosopus,diprosopuses +diprotodon,diprotodons +diprotodontid,diprotodontids +diproton,diprotons +dip sector,dip sectors +dipshit,dipshits +dipso,dipsos +dipsomaniac,dipsomaniacs +dipsosis,dipsoses +dipstick,dipsticks +dip stitch,dip stitches +dipswitch,dipswitches +dipteran,dipterans +diptericin,diptericins +dipterid,dipterids +dipterist,dipterists +dipterocarp,dipterocarps +diptote,diptotes +diptych,diptychs +dipwad,dipwads +dipyramid,dipyramids +dipyre,dipyres +dipyridil,dipyridils +dipyridine,dipyridines +dipyridyl,dipyridyls +dipyrrin,dipyrrins +dipyrrole,dipyrroles +dipyrrolizine,dipyrrolizines +dipyrromethene,dipyrromethenes +diquark,diquarks +diquinoxaline,diquinoxalines +Dirac delta function,Dirac delta functions +Dirac fermion,Dirac fermions +diradical,diradicals +diram,dirams +direcshun,direcshuns +direct activist,direct activists +direct broadcast satellite,direct broadcast satellites +direct current,direct currents +direct cut,direct cuts +direct debit,direct debits +direct deposit,direct deposits +directed acyclic word graph,directed acyclic word graphs +directed edge,directed edges +directed graph,directed graphs +directed path,directed paths +directeur sportif,directeur sportifs +direct examination,direct examinations +direct flight,direct flights +direct free kick,direct free kicks +direct initiative,direct initiatives +directional case,directional cases +directional,directionals +direction,directions +Directioner,Directioners +directive,directives +directivity,directivities +direct maternal death,direct maternal deaths +direct object,direct objects +directorate,directorates +director,directors +director-general,directors-general +director's cut,director's cuts +directorship,directorships +director's loan,directors' loans +directory,directories +directory service,directory services +directour,directours +direct primary,direct primaries +direct product,direct products +directress,directresses +directrix,directrices +direct sum,direct sums +direct verb,direct verbs +diremption,diremptions +diretmid,diretmids +dire wolf,dire wolves +dirge,dirges +dirham,dirhams +dirhem,dirhems +dirhm,dirhms +dirhombicosidodecahedron,dirhombicosidodecahedrons +diribonucleotide,diribonucleotides +dirige,diriges +dirigent,dirigents +dirigible,dirigibles +dirigist,dirigistes +diriment impediment,diriment impediments +dirk,dirks +dirk knife,dirk knives +dirndl,dirndls +dirtbag,dirtbags +dirtball,dirtballs +dirt bike,dirt bikes +dirtbike,dirtbikes +dirtboard,dirtboards +dirt-dauber,dirt-daubers +dirt farmer,dirt farmers +dirt file,dirt files +dirtman,dirtmen +dirt nap,dirt naps +dirty blond,dirty blonds +dirty bomb,dirty bombs +dirty cop,dirty cops +dirty girl,dirty girls +Dirty Harry,Dirty Harrys +dirty joke,dirty jokes +dirty look,dirty looks +dirty magazine,dirty magazines +dirty mouth,dirty mouths +dirty old man,dirty old men +dirty Sanchez,dirty Sanchezes +dirty trick,dirty tricks +dirty weekend,dirty weekends +dirty word,dirty words +dirty wound,dirty wounds +disabled,disableds +disabler,disablers +disabuser,disabusers +disaccharidase,disaccharidases +disaccharide,disaccharides +disaccord,disaccords +disacryl,disacryls +disad,disads +disadvantage,disadvantages +disadvauntage,disadvauntages +disadventure,disadventures +disaffiliation,disaffiliations +disaffirmation,disaffirmations +disafforestation,disafforestations +disaggregation,disaggregations +disagreeable,disagreeables +disagreement,disagreements +disagreer,disagreers +disallowance,disallowances +disambiguation,disambiguations +disambiguator,disambiguators +disamenity,disamenities +disanalogy,disanalogies +disannuller,disannullers +disappearance,disappearances +disappearer,disappearers +disappearing act,disappearing acts +disappointer,disappointers +disappointment,disappointments +disappropriation,disappropriations +disapproval,disapprovals +disapprovement,disapprovements +disapprover,disapprovers +disard,disards +disarmer,disarmers +disarrangement,disarrangements +disarray,disarrays +disarticulation,disarticulations +disarticulator,disarticulators +disassembler,disassemblers +disassembly,disassemblies +disassembly line,disassembly lines +disassimilation,disassimilations +disassociator,disassociators +disaster area,disaster areas +disaster,disasters +disaster waiting to happen,disasters waiting to happen +disastre,disastres +disaventure,disaventures +disavowal,disavowals +disavower,disavowers +disbandment,disbandments +disbarment,disbarments +disbelief,disbeliefs +disbeliever,disbelievers +disbenefit,disbenefits +disboscation,disboscations +disbursal,disbursals +disbursement,disbursements +disburser,disbursers +discalceation,discalceations +discant,discants +discard,discards +discarder,discarders +DISC assessment,DISC assessments +disc brake,disc brakes +disc,discs +disc drive,disc drives +discectomy,discectomies +disceptator,disceptators +discerner,discerners +discernment,discernments +discerption,discerptions +discette,discettes +dischargee,dischargees +discharger,dischargers +discharge tube,discharge tubes +discid,discids +discina,discinas +discinid,discinids +disciple,disciples +Disciple,Disciples +discipless,disciplesses +disciplinarian,disciplinarians +discipline,disciplines +discipliner,discipliners +discission,discissions +disc jockey,disc jockeys +disclaimer,disclaimers +disclamation,disclamations +disclimax,disclimaxes +disclination,disclinations +disclose,discloses +discloser,disclosers +disclosure,disclosures +discmag,discmags +Discman,Discmans +disco ball,disco balls +disco biscuit,disco biscuits +discobolus,discoboli +discocyte,discocytes +discoglossid,discoglossids +discography,discographies +discolith,discoliths +discoloration,discolorations +discolorer,discolorers +discolouration,discolourations +discolourer,discolourers +discolourment,discolourments +discombobulation,discombobulations +discomfiture,discomfitures +discomfort,discomforts +discomforter,discomforters +discommender,discommenders +disconfirmation,disconfirmations +disconformity,disconformities +disconnect,disconnects +disconnection,disconnections +disconnector,disconnectors +disconnexion,disconnexions +discontent,discontents +discontentment,discontentments +discontinuance,discontinuances +discontinuation,discontinuations +discontinuee,discontinuees +discontinuer,discontinuers +discontinuity in the flow,discontinuities in the flow +discophile,discophiles +discophore,discophores +discordance,discordances +discordancy,discordancies +discordaunce,discordaunces +Discordian,Discordians +Discordianist,Discordianists +discosauriscid,discosauriscids +disco stick,disco sticks +discotheque,discotheques +discotomy,discotomies +discount department store,discount department stores +discount,discounts +discountenancer,discountenancers +discounter,discounters +discount rate,discount rates +discount store,discount stores +discouragement,discouragements +discourager,discouragers +discourse marker,discourse markers +discourser,discoursers +discoursing,discoursings +discovered attack,discovered attacks +discovered check,discovered checks +discoveree,discoverees +discoverer,discoverers +discovert,discoverts +discoverture,discovertures +discovery request,discovery requests +discreditor,discreditors +discrepance,discrepances +discrepancy,discrepancies +discrepant,discrepants +discrete choice analysis,discrete choice analyses +discrete component,discrete components +discrete Fourier transform,discrete Fourier transforms +discrete metric,discrete metrics +discrete set,discrete sets +discrete topology,discrete topologies +discrete variable,discrete variables +discretisation,discretisations +discretization,discretizations +discriminant,discriminants +discrimination,discriminations +discriminative stimulus,discriminative stimuli +discriminator,discriminators +disc-tongued frog,disc-tongued frogs +disculpation,disculpations +discursion,discursions +discursist,discursists +discus,discuses +discus fish,discus fishes +discussant,discussants +discusser,discussers +discussion,discussions +discussion room,discussion rooms +discussive,discussives +discus thrower,discus throwers +discutient,discutients +disczine,disczines +disdainer,disdainers +disdiaclast,disdiaclasts +disdiapason,disdiapasons +dis,disir +dis,disses +dis-ease,dis-eases +disease,diseases +diseasement,diseasements +disease modifying drug,disease modifying drugs +diseasome,diseasomes +diseconomy,diseconomies +diselenide,diselenides +disembarkation,disembarkations +disembarkee,disembarkees +disembarkment,disembarkments +disembodiment,disembodiments +disemboguement,disemboguements +disemboweler,disembowelers +disemboweling,disembowelings +disemboweller,disembowellers +disembowelling,disembowellings +disembowelment,disembowelments +disenchanter,disenchanters +disendowment,disendowments +disenfranchisement,disenfranchisements +disengage,disengages +disengagement,disengagements +disengager,disengagers +disentanglement,disentanglements +disentangler,disentanglers +disequality,disequalities +disequilibration,disequilibrations +disequilibrium,disequilibria +disestablishmentarian,disestablishmentarians +disestablishment,disestablishments +disesteemer,disesteemers +disexcitation,disexcitations +disfavor,disfavors +disfavourer,disfavourers +disfellowshipment,disfellowshipments +disfiguration,disfigurations +disfigurement,disfigurements +disfigurer,disfigurers +disfix,disfixes +disgorgement,disgorgements +disgorger,disgorgers +disgorging,disgorgings +disgrace,disgraces +disgracer,disgracers +disguise,disguises +disguisement,disguisements +disguiser,disguisers +disguising,disguisings +disguize,disguizes +dishabituation,dishabituations +dish antenna,dish antennae,dish antennas +disharmony,disharmonies +dish bitch,dish bitches +dishcloth,dishcloths +dishclout,dishclouts +dishdasha,dishdashas +dish,dishes +disheartenment,disheartenments +disheritor,disheritors +dishful,dishfuls +dishonesty,dishonesties +dishonnour,dishonnours +dishonorer,dishonorers +dishonoured bill,dishonoured bills +dishonourer,dishonourers +dishpan,dishpans +dish pig,dish pigs +dish rack,dish racks +dishrag,dishrags +dish stand,dish stands +dishstand,dishstands +dish towel,dish towels +dishtowel,dishtowels +dishumor,dishumors +dishware,dishwares +dish washer,dish washers +dishwasher,dishwashers +dishwater blond,dishwater blonds +disiamylborane,disiamylboranes +disilane,disilanes +disilene,disilenes +disilicide,disilicides +disiloxane,disiloxanes +disilyl,disilyls +disilyne,disilynes +disimprovement,disimprovements +disincentive,disincentives +disinfectant,disinfectants +disinfector,disinfectors +disinflation,disinflations +disinformant,disinformants +disinformer,disinformers +disinherison,disinherisons +disinheritor,disinheritors +disinhibitor,disinhibitors +disintegrant,disintegrants +disintegrating link,disintegrating links +disintegration,disintegrations +disintegration energy,disintegration energies +disintegrator,disintegrators +disintegrin,disintegrins +disintermediator,disintermediators +disinterment,disinterments +disinvestment,disinvestments +disjoiner,disjoiners +disjoint union,disjoint unions +disjunct,disjuncts +disjunction,disjunctions +disjunctive,disjunctives +disjunctive syllogism,disjunctive syllogisms +disjunctivist,disjunctivists +disjunctor,disjunctors +disjuncture,disjunctures +disk,disks +disk drive,disk drives +diskectomy,diskectomies +diskette,diskettes +diskette drive,diskette drives +disk image,disk images +disk jockey,disk jockeys +disklabel,disklabels +diskmag,diskmags +diskos,diskoi +diskzine,diskzines +dis legomenon,dis legomena +dislike,dislikes +disliker,dislikers +disliking,dislikings +dislocation,dislocations +dislocator,dislocators +dislodgement,dislodgements +dislodger,dislodgers +dislodgment,dislodgments +dismal science,dismal sciences +dismantlement,dismantlements +disme,dismes +dismemberer,dismemberers +dismembering,dismemberings +dismemberment,dismemberments +dismembrator,dismembrators +dismissal,dismissals +dismissee,dismissees +dismisser,dismissers +dismission,dismissions +dismount,dismounts +dismutase,dismutases +dismutation,dismutations +Disneyland,Disneylands +disobeyal,disobeyals +disobeyer,disobeyers +disobliger,disobligers +disolvate,disolvates +disomy,disomies +disorder,disorders +disordering,disorderings +disordre,disordres +disorganisation,disorganisations +disorganization,disorganizations +disorganizer,disorganizers +disour,disours +disownment,disownments +disparagement,disparagements +disparager,disparagers +disparate,disparates +disparition,disparitions +dispart,disparts +dispatch,dispatches +dispatcher,dispatchers +dispatching,dispatchings +dispatch table,dispatch tables +dispathy,dispathies +dispeller,dispellers +dispender,dispenders +dispensary,dispensaries +dispensationalist,dispensationalists +dispensation,dispensations +dispensator,dispensators +dispensatory,dispensatories +dispense,dispenses +dispenser,dispensers +dispeopler,dispeoplers +dispermy,dispermies +dispersal,dispersals +dispersant,dispersants +disperse phase,disperse phases +disperser,dispersers +dispersion,dispersions +dispersive model,dispersive models +dispersoid,dispersoids +disphenoid,disphenoids +dispiration,dispirations +dispiritment,dispiritments +displaced person,displaced persons +displacement,displacements +displacement ton,displacement tons +displacency,displacencies +displacer,displacers +display case,display cases +display,displays +displayer,displayers +displeaser,displeasers +displosion,displosions +dispoline,dispolines +dispondee,dispondees +disponee,disponees +disponer,disponers +disponibility,disponibilities +disport,disports +disposable,disposables +disposable income,disposable incomes +disposal,disposals +disposall,disposalls +disposer,disposers +dispositif,dispositifs +dispositionalist,dispositionalists +disposition,dispositions +dispositor,dispositors +dispossession,dispossessions +dispossessor,dispossessors +disposure,disposures +dispraiser,dispraisers +dispreader,dispreaders +disproof,disproofs +disproportionation,disproportionations +disproportion,disproportions +disprovability,disprovabilities +disprover,disprovers +dispulsion,dispulsions +disputant,disputants +disputation,disputations +dispute,disputes +disputer,disputers +dispute resolution,dispute resolutions +dispute resolution organization,dispute resolution organizations +disputison,disputisons +disqualification,disqualifications +disqualifier,disqualifiers +disquieter,disquieters +disquisition,disquisitions +disquisitor,disquisitors +disregard,disregards +disregarder,disregarders +disreputable,disreputables +disrespecter,disrespecters +disrober,disrobers +disruptant,disruptants +disrupter,disrupters +disruption,disruptions +disruptor,disruptors +disrupture,disruptures +dissatisfier,dissatisfiers +dissaver,dissavers +diss,disses +dissecter,dissecters +dissection,dissections +dissector,dissectors +disseisee,disseisees +disseisin,disseisins +disseizee,disseizees +disseizin,disseizins +disseizor,disseizors +disseizoress,disseizoresses +disselboom,disselbooms +dissembler,dissemblers +dissembling,dissemblings +disseminator,disseminators +disseminule,disseminules +dissental,dissentals +dissentation,dissentations +dissent,dissents +dissenter,dissenters +dissentient,dissentients +dissention,dissentions +dissepiment,dissepiments +dissertation,dissertations +dissertationist,dissertationists +dissertator,dissertators +disservice,disservices +disseverment,disseverments +dissident,dissidents +dissimilarity,dissimilarities +dissimilation,dissimilations +dissimile,dissimiles +dissimulation,dissimulations +dissimulator,dissimulators +dissimuler,dissimulers +dissipater,dissipaters +dissipation,dissipations +dissipation function,dissipation functions +dissipator,dissipators +dissociation,dissociations +dissociation energy,dissociation energies +dissociation reaction,dissociation reactions +dissociative disorder,dissociative disorders +dissociative,dissociatives +dissociative drug,dissociative drugs +dissociator,dissociators +dissolubility,dissolubilities +dissolution,dissolutions +dissolve,dissolves +dissolvent,dissolvents +dissolver,dissolvers +dissonance,dissonances +dissonancy,dissonancies +dissorophid,dissorophids +diss song,diss songs +diss track,diss tracks +dissuader,dissuaders +dissymmetry,dissymmetries +distaff,distaffs +distaff side,distaff sides +distal convoluted tubule,distal convoluted tubules +distal goal,distal goals +distal phalange,distal phalanges +distance formula,distance formulae +distancer,distancers +distancing,distancings +distannoxane,distannoxanes +distannyne,distannynes +distasture,distastures +distaunce,distaunces +distelfink,distelfinks +distemperature,distemperatures +distemper,distempers +distemperment,distemperments +distender,distenders +distensibility,distensibilities +disthene,disthenes +distich,distichs,distiches +distichia,distichias,distichiae +distichodontid,distichodontids +distie,disties +distillate,distillates +distillation chaser,distillation chasers +distillatory,distillatories +distiller,distillers +distillery,distilleries +distillment,distillments +distinction,distinctions +distinction without a difference,distinctions without a difference +distinctor,distinctors +distinguisher,distinguishers +distinguishment,distinguishments +distomer,distomers +distopia,distopias +distorter,distorters +distortion,distortions +distortionist,distortionists +distracter,distracters +distraction,distractions +distractor,distractors +distrail,distrails +distrainee,distrainees +distrainer,distrainers +distrainor,distrainors +distresser,distressers +distribuend,distribuends +distributary,distributaries +distributer,distributers +distribution board,distribution boards +distribution channel,distribution channels +distribution,distributions +distributionist,distributionists +distribution server,distribution servers +distributive,distributives +distributive lattice,distributive lattices +distributive number,distributive numbers +distributor,distributors +distributorship,distributorships +distributour,distributours +district attorney,district attorneys +district,districts +district nurse,district nurses +distringas,distringases +distro,distros +distruster,distrusters +disturbance,disturbances +disturbance regime,disturbance regimes +disturbaunce,disturbaunces +disturber,disturbers +disty,disties +disubstitution,disubstitutions +disulfane,disulfanes +disulfate,disulfates +disulfide bond,disulfide bonds +disulfide bridge,disulfide bridges +disulfide,disulfides +disulfite,disulfites +disulfonate,disulfonates +disulfuryl,disulfuryls +disulphane,disulphanes +disulphate,disulphates +disulphide,disulphides +disulphonate,disulphonates +disulphuret,disulphurets +disunion,disunions +disunionist,disunionists +disuniter,disuniters +disunity,disunities +disventure,disventures +disyllabic,disyllabics +disyllable,disyllables +ditch,ditches +ditcher,ditchers +dit,dits +dit,dits +diterpene,diterpenes +diterpenoid,diterpenoids +ditheist,ditheists +ditherer,ditherers +dithiane,dithianes +dithiepine,dithiepines +dithietane,dithietanes +dithiin,dithiins +dithioacetal,dithioacetals +dithioacetate,dithioacetates +dithiocane,dithiocanes +dithiocarbamate,dithiocarbamates +dithiocarbonate,dithiocarbonates +dithioerythritol,dithioerythritols +dithiohemiacetal,dithiohemiacetals +dithioketal,dithioketals +dithiolane,dithiolanes +dithiolate,dithiolates +dithiol,dithiols +dithiolene,dithiolenes +dithionate,dithionates +dithionite,dithionites +dithiophosphate,dithiophosphates +dithiothreitol,dithiothreitols +dithyramb,dithyrambs +dithyrambic,dithyrambics +Ditidaht,Ditidahts,Ditidaht +ditionary,ditionaries +ditolyl,ditolyls +ditomyiid,ditomyiids +ditone,ditones +ditransitive,ditransitives +ditransitive verb,ditransitive verbs +ditransitivity,ditransitivities +ditriflate,ditriflates +ditriflation,ditriflations +ditrochee,ditrochees +ditto,dittos +dittography,dittographies +dittohead,dittoheads +dittology,dittologies +ditty bag,ditty bags +ditty box,ditty boxes +ditty,ditties +ditype,ditypes +ditz,ditzes +diulose,diuloses +diuranate,diuranates +diureide,diureides +diuresis,diureses +diuretic,diuretics +diuretick,diureticks +diurnal aberration,diurnal aberrations +diurnal arc,diurnal arcs +diurnal,diurnals +diurnalis,diurnaliss +diurnalist,diurnalists +divacancy,divacancies +diva,dive,divas +divagation,divagations +divan,divans +divarication,divarications +divaricator,divaricators +div,divs +dive bomber,dive bombers +dive computer,dive computers +divedapper,divedappers +dive,dives +divemaster,divemasters +diverb,diverbs +diver,divers +divergence,divergences +divergent gill trama,divergent gill tramas +divergent series,divergent series +diverger,divergers +diversification,diversifications +diversifier,diversifiers +diversion,diversions +diversionist,diversionists +diversity,diversities +diversory,diversories +divertee,divertees +diverter,diverters +diverticle,diverticles +diverticulectomy,diverticulectomies +diverticulum,diverticulums,diverticula +divertimento,divertimentos,divertimenti +divertisement,divertisements +divester,divesters +divestiture,divestitures +divet,divets +divided highway,divided highways +divide,divides +dividence,dividences +dividend,dividends +dividend equilisation reserve,dividend equilisation reserves +divident,dividents +divider,dividers +divi-divi,divi-divi +divi,divis +divinator,divinators +divine,divines +Divine Liturgy,Divine Liturgies +divinement,divinements +divine polity,divine polities +diviner,diviners +divineress,divineresses +divine service,divine services +diving beetle,diving beetles +diving bell,diving bells +diving-bell,diving-bells +diving bell spider,diving bell spiders +diving board,diving boards +diving-board,diving-boards +diving duck,diving ducks +diving header,diving headers +diving knife,diving knifes +diving mask,diving masks +diving petrel,diving petrels +diving-petrel,diving-petrels +diving platform,diving platforms +diving scooter,diving scooters +diving suit,diving suits +diving-suit,diving-suits +diviniid,diviniids +divining rod,divining rods +divinistre,divinistres +divinor,divinors +divinour,divinours +divisibility sequence,divisibility sequences +divisible,divisibles +divisional plane,divisional planes +divisioner,divisioners +division level,division levels +division ring,division rings +division sign,division signs +diviso,divisos +divisome,divisomes +divisor,divisors +divorce,divorces +divorcΓ©,divorcΓ©s +divorced kid,divorced kids +divorcee,divorcees +divorcΓ©e,divorcΓ©es +divorcement,divorcements +divorcer,divorcers +divot,divots +divulgater,divulgaters +divulgation,divulgations +divulgence,divulgences +divulsion,divulsions +divvie,divvies +divvie,divvies +divvy,divvies +divvy,divvies +divvy duck,divvy ducks +divvy van,divvy vans +diwaniya,diwaniyas +dixer,dixers +dixey,dixeys +dixid,dixids +Dixiecrat,Dixiecrats +dixie cup,dixie cups +Dixie Cup,Dixie Cups +dixie,dixies +DIYer,DIYers +diyne,diynes +dizi,dizis +dizzard,dizzards +dizzen,dizzens +djadochtatheriid,djadochtatheriids +DJ,DJs +djebel,djebels +djeli,djelis +djellaba,djellabas +djellabah,djellabahs +djembe,djembes +djereed,djereeds +djerrid,djerrids +djin,djins +djinn,djinns +djinnee,djinnees +djinni,djinnis +djoundi,djounoud +Djungarian hamster,Djungarian hamsters +d/l,d/ls +dl,dls +D/L,D/Ls +DL,DLs +DLT,DLTs +DMZ host,DMZ hosts +DNA ladder,DNA ladders +DNA ligase,DNA ligases +DNA microarray,DNA microarrays +DNase,DNases +DNA sequence,DNA sequences +DNA snippet,DNA snippets +DNA virus,DNA viruses +DNB,DNBs +D-notice,D-notices +DNQ,DNQs +dNTP,dNTPs +doab,doabs +doability,doabilities +do-all,do-alls +do-badder,do-badders +dobber,dobbers +dobbin,dobbins +dobby,dobbies +dobchick,dobchicks +dob,dobs +Doberman,Dobermans +Dobermann,Dobermanns +Dobermann Pinscher,Dobermann Pinschers +Doberman pinscher,Doberman pinschers +Doberman Pinscher,Doberman Pinschers +dobra,dobras +dobro,dobros +dobson,dobsons +dobsonfly,dobsonflies +Dobsonian,Dobsonians +Dobsonian telescope,Dobsonian telescopes +dobule,dobules +doc,docs +doc,docs +docent,docents +docetist,docetists +dochmius,dochmii +dockage,dockages +dock,docks +dock,docks +dock,docks +dock,docks +docker,dockers +docker,dockers +docket,dockets +docketer,docketers +docketing,docketings +dockhand,dockhands +docking,dockings +docking station,docking stations +dockland,docklands +docklander,docklanders +dockmackie,dockmackies +dockmaster,dockmasters +dockominium,dockominiums +dockside,docksides +dockworker,dockworkers +dockyard,dockyards +doco,docos +docodont,docodonts +docodontid,docodontids +docosahexaenoyl,docosahexaenoyls +docosane,docosanes +docosanoid,docosanoids +docosanoyl,docosanoyls +docosatriene,docosatrienes +docosenoate,docosenoates +docosenoyl,docosenoyls +docquet,docquets +doctoral thesis,doctoral theses +doctorand,doctorands +doctorate,doctorates +doctor blade,doctor blades +doctor,doctors +Doctor,Doctors +doctorer,doctorers +doctoress,doctoresses +doctorfish,doctorfishes,doctorfish +Doctor of Arts,Doctors of Arts +Doctor of Musical Arts,Doctors of Musical Arts +Doctor of Philosophy,Doctors of Philosophy +doctor's certificate,doctor's certificates +doctorship,doctorships +doctour,doctours +doctress,doctresses +doctrinaire,doctrinaires +doctrinal,doctrinals +doctrinalism,doctrinalisms +doctrinarian,doctrinarians +doctrination,doctrinations +doctrine,doctrines +doctrinism,doctrinisms +doctype,doctypes +docucam,docucams +docu,docus +docudrama,docudramas +docufantasy,docufantasies +docufilm,docufilms +documentalist,documentalists +documentarian,documentarians +documentarist,documentarists +documentary,documentaries +document camera,document cameras +document,documents +documenter,documenters +document management system,document management systems +Document Object Model,Document Object Models +do-dad,do-dads +dodad,dodads +doddart,doddarts +dodder,dodders +dodderer,dodderers +doddle,doddles +dod,dods +dod,dods +dodecadactylum,dodecadactyla +dodecadodecahedron, dodecadodecahedra ,dodecadodecahedrons +dodecagon,dodecagons +dodecagrid,dodecagrids +dodecahedron,dodecahedra,dodecahedrons +dodecahydrate,dodecahydrates +dodecamer,dodecamers +dodecameter,dodecameters +dodecane,dodecanes +dodecanethiol,dodecanethiols +dodecanoic acid,dodecanoic acids +dodecanol,dodecanols +dodecanoyl,dodecanoyls +dodecaoxide,dodecaoxides +dodecapeptide,dodecapeptides +dodecaphonist,dodecaphonists +dodecastyle,dodecastyles +dodecasyllable,dodecasyllables +dodecatemory,dodecatemories +dodecenoic acid,dodecenoic acids +dodecicosidodecahedron,dodecicosidodecahedrons +dodgeballer,dodgeballers +dodge,dodges +dodgem,dodgems +dodger,dodgers +Dodger,Dodgers +dodging,dodgings +dodipoll,dodipolls +dodkin,dodkins +dodman,dodmans +dodo bird,dodo birds +dodo,dodoes,dodos +do do,do dos +do,dos +do,dos +doe,does +doegling,doeglings +doeling,doelings +doe party,doe parties +doer,doers +doeskin,doeskins +doffer,doffers +dog and bone,dog and bones +dog and cat,dogs and cats +dogan,dogans +Dogan,Dogans +dog and pony show,dog and pony shows +dog-and-pony show,dog-and-pony shows +dogate,dogates +dog bag,dog bags +dogbane,dogbanes +dogberry,dogberries +Dogberry,Dogberries +dog biscuit,dog biscuits +dogbolt,dogbolts +dogbolt,dogbolts +dog bone,dog bones +dogbone,dogbones +dog bone spanner,dog bone spanners +dog bone wrench,dog bone wrenches +dogbreath,dogbreaths +dog-brier,dog-briers +dogcart,dogcarts +dogcatcher,dogcatchers +dog-child,dog-children +dog collar,dog collars +dog day,dog days +dog,dogs +dog door,dog doors +dog-ear,dog-ears +dogear,dogears +dogeate,dogeates +doge,doges,dogi +dogend,dogends +dog-faced baboon,dog-faced baboons +dogface,dogfaces +dog fight,dog fights +dog-fight,dog-fights +dogfight,dogfights +dogfighter,dogfighters +dogfish,dogfish,dogfishes +dogfood,dogfoods +dog-fox,dog-foxes +dogfucker,dogfuckers +dogge,dogges +dogger,doggers +doggerel,doggerels +doggerman,doggermen +doggery,doggeries +doggess,doggesses +dogget,doggets +doggie bag,doggie bags +doggie,doggies +doggie door,doggie doors +dogging,doggings +doggrel,doggrels +dog guide,dog guides +doggy bag,doggy bags +doggy,doggies +doggy woggy,doggy woggies +doghead,dogheads +doghole,dogholes +dog hook,dog hooks +dog house,dog houses +doghouse,doghouses +dogie,dogies +dogielinotid,dogielinotids +dog in the hunt,dogs in the hunt +dog in the manger,dogs in mangers +dogleg,doglegs +dogling,doglings +doglock,doglocks +dogma,dogmas,dogmata +dogman,dogmen +dogmatic,dogmatics +dogmatician,dogmaticians +dogmatism,dogmatisms +dogmatist,dogmatists +dogmatizer,dogmatizers +dog musher,dog mushers +dognapper,dognappers +dognapping,dognappings +Dogo Argentino,Dogos Argentinos +do-gooder,do-gooders +dogooder,dogooders +do-goodery,do-gooderies +do-goodism,do-goodisms +dogophile,dogophiles +dogpile,dogpiles +dogpiler,dogpilers +dog pound,dog pounds +dog rose,dog roses +dogrose,dogroses +dog run,dog runs +dogs-bane,dogs-banes +dogsbody,dogsbodies +dog's breakfast,dog's breakfasts +dog scooter,dog scooters +dog's dinner,dog's dinners +dogshank,dogshanks +dogshore,dogshores +dogsitter,dogsitters +dogskin,dogskins +dogsled,dogsleds +dog's life,dogs' lives +dog soldier,dog soldiers +dog tag,dog tags +dog-tooth,dog-teeth +dogtooth,dogteeth +dog tooth,dog teeth,dog tooths +dogtrot,dogtrots +dogvane,dogvanes +dogwalker,dogwalkers +dogwash,dogwashes +dog watch,dog watches +dogwatch,dogwatches +dog whelk,dog whelks +dogwhelk,dogwhelks +dogwhip,dogwhips +dog whistle,dog whistles +dogwood,dogwoods +dogy,dogies +dog year,dog years +DOHC,DOHCs +doh,dohs +dohickey,dohickeys +doid,doids +doilem,doilems +doily,doilies +doing,doings +doink,doinks +doit,doits +do-it-herselfer,do-it-herselfers +doitkin,doitkins +do-it-yourselfer,do-it-yourselfers +dojigger,dojiggers +dojocho,dojochos +dojo,dojos,dojo +dokda,dokdas,dokda +doko,dokos +dolabra,dolabrae +dolcetto,dolcettos +dol,dols +dole bludger,dole bludgers +dolebludger,dolebludgers +doleite,doleites +dolerite,dolerites +dolia,dolias +dolichocephalic,dolichocephalics +dolichoderine,dolichoderines +dolichoic acid,dolichoic acids +dolichol,dolichols +dolichomacrostomid,dolichomacrostomids +dolichometopid,dolichometopids +dolichopodid,dolichopodids +dolichosaur,dolichosaurs +doline,dolines +doliolid,doliolids +do-little,do-littles +dolium,dolia +dollar bill,dollar bills +dollar day,dollar days +dollardee,dollardees +dollar,dollars +dollarfish,dollarfishes,dollarfish +dollar sign,dollar signs +dollar store,dollar stores +doll,dolls +dollhouse,dollhouses +dollmaker,dollmakers +dollman,dollmans +dollop,dollops +doll's house,doll's houses +dolly bird,dolly birds +dolly-bird,dolly-birds +dollybird,dollybirds +dolly-boy,dolly-boys +dolly,dollies +dolly grip,dolly grips +dolly knot,dolly knots +dolly mixture,dolly mixtures +dollymop,dollymops +Dolly Parton,Dolly Partons +dolly shop,dolly shops +Dolly Varden cake,Dolly Varden cakes +Dolly Varden,Dolly Vardens +dolly zoom,dolly zooms +dolmade,dolmades +dolma,dolmas +dolman,dolmans +dolmen,dolmens +dolmus,dolmuses +dolmush,dolmushes +doloire,doloires +dolomitization,dolomitizations +do loop,do loops +dolor,dolors +dolorimeter,dolorimeters +dolos,dolosse +dolostone,dolostones +dolour,dolours +dolphinarium,dolphinariums +dolphin,dolphins +dolphin,dolphins +dolphinet,dolphinets +dolphinfish,dolphinfishes +dolphin hugger,dolphin huggers +dolphin striker,dolphin strikers +dolsot,dolsots +dolt,dolts +domain,domains +domainer,domainers +domain hack,domain hacks +domain name,domain names +domain name server,domain name servers +domain name service,domain name services +domain of discourse,domains of discourse +domain-specific language,domain-specific languages +domain wall,domain walls +domatium,domatia +dom,doms +dome,domes +dome light,dome lights +domesday,domesdays +domesman,domesmen +domesticant,domesticants +domesticate,domesticates +domestication,domestications +domesticator,domesticators +domestic cat,domestic cats +domestic dispute,domestic disputes +domestic,domestics +domestic duck,domestic ducks +domestic goddess,domestic goddesses +domesticity,domesticities +domestic partnership,domestic partnerships +domestic pigeon,domestic pigeons +domestic policy council,domestic policy councils +domestic servant,domestic servants +domestic sheep,domestic sheep +domestique,domestiques +domett,dometts +domicile,domiciles +domiciliar,domiciliars +domiciliary,domiciliaries +domification,domifications +domina,dominas +dominance,dominances +dominand,dominands +dominant,dominants +dominant seventh chord,dominant seventh chords +dominate,dominates +dominating set,dominating sets +domination,dominations +domination line,domination lines +dominator,dominators +dominatour,dominatours +dominatrix,dominatrices,dominatrixes +dominecker,domineckers +domine,domines +dominical,dominicals +Dominican,Dominicans +Dominicanism,Dominicanisms +dominicker,dominickers +dominie,dominies +dominion,dominions +dominionist,dominionists +Dominique,Dominiques +domino computer,domino computers +domino costume,domino costumes +domino,dominos,dominoes +dominus,domini +domkop,domkops +domme,dommes +dommy,dommies +domovoi,domovois +domovoy,domovoys +Dom Pedro,Dom Pedros +donacid,donacids +donage,donages +donair,donairs +Donald Duck,Donald Ducks +donary,donaries +donatary,donataries +donat,donats +donat,donats +donatee,donatees +donation,donations +donatist,donatists +Donatist,Donatists +donative,donatives +donator,donators +donatory,donatories +donatour,donatours +donatrix,donatrices +do-naught,do-naughts +donax,donaxes +doncella,doncellas +don,dons +done deal,done deals +donee,donees +donek,doneks +doneness,donenesses +doner,doners +doner kebab,doner kebabs +doney,doneys +donga,dongas +donga,dongas +dong,dongs +dong,dongs +donger,dongers +donger,dongers +dongle,dongles +donjon,donjons +donk bet,donk bets +donk,donks +donkey bid,donkey bids +donkey boiler,donkey boilers +donkey cock,donkey cocks +donkeycock,donkeycocks +donkey dick,donkey dicks +donkeydick,donkeydicks +donkey,donkeys +donkey fringe,donkey fringes +donkey jacket,donkey jackets +donkeyman,donkeymen +donkey pump,donkey pumps +donkey punch,donkey punches +donkey-punch,donkey-punches +donkeypunch,donkeypunches +donkey voter,donkey voters +donna,donnas +donnybrook,donnybrooks +donorcycle,donorcycles +donor,donors +donorship,donorships +do-nothing,do-nothings +donour,donours +Don Quixote,Don Quixotes +donship,donships +don't,don'ts +donut,donuts +donut hole,donut holes +donzel,donzels +doob,doobs +doober,doobers +doobie,doobies +doobry,doobries +doocot,doocots +doo-dad,doo-dads +doodad,doodads +doodah,doodahs +dood,doods +doodlebug,doodlebugs +doodlebugger,doodlebuggers +doodle,doodles +doodler,doodlers +doodling,doodlings +doodoge,doodoges +doo,doos +doof,doofs +doof,doofs +doofer,doofers +doofoid,doofoids +doofus,doofuses,doofi +doohickey,doohickeys +doojigger,doojiggers +dook,dooks +dookie,dookies +dookie hole,dookie holes +doolie,doolies +dooly,doolies +doomage,doomages +doom-and-gloomer,doom-and-gloomers +doomer,doomers +Doomer,Doomers +doomsayer,doomsayers +doomsdate,doomsdates +doomsday device,doomsday devices +Doomsday Device,Doomsday Devices +doomsday,doomsdays +doomsday event,doomsday events +doomsday weapon,doomsday weapons +doomsman,doomsmen +doomster,doomsters +doona,doonas +Doonhamer,Doonhamers +doop,doops +doorbell,doorbells +doorbuster,doorbusters +doorcase,doorcases +door chain,door chains +doorcheek,doorcheeks +door closer,door closers +door,doors +doore,doores +door frame,door frames +door-frame,door-frames +doorframe,doorframes +door game,door games +doorgame,doorgames +dooring,doorings +doorjamb,doorjambs +doorkeeper,doorkeepers +doorknob,doorknobs +doorknock,doorknocks +doorknocker,doorknockers +doorline,doorlines +doormaker,doormakers +doorman,doormen +doormat,doormats +door nail,door nails +door-nail,door-nails +doornail,doornails +doorperson,doorpersons,doorpeople +doorplate,doorplates +doorpost,doorposts +door prize,door prizes +door-prize,door-prizes +door pump,door pumps +door seal,door seals +doorsill,doorsills +doorslab,doorslabs +doorstead,doorsteads +doorstep,doorsteps +doorstepper,doorsteppers +doorstone,doorstones +doorstop,doorstops +doorstopper,doorstoppers +doorway,doorways +doorwoman,doorwomen +dooryard,dooryards +doosh,dooshs +doosra,doosras +do-over,do-overs +doozer,doozers +doozie,doozies +doozy,doozies +dopant,dopants +dop,dops +dope fiend,dope fiends +dopefiend,dopefiends +dopehead,dopeheads +doper,dopers +dope sheet,dope sheets +dope-sheet,dope-sheets +dopester,dopesters +dopiaza,dopiazas +doppelganger,doppelgangers +doppelgΓ€nger,doppelgΓ€ngers +Dopper,Doppers +doppio,doppios +Dopp kit,Dopp kits +Doppler effect,Doppler effects +dopplergram,dopplergrams +Doppler shift,Doppler shifts +doquet,doquets +doradid,doradids +dorado,dorados +do-rag,do-rags +dorama,doramas +dorbank,dorbanks +dorbeetle,dorbeetles +dor,dors +dor,dors +doree,dorees +dorgi,dorgis +dorhawk,dorhawks +Dorian,Dorians +Doricism,Doricisms +dorid,dorids +doridid,doridids +dorippid,dorippids +Dorism,Dorisms +dork,dorks +dorkface,dorkfaces +Dorking fowl,Dorking fowls +dorkwad,dorkwads +dormant volcano,dormant volcanoes +dormant window,dormant windows +dorm,dorms +dormer,dormers +dormer window,dormer windows +dormer-window,dormer-windows +dormition,dormitions +dormitive,dormitives +dormitive principle,dormitive principles +dormitive virtue,dormitive virtues +dormitory,dormitories +dormmate,dormmates +dormobile,dormobiles +dormouse,dormice +dorn,dorns +dornick,dornicks +dornock,dornocks +doronicum,doronicums +Dorothy bag,Dorothy bags +dorp,dorps +dorpie,dorpies +dorr,dorrs +dorrhawk,dorrhawks +dorsal,dorsals +dorsal fin,dorsal fins +dorsalization,dorsalizations +dorsal vessel,dorsal vessels +dorsar,dorsars +dorse,dorses +dorse,dorses +dorsel,dorsels +dorser,dorsers +dorsibranchiate,dorsibranchiates +dorsiflexion,dorsiflexions +dorsiflexor,dorsiflexors +dorsoflexion,dorsoflexions +dorsum,dorsa +dorter,dorters +dortoir,dortoirs +dortour,dortours +dorture,dortures +dory,dories +dory,dories +doryphoros,doryphoroi +dosado,dosados +dosage,dosages +dose,doses +dosel,dosels +dosemeter,dosemeters +DOS extender,DOS extenders +dosha,doshas +dosimeter,dosimeters +dosing,dosings +doss,dosses +dossel,dossels +dosser,dossers +dosser,dossers +doss-house,doss-houses +dosshouse,dosshouses +dossier,dossiers +dossil,dossils +dotage,dotages +dotant,dotants +dotard,dotards +dotation,dotations +dot ball,dot balls +dot bomb,dot bombs +dot-bomb,dot-bombs +dotbomb,dotbombs +dot-com boom,dot-com booms +dot com,dot coms +dot-com,dot-coms +dotcom,dotcoms +dot-commer,dot-commers +dot,dots +dot,dots +dote,dotes +dotel,dotels +doter,doters +dotfile,dotfiles +dothead,dotheads +dotid,dotids +doting,dotings +dotless i,dotless ies +dot matrix printer,dot matrix printers +dotoid,dotoids +dot product,dot products +dotriacontane,dotriacontanes +dottard,dottards +dotted bar line,dotted bar lines +dotted line,dotted lines +dotterel,dotterels +dottle,dottles +dot to dot,dot to dots +Dotto train,Dotto trains +dottrel,dottrels +douane,douanes +douanier,douaniers +douar,douars +double acrostic,double acrostics +double act,double acts +double action,double actions +double-action,double-actions +double acute accent,double acute accents +double adapter,double adapters +double adaptor,double adaptors +double agent,double agents +double A-side,double A-sides +double bar line,double bar lines +double-barreled shotgun,double-barreled shotguns +double-barrelled shotgun,double-barrelled shotguns +double barrel vault,double barrel vaults +double bass,double basses +double bed,double beds +double belly buster,double belly busters +double besom pocket,double besom pockets +double biceps,double biceps +double bill,double bills +double bind,double binds +double-blind test,double-blind tests +double bluff,double bluffs +double bogey,double bogeys +double boiler,double boilers +double bond,double bonds +double break,double breaks +double-break,double-breaks +double bridle,double bridles +double check,double checks +double chin,double chins +double click,double clicks +double-click,double-clicks +double-count,double-counts +double cousin,double cousins +doublecross,doublecrosses +double-crosser,double-crossers +double crossover,double crossovers +double dagger,double daggers +double dare,double dares +double date,double dates +double deal,double deals +double-dealer,double-dealers +double-decker bus,double-decker buses +double-decker,double-deckers +doubledecker,doubledeckers +double decomposition,double decompositions +double dildo,double dildoes +double-dip,double-dips +double dispatch,double dispatches +double-dome,double-domes +doubledome,doubledomes +double dong,double dongs +double-double-double,double-double-doubles +double double,double doubles +double-double,double-doubles +double,doubles +doublΓ©,doublΓ©s +double dozen,double dozens +doubled pawn,doubled pawns +double dribble,double dribbles +double eagle,double eagles +double-edged sword,double-edged swords +double emulsion,double emulsions +double-ended queue,double-ended queues +double-ender,double-enders +double entendre,double entendres +double-entendre,double-entendres +double exposure,double exposures +double-exposure,double-exposures +double factorial,double factorials +double fault,double faults +double feature,double features +double file,double files +double first,double firsts +double-fisting,double-fistings +double flat,double flats +doubleganger,doublegangers +double grave accent,double grave accents +double gut shot,double gut shots +double-header,double-headers +doubleheader,doubleheaders +double helix,double helixes,double helices +double kiss,double kisses +double life,double lives +double-line whip,double-line whips +double lock standing seam,double lock standing seams +double magnum,double magnums +double malt,double malts +double meaning,double meanings +double modal,double modals +double negative,double negatives +double-nosed andean tiger hound,double-nosed andean tiger hounds +double obelus,double obeli +double open jaw,double open jaws +double-page spread,double-page spreads +double planet,double planets +double play,double plays +double-play,double-plays +double plural,double plurals +double point,double points +double possessive,double possessives +double quasar,double quasars +double-quick,double-quicks +double quote,double quotes +double-quote,double-quotes +doublequote,doublequotes +doubler,doublers +double reed,double reeds +double replacement reaction,double replacement reactions +double-replacement reaction,double-replacement reactions +double-ripper,double-rippers +double room,double rooms +double salt,double salts +double sawbuck,double sawbucks +double scull,double sculls +double S,double S’s +double sharp,double sharps +double sheet bend,double sheet bends +double standard,double standards +double star,double stars +double star system,double star systems +double steal,double steals +double stop,double stops +double straddle,double straddles +double switch,double switches +double take,double takes +double taker,double takers +double tap,double taps +doublet,doublets +doubleton,doubletons +doubletree,doubletrees +double-trouble,double-troubles +double tucker,double tuckers +double turnstile,double turnstiles +double-u,double-ues +double U,double Us +double vertical line,double vertical lines +double whammy,double whammies +double-whammy,double-whammies +double whole note,double whole notes +double-wide,double-wides +doublewide,doublewides +doubleword,doublewords +double yellow line,double yellow lines +doubleyou,doubleyous +doubloon,doubloons +doubloonie,doubloonies +doublure,doublures +doubly labeled water,doubly labeled waters +doubter,doubters +doubting Thomas,doubting Thomases +douc,doucs +doucepere,douceperes +doucet,doucets +douceur,douceurs +douche bag,douche bags +douchebag,douchebags +douchebaggery,douchebaggeries +douche boat,douche boats +douche canoe,douche canoes +douche-canoe,douche-canoes +douchecanoe,douchecanoes +douche,douche +douchefag,douchefags +douche nozzle,douche nozzles +douche-nozzle,douche-nozzles +douchenozzle,douchenozzles +douchewagon,douchewagons +douchi,douchis +doucine,doucines +doucker,douckers +doudouk,doudouks +doufu,doufus +doufuhua,doufuhuas +doughball,doughballs +doughbird,doughbirds +doughboy,doughboys +dougher,doughers +doughface,doughfaces +dough-nut,dough-nuts +doughnut,doughnuts +doughnut hole,doughnut holes +Douglas berry,Douglas berries +douglasiid,douglasiids +douhua,douhuas +douit,douits +doula,doulas +doum fruit,doum fruits +doum palm,doum palms +douncer,douncers +doup,doups +doupe,doupes +douroucouli,douroucoulis +douse,douses +douser,dousers +dousing-chock,dousing-chocks +dousting,doustings +douter,douters +douth,douths +douzaine,douzaines +douzenier,douzeniers +douzepere,douzeperes +dovecot,dovecots +dovecote,dovecotes +dove,doves +dove grey,dove greys +dovehouse,dovehouses +dovekie,dovekies +dovelet,dovelets +doveling,dovelings +dove plant,dove plants +Dove prism,Dove prisms +dovetail,dovetails +dovetailing,dovetailings +dowager,dowagers +dowager's hump,dowager's humps,dowagers' humps +dowd,dowds +dow,dows +dowel,dowels +dower,dowers +dowery,doweries +dowitcher,dowitchers +down-and-outer,down-and-outers +down antiquark,down antiquarks +downbeat,downbeats +down bow,down bows +downburst,downbursts +downcall,downcalls +downcard,downcards +downcast,downcasts +downcome,downcomes +downcomer,downcomers +downconversion,downconversions +downconverter,downconverters +down,downs +downdraft,downdrafts +downdraught,downdraughts +downdraw,downdraws +downer,downers +downfall,downfalls +downfalling,downfallings +downfault,downfaults +downflow,downflows +downfold,downfolds +downforce,downforces +downgoing,downgoings +downgrade,downgrades +downgrader,downgraders +downgrading,downgradings +downhaul,downhauls +downhiller,downhillers +Downie,Downies +downing,downings +downland,downlands +downlight,downlights +downlighter,downlighters +down line,down lines +down-line,down-lines +downline,downlines +downlink,downlinks +download,downloads +downloader,downloaders +download manager,download managers +downlying,downlyings +downmix,downmixes +downmodulation,downmodulations +down payment,down payments +downpayment,downpayments +downpipe,downpipes +downplayer,downplayers +downpour,downpours +downpressor,downpressors +down quark,down quarks +downrigger,downriggers +downrush,downrushes +downsampler,downsamplers +down-set,down-sets +downset,downsets +down-share,down-shares +downshifter,downshifters +downshock,downshocks +downside,downsides +downsitting,downsittings +downsizer,downsizers +downsizing,downsizings +downslide,downslides +downslope,downslopes +downslur,downslurs +downspout,downspouts +down start,down starts +downstate,downstates +downstater,downstaters +downstroke,downstrokes +downswing,downswings +down tack,down tacks +downthrow,downthrows +downtick,downticks +down time,down times +down-time,down-times +downtime,downtimes +downtoner,downtoners +downtown,downtowns +downtowner,downtowners +downtrend,downtrends +down tube,down tubes +downtube,downtubes +downturn,downturns +downvote,downvotes +downward spiral,downward spirals +downwarp,downwarps +downwash,downwashes +downwelling,downwellings +downwinder,downwinders +dowp,dowps +dowress,dowresses +dowry,dowries +dowse,dowses +dowser,dowsers +dowset,dowsets +dowsing rod,dowsing rods +dowst,dowsts +dowve,dowves +doxology,doxologies +doxycycline,doxycyclines +doxy,doxies +doxy,doxies +doyen,doyens +doyenne,doyennes +doyley,doyleys +doyly,doylies +doze,dozes +dozenal,dozenals +dozenalist,dozenalists +dozen,dozens +dozenth,dozenths +dozer,dozers +d-pad,d-pads +D-pillar,D-pillars +DPO,DPO +D-post,D-posts +draatsi,draatsi +drabber,drabbers +drabbet,drabbets +drabble,drabbles +drabbler,drabblers +drabble-tail,drabble-tails +drab,drabs +drab,drabs +dracaena,dracaenas +drachenfutter,drachenfutters +drachma,drachmas,drachmae,drachmai +drachm,drachms +drachme,drachmes +dracone,dracones +draconettid,draconettids +draconic month,draconic months +Draconist,Draconists +draconitic month,draconitic months +draconologist,draconologists +dracunculus,dracunculi +draft animal,draft animals +draft card,draft cards +draft dodger,draft dodgers +draft,drafts +draftee,draftees +drafter,drafters +drafter's ruler,drafter's rulers +draft horse,draft horses +drafting,draftings +draftnik,draftniks +draftsman,draftsmen +draftsperson,draftspersons,draftspeople +draft stop,draft stops +draftswoman,draftswomen +dragadiddle,dragadiddles +dragbar,dragbars +drag bit,drag bits +drag bunt,drag bunts +dragee,dragees +dragΓ©e,dragΓ©es +drageoir,drageoirs +dragger,draggers +dragging,draggings +draggle-tail,draggle-tails +drag king,drag kings +draglift,draglifts +dragline,draglines +draglink,draglinks +dragman,dragmen +drag-net,drag-nets +dragnet,dragnets +dragoman,dragomans,dragomen +dragon beam,dragon beams +dragon boat,dragon boats +dragon,dragons +dragoness,dragonesses +dragonet,dragonets +dragonette,dragonettes +dragonfish,dragonfishes +dragonfly,dragonflies +dragon fruit,dragon fruits +dragonfruit,dragonfruits +dragonking,dragonkings +dragon lady,dragon ladies +Dragon Li,Dragon Lis +dragonnade,dragonnades +dragon sail,dragon sails +dragonskin,dragonskins +dragonslayer,dragonslayers +dragon tree,dragon trees +dragonwort,dragonworts +dragoonade,dragoonades +dragoon,dragoons +dragooner,dragooners +drag queen,drag queens +dragqueen,dragqueens +drag race,drag races +drag racer,drag racers +drag rope,drag ropes +drag-rope,drag-ropes +drag sail,drag sails +dragster,dragsters +drag strip,drag strips +dragstrip,dragstrips +drainage basin,drainage basins +drainage,drainages +drainage pipe,drainage pipes +drainboard,drainboards +draincock,draincocks +drain,drains +draine,draines +drainer,drainers +draining board,draining boards +drainmaker,drainmakers +drainpipe,drainpipes +drain plug,drain plugs +drainplug,drainplugs +draintile,draintiles +draintrap,draintraps +draisine,draisines +Draize test,Draize tests +drake,drakes +drake,drakes +drama documentary,drama documentaries +dramality,dramalities +drama llama,drama llamas +drama queen,drama queens +dramatic beat,dramatic beats +dramaticism,dramaticisms +dramatic present tense,dramatic present tenses +dramatic structure,dramatic structures +dramatist,dramatists +dramatization,dramatizations +dramatizer,dramatizers +dramaturg,dramaturgs +dramaturge,dramaturges +dramaturgist,dramaturgists +Drambuie,Drambuies +dram,drams +dram,drams +DRAM,DRAMs +dramseller,dramsellers +dramshop,dramshops +dramshopkeeper,dramshopkeepers +drapa,drapur +drape,drapes +draper,drapers +drapet,drapets +draping,drapings +draugh,draughs +draught animal,draught animals +draughtboard,draughtboards +draught,draughts +draughter,draughters +draught excluder,draught excluders +draught horse,draught horses +draughtsboard,draughtsboards +draughtsman,draughtsmen +draughtsperson,draughtspersons,draughtspeople +draughtswoman,draughtswomen +Dravidian,Dravidians +drawback,drawbacks +drawbar,drawbars +drawbench,drawbenches +drawbolt,drawbolts +drawbore,drawbores +drawboy,drawboys +drawbridge,drawbridges +drawcansir,drawcansirs +drawcard,drawcards +drawcord,drawcords +drawdown,drawdowns +draw,draws +drawee,drawees +drawer,drawers +drawerful,drawerfuls,drawersful +drawerknob,drawerknobs +drawfiling,drawfilings +drawgear,drawgears +drawhead,drawheads +drawing board,drawing boards +drawing card,drawing cards +drawing,drawings +drawing hand,drawing hands +drawing pin,drawing pins +drawing room,drawing rooms +drawknife,drawknives +drawlatch,drawlatches +drawl,drawls +drawler,drawlers +drawling,drawlings +drawlink,drawlinks +drawloom,drawlooms +drawmaster,drawmasters +drawnet,drawnets +drawplate,drawplates +draw raise,draw raises +drawrod,drawrods +drawshave,drawshaves +draw sheet,draw sheets +drawsheet,drawsheets +drawspring,drawsprings +drawstring,drawstrings +drawth,drawths +draw-well,draw-wells +draydel,draydels +draydl,draydls +dray,drays +dray,drays +drayman,draymen +drazel,drazels +dread,dreads +dreader,dreaders +dreadful,dreadfuls +dreadlock,dreadlocks +dreadnaught,dreadnaughts +dreadnought,dreadnoughts +dreamboat,dreamboats +dream catcher,dream catchers +dreamcatcher,dreamcatchers +dreamchild,dreamchildren +dream,dreams +dreame,dreames +dreamer,dreamers +dream factory,dream factories +dreamgirl,dreamgirls +dreaming,dreamings +dreaming life,dreaming lives +dreaming track,dreaming tracks +dreamland,dreamlands +dream life,dream lives +dreamscape,dreamscapes +dreamsign,dreamsigns +dream team,dream teams +dreamworld,dreamworlds +drear,drears +dreave,dreaves +dredge,dredges +dredger,dredgers +dree,drees +dreg,dregs +dreidel,dreidels +dreidl,dreidls +dreidle,dreidles +dreikanter,dreikanters +dreissenid,dreissenids +drench,drenches +drench,drenches +drencher,drenchers +drenching,drenchings +drengage,drengages +drepanid,drepanids +drepanidid,drepanidids +drepanosaurid,drepanosaurids +Dresdner,Dresdners +dreshel,dreshels +dress coat,dress coats +dress code,dress codes +dresser,dressers +dresser,dressers +dress form,dress forms +dressing-bell,dressing-bells +dressing case,dressing cases +dressing code,dressing codes +dressing-down,dressing-downs +dressing gown,dressing gowns +dressing room,dressing rooms +dressingroom,dressingrooms +dressing station,dressing stations +dressing stick,dressing sticks +dressing table,dressing tables +Dressler's syndrome,Dressler's syndromes +dressmaker,dressmakers +dressmaker's ham,dressmakers' hams +dress rehearsal,dress rehearsals +dress shield,dress shields +dress-up party,dress-up parties +dretch,dretches +drever,drevers +drevil,drevils +dreydel,dreydels +dreydl,dreydls +dreydle,dreydles +drey,dreys +Dreyer,Dreyers +Dreyfusard,Dreyfusards +DRF,DRFs +dribber,dribbers +dribble,dribbles +dribble glass,dribble glasses +dribbler,dribblers +dribblet,dribblets +drib,dribs +driblet,driblets +dried plum,dried plums +driefat,driefats +drier,driers +driftbolt,driftbolts +drift,drifts +drifter,drifters +driftling,driftlings +drift net,drift nets +driftnet,driftnets +driftpin,driftpins +drift space,drift spaces +driftway,driftways +driftwind,driftwinds +dright,drights +dright,drights +drighten,drightens +drightin,drightins +drilid,drilids +drill bit,drill bits +drillbit,drillbits +drill core,drill cores +drillcore,drillcores +drill down,drill downs +drill,drills +drill,drills +drill,drills +driller,drillers +drill floor,drill floors +drill ground,drill grounds +drillground,drillgrounds +drill hall,drill halls +drilling,drillings +drilling,drillings +drilling rig,drilling rigs +drill instructor,drill instructors +drill jig,drill jigs +drillmaster,drillmasters +drill press,drill presses +drill rig,drill rigs +drill sergeant,drill sergeants +drillship,drillships +drillstock,drillstocks +drinck,drincks +drinkable,drinkables +drink alert,drink alerts +drinkathon,drinkathons +drink driver,drink drivers +drink-driver,drink-drivers +drinke,drinkes +drinker,drinkers +drinker moth,drinker moths +drinkfest,drinkfests +drinkie,drinkies +drinking bout,drinking bouts +drinking-bout,drinking-bouts +drinking,drinkings +drinking fountain,drinking fountains +drinking game,drinking games +drinking horn,drinking horns +drinking-horn,drinking-horns +drinking song,drinking songs +drinking straw,drinking straws +drinking-up time,drinking-up times +drink problem,drink problems +drink run,drink runs +drinky,drinkies +drinkypoo,drinkypoos +drip,drips +drip-dry,drip-dries +drip edge,drip edges +drip gas,drip gases +drip line,drip lines +dripline,driplines +dripper,drippers +dripping pan,dripping pans +dripstick,dripsticks +dripstone,dripstones +drip tip,drip tips +drisheen,drisheens +drivebolt,drivebolts +drive-by download,drive-by downloads +drive-by,drive-bys +driveby,drivebys +drive by shooting,drive by shootings +drive,drives +drive-in,drive-ins +drive-in movie,drive-in movies +driveler,drivelers +driveline,drivelines +driveller,drivellers +driven element,driven elements +drive off,drive offs +drive-off,drive-offs +drivepipe,drivepipes +driver,drivers +driver reviver,driver revivers +driver's licence,driver's licences +driver's license,driver's licenses +driveshaft,driveshafts +drive-through,drive-throughs +drive-thru,drive-thrus +drivetime,drivetimes +drive train,drive trains +drivetrain,drivetrains +drive-volley,drive-volleys +driveway,driveways +driveway moment,driveway moments +drive wheel,drive wheels +drivewheel,drivewheels +driving axle,driving axles +driving examiner,driving examiners +driving iron,driving irons +driving licence,driving licences +driving motor,driving motors +driving range,driving ranges +driving spirit,driving spirits +driving test,driving tests +driving van trailer,driving van trailers +driving wheel,driving wheels +drizzle,drizzles +drock,drocks +drogher,droghers +drogman,drogmans +drogoman,drogomans +drogue,drogues +'droid,'droids +droid,droids +droitzschka,droitzschkas +droll,drolls +droller,drollers +drollery,drolleries +drollist,drollists +dromaeosaur,dromaeosaurs +dromΓ¦osaur,dromΓ¦osaurs +dromaeosaurid,dromaeosaurids +dromΓ¦osaurid,dromΓ¦osaurids +dromaiid,dromaiids +dromedary,dromedaries +drome,dromes +dromeosaur,dromeosaurs +dromiid,dromiids +dromion,dromions +dromomane,dromomanes +dromomerycid,dromomerycids +dromond,dromonds +dromon,dromons +dromornithid,dromornithids +dromos,dromoi +drone-a-thon,drone-a-thons +drone-athon,drone-athons +droneathon,droneathons +drone,drones +drone,drones +dronefly,droneflies +dronepipe,dronepipes +droner,droners +drongo,drongos +drongo,drongos +drongoe,drongoes +droning,dronings +dronkie,dronkies +dronte,drontes +droodle,droodles +droog,droogs +drool bucket,drool buckets +drooler,droolers +droop,droops +drooper,droopers +drooping,droopings +drop back,drop backs +drop-back,drop-backs +dropback,dropbacks +drop-ball,drop-balls +drop bear,drop bears +drop cap,drop caps +drop ceiling,drop ceilings +drop cloth,drop cloths +dropcloth,dropcloths +dropdown,dropdowns +drop-down list,drop-down lists +dropdown list,dropdown lists +drop,drops +dropfile,dropfiles +drop goal,drop goals +drop grommet,drop grommets +drophead coupΓ©,drophead coupΓ©s +drophead,dropheads +drop in,drop ins +drop-in,drop-ins +drop kerb,drop kerbs +drop kick,drop kicks +drop-kick,drop-kicks +dropkick,dropkicks +drop-kicker,drop-kickers +drop-leaf table,drop-leaf tables +droplet,droplets +drop letter,drop letters +drop light,drop lights +droplight,droplights +droplist,droplists +drop-off,drop-offs +dropoff,dropoffs +drop-out,drop-outs +dropout,dropouts +dropout factory,dropout factories +dropped ceiling,dropped ceilings +dropped egg,dropped eggs +dropper,droppers +dropping,droppings +dropping point,dropping points +drop punt,drop punts +drop-scene,drop-scenes +dropseed,dropseeds +dropship,dropships +drop shot,drop shots +dropside,dropsides +dropstone,dropstones +drop top,drop tops +droptop,droptops +drop tower,drop towers +drop volley,drop volleys +dropworm,dropworms +dropwort,dropworts +drop zone,drop zones +dropzone,dropzones +droschke,droschkes +drosera,droseras +droshky,droshkies +drosky,droskies +drosometer,drosometers +drosomycin,drosomycins +drosophila,drosophilas +drosophilid,drosophilids +dross,drosses +drossel,drossels +drostdy,drostdys,drostdies +drotchel,drotchels +drott,drotts +drought,droughts +drouth,drouths +drove,droves +drover,drovers +droveway,droveways +drow,drow +drownage,drownages +drownder,drownders +drowner,drowners +drowning,drownings +drowsing,drowsings +drowth,drowths +drubber,drubbers +drubbing,drubbings +drudge,drudges +drudger,drudgers +drudgey,drudgies,drudgeys +drudgy,drudgies +drug addict,drug addicts +drug baron,drug barons +drug deal,drug deals +drug dealer,drug dealers +drug dog,drug dogs +drug,drugs +drug,drugs +drugger,druggers +drugget,druggets +druggie,druggies +druggist,druggists +druggy,druggies +drug in the market,drugs in the market +drug lab,drug labs +drug lord,drug lords +druglord,druglords +drugmaker,drugmakers +drug on the market,drugs on the market +drug pusher,drug pushers +drugshop,drugshops +drugster,drugsters +drugstore beetle,drugstore beetles +drugstore cowboy,drugstore cowboys +drug store,drug stores +drugstore,drugstores +drugtaker,drugtakers +drug test,drug tests +druid,druids +Druid,Druids +druidess,druidesses +druidism,druidisms +Druidism,Druidisms +Drukpa,Drukpa +drumbeat,drumbeats +drumbeater,drumbeaters +drumbeating,drumbeatings +drum brake,drum brakes +drum cadence,drum cadences +drum,drums +drumette,drumettes +drumfish,drumfishes,drumfish +drumful,drumfuls,drumsful +drumhead court-martial,drumhead court-martials +drum head,drum heads +drumhead,drumheads +drum kit,drum kits +drumkit,drumkits +drumlin,drumlins +drumline,drumlines +drum major,drum majors +drummer,drummers +drummette,drummettes +Drummond light,Drummond lights +drum roll,drum rolls +drumroll,drumrolls +drum set,drum sets +drumset,drumsets +drumslade,drumslades +drum stick,drum sticks +drumstick,drumsticks +drunkalogue,drunkalogues +drunkard,drunkards +drunk driver,drunk drivers +drunk,drunks +drunk tank,drunk tanks +drupe,drupes +drupel,drupels +drupelet,drupelets +druplet,druplets +Druse,Druses +druse,druses,drusen +druther,druthers +Druze,Druze +druzhina,druzhinas +dry abscess,dry abscesses +dryad,dryads +dryandra,dryandras +dryasdust,dryasdusts +drybag,drybags +dry bulb temperature,dry bulb temperatures +dry cell battery,dry cell batteries +dry cell,dry cells +dry cleaner,dry cleaners +dry-cleaner,dry-cleaners +dry closet,dry closets +dry cough,dry coughs +dry dock,dry docks +drydock,drydocks +dry drunk,dry drunks +dryer,dryers +dry eye,dry eyes +dryfat,dryfats +dry film thickness,dry film thicknesses +dry fly,dry flies +drygulcher,drygulchers +dry-heave,dry-heaves +dry hole,dry holes +drying agent,drying agents +drying machine,drying machines +drying time,drying times +dryinid,dryinids +dry lab,dry labs +dry lake,dry lakes +dryland,drylands +dry lunch,dry lunches +dry marker,dry markers +dry martini,dry martinis +dry measure,dry measures +dry nurse,dry nurses +dry-nurse,dry-nurses +dryolestid,dryolestids +dryomyzid,dryomyzids +dryophthorid,dryophthorids +dryopithecid,dryopithecids +dryosaurid,dryosaurids +dry point,dry points +dry powder inhaler,dry powder inhalers +dryptosaurid,dryptosaurids +dry reach,dry reaches +dry riser,dry risers +dry run,dry runs +dry-run,dry-runs +drysalter,drysalters +drysaltery,drysalteries +dryscape,dryscapes +dry season,dry seasons +dry spell,dry spells +drystone,drystones +drysuit,drysuits +dry sump,dry sumps +dryth,dryths +drywaller,drywallers +DS1,DS1s +DS,DSs +DSI,DSIs +DSL,DSLs +dso,dsos +DSP,DSPs +dSph,dSphs +DSQ,DSQs +dsRNA,dsRNAs +DSRV,DSRVs +dsungaripterid,dsungaripterids +DSV,DSVs +DTO,DTOs +DTW,DTWs +duad,duads +dua,duas +dual carriageway,dual carriageways +dual citizenship,dual citizenships +dual-clutch gearbox,dual-clutch gearboxs +dual,duals +dualie,dualies +dualism,dualisms +dualist,dualists +duality,dualities +dualization,dualizations +dual mandate,dual mandates +dual meet,dual meets +dual mode,dual modes +dual number,dual numbers +dual photon absorptiometry,dual photon absorptiometries +dual polyhedron,dual polyhedra +dual primary,dual primaries +dual screen,dual screens +dual space,dual spaces +duan,duans +duarchy,duarchies +duar,duars +duathlete,duathletes +duathlon,duathlons +dubb,dubbs +dubbeltjie,dubbeltjies +dubber,dubbers +dub,dubs +dub,dubs +dub,dubs +dubiosity,dubiosities +dubious honor,dubious honors +Dubliner,Dubliners +dubplate,dubplates +dub sack,dub sacks +dubstepper,dubsteppers +dubtitle,dubtitles +ducat,ducats +ducatoon,ducatoons +Duchenne smile,Duchenne smiles +duchess,duchesses +duchy,duchies +duck ant,duck ants +duckbill,duckbills +duck-billed dinosaur,duck-billed dinosaurs +duck-billed platypus,duck-billed platypuses +duckboard,duckboards +duckburger,duckburgers +duck call,duck calls +duck decoy,duck decoys +duck dive,duck dives +duck-drownder,duck-drownders +duck-egg blue,duck-egg blues +ducker,duckers +duckery,duckeries +duckface,duckfaces +duck hawk,duck hawks +duck-hawk,duck-hawks +duckie,duckies +ducking stool,ducking stools +duckling,ducklings +duck mole,duck moles +duckpin,duckpins +duckpond,duckponds +duck's arse,ducks' arses +duck stamp,duck stamps +ducktail,ducktails +duck tape,duck tapes +ducktape,ducktapes +duck test,duck tests +duck walk,duck walks +ducky,duckies +duct,ducts +ducted fan,ducted fans +duct engine,duct engines +ductilimeter,ductilimeters +duction,ductions +ductless gland,ductless glands +ductor,ductors +ductule,ductules +ductus arteriosus,ductus arteriosuss +dudder,dudders +duddery,dudderies +dud,duds +dude bro,dude bros +dude-bro,dude-bros +dudebro,dudebros +dude,dudes +dudeen,dudeens +dude ranch,dude ranches +dude rancher,dude ranchers +dudess,dudesses +dudette,dudettes +dudgeon,dudgeons +dudhi,dudhis +dudine,dudines +dudukahar,dudukahars +duduk,duduks +duebill,duebills +due course,due courses +due date,due dates +due,dues +duel,duels +dueler,duelers +duelist,duelists +dueller,duellers +duellist,duellists +duenna,duennas +duet,duets +duetter,duetters +duettino,duettinos +duettist,duettists +duetto,duettoes +duff,duffs +duff,duffs +duff,duffs +duffel bag,duffel bags +duffel coat,duffel coats +duffel,duffels +duffer,duffers +duffle bag,duffle bags +duffle coat,duffle coats +dufftail,dufftails +dufoil,dufoils +dug,dugs +dugesiid,dugesiids +dugite,dugites +dugnad,dugnads +dugong,dugongs +dugongid,dugongids +dug-out,dug-outs +dugout,dugouts +dugway,dugways +duiker,duikers +duka,dukas +Duk-Duk,Duk-Duks +dukedom,dukedoms +duke,dukes +dukeling,dukelings +duke of burgundy,duke of burgundies +dukeship,dukeships +dukhan,dukhans +dukun,dukuns +dulciana,dulcianas +dulcian,dulcians +dulcimer,dulcimers +dulcimerist,dulcimerists +dulcinea,dulcineas +duledge,duledges +dulid,dulids +dullard,dullards +duller,dullers +dullhead,dullheads +dullwit,dullwits +dulocracy,dulocracies +dulse,dulses +Duluthian,Duluthians +Duluth pack,Duluth packs +Dulux dog,Dulux dogs +dulwilly,dulwillies +duma,dumas +dumbarse,dumbarses +dumb ass,dumb asses +dumb-ass,dumb-asses +dumbass,dumbasses +dumb barge,dumb barges +dumbbell curve,dumbbell curves +dumbbell,dumbbells +dumb blonde,dumb blondes +dumb bunny,dumb bunnies +dumb cancel,dumb cancels +dumb cane,dumb canes +dumbell,dumbells +dumbfounder,dumbfounders +dumb fuck,dumb fucks +dumbfuck,dumbfucks +dumb fucker,dumb fuckers +dumb genius,dumb geniuses +dumbhead,dumbheads +dumb hole,dumb holes +dumble-dor,dumble-dors +dumbledor,dumbledors +dumbledore,dumbledores +dumble,dumbles +dumbling,dumblings +dumbnut,dumbnuts +dumbo,dumbos +dumbphone,dumbphones +dumb piano,dumb pianos +dumb shit,dumb shits +dumb-shit,dumb-shits +dumbshit,dumbshits +dumb show,dumb shows +dumb-show,dumb-shows +dumb spinet,dumb spinets +dumb terminal,dumb terminals +dumb waiter,dumb waiters +dumb-waiter,dumb-waiters +dumbwaiter,dumbwaiters +dum-dum,dum-dums +dumdum,dumdums +dumdum,dumdums +dumka,dumkas,dumky +dummerer,dummerers +dummkopf,dummkopfs +dummy bid,dummy bids +dummy board,dummy boards +dummy,dummies +dummy run,dummy runs +dummy spit,dummy spits +dummy variable,dummy variables +dump cake,dump cakes +dump,dumps +dump,dumps +dumpee,dumpees +dumper,dumpers +dumping,dumpings +dump job,dump jobs +dumpling,dumplings +dumpsite,dumpsites +dumpster dive,dumpster dives +dumpster diver,dumpster divers +dumpster-diver,dumpster-divers +dumpster,dumpsters +dump tackle,dump tackles +dump truck,dump trucks +dumpy,dumpies +dunam,dunams +dunawithanine,dunawithanines +dun-bar,dun-bars +dunbird,dunbirds +dunce cap,dunce caps +dunce,dunces +dunce hat,dunce hats +dunderhead,dunderheads +dunderpate,dunderpates +Dundonian,Dundonians +dun,duns +dun,duns +dun,duns +dun,duns +dune buggy,dune buggies +dune coon,dune coons +dune,dunes +dungball,dungballs +dung beetle,dung beetles +Dungeness crab,Dungeness crabs +dungeon crawl,dungeon crawls +dungeon crawler,dungeon crawlers +dungeon,dungeons +dungeoneer,dungeoneers +dungeon master,dungeon masters +dungfly,dungflies +dungfork,dungforks +dung heap,dung heaps +dungheap,dungheaps +dunghill,dunghills +dungmixen,dungmixens +dungyard,dungyards +dunite,dunites +duniwassal,duniwassals +dunkadoo,dunkadoos +dunk,dunks +dunker,dunkers +Dunker,Dunkers +dunkfest,dunkfests +dunking,dunkings +dunkleosteid,dunkleosteids +dunk shot,dunk shots +dunk tank,dunk tanks +dunlin,dunlins +dunnart,dunnarts +dunnekin,dunnekins +dunner,dunners +dunnock,dunnocks +dunno,dunnos +dunny can,dunny cans +dunnycan,dunnycans +dunny,dunnies +dunny man,dunny men +dunnyman,dunnymen +dunpickle,dunpickles +dunt,dunts +dunter,dunters +dunter goose,dunter geese +duocarmycin,duocarmycins +duodecagon,duodecagons +Duodecember,Duodecembers +duodecillionth,duodecillionths +duodecimal,duodecimals +Duodecimber,Duodecimbers +duodecimo,duodecimos +duodenal ulcer,duodenal ulcers +duodenectomy,duodenectomies +duodene,duodenes +duodenoduodenostomy,duodenoduodenostomies +duodenum,duodena,duodenums +duo,duos +duologue,duologues +duology,duologies +duomo,duomos +duoplural,duoplurals +duopolist,duopolists +duopsony,duopsonys +duotheism,duotheisms +duotrigintillionth,duotrigintillionths +dupatta,dupattas +dupe,dupes +dupe,dupes +duper,dupers +dupery,duperies +dupiaza,dupiazas +dupion,dupions +duplation,duplations +duplet,duplets +duplex,duplexes +duplexity,duplexities +duplex nail,duplex nails +duplicate,duplicates +duplication,duplications +duplicator,duplicators +duplicature,duplicatures +duplicon,duplicons +dupondius,dupondii +duporthite,duporthites +dupper,duppers +duppie,duppies +duppie,duppies +duppy,duppies +durability,durabilities +durable,durables +durable good,durable goods +Duracell bunny,Duracell bunnies +durance vile,durance viles +durangite,durangites +durational pattern,durational patterns +duration,durations +durative,duratives +durbar,durbars +durbari,durbaris +durdum,durdums +duressor,duressors +durgan,durgans +Durham,Durhams +durian,durians +duricrust,duricrusts +durion,durions +duripan,duripans +durisol,durisols +durmast oak,durmast oaks +duroc,durocs +durometer,durometers +durotomy,durotomies +durr-brain,durr-brains +durrie,durries +durrie,durries +durry,durries +durukuli,durukulis +durwan,durwans +durzee,durzees +durzi,durzis +duse,duses +dusk,dusks +dusky,duskies +dussumierid,dussumierids +dussumieriid,dussumieriids +dust bin,dust bins +dustbin,dustbins +dustbowl,dustbowls +dustbrush,dustbrushes +dust bunny,dust bunnies +dust cart,dust carts +dustcart,dustcarts +dust cloth,dust cloths +dustcloth,dustcloths +dustcoat,dustcoats +dust cover,dust covers +dustcover,dustcovers +dust devil,dust devils +duster,dusters +dusting,dustings +dust jacket,dust jackets +dustling,dustlings +dustman,dustmen +dustmat,dustmats +dust mite,dust mites +dustmite,dustmites +dustmote,dustmotes +dust mouse,dust mice +dust-off,dust-offs +dustpan,dustpans +dustsheet,dustsheets +dust storm,dust storms +duststorm,duststorms +dust-up,dust-ups +dustup,dustups +dusty miller,dusty millers +Dusun,Dusuns +Dutch act,Dutch acts +Dutch angle,Dutch angles +Dutch arrow,Dutch arrows +Dutch auction,Dutch auctions +Dutch book,Dutch books +Dutch cap,Dutch caps +Dutch comfort,Dutch comforts +Dutch door,Dutch doors +dutch,dutches +Dutcher,Dutchers +dutchess,dutchesses +Dutch hand,Dutch hands +Dutch hoe,Dutch hoes +dutchie,dutchies +dutchman,dutchmen +Dutchman,Dutchmen +Dutchman's pipe,Dutchman's pipes +Dutch oven,Dutch ovens +dutch rub,dutch rubs +Dutch sandwich,Dutch sandwiches +Dutch tilt,Dutch tilts +Dutch treat,Dutch treats +dutch uncle,dutch uncles +Dutch uncle,Dutch uncles +Dutch wife,Dutch wives +dutchy,dutchies +dut,duts +dutie,duties +duty cycle,duty cycles +duty,duties +duty-free,duty-frees +duumvirate,duumvirates +duumvir,duumvirs,duumviri +duvet day,duvet days +duvet,duvets +duvetyn,duvetyns +duvetyne,duvetynes +duwende,duwendes +dux bellorum,duces bellorum +dux,duxes,duces +duykerbok,duykerboks +duyker,duykers +D valve,D valves +dvandva,dvandvas +DVD burner,DVD burners +DVD,DVDs +DVD player,DVD players +DVD+R,DVD+Rs +DV,DVs +dvinosaurid,dvinosaurids +dvornik,dvorniks +DVR,DVRs +DVT,DVTs +dwaal,dwaals +dwang,dwangs +dwarf birch,dwarf birches +dwarf,dwarfs,dwarves +dwarf elder,dwarf elders +dwarfess,dwarfesses +dwarf galaxy,dwarf galaxies +dwarf horsetail,dwarf horsetails +dwarfism,dwarfisms +dwarfling,dwarflings +dwarf planet,dwarf planets +dwarf rabbit,dwarf rabbits +dwarf sperm whale,dwarf sperm whales +dwarf spheroidal,dwarf spheroidals +dwarf spheroidal galaxy,dwarf spheroidal galaxies +dwarf star,dwarf stars +dwarf tinamou,dwarf tinamous +dweeb,dweebs +dweebette,dweebettes +dweebling,dweeblings +dwell,dwells +dweller,dwellers +dwelling,dwellings +dwellinghouse,dwellinghouses +dwelling place,dwelling places +dwelling-place,dwelling-places +dwere,dweres +dwimmer,dwimmers +d-word,d-words +dword,dwords +dyad,dyads +dyadic fraction,dyadic fractions +dyadic operation,dyadic operations +Dyak,Dyaks +dyarchy,dyarchies +dybbuk,dybbuks +Dyck word,Dyck words +dydoe,dydoes +dye,dice +dye-house,dye-houses +dyehouse,dyehouses +dye pack,dye packs +dyer,dyers +dyery,dyeries +dyestuff,dyestuffs +dygogram,dygograms +dying declaration,dying declarations +dying gasp,dying gasps +dyke,dykes +dyke,dykes +dykon,dykons +dymonde,dymondes +dynactinometer,dynactinometers +dyna,dynae +dynam,dynams +dynameter,dynameters +dynamical system,dynamical systems +dynamic dispatch,dynamic dispatches +dynamic,dynamics +dynamic IP address,dynamic IP addresses +dynamicist,dynamicists +dynamick,dynamicks +dynamic load,dynamic loads +dynamic memory allocation,dynamic memory allocations +dynamic proxy,dynamic proxies +dynamic scale,dynamic scales +dynamic site,dynamic sites +dynamic system,dynamic systems +dynamimeter,dynamimeters +dynamist,dynamists +dynamitard,dynamitards +dynamiter,dynamiters +dynamite roll,dynamite rolls +dynamitist,dynamitists +dynamo,dynamos +dynamo-electric machine,dynamo-electric machines +dynamograph,dynamographs +dynamometer car,dynamometer cars +dynamometer,dynamometers +dynast,dynasts +dynastic war,dynastic wars +dynastid,dynastids +dynasty,dynasties +dynatron,dynatrons +dyne,dynes +dynein,dyneins +dynode,dynodes +dyno,dynos +dynorphin,dynorphins +dyon,dyons +Dyophysite,Dyophysites +dypnone,dypnones +dyrosaurid,dyrosaurids +dysacusis,dysacuses +dysautonomia,dysautonomias +dysbiosis,dysbioses +dyscoria,dyscorias +dyscromia,dyscromias +dysderid,dysderids +dysdiadochokinesia,dysdiadochokinesias +dysequilibrium,dysequilibria +dysfunction,dysfunctions +dysgenesis,dysgeneses +dysglycemia,dysglycemias +dyshomeostasis,dyshomeostases +dyskaryosis,dyskaryoses +dyskeratosis,dyskeratoses +dyskinesia,dyskinesias +dyslectic,dyslectics +dyslexic,dyslexics +dysmorphism,dysmorphisms +dysmorphophobia,dysmorphophobias +Dyson sphere,Dyson spheres +dysostosis,dysostoses +dyspepsia,dyspepsias +dyspepsy,dyspepsies +dyspeptic,dyspeptics +dysphemia,dysphemias +dysphoria,dysphorias +dysphoric milk ejection reflex,dysphoric milk ejection reflexes +dysplasia,dysplasias +dyspnΕ“a,dyspnΕ“as +dyspraxic,dyspraxics +dysregulation,dysregulations +dysrhythmia,dysrhythmias +dyssease,dysseases +dys-synchrony,dys-synchronies +dyssynchrony,dyssynchronies +dystheist,dystheists +dysthymic,dysthymics +dystocia,dystocias +dystopia,dystopias +dystrobrevin,dystrobrevins +dystrophia,dystrophias +dystrophinopathy,dystrophinopathies +dystrophy,dystrophies +dysynchrony,dysynchronies +dytiscid,dytiscids +dzeren,dzerens +dzhigit,dzhigits +dziggetai,dziggetais +dzo,dzos +dzomo,dzomos +dzong,dzongs +dzud,dzuds +Dzungarian,Dzungarians +Dzungarian hamster,Dzungarian hamsters +each,eaches +'ead,'eads +eadish,eadishes +ea,eas +eager beaver,eager beavers +eager,eagers +eagle,eagles +eagle eye,eagle eyes +eagle-hawk,eagle-hawks +eaglehawk,eaglehawks +eagle owl,eagle owls +eagle ray,eagle rays +Eagle Scout,Eagle Scouts +eagless,eaglesses +eaglestone,eaglestones +eaglet,eaglets +eagre,eagres +ealderman,ealdermen +ealdorman,ealdormen +eam,eams +eame,eames +eanling,eanlings +earache,earaches +earake,earakes +earbone,earbones +ear bud,ear buds +earbud,earbuds +ear canal,ear canals +ear candle,ear candles +earcap,earcaps +earcon,earcons +earcup,earcups +ear dagger,ear daggers +eardrop,eardrops +ear drum,ear drums +eardrum,eardrums +ear,ears +ear,ears +eared seal,eared seals +eare,eares +ear finger,ear fingers +ear-finger,ear-fingers +earflap,earflaps +earful,earfuls,earsful +eargasm,eargasms +earhole,earholes +earing,earings +earlap,earlaps +earldom,earldoms +earldorman,earldormen +earl,earls +earle,earles +earless seal,earless seals +earlet,earlets +earlid,earlids +earl marshal,earl marshals,earls marshal +ear lobe,ear lobes +earlobe,earlobes +earlock,earlocks +earloop,earloops +early adopter,early adopters +early bath,early baths +early bird,early birds +early bird special,early bird specials +early day motion,early day motions +early door,early doors +early,earlies +early fetal demise,early fetal demises +early riser,early risers +early shower,early showers +early-type star,early-type stars +early voter,early voters +earmark,earmarks +earmold,earmolds +earmould,earmoulds +earmuff,earmuffs +earn,earns +earned run average,earned run averages +earned run,earned runs +earner,earners +earnest,earnests +earnout,earnouts +earpad,earpads +earphone,earphones +earpick,earpicks +earpiece,earpieces +earplug,earplugs +earprint,earprints +earring,earrings +earset,earsets +ear shell,ear shells +ear-shell,ear-shells +earsore,earsores +'eart,'earts +Earthan,Earthans +earthbag,earthbags +earthbank,earthbanks +earthboard,earthboards +earth closet,earth closets +earthdin,earthdins +earthdrake,earthdrakes +eartheater,eartheaters +Earther,Earthers +earthfall,earthfalls +earth floor,earth floors +earth-floor,earth-floors +earthfloor,earthfloors +earthflow,earthflows +earthhog,earthhogs +earthhole,earthholes +earthhouse,earthhouses +Earthian,Earthians +Earthican,Earthicans +Earthite,Earthites +earthlight,earthlights +earthling,earthlings +Earthling,Earthlings +earthly branch,earthly branches +earthly,earthlies +earthman,earthmen +Earthman,Earthmen +Earth mass,Earth masses +earth metal,earth metals +Earth Mother,Earth Mothers +earthmover,earthmovers +earthnut,earthnuts +earthpea,earthpeas +earthpig,earthpigs +earth pillar,earth pillars +earth plate,earth plates +earthquake,earthquakes +earthquake protector,earthquake protectors +earthrise,earthrises +earthscape,earthscapes +Earthscape,Earthscapes +earth science,earth sciences +Earthship,Earthships +earthshock,earthshocks +earth sign,earth signs +earthsman,earthsmen +earthstar,earthstars +earth-tongue,earth-tongues +earth tremor,earth tremors +earthwolf,earthwolves +earthwoman,earthwomen +Earthwoman,Earthwomen +earthwork,earthworks +earthworm,earthworms +ear to the ground,ears to the ground +ear trumpet,ear trumpets +ear tuft,ear tufts +ear tunnel,ear tunnels +earwig,earwigs +earwitness,earwitnesses +earworm,earworms +earywig,earywigs +easel,easels +easement,easements +easer,easers +East African,East Africans +East Asian,East Asians +East Berliner,East Berliners +Easter,Easters +Easter egg,Easter eggs +Easter egg hunt,Easter egg hunts +Easter egg roll,Easter egg rolls +Easter giant,Easter giants +Easter Islander,Easter Islanders +Easter lily,Easter lilies +Easterling,Easterlings +easterly,easterlies +Easter Moon,Easter Moons +Eastern Arabic numeral,Eastern Arabic numerals +easterner,easterners +Easterner,Easterners +Eastern European,Eastern Europeans +eastern gorilla,eastern gorillas +eastern grey kangaroo,eastern grey kangaroos +Eastern Hemisphere,Eastern Hemispheres +eastern jackrabbit,eastern jackrabbits +eastern redbud,eastern redbuds +eastern red cedar,eastern red cedars +eastern tarantula,eastern tarantulas +eastern tent caterpillar,eastern tent caterpillars +Eastertime,Eastertimes +East German,East Germans +East Indian Catholic,East Indian Catholics +East Indian,East Indians +easting,eastings +eastside,eastsides +East Slav,East Slavs +East Timorese,East Timorese +East-West engine,East-West engines +easy chair,easy chairs +easy mark,easy marks +easy target,easy targets +eatable,eatables +eater,eaters +eaterie,eateries +eatery,eateries +eating apple,eating apples +eating disorder,eating disorders +eating establishment,eating establishments +eatoniellid,eatoniellids +e-auction,e-auctions +eau de nil,eau de nils +eau de toilette,eau de toilettes,eaus de toilette +eau de vie,eau de vies,eaus de vie +eavedrop,eavedrops +eave,eaves +eavesdrip,eavesdrips +eavesdrop,eavesdrops +eavesdropper,eavesdroppers +eavesdropping,eavesdroppings +eaves trough,eaves troughs +eBayer,eBayers +ebb and flow,ebbs and flows +ebb,ebbs +ebberman,ebbermen +ebb tide,ebb tides +Ebenezer Scrooge,Ebenezer Scrooges +e-bike,e-bikes +Ebionite,Ebionites +ebionitism,ebionitisms +ebolavirus,ebolaviruses +ebon,ebons +ebonist,ebonists +e-book,e-books +ebook,ebooks +eBook,eBooks +e-book reader,e-book readers +e-border,e-borders +eboshi,eboshi +Γ©boulement,Γ©boulements +e-boutique,e-boutiques +ebriety,ebrieties +ebriid,ebriids +ebriosity,ebriosities +e-brochure,e-brochures +ebulliometer,ebulliometers +ebullioscope,ebullioscopes +ebullition,ebullitions +eburnation,eburnations +e-Business,e-Businesses +e-card,e-cards +ecard,ecards +e-car,e-cars +Γ©cartΓ©,Γ©cartΓ©s +e-catalog,e-catalogs +e-catalogue,e-catalogues +ecbole,ecboles +ecbolic,ecbolics +eccaleobion,eccaleobions +ecce homo,ecce homos +eccentric anomaly,eccentric anomalies +eccentric contraction,eccentric contractions +eccentric,eccentrics +eccentricity,eccentricities +eccentrick,eccentricks +eccho,ecchoes +ecchymosis,ecchymoses +eccle,eccles +Eccles cake,Eccles cakes +ecclesia,ecclesiae +ecclesiarch,ecclesiarchs +ecclesiarchy,ecclesiarchies +ecclesiast,ecclesiasts +ecclesiastic,ecclesiastics +ecclesiastick,ecclesiasticks +ecclesiologist,ecclesiologists +eccritic,eccritics +eccyclema,eccyclemas,eccyclemata +ecdysiast,ecdysiasts +ecdysiophile,ecdysiophiles +ecdysis,ecdyses +ecdysoid,ecdysoids +ecdysone,ecdysones +ecdysozoan,ecdysozoans +ecdysteroid,ecdysteroids +Γ©chappΓ©,Γ©chappΓ©s +echard,echards +E chart,E charts +e-check,e-checks +echelle,echelles +echelle grating,echelle gratings +echelon,echelons +Γ©chelon,Γ©chelons +echelon lens,echelon lenses +echeneid,echeneids +echeneidid,echeneidids +e-cheque,e-cheques +echeveria,echeverias +echidna,echidnas,echidnae +echimyid,echimyids +echinasterid,echinasterids +Echinidan,Echinidans +echinid,echinids +echinite,echinites +echinocandin,echinocandins +echinochrome,echinochromes +echinococcus,echinococci +echinoderm,echinoderms +echinoid,echinoids +echinometrid,echinometrids +echinophthiriid,echinophthiriids +echinorhinid,echinorhinids +echinorhynchid,echinorhynchids +echinostome,echinostomes +echinothurioid,echinothurioids +echinus,echini +echium,echiums +echiuran,echiurans +echiurid,echiurids +echo boomer,echo boomers +echocardiogram,echocardiograms +echocardiograph,echocardiographs +echocardiographer,echocardiographers +echocardiologist,echocardiologists +echo chamber,echo chambers +echo,echoes,echos +echoer,echoers +echogram,echograms +echograph,echographs +echolocation,echolocations +echolocator,echolocators +echometer,echometers +echo poem,echo poems +echopraxia,echopraxias +echoscope,echoscopes +echo sounder,echo sounders +echosounder,echosounders +echo sounding,echo soundings +echostructure,echostructures +echotomography,echotomographies +echovirus,echoviruses +e-cigarette,e-cigarettes +Eckist,Eckists +eckle,eckles +ecky-becky,ecky-beckies +eclaircissement,eclaircissements +Γ©claircissement,Γ©claircissements +eclair,eclairs +Γ©clair,Γ©clairs +eclectic,eclectics +eclecticist,eclecticists +eclectick,eclecticks +Eclectic Wicca,Eclectic Wiccas +Eclectic Wiccan,Eclectic Wiccans +eclection,eclections +eclegm,eclegms +eclipse,eclipses +eclipsing binary,eclipsing binaries +ecliptic,ecliptics +ecliptick,eclipticks +eclog,eclogs +eclogite,eclogites +eclogue,eclogues +eclosion,eclosions +eclosure,eclosures +ecnomid,ecnomids +ecoactivist,ecoactivists +ecoalarmist,ecoalarmists +ecoanarchist,ecoanarchists +ecoartist,ecoartists +ecoburb,ecoburbs +ecocatastrophe,ecocatastrophes +ecocentrist,ecocentrists +ecocide,ecocides +ecocity,ecocities +ecocline,ecoclines +ecocrazy,ecocrazies +ecocrisis,ecocrises +ecocritic,ecocritics +ecodisaster,ecodisasters +ECO,ECOs +ecofact,ecofacts +ecofanatic,ecofanatics +ecofeminist,ecofeminists +ecofootprint,ecofootprints +ecofreak,ecofreaks +ecohippie,ecohippies +eco-house,eco-houses +ecohouse,ecohouses +ecohysteria,ecohysterias +eco-incentive,eco-incentives +ecolabel,ecolabels +ecolect,ecolects +ecolinguist,ecolinguists +E-collar,E-collars +ecolodge,ecolodges +ecological footprint,ecological footprints +ecological pyramid,ecological pyramids +ecological service,ecological services +ecologist,ecologists +ecology block,ecology blocks +eco-migration,eco-migrations +ecomigration,ecomigrations +ecomorph,ecomorphs +ecomorphotype,ecomorphotypes +ecomuseum,ecomuseums +econiche,econiches +econobox,econoboxes +econocar,econocars +econometrician,econometricians +econometrist,econometrists +economic bubble,economic bubbles +economic crisis,economic crises +economic freedom,economic freedoms +economic migrant,economic migrants +economic mobility,economic mobilities +economic refugee,economic refugees +economic rent,economic rents +economisation,economisations +economiser,economisers +economist,economists +economization,economizations +economizer,economizers +economy car,economy cars +economy,economies +economy model,economy models +economy rate,economy rates +econophysicist,econophysicists +e-contract,e-contracts +econut,econuts +ecophilosopher,ecophilosophers +ecophysiologist,ecophysiologists +ecopoem,ecopoems +ecopoet,ecopoets +ecopreneur,ecopreneurs +ecopsychologist,ecopsychologists +Γ©corchΓ©,Γ©corchΓ©s +eco-region,eco-regions +ecoregion,ecoregions +ecoscape,ecoscapes +ecosexual,ecosexuals +ecosocialist,ecosocialists +ecosopher,ecosophers +ecosphere,ecospheres +Γ©cossaise,Γ©cossaises +ecosystem,ecosystems +ecotax,ecotaxes +ecotechnology,ecotechnologies +ecoterrorist,ecoterrorists +ecoteur,ecoteurs +ecotherapist,ecotherapists +ecothriller,ecothrillers +ecotone,ecotones +ecotope,ecotopes +ecotopia,ecotopias +ecotour,ecotours +ecotourist,ecotourists +ecotown,ecotowns +ecotoxicologist,ecotoxicologists +ecotoxin,ecotoxins +ecotype,ecotypes +e-coupon,e-coupons +eco-village,eco-villages +ecovillage,ecovillages +ecowar,ecowars +eco-warrior,eco-warriors +ecowarrior,ecowarriors +ecozone,ecozones +ecphoneme,ecphonemes +ecphrasis,ecphrases +ecquaintance,ecquaintances +ecranisation,ecranisations +Γ©crasement,Γ©crasements +ecraseur,ecraseurs +Γ©craseur,Γ©craseurs +ecstacy,ecstacies +ecstatica,ecstaticas +ecstatic,ecstatics +ectara,ectaras +ectasia,ectasias +ectasis,ectases +ectepicondyle,ectepicondyles +ecthoreum,ecthorea +ectinosomatid,ectinosomatids +ectinosomid,ectinosomids +ectoantigen,ectoantigens +ectoapyrase,ectoapyrases +ectoblast,ectoblasts +ectobronchium,ectobronchia +ectocarpoid,ectocarpoids +ectocervix,ectocervixes,ectocervices +ectochoroidea,ectochoroideas +ectocommensal,ectocommensals +ectocornea,ectocorneas +ectocuneiform,ectocuneiforms +ectocyst,ectocysts +ectoderm,ectoderms +ectodin,ectodins +ectodomain,ectodomains +ectoenzyme,ectoenzymes +ectohormone,ectohormones +ectoloph,ectolophs +ectolophid,ectolophids +ectomere,ectomeres +ectometaloph,ectometalophs +ectomorph,ectomorphs +ectomycorrhiza,ectomycorrhizae,ectomycorrhizas +ectomy,ectomies +ectonucleotidase,ectonucleotidases +ectonucleotide,ectonucleotides +ectoparasite,ectoparasites +ectoparasiticide,ectoparasiticides +ectoparasitoid,ectoparasitoids +ectophosphodiesterase,ectophosphodiesterases +ectophyte,ectophytes +ectopic pregnancy,ectopic pregnancies +ectopion,ectopions +ectoproct,ectoprocts +ectoprotein,ectoproteins +ectopsocid,ectopsocids +ectopterygoid,ectopterygoids +ectosarc,ectosarcs +ectostosis,ectostoses +ectostylid,ectostylids +ectosymbiont,ectosymbionts +ectosymbiosis,ectosymbioses +ectotherm,ectotherms +ectothrix,ectothrices +ectotympanic,ectotympanics +ectozoon,ectozoons,ectozoa +ectromelia,ectromelias +ectype,ectypes +Ecuadorean,Ecuadoreans +Ecuadorian,Ecuadorians +Ecuadorianism,Ecuadorianisms +ecu,ecus +Γ©cu,Γ©cus +Γ©cuelle,Γ©cuelles +Ecumenical Patriarch,Ecumenical Patriarchs +ecumenicist,ecumenicists +ecumenism,ecumenisms +ecumenist,ecumenists +ecumenopolis,ecumenopolises,ecumenopoleis +ecumenopolitan,ecumenopolitans +Ecumenopolitan,Ecumenopolitans +ecurie,ecuries +edaphologist,edaphologists +edaphon,edaphons +edaphophyte,edaphophytes +edaphosaurid,edaphosaurids +edder,edders +edder,edders +Eddington luminosity,Eddington luminosities +eddish,eddishes +eddo,eddos +eddy current,eddy currents +eddy,eddies +eddy kinetic energy,eddy kinetic energies +edema,edemas,edemata +edental,edentals +edentate,edentates +edestid,edestids +edetate,edetates +edge banding,edge bandings +edgebanding,edgebandings +edgebone,edgebones +edge case,edge cases +edge cover,edge covers +edge,edges +edgel,edgels +edgepath,edgepaths +edge protector,edge protectors +edger,edgers +edge set,edge sets +edge venting,edge ventings +edgeware,edgewares +edgeway,edgeways +edging,edgings +edgrow,edgrows +edgrowth,edgrowths +edh,edhs +e-diary,e-diaries +edible dormouse,edible dormice +edible,edibles +edict,edicts +e-dictionary,e-dictionaries +edification,edifications +edificator,edificators +edifice,edifices +edifier,edifiers +edile,ediles +edileship,edileships +edisonade,edisonades +Edison,Edisons +edisylate,edisylates +edit conflict,edit conflicts +edit distance,edit distances +edit,edits +editing,editings +edition,editions +editor,editors +editorial,editorials +editorialist,editorialists +editorialization,editorializations +editorial we,editorial wes +editor in chief,editors in chief +editor-in-chief,editors-in-chief +editorship,editorships +editosome,editosomes +editour,editours +editress,editresses +editrix,editrices,editrixes +edit war,edit wars +EDM,EDMs +edopid,edopids +e-dress,e-dresses +edress,edresses +edubba,edubbas +educand,educands +educated guess,educated guesses +educatee,educatees +educational,educationals +educationalist,educationalists +education,educations +educationist,educationists +educator,educators +educatress,educatresses +educrat,educrats +educt,educts +eduction,eductions +eductor,eductors +edulcoration,edulcorations +edulcorator,edulcorators +edutainer,edutainers +eediot,eediots +ee,een +eejit,eejits +eelblenny,eelblennies +eelboat,eelboats +eelbuck,eelbucks +eel,eels +eeler,eelers +eelpot,eelpots +eelpout,eelpouts +eelskin,eelskins +eelspear,eelspears +eelworm,eelworms +een,eens +eep,eeps +EEPROM,EEPROMs +e,e's +E,Es +eetch,eetches +eevn,eevns +eevolution,eevolutions +Eevolution,Eevolutions +Eeyore,Eeyores +ef,efs +efendee,efendees +effacement,effacements +effascination,effascinations +effecter,effecters +effectibility,effectibilities +effective dose,effective doses +effective energy,effective energies +effector,effectors +effect size,effect sizes +effects unit,effects units +effectuality,effectualities +effectuation,effectuations +effendi,effendis +efferent arteriole,efferent arterioles +efferent duct,efferent ducts +efferent,efferents +effervescence,effervescences +effet,effets +efficacity,efficacities +efficient cause,efficient causes +Effie,Effies +effigiation,effigiations +effigy,effigies +effleurage,effleurages +efflorescence,efflorescences +efflorescency,efflorescencies +effluence,effluences +effluent,effluents +effluvium,effluvia,effluviums +efflux,effluxes +effluxion,effluxions +efformation,efformations +effort,efforts +effraction,effractions +effuser,effusers +effusiometer,effusiometers +effusion,effusions +effusivity,effusivities +EFI,EFIs +E-flat,E-flats +efreet,efreets +e-frontier,e-frontiers +eft,efts +egalitarian,egalitarians +e-gate,e-gates +Egbo,Egbos,Egbo +egency,egencies +egg and spoon race,egg and spoon races +eggar,eggars +egg bank,egg banks +eggbeater,eggbeaters +egg-bird,egg-birds +eggbox,eggboxes +egg bread,egg breads +eggburger,eggburgers +egg case,egg cases +egg cell,egg cells +eggcorn,eggcorns +egg cup,egg cups +eggcup,eggcups +egg donation,egg donations +egge,egges +egg,eggs +egger,eggers +eggery,eggeries +eggetarian,eggetarians +eggfruit,eggfruits +egghead,eggheads +egg hunt,egg hunts +egging,eggings +eggler,egglers +eggmass,eggmasses +egg matza,egg matzas +egg matzah,egg matzahs +egg matzo,egg matzos +egg mayonnaise,egg mayonnaises +egg nog,egg nogs +eggnog,eggnogs +egg-plant,egg-plants +eggplant,eggplants +egg ring,egg rings +egg roll,egg rolls +eggroll,eggrolls +egg sandwich,egg sandwiches +Egg Saturday,Egg Saturdays +eggshell blue,eggshell blues +eggshell,eggshells +egg slice,egg slices +egg squash,egg squashes +egg tart,egg tarts +egg timer,egg timers +egg tooth,egg teeth +eggwhisk,eggwhisks +egg white,egg whites +eggwhite,eggwhites +eggy bread,eggy breads +egg yoke,egg yokes +egg yolk,egg yolks +egis,egises +eglantine,eglantines +eglatere,eglateres +Egle,Egles +egling,eglings +eglog,eglogs +egocast,egocasts +egocaster,egocasters +egocentric,egocentrics +ego,egos +egoist,egoists +egoity,egoities +egomaniac,egomaniacs +egosurfer,egosurfers +egotist,egotists +ego trip,ego trips +egress,egresses +egression,egressions +egressive,egressives +egressor,egressors +egret,egrets +egrette,egrettes +egriot,egriots +Egyptian cobra,Egyptian cobras +Egyptian,Egyptians +Egyptian fraction,Egyptian fractions +Egyptian Mau,Egyptian Maus +Egyptian pyramid,Egyptian pyramids +Egyptian water-lily,Egyptian water-lilies +Egyptologer,Egyptologers +egyptologist,egyptologists +Egyptologist,Egyptologists +egyptology,egyptologies +ehrlichiosis,ehrlichioses +Eichmann,Eichmanns +eicosadienoyl,eicosadienoyls +eicosaedrum,eicosaedrums +eicosamer,eicosamers +eicosane,eicosanes +eicosanoid,eicosanoids +eicosapentaenoyl,eicosapentaenoyls +eicosatetraenoyl,eicosatetraenoyls +eicosatrienoyl,eicosatrienoyls +eicosenoyl,eicosenoyls +eid,eids +e-identity,e-identities +eider,eiders +eidetic memory,eidetic memories +eidograph,eidographs +eidolon,eidola,eidolons +eidΓ΄lon,eidΓ΄la,eidΓ΄lons +eidos,eidoi +eigenanalysis,eigenanalyses +eigenbasis,eigenbases +eigenbrane,eigenbranes +eigenclass,eigenclasses +eigencoefficient,eigencoefficients +eigencurve,eigencurves +eigendecomposition,eigendecompositions +eigenenergy,eigenenergies +eigenequation,eigenequations +eigenface,eigenfaces +eigenfrequency,eigenfrequencies +eigenfunction,eigenfunctions +eigengap,eigengaps +eigengene,eigengenes +eigenimage,eigenimages +eigenmass,eigenmasses +eigenmetabolite,eigenmetabolites +eigenmode,eigenmodes +eigenpair,eigenpairs +eigenpath,eigenpaths +eigenphase,eigenphases +eigenpolarization,eigenpolarizations +eigenproblem,eigenproblems +eigenprojection,eigenprojections +eigenshape,eigenshapes +eigensolution,eigensolutions +eigensolver,eigensolvers +eigenspace,eigenspaces +eigenspectrum,eigenspectra +eigenspinor,eigenspinors +eigenstate,eigenstates +eigenstructure,eigenstructures +eigensubspace,eigensubspaces +eigentime,eigentimes +eigentone,eigentones +eigenvalue,eigenvalues +eigenvariable,eigenvariables +eigenvariety,eigenvarieties +eigenvector,eigenvectors +eight ball,eight balls +eight-ball,eight-balls +eighteenmo,eighteenmos +eighteenth,eighteenths +eighteen-wheeler,eighteen-wheelers +eight,eights +eight,eights +eighth,eighths +eighth grade,eighth grades +eighth note,eighth notes +eighth rest,eighth rests +eightieth,eightieths +eightling,eightlings +eight pack,eight packs +eight-pack,eight-packs +eightpence,eightpences +eight penny nail,eight penny nails +eight-penny nail,eight-penny nails +eightpenny nail,eightpenny nails +eightplex,eightplexes +eightscore,eightscores +eightsies,eightsies +eightsome,eightsomes +eight-thousander,eight-thousanders +eight-top,eight-tops +eighty-eighth,eighty-eighths +eighty-fifth,eighty-fifths +eighty-first,eighty-firsts +eighty-fourth,eighty-fourths +eighty-ninth,eighty-ninths +eighty-oneth,eighty-oneths +eighty-second,eighty-seconds +eighty-seventh,eighty-sevenths +eighty-sixth,eighty-sixths +eighty-third,eighty-thirds +EIK,EIKs +eikon,eikons +Eilenberg-MacLane space,Eilenberg-MacLane spaces +eimeriid,eimeriids +einkorn,einkorns +Einsatzgruppe,Einsatzgruppen +einstein,einsteins +Einstein,Einsteins +Einstein field equation,Einstein field equations +Einstein-Rosen bridge,Einstein-Rosen bridges +Einstein space,Einstein spaces +Eβ™­ instrument,Eβ™­ instruments +e-invoice,e-invoices +EIR,EIRs +eirenarch,eirenarchs +eirenicon,eirenicons,eirenica +eirie,eiries +eiruv,eiruvin +eisegesis,eisegeses +eisegete,eisegetes +eisosome,eisosomes +eisteddfod,eisteddfods,eisteddfodau +ejaculate,ejaculates +ejaculation,ejaculations +ejaculator,ejaculators +ejaculatory duct,ejaculatory ducts +ejectee,ejectees +eject,ejects +ejectile,ejectiles +ejection,ejections +ejection seat,ejection seats +ejective,ejectives +ejectment,ejectments +ejector,ejectors +ejector seat,ejector seats +ejectosome,ejectosomes +e-journal,e-journals +eke,ekes +eke,ekes +e-kiosk,e-kiosks +ekistician,ekisticians +ekka,ekkas +ekklesia,ekklesiae +EKO,EKOs +Ekpe,Ekpes,Ekpe +ekphrasis,ekphrases +ekpyrosis,ekpyroses +ekranoplane,ekranoplanes +ekranoplan,ekranoplans +ekstasis,ekstases +ektara,ektaras +ekwele,bipkwele +elaboration,elaborations +elaborator,elaborators +elaboratory,elaboratories +elachistid,elachistids +elaeolite,elaeolites +elaidate,elaidates +elaiometer,elaiometers +elaioplast,elaioplasts +elaiosome,elaiosomes +Elamite,Elamites +eland,elands +elan,elans +elanid kite,elanid kites +elaphure,elaphures +elapid,elapids +elasmid,elasmids +elasmobranch,elasmobranchs,elasmobranches +elasmobranchiate,elasmobranchiates +elasmosaurid,elasmosaurids +elasmotheriine,elasmotheriines +elassomatid,elassomatids +elastic band,elastic bands +elastic energy,elastic energies +elastic limit,elastic limits +elastolefin,elastolefins +elastoma,elastomas +elastomer,elastomers +elastomultiester,elastomultiesters +elastosis,elastoses +elater,elaters +elater,elaters +elaterid,elaterids +elaterin,elaterins +elaterometer,elaterometers +elative case,elative cases +elative,elatives +elative,elatives +elbow bone,elbow bones +elbow chair,elbow chairs +elbowchair,elbowchairs +elbow,elbows +elbower,elbowers +Elcesaite,Elcesaites +Elchasaite,Elchasaites +el cheapo,el cheapos +elderberry,elderberries +elder,elders +elder,elders +elderfather,elderfathers +elderflower,elderflowers +elderly,elderlies +eldermother,eldermothers +eldership,elderships +elder statesman,elder statesmen +elderwed,elderweds +eldfather,eldfathers +elding,eldings +eldmother,eldmothers +eldning,eldnings +eldress,eldresses +Eleatic,Eleatics +elecampane,elecampanes +electability,electabilities +electant,electants +electary,electaries +elected,electeds +electee,electees +elect,elects,elect +electioneerer,electioneerers +election,elections +election of remedies,elections of remedies +election threshold,election thresholds +elective abortion,elective abortions +elective,electives +elective share,elective shares +electoral college,electoral colleges +electoral district,electoral districts +electoral register,electoral registers +electorate,electorates +elector,electors +Elector,Electors +electoress,electoresses +electorship,electorships +Electorship,Electorships +electour,electours +Electra complex,Electra complexes +electrepeter,electrepeters +electress,electresses +electret,electrets +electrical circuit,electrical circuits +electrical contact,electrical contacts +electrical current,electrical currents +electrical,electricals +electrical fence,electrical fences +electrical polyspermy block,electrical polyspermy blocks +electrical resistance,electrical resistances +electrical tape,electrical tapes +electric bass,electric basses +electric blanket,electric blankets +electric blue,electric blues +electric car,electric cars +electric catfish,electric catfishes,electric catfish +electric chair,electric chairs +electric charge,electric charges +electric circuit,electric circuits +electric current,electric currents +electric dipole,electric dipoles +electric eel,electric eels +electric energy,electric energies +electric eye,electric eyes +electric fence,electric fences +electric field,electric fields +electric guitar,electric guitars +electric guitarist,electric guitarists +electric gun,electric guns +electrician,electricians +electricity meter,electricity meters +electricity pylon,electricity pylons +electric motor,electric motors +electric organ,electric organs +electric piano,electric pianos +electric ray,electric rays +electric shock,electric shocks +electric toothbrush,electric toothbrushes +electric vehicle,electric vehicles +electric violin,electric violins +electric window,electric windows +electrification,electrifications +electrifier,electrifiers +electrino,electrinos +electrization,electrizations +electrizer,electrizers +electroanalysis,electroanalyses +electroantennogram,electroantennograms +electrobasograph,electrobasographs +electrobiologist,electrobiologists +electrobioscopy,electrobioscopies +electrocardiogram,electrocardiograms +electrocardiograph,electrocardiographs +electrocardiophonogram,electrocardiophonograms +electrocatalyst,electrocatalysts +electrocauterization,electrocauterizations +electrocautery,electrocauteries +electroceramic,electroceramics +electroceutical,electroceuticals +electrochemiluminescence,electrochemiluminescences +electrochemist,electrochemists +electrochemogenetherapy,electrochemogenetherapies +electrochemotherapy,electrochemotherapies +electrocholecystectomy,electrocholecystectomies +electrocholecystocausis,electrocholecystocauses +electrochronograph,electrochronographs +electrocoating,electrocoatings +electrocochleogram,electrocochleograms +electroconductibility,electroconductibilities +electrocorticogram,electrocorticograms +electrocution,electrocutions +electrocutioner,electrocutioners +electrocyclization,electrocyclizations +electrocystography,electrocystographys +electrocyte,electrocytes +electrodecantation,electrodecantations +electrode,electrodes +electrodeformation,electrodeformations +electrode potential,electrode potentials +electrodermatome,electrodermatomes +electrodiagnosis,electrodiagnoses +electrodialysis,electrodialyses +electrodisintegration,electrodisintegrations +electrodynamometer,electrodynamometers +electroencephalogram,electroencephalograms +electroencephalograph,electroencephalographs +electroencephalographer,electroencephalographers +electroencephalography,electroencephalographies +electroendocytosis,electroendocytoses +electrofisher,electrofishers +electrofuge,electrofuges +electroglottograph,electroglottographs +electrogram,electrograms +electrograph,electrographs +electrojet,electrojets +electrolarynx,electrolarynxes,electrolarynges +electrolier,electroliers +electrolocation,electrolocations +electrologist,electrologists +electrolyser,electrolysers +electrolyte,electrolytes +electrolytic capacitor,electrolytic capacitors +electrolyzer,electrolyzers +electromagnet,electromagnets +electromagnetic field,electromagnetic fields +electromagnetic pulse,electromagnetic pulses +electromagnetic spectrum,electromagnetic spectra +electromagnetic unit,electromagnetic units +electromagnetic wave,electromagnetic waves +electromagnon,electromagnons +electro-mechanical computer,electro-mechanical computers +electrometer,electrometers +electromigration,electromigrations +electromobility,electromobilities +electromotor,electromotors +electromyogram,electromyograms +electromyograph,electromyographs +electron affinity,electron affinities +electronation,electronations +electron capture detector,electron capture detectors +electron capture,electron captures +electron carrier,electron carriers +electron cloud,electron clouds +electron configuration,electron configurations +electron density,electron densities +electron donor,electron donors +electronegativity,electronegativities +electron,electrons +electron gun,electron guns +electron hole,electron holes +electronic book,electronic books +electronic car key,electronic car keys +electronic cigarette,electronic cigarettes +electronic circuit,electronic circuits +electronic cottage,electronic cottages +electronic game,electronic games +electronicist,electronicists +electronic organ,electronic organs +electronic resource,electronic resources +electronics,electronics +electronic sport,electronic sports +electron micrograph,electron micrographs +electron microscope,electron microscopes +electron neutrino,electron neutrinos +electron number,electron numbers +electron pair,electron pairs +electron shell,electron shells +electron spin resonance,electron spin resonances +electron transfer reaction,electron transfer reactions +electron tube,electron tubes +electron volt,electron volts +electronvolt,electronvolts +electron wave function,electron wave functions +electronystagmogram,electronystagmograms +electrooculogram,electrooculograms +electrooxidation,electrooxidations +electropalatogram,electropalatograms +electropherogram,electropherograms +electrophile,electrophiles +electrophilic substitution,electrophilic substitutions +electrophobia,electrophobias +electrophone,electrophones +electrophore,electrophores +electrophorid,electrophorids +electrophorus,electrophoruses,electrophori +electrophysiologist,electrophysiologists +electroplate,electroplates +electroplater,electroplaters +electroplating,electroplatings +electroplax,electroplaxes +electropolymerization,electropolymerizations +electroporator,electroporators +electropositive,electropositives +electroproduction,electroproductions +electropsychometer,electropsychometers +electropulsation,electropulsations +electropulse,electropulses +electroreceptor,electroreceptors +electroresistance,electroresistances +electroretinogram,electroretinograms +electrorotation,electrorotations +electroscope,electroscopes +electrosphere,electrospheres +electrospray,electrosprays +electrostatic precipitator,electrostatic precipitators +electrosynthesis,electrosyntheses +electrotherapy,electrotherapies +electrotint,electrotints +electrotransfer,electrotransfers +electrotransformation,electrotransformations +electrotype,electrotypes +electrotyper,electrotypers +electrovacuum,electrovacuums,electrovacua +electrovalence,electrovalences +electrovalency,electrovalencies +electrovore,electrovores +electuary,electuaries +eleemosynary,eleemosynaries +elegancy,elegancies +elegant crested tinamou,elegant crested tinamous +elegant variation,elegant variations +elegiac,elegiacs +elegiack,elegiacks +elegiast,elegiasts +elegiographer,elegiographers +elegist,elegists +elegit,elegits +elegy,elegies +el,els +el,els +elemental,elementals +elementality,elementalities +elementary charge,elementary charges +elementary function,elementary functions +elementary particle,elementary particles +elementary school,elementary schools +elementary symmetric polynomial,elementary symmetric polynomials +element,elements +elemi,elemis +elench,elenchs +elenchid,elenchids +eleotrid,eleotrids +elephant bird,elephant birds +elephantbird,elephantbirds +elephant ear,elephant ears +elephant,elephants +elephantfish,elephantfish,elephantfishes +elephantid,elephantids +elephant in the corner,elephants in the corner +elephant in the room,elephants in the room +elephantry,elephantries +elephant seal,elephant seals +elephant shrew,elephant shrews +elephant tree,elephant trees +e-lesson,e-lessons +eleusine,eleusines +eleutherodactylid,eleutherodactylids +eleutherodactyline,eleutherodactylines +eleutheromaniac,eleutheromaniacs +elevation,elevations +elevator,elevators +elevator shaft,elevator shafts +elevator shoe,elevator shoes +elevator surfer,elevator surfers +eleven,elevens +elevenpence,elevenpences +eleven plus,eleven pluses +eleven-plus,eleven-pluses +elevensome,elevensomes +eleventh,elevenths +eleventh grade,eleventh grades +eleventh hour,eleventh hours +elevon,elevons +elfe,elfen,elfene +elf,elves +elfin,elfins +elfin saddle,elfin saddles +elfin wood,elfin woods +elfinwood,elfinwoods +elfkin,elfkins +elflock,elflocks +ElG,ElGs +ELG,ELGs +e-library,e-libraries +elicitation,elicitations +elicitor,elicitors +Eli,Elis +eligibility,eligibilities +eligible,eligibles +eliminant,eliminants +elimination question,elimination questions +elimination reaction,elimination reactions +eliminativist,eliminativists +eliminator,eliminators +eliminatory system,eliminatory systems +elipsocid,elipsocids +eliquation,eliquations +elision,elisions +elisor,elisors +elite,elites +Γ©lite,Γ©lites +elitist,elitists +Γ©litist,Γ©litists +elixation,elixations +elixir,elixirs +Elizabethan collar,Elizabethan collars +Elizabethan sonnet,Elizabethan sonnets +Elkasaite,Elkasaites +elkburger,elkburgers +elke,elkes +elk,elk,elks +Elk,Elks +elkerite,elkerites +Elkesaite,Elkesaites +elkhorn,elkhorns +elkhound,elkhounds +Elkinsia,Elkinsias +elkskin,elkskins +elk test,elk tests +ellagic acid,ellagic acids +ellagitannin,ellagitannins +ell,ells +ell,ells +ELL,ELLs +ellen,ellens +ellesmeroceratid,ellesmeroceratids +Elliott wave,Elliott waves +ellipse,ellipses +ellipsis,ellipses +ellipsograph,ellipsographs +ellipsoid,ellipsoids +ellipsoid of revolution,ellipsoids of revolution +ellipsometer,ellipsometers +elliptical,ellipticals +elliptical galaxy,elliptical galaxies +elliptic curve,elliptic curves +elliptic function,elliptic functions +elliptization,elliptizations +elliptocyte,elliptocytes +elliptograph,elliptographs +ellobiid,ellobiids +ellwand,ellwands +elm,elms +elmiric acid,elmiric acids +elmisaurid,elmisaurids +elning,elnings +El NiΓ±o,El NiΓ±os +elocutionist,elocutionists +elodea,elodeas +elodeid,elodeids +elodian,elodians +eloge,eloges +Γ©loge,Γ©loges +elogist,elogists +elogium,elogia +elogy,elogies +Eloi,Eloi +elongase,elongases +elongation,elongations +elongator,elongators +elonid,elonids +elopement,elopements +eloper,elopers +elopid,elopids +elopomorph,elopomorphs +elpee,elpees +elpistostegid,elpistostegids +elsen,elsens +elsewhere,elsewheres +elsin,elsins +ELT,ELTs +eluant,eluants +elucidation,elucidations +elucidator,elucidators +elucubration,elucubrations +eluder,eluders +eluent,eluents +Elunchun,Elunchuns +elutriation,elutriations +elutriator,elutriators +eluvium,eluviums,eluvia +elvan,elvans +elve,elves +elven,elvens,elvene +elver,elvers +Elvis,Elvises +elwand,elwands +elysiid,elysiids +elytron,elytra +elytrotomy,elytrotomies +emacs,emacses,emacsen +ema,ema +e-magazine,e-magazines +e-mail address,e-mail addresses +email bankruptcy,email bankruptcies +email client,email clients +emailee,emailees +email,emails +e-mailer,e-mailers +emailer,emailers +email reader,email readers +emanation,emanations +emanator,emanators +emancipationist,emancipationists +emancipator,emancipators +emancipatrix,emancipatrices +emancipist,emancipists +emargination,emarginations +e-marketer,e-marketers +emasculation,emasculations +emasculator,emasculators +emballonurid,emballonurids +embalmer,embalmers +embalming,embalmings +embankment,embankments +embarcadere,embarcaderes +embarcadΓ¨re,embarcadΓ¨res +embarcadero,embarcaderos +embarcation,embarcations +embarge,embarges +embargo,embargoes,embargos +embarkation,embarkations +embarkee,embarkees +embarkment,embarkments +embarrassing,embarrassings +embarrassment,embarrassments +embarrassment of riches,embarrassments of riches +embassade,embassades +embassador,embassadors +embassadour,embassadours +embassadress,embassadresses +embassage,embassages +embassy,embassies +embayment,embayments +embedded system,embedded systems +embedder,embedders +embedding,embeddings +embed,embeds +embedment,embedments +embellisher,embellishers +embellishment,embellishments +ember,embers +ember-goose,ember-geese +emberizid,emberizids +embetterment,embetterments +embezzlement,embezzlements +embezzler,embezzlers +embiopteran,embiopterans +embiotocid,embiotocids +embiotocoid,embiotocoids +embitterer,embitterers +emblazoner,emblazoners +emblazoning,emblazonings +emblazonry,emblazonries +emblematist,emblematists +emblem,emblems +emblement,emblements +emblic,emblics +embodier,embodiers +embodiment,embodiments +emboldener,emboldeners +embolectomy,embolectomies +embolisation,embolisations +embolism,embolisms +embolon,embola +embolus,emboli +emboly,embolies +embonpoint,embonpoints +embosser,embossers +embossing,embossings +embossment,embossments +embouchure,embouchures +emboyssement,emboyssements +embrace,embraces +embracement,embracements +embraceor,embraceors +embracer,embracers +embracery,embraceries +embrasure,embrasures +embrazure,embrazures +embrithopod,embrithopods +embrocation,embrocations +embroglio,embroglios +embroiderer,embroiderers +embroideress,embroideresses +embroidering,embroiderings +embroidery,embroideries +embroiler,embroilers +embroilment,embroilments +embryocardia,embryocardias +embryo,embryos,embryones +embryogeny,embryogenies +embryoid,embryoids +embryologist,embryologists +embryon,embryons +embryopathy,embryopathies +embryophyte,embryophytes +embryo sac,embryo sacs +embryosac,embryosacs +embryotomy,embryotomies +embuggerance,embuggerances +embushment,embushments +emcee,emcees +em dash,em dashes +em-dash,em-dashes +emdash,emdashes +eme,emes +emeer,emeers +em,ems +emenagogue,emenagogues +emendation,emendations +emendator,emendators +emender,emenders +emerald ash borer,emerald ash borers +emerald cockroach wasp,emerald cockroach wasps +emerald,emeralds +emerald green,emerald greens +emeraldine,emeraldines +emeraud,emerauds +emergence,emergences +emergency brake,emergency brakes +emergency doctor,emergency doctors +emergency,emergencies +emergency exit,emergency exits +emergency landing,emergency landings +emergency light,emergency lights +emergency locator transmitter,emergency locator transmitters +emergency medical service,emergency medical services +emergency medical technician,emergency medical technicians +emergency physician,emergency physicians +emergency position indicating radio beacon,emergency position indicating radio beacons +emergency response,emergency responses +emergency room,emergency rooms +emergency service,emergency services +emergent,emergents +emergentist,emergentists +emerger,emergers +emergicenter,emergicenters +emergy investment ratio,emergy investment ratios +emeril,emerils +emerin,emerins +emeritum,emerita +emeritus,emeriti +emersion,emersions +emery bag,emery bags +emery board,emery boards +emesis,emeses +E-meter,E-meters +emetic,emetics +emetick,emeticks +emetine,emetines +emetophile,emetophiles +emeu,emeus +Γ©meute,Γ©meutes +emew,emews +emigrant,emigrants +emigration,emigrations +emigrationist,emigrationists +emigrator,emigrators +emigre,emigres +Γ©migrΓ©,Γ©migrΓ©s +Emilian,Emilians +eminence,eminences +eminence grise,eminence grises +Γ©minence grise,Γ©minence grises +eminency,eminencies +emirate,emirates +Emirati,Emiratis +emir,emirs +Emirian,Emirians +emirship,emirships +emissary,emissaries +emission,emissions +emission line,emission lines +emissions test,emissions tests +emissivity,emissivities +emittance,emittances +emitter,emitters +Emlen funnel,Emlen funnels +emma,emmas +emmelichthyid,emmelichthyids +emmenagog,emmenagogs +emmenagogue,emmenagogues +emmet,emmets +emmetrope,emmetropes +emmetropia,emmetropias +Emmy,Emmys +emoji,emoji +emollient,emollients +emolument,emoluments +emophyte,emophytes +Emory oak,Emory oaks +emotag,emotags +emoter,emoters +emoticon,emoticons +emotional cripple,emotional cripples +emotionalisation,emotionalisations +emotionalist,emotionalists +emotionality,emotionalities +emotionalization,emotionalizations +emotional pivot,emotional pivots +emotional structure,emotional structures +emotion,emotions +Γ©motion,Γ©motions +emotivism,emotivisms +emotivist,emotivists +empairment,empairments +empalement,empalements +empanada,empanadas +empanadilla,empanadillas +empanel,empanels +empanelment,empanelments +empasm,empasms +empath,empaths +empathiser,empathisers +empathizer,empathizers +empathogen,empathogens +empeachment,empeachments +empennage,empennages +emperess,emperesses +emperice,emperices +emperor,emperors +Emperor palm,Emperor palms +emperor penguin,emperor penguins +emperour,emperours +empery,emperies +emphasis,emphases +emphasiser,emphasisers +emphasizer,emphasizers +emphatic,emphatics +emphysematous cystitis,emphysematous cystitides +emphyteuticary,emphyteuticaries +empidid,empidids +empire,empires +empire waist,empire waists +empirical ego,empirical egos +empirical formula,empirical formulas,empirical formulae +empiric,empirics +empiricism,empiricisms +empiricist,empiricists +empirick,empiricks +emplacement,emplacements +emplaster,emplasters +emplastic,emplastics +emplotment,emplotments +employee benefit,employee benefits +employee,employees +employee handbook,employee handbooks +employe,employes +employΓ©,employΓ©s +employ,employs +employer,employers +employment agency,employment agencies +employment contract,employment contracts +empodium,empodia +empoisoner,empoisoners +emporium,emporiums,emporia +empowerer,empowerers +empowerment,empowerments +empress,empresses +empressite,empressites +empressment,empressments +empress regnant,empresses regnant +emprise,emprises +emprisonment,emprisonments +emprovement,emprovements +emptier,emptiers +empty base,empty bases +empty chair,empty chairs +empty,empties +empty function,empty functions +empty graph,empty graphs +emptying,emptyings +empty morpheme,empty morphemes +empty nest,empty nests +empty nester,empty nesters +empty net goal,empty net goals +empty-net goal,empty-net goals +empty netter,empty netters +empty-netter,empty-netters +empty product,empty products +empty promise,empty promises +Empty Quiver,Empty Quivers +empty space,empty spaces +empty suit,empty suits +empty sum,empty sums +empuse,empuses +empusid,empusids +empyema,empyemas,empyemata +empyreuma,empyreumas +empyric,empyrics +empyrosis,empyroses +em quad,em quads +em space,em spaces +EMT-B,EMT-Bs +EMT-P,EMT-Ps +emuellid,emuellids +emu,emus +emulation,emulations +emulator,emulators +emulatress,emulatresses +emulgent,emulgents +emulsifier,emulsifiers +emulsin,emulsins +emulsion,emulsions +emulsion paint,emulsion paints +emunctory,emunctories +emu-wren,emu-wrens +emyd,emyds +emydid,emydids +enablement,enablements +enabler,enablers +enactment,enactments +enactor,enactors +enacture,enactures +enal,enals +enaliarctid,enaliarctids +enaliornithid,enaliornithids +enaliosaur,enaliosaurs +enaliosaurian,enaliosaurians +enallage,enallages +enallene,enallenes +enameled wire,enameled wires +enameler,enamelers +enamelin,enamelins +enamelist,enamelists +enameller,enamellers +enamellist,enamellists +enamelysin,enamelysins +enamide,enamides +enamine,enamines +enaminone,enaminones +enantate,enantates +enanthate,enanthates +enanthem,enanthema +enantioconvergence,enantioconvergences +enantiodromia,enantiodromias +enantioface,enantiofaces +enantioinduction,enantioinductions +enantiomer,enantiomers +enantiomerism,enantiomerisms +enantiomerization,enantiomerizations +enantiomorph,enantiomorphs +enantiopode,enantiopodes +enantiornithean,enantiornitheans +enantiornithine,enantiornithines +enantioselectivity,enantioselectivities +enantiotropism,enantiotropisms +enargia,enargias +Γ©narque,Γ©narques +enarration,enarrations +enarthrosis,enarthroses +enate,enates +enation,enations +encampment,encampments +encantation,encantations +encapsulant,encapsulants +encapsulation,encapsulations +encarpus,encarpuses,encarpi +encasement,encasements +encaustic,encaustics +enceinte,enceintes +encenillo,encenillos +encephalectomy,encephalectomies +encephalin,encephalins +encephalitis,encephalitides +encephalitozoon,encephalitozoons +encephalitozoonosis,encephalitozoonoses +encephalization,encephalizations +encephalocele,encephaloceles +encephalogram,encephalograms +encephalography,encephalographies +encephaloid,encephaloids +encephalomyelitis,encephalomyelitides +encephalomyelopathy,encephalomyelopathies +encephalomyopathy,encephalomyopathies +encephalon,encephala +encephalopathy,encephalopathies +encephalum,encephala +enchanter,enchanters +enchanter's nightshade,enchanter's nightshades +enchantour,enchantours +enchantress,enchantresses +enchaser,enchasers +enchauntour,enchauntours +enchauntress,enchauntresses +encheason,encheasons +enchesoun,enchesouns +enchilada,enchiladas +enchiridion,enchiridions,enchiridia +enchondroma,enchondromas,enchondromata +enchytraeid,enchytraeids +encirclement,encirclements +encirclet,encirclets +encitement,encitements +enclave,enclaves +enclavement,enclavements +enclitic,enclitics +encloser,enclosers +encoder,encoders +encoding,encodings +encoffiner,encoffiners +encoffinment,encoffinments +encoignure,encoignures +encolure,encolures +encomiast,encomiasts +encomiastic,encomiastics +encomium,encomiums,encomia +encore,encores +encoubert,encouberts +encounter,encounters +encounterer,encounterers +encounter group,encounter groups +encountre,encountres +encouragement,encouragements +encourager,encouragers +Encratite,Encratites +encrease,encreases +encrinite,encrinites +encrinurid,encrinurids +encrinus,encrini +encroach,encroaches +encroacher,encroachers +encrustation,encrustations +encrypter,encrypters +encryptor,encryptors +encumberer,encumberers +encumberment,encumberments +encumbrance,encumbrances +encumbrancer,encumbrancers +encunting,encuntings +encyclical,encyclicals +encyclic,encyclics +encyclopΓ¦dia,encyclopΓ¦diΓ¦,encyclopΓ¦dias +encyclopaedia,encyclopaedias,encyclopaediae +encyclopaedian,encyclopaedians +encyclopΓ¦dian,encyclopΓ¦dians +encyclopaedist,encyclopaedists +encyclopΓ¦dist,encyclopΓ¦dists +encyclopaedy,encyclopaedies +encyclopedia,encyclopedias,encyclopediae,encyclopediΓ¦ +encyclopedic dictionary,encyclopedic dictionaries +encyclopedist,encyclopedists +encyclopedy,encyclopedies +encyrtid,encyrtids +encystment,encystments +endangered species,endangered species +endangerment,endangerments +endarterectomy,endarterectomies +endarteriectomy,endarteriectomies +endarteritis,endarterites +endarterium,endarteria +en dash,en dashes +end board,end boards +endbrain,endbrains +endbud,endbuds +end cap,end caps +endcap,endcaps +endearment,endearments +endeavor,endeavors +endeavorer,endeavorers +endeavour,endeavours +endecagon,endecagons +endecane,endecanes +endectocide,endectocides +end-effector,end-effectors +endemic,endemics +endemick,endemicks +end,ends +End,Ends +endenization,endenizations +endenture,endentures +ender,enders +end game,end games +end-game,end-games +endgame,endgames +endgate,endgates +endictment,endictments +ending,endings +endite,endites +end item,end items +endknot,endknots +end lap,end laps +end-leaf,end-leafs +end line,end lines +end mark,end marks +endmark,endmarks +endmember,endmembers +endmill,endmills +endnote,endnotes +endobacterium,endobacteria +endobiont,endobionts +endoblast,endoblasts +endocannabinoid,endocannabinoids +endocannibal,endocannibals +endocardium,endocardia +endocarp,endocarps +endocast,endocasts +endoceratid,endoceratids +endocervix,endocervixes,endocervices +endochitinase,endochitinases +endocon,endocons +endocranium,endocrania +endocrine disruptor,endocrine disruptors +endocrine,endocrines +endocrine gland,endocrine glands +endocrine system,endocrine systems +endocrinologist,endocrinologists +endocuticle,endocuticles +endocycle,endocycles +endocyst,endocysts +endodeoxyribonuclease,endodeoxyribonucleases +endoderm,endoderms +endodontid,endodontids +endodontist,endodontists +endo,endos +endoenzyme,endoenzymes +endoethnonym,endoethnonyms +End of Cycle,End of Cycles +end of the line,ends of the lines +endofullerene,endofullerenes +endofunction,endofunctions +endofunctor,endofunctors +endogen,endogens +endogenization,endogenizations +endogenous retrovirus,endogenous retroviruses +endogeny,endogenies +endoglucanase,endoglucanases +endoglycosidase,endoglycosidases +endognath,endognaths +endohedral,endohedrals +endo-isomer,endo-isomers +endolith,endoliths +endolysosome,endolysosomes +endomembrane,endomembranes +endomesoderm,endomesoderms +endometrioma,endometriomas +endometrium,endometria +endomorph,endomorphs +endomorphin,endomorphins +endomorphism,endomorphisms +endomychid,endomychids +endomycorrhiza,endomycorrhizas +endomysium,endomysia +endomyxan,endomyxans +endonuclease,endonucleases +endonym,endonyms +endoparasite,endoparasites +endoparasitoid,endoparasitoids +endopeptidase,endopeptidases +endoperoxide,endoperoxides +endophenotype,endophenotypes +endophilin,endophilins +endophora,endophoras +endophthalmitis,endophthalmites +endophyte,endophytes +endoplasm,endoplasma +endoplasmic reticulum,endoplasmic reticula +endoplast,endoplasts +endoplastule,endoplastules +endopleurite,endopleurites +endopod,endopods +endopodite,endopodites +endoprosthesis,endoprostheses +endoprotease,endoproteases +endoreduplication,endoreduplications +endorhiza,endorhizae +endoribonuclease,endoribonucleases +endorphin,endorphins +endorsation,endorsations +endorsee,endorsees +endorse,endorses +endorsement,endorsements +endorser,endorsers +endoscope,endoscopes +endoscopist,endoscopists +endoscopy,endoscopies +endoskeleton,endoskeletons +endosmometer,endosmometers +endosome,endosomes +endosperm,endosperms +endosphere,endospheres +endospore,endospores +endosporium,endosporia +endosternite,endosternites +endosteum,endostea +endostoma,endostomata +endostome,endostomes +endostosis,endostoses +endostyle,endostyles +endosulfatase,endosulfatases +endosymbiont,endosymbionts +endosymbiosis,endosymbioses +endothecium,endothecia +endothelialization,endothelializations +endothelioma,endotheliomas +endothelium,endothelia +endotherm,endotherms +endothiodontid,endothiodontids +endotoxin,endotoxins +endotransglycosylase,endotransglycosylases +endowed chair,endowed chairs +endower,endowers +endowment,endowments +endowment-linked mortgage,endowment-linked mortgages +endowment policy,endowment policies +endpaper,endpapers +end piece,end pieces +endpiece,endpieces +endpin,endpins +endplate,endplates +endplay,endplays +endpoint,endpoints +end product,end products +endproduct,endproducts +end rhyme,end rhymes +endromid,endromids +end run,end runs +endsay,endsays +end-scraper,end-scrapers +endscraper,endscrapers +endspan,endspans +endspeech,endspeeches +endstage,endstages +end state,end states +endstation,endstations +endstone,endstones +end table,end tables +endtrail,endtrails +enduement,enduements +endurantist,endurantists +endurer,endurers +end user,end users +end user license agreement,end user license agreements +end zone,end zones +endzone,endzones +enediolate,enediolates +enediol,enediols +enediyne,enediynes +enema,enemas,enemata +enemie,enemies +enemy combatant,enemy combatants +enemye,enemyes +enemy,enemies +enemy image,enemy images +enemyship,enemyships +en,ens +energetic disassembly,energetic disassemblies +energid,energids +energisation,energisations +energiser,energisers +energization,energizations +Energizer bunny,Energizer bunnies +energizer,energizers +energumen,energumens +energy bar,energy bars +energy bubble,energy bubbles +energy carrier,energy carriers +energy crisis,energy crises +energy drink,energy drinks +energy,energies +energy expenditure,energy expenditures +energy field,energy fields +energy level,energy levels +energy meter,energy meters +energymeter,energymeters +energy mix,energy mixes +energy shot,energy shots +energy source,energy sources +energy transfer,energy transfers +energyware,energywares +enervator,enervators +e-newsletter,e-newsletters +enfantement,enfantements +enfant terrible,enfants terribles +enfeeblement,enfeeblements +enfeebler,enfeeblers +enfilade,enfilades +enfolder,enfolders +enfoldment,enfoldments +enforcer,enforcers +enframement,enframements +enfranchisement,enfranchisements +enfranchiser,enfranchisers +engaged tone,engaged tones +engagee,engagees +engagement,engagements +engagement ring,engagement rings +engager,engagers +engagor,engagors +engastrimyth,engastrimyths +engawa,engawas +engenderer,engenderers +engendrure,engendrures +eng,engs +engenho,engenhos +engine block,engine blocks +engine displacement,engine displacements +engine driver,engine drivers +engine,engines +engineer,engineers +engineeress,engineeresses +engineering,engineerings +engineering stress,engineering stresses +engineerization,engineerizations +engineer's scale,engineer's scales +engineman,enginemen +engine oil,engine oils +enginer,enginers +engine room,engine rooms +engine trouble,engine troubles +engiscope,engiscopes +Englander,Englanders +engle,engles +English bond,English bonds +English Carrier,English Carriers +English horn,English horns +Englishism,Englishisms +Englishman,Englishmen +English muffin,English muffins +English partridge,English partridges +English rose,English roses +English saddle,English saddles +English Shepherd,English Shepherds +English sonnet,English sonnets +English strong ale,English strong ales +English wheel,English wheels +Englishwoman,Englishwomen +englyn,englynion,englyns +engobe,engobes +ENGO,ENGOs +engonoceratid,engonoceratids +engorgement,engorgements +engraffment,engraffments +engraftment,engraftments +engrailed,engraileds +engrailment,engrailments +engram,engrams +engramme,engrammes +engraulid,engraulids +engraulidid,engraulidids +engraver,engravers +engraving,engravings +engrosser,engrossers +engrossment,engrossments +engulfment,engulfments +engyn,engyns +enhabitant,enhabitants +enhancement,enhancements +enhanceosome,enhanceosomes +enhancer,enhancers +enhydros,enhydroses +enicocephalid,enicocephalids +enid,enids +enigma,enigmas,enigmata +enigmatist,enigmatists +enimine,enimines +enjambment,enjambments +enjera,enjeras +enjoinder,enjoinders +enjoiner,enjoiners +enjoinment,enjoinments +enjoyer,enjoyers +enjury,enjuries +enkephalinase,enkephalinases +enkephaline,enkephalines +enkephalin,enkephalins +enlacement,enlacements +enlargement,enlargements +enlarger,enlargers +enlightened,enlightened +enlightener,enlighteners +enlistee,enlistees +enlistment,enlistments +enlivener,enliveners +enlivenment,enlivenments +enmity,enmities +enneagon,enneagons +enneagram,enneagrams +enneahedron,enneahedra +ennealogy,ennealogies +ennemie,ennemies +enneract,enneracts +ennet,ennets +enniatin,enniatins +ennobler,ennoblers +ennuyΓ©e,ennuyΓ©es +enoate,enoates +enocyanin,enocyanins +enodation,enodations +enoic acid,enoic acids +enoki,enokis +enoki mushroom,enoki mushrooms +enolase,enolases +enolate,enolates +enolboration,enolborations +enol,enols +enolization,enolizations +enologist,enologists +enomotarch,enomotarchs +enomoty,enomoties +enone,enones +enophile,enophiles +enoplometopid,enoplometopids +enoploteuthid,enoploteuthids +enormity,enormities +e-nose,e-noses +enose,enoses +enoteca,enotecas +enouncement,enouncements +e-novella,e-novellas +enoyl,enoyls +en passant,en passants +enprint,enprints +en quad,en quads +enquirer,enquirers +enquiry,enquiries +enragement,enragements +enregistration,enregistrations +enricher,enrichers +enriching,enrichings +enrichment,enrichments +enrockment,enrockments +enrolee,enrolees +Enrolled Bill,Enrolled Bills +enrollee,enrollees +enroller,enrollers +enrollment,enrollments +enrolment,enrolments +Enron,Enrons +ensample,ensamples +ensellure,ensellures +ensemble,ensembles +ensemblist,ensemblists +enshrinee,enshrinees +ensigncy,ensigncies +ensign,ensigns +ensignship,ensignships +enslaver,enslavers +ensnarer,ensnarers +ensorcellment,ensorcellments +ensorcelment,ensorcelments +en space,en spaces +enspection,enspections +enstance,enstances +enstatite,enstatites +enstrophy,enstrophies +ensuite,ensuites +ensurance,ensurances +ensurer,ensurers +enswell,enswells +entablature,entablatures +entablement,entablements +entactin,entactins +entactogen,entactogens +entail,entails +entailment,entailments +entameba,entamebas +entamoeba,entamoebas +entamoebid,entamoebids +entanglement,entanglements +entangler,entanglers +entanglon,entanglons +entasis,entases +entelechy,entelechies +entelodont,entelodonts +entelodontid,entelodontids +entente,ententes +entention,ententions +ent,ents +enter,enters +Enter,Enters +enterer,enterers +enterest,enterests +enteric nervous system,enteric nervous systems +entering,enterings +entering tone,entering tones +enteritis,enteritides,enteritises +entermewer,entermewers +enterobacter,enterobacters +enterobacteriologist,enterobacteriologists +enterobacterium,enterobacteria +enteroblast,enteroblasts +enterocele,enteroceles +enterococcus,enterococci +enterocoele,enterocoeles +enterocoel,enterocoels +enterocyte,enterocytes +enterokinase,enterokinases +enterolignan,enterolignans +enterolith,enteroliths +enteroloph,enterolophs +enteron,entera +enteropathogen,enteropathogens +enteropathy,enteropathies +enteropneust,enteropneusts +enterorrhaphy,enterorrhaphies +enteroscopy,enteroscopies +enterostomy,enterostomies +enterostyle,enterostyles +enterotome,enterotomes +enterotomy,enterotomies +enterotoxin,enterotoxins +enterotype,enterotypes +enterovirus,enteroviruses +enterprise application integration,enterprise application integrations +enterprise architecture model,enterprise architecture models +enterprise,enterprises +enterpriser,enterprisers +enterprise service bus,enterprise service buses +enterprise union,enterprise unions +enterprize,enterprizes +entertainer,entertainers +entertainment center,entertainment centers +entertainment,entertainments +entextualisation,entextualisations +entextualization,entextualizations +enthalpimetry,enthalpimetrys +enthalpogram,enthalpograms +entheogen,entheogens +enthesis,entheses +enthesopathy,enthesopathies +enthraldom,enthraldoms +enthralldom,enthralldoms +enthraller,enthrallers +enthrallment,enthrallments +enthronement,enthronements +enthronization,enthronizations +enthuser,enthusers +enthusiast,enthusiasts +enthymeme,enthymemes +enticement,enticements +enticer,enticers +enticing,enticings +entierty,entierties +entification,entifications +entire,entires +entire function,entire functions +entisol,entisols +entitlement,entitlements +entity,entities +entity relationship diagram,entity relationship diagrams +entity-relationship diagram,entity-relationship diagrams +entity–relationship diagram,entity–relationship diagrams +entity-relationship model,entity-relationship models +entity–relationship model,entity–relationship models +entjie,entjies +entoblast,entoblasts +entobronchium,entobronchia +entoconid,entoconids +entoderm,entoderms +entoflexid,entoflexids +entognath,entognaths +entoliid,entoliids +entolophid,entolophids +entolophulid,entolophulids +entomber,entombers +entombment,entombments +entomere,entomeres +entomobryid,entomobryids +entomolite,entomolites +entomologist,entomologists +entomopathogen,entomopathogens +entomophobia,entomophobias +entomophyte,entomophytes +entomostracan,entomostracans +entomostracean,entomostraceans +entomotomist,entomotomists +entoniscid,entoniscids +entonyssid,entonyssids +entophyte,entophytes +entoplastron,entoplastra +entoproct,entoprocts +entoptoscopy,entoptoscopies +entorhinal cortex,entorhinal cortexes,entorhinal cortices +entosternum,entosterna +entosthoblast,entosthoblasts +entourage,entourages +entozoologist,entozoologists +entozoon,entozoons,entozoa +entrada,entradas +entrail,entrails +entrainment,entrainments +entrance examination,entrance examinations +entrancement,entrancements +entrancer,entrancers +entranceway,entranceways +entrant,entrants +entrapper,entrappers +entraunce,entraunces +entreat,entreats +entreater,entreaters +entreatment,entreatments +entreaty,entreaties +entrechat,entrechats +entrecΓ΄te,entrecΓ΄tes +entree,entrees +entrΓ©e,entrΓ©es +entrencher,entrenchers +entrenching tool,entrenching tools +entrenchment,entrenchments +entrepot,entrepots +entrepΓ΄t,entrepΓ΄ts +entreprenerd,entreprenerds +entrepreneur,entrepreneurs +entreprise,entreprises +entresol,entresols +entretainment,entretainments +entrigue,entrigues +entrist,entrists +entrochite,entrochites +entroduction,entroductions +entrustment,entrustments +entryist,entryists +entryphone,entryphones +Entryphone,Entryphones +entry point for the eye,entry points for the eye +entryway,entryways +entry wound,entry wounds +entwining,entwinings +enucleate,enucleates +enucleation,enucleations +enucleator,enucleators +E number,E numbers +enum,enums +enumeration,enumerations +enumerative definition,enumerative definitions +enumerator,enumerators +enunciation,enunciations +enunciator,enunciators +enuresis,enureses +envelope,envelopes +enveloper,envelopers +envelope stuffer,envelope stuffers +envelope-stuffer,envelope-stuffers +envelopment,envelopments +envier,enviers +enviro,enviros +environazi,environazis +environmental audit,environmental audits +environmental ethics,environmental ethics +environmentalist,environmentalists +environmental refugee,environmental refugees +environmental science,environmental sciences +environmental scientist,environmental scientists +environment division,environment divisions +environment,environments +environment variable,environment variables +environut,environuts +Enviropig,Enviropigs +envirotard,envirotards +envisager,envisagers +envisioner,envisioners +envisioning,envisionings +envoi,envois +envoy,envoys +envoyship,envoyships +enyl,enyls +enyne,enynes +Enzedder,Enzedders +enzootic,enzootics +enzooty,enzooties +enzyme,enzymes +enzyme inhibitor,enzyme inhibitors +enzymologist,enzymologists +eobaatarid,eobaatarids +eobiont,eobionts +eobiotic,eobiotics +eocardiid,eocardiids +EOC,EOCs +eocrinoid,eocrinoids +eoderoceratid,eoderoceratids +eogyrinid,eogyrinids +eohippus,eohippi +eolipile,eolipiles +eolith,eoliths +eomoropid,eomoropids +eomyid,eomyids +eon,eons +eonothem,eonothems +eophliantid,eophliantids +eophrynid,eophrynids +eophyte,eophytes +eosentomid,eosentomids +eosimiid,eosimiids +eosinophil,eosinophils +eosinophil granulocyte,eosinophil granulocytes +eotaxin,eotaxins +eoten,eotens +eothyridid,eothyridids +eotomariid,eotomariids +eotvos,eotvoses +eozoon,eozoons,eozoa +eozoΓΆn,eozoΓΆns,eozoa +epacrid,epacrids +epacris,epacris,epacrises +epact,epacts +e-pal,e-pals +epalon,epalons +epanodos,epanodoses +epanorthosis,epanothorses +eparch,eparchs +eparchy,eparchies +e-passport,e-passports +epaule,epaules +epaulement,epaulements +epaulet,epaulets +epaulette,epaulettes +Γ©pauliΓ¨re,Γ©pauliΓ¨res +epazote,epazotes +epee,epees +Γ©pΓ©e,Γ©pΓ©es +epeeist,epeeists +Γ©pΓ©eist,Γ©pΓ©eists +epeen,epeens +epeirid,epeirids +epencephalon,epencephala +ependyma,ependymas +ependymoma,ependymomas +epenthesis,epentheses +epeolatry,epeolatries +ep,eps +EP,EPs +epergne,epergnes +Γ©pergne,Γ©pergnes +epermeniid,epermeniids +epershand,epershands +e-petition,e-petitions +epexegesis,epexegeses +EPG,EPGs +epha,ephas +ephah,ephahs +ephebe,ephebes,ephebi +ephebiphobia,ephebiphobias +ephebophile,ephebophiles +ephedra,ephedras +ephelis,ephelides +ephemeral,ephemerals +ephemeral lake,ephemeral lakes +ephemeran,ephemerans +ephemerellid,ephemerellids +ephemerid,ephemerids +ephemeris,ephemerides,ephemerises +ephemerist,ephemerists +ephemeron,ephemera +Eph,Ephs +Ephesian,Ephesians +ephialtes,ephialtes +ephippid,ephippids +ephippium,ephippia +ephod,ephods +ephor,ephors +ephrin,ephrins +Ephthalite,Ephthalites +ephydrid,ephydrids +ephyra,ephyrae +epiallele,epialleles +epiaustraline,epiaustralines +epibiont,epibionts +epibiota,epibiotas +epiblast,epiblasts +epibole,epiboles +epibranchial,epibranchials +epibrassinolide,epibrassinolides +epibromohydrin,epibromohydrins +epical,epicals +epicalyx,epicalyxes,epicalyces +epicanthoplasty,epicanthoplasties +epicanthus,epicanthi +epicardium,epicardia +epicarp,epicarps +epicatechin,epicatechins +epicede,epicedes,epicedia +epicedian,epicedians +epicedium,epicedia +epicene,epicenes +epicene pronoun,epicene pronouns +epicenter,epicenters +epicentre,epicentres +epic,epics +epicerastic,epicerastics +epic fail,epic fails +epichirema,epichiremas,epichiremata +epichlorohydrin,epichlorohydrins +epicist,epicists +epicΕ“le,epicΕ“les +epicΕ“ne,epicΕ“nes +epicondyle,epicondyles +epicoracoid,epicoracoids +epicorium,epicoria +epicortisol,epicortisols +epicotyl,epicotyls +epicranium,epicrania +epicriid,epicriids +epicrisis,epicrises +epicrisis,epicrises +epicurean,epicureans +Epicurean,Epicureans +epicure,epicures +epicuticle,epicuticles +epicycle,epicycles +epicycloid,epicycloids +epidemic,epidemics +epidemick,epidemicks +epidemiologist,epidemiologists +epidemy,epidemies +epidendroid,epidendroids +epidendrum,epidendrums +epiderm,epiderms +epidermin,epidermins +epidermis,epidermises +epidermoptid,epidermoptids +epidiascope,epidiascopes +epididymis,epididymides +epidote,epidotes +epidural,epidurals +epi,epis +epi,epis +epifamily,epifamilies +epifauna,epifaunae,epifaunas +epifluorescence,epifluorescences +epifluorescence microscope,epifluorescence microscopes +epifluorohydrin,epifluorohydrins +epigastrium,epigastria +epigee,epigees +epigenesis,epigeneses +epigenesist,epigenesists +epigenetics,epigenetics +epigenome,epigenomes +epigenotype,epigenotypes +epigeum,epigea +epiglottis,epiglottises,epiglottides +epigonation,epigonations +epigone,epigones +epigonid,epigonids +epigram,epigrams +epigrammatist,epigrammatists +epigrammatizer,epigrammatizers +epigramme,epigrammes +epigrammist,epigrammists +epigraph,epigraphs +epigrapher,epigraphers +epigraphist,epigraphists +epigyne,epigynes +epihalohydrin,epihalohydrins +epihyal,epihyals +epiiodohydrin,epiiodohydrins +epilation,epilations +epilator,epilators +epilayer,epilayers +epilepsy,epilepsies +epileptic,epileptics +epileptick,epilepticks +epileptogenesis,epileptogeneses +epileptologist,epileptologists +epilimnion,epilimnions,epilimnia +epilith,epiliths +epilog,epilogs +epilogism,epilogisms +epilogue,epilogues +epimanikion,epimanikia +epimastigote,epimastigotes +epimedium,epimediums +epimerase,epimerases +epimere,epimeres +epimer,epimers +epimeriid,epimeriids +epimeron,epimera +epimmunome,epimmunomes +epimorphism,epimorphisms +epimutation,epimutations +epimysium,epimysia +epimyth,epimyths +epimythium,epimythia +epinasty,epinasties +epineurium,epineuria +epinglette,epinglettes +epinician,epinicians +epinicion,epinicions +epiotic,epiotics +EpiPen,EpiPens +epiphΓ¦nomenon,epiphΓ¦nomena +epiphany,epiphanies +Epiphany,Epiphanies +epipharyngeal,epipharyngeals +epipharynx,epipharynges +epiphenomenon,epiphenomena +epiphonema,epiphonemas,epiphonemata +epiphoneme,epiphonemes +epiphora,epiphoras +epiphrasis,epiphrases +epiphyllum,epiphyllums +epiphysis,epiphyses +epiphyte,epiphytes +epiplastron,epiplastrons,epiplastra +epiploon,epiploa +epipodite,epipodites +epipodium,epipodia +epipodophyllotoxin,epipodophyllotoxins +epipophysis,epipophyses +epipsocid,epipsocids +epipteric,epipterics +epipterygoid,epipterygoids +epipubic bone,epipubic bones +epipubis,epipubes +epipyropid,epipyropids +EPIRB,EPIRBs +Epirote,Epirotes +Epirot,Epirots +epirrhema,epirrhemata +episcopacy,episcopacies +Episcopal Church,Episcopal Churches +Episcopal,Episcopals +episcopalian,episcopalians +Episcopalian,Episcopalians +episcopant,episcopants +episcopate,episcopates +episcope,episcopes +episcopy,episcopies +episelenide,episelenides +episemon,episemons +episiorrhaphy,episiorrhaphies +episiotomy,episiotomies +episode,episodes +episodic memory,episodic memories +episome,episomes +epispastic,epispastics +epispastick,epispasticks +episperm,episperms +epispore,epispores +epistasis,epistases +epistaxis,epistaxes +epistemΓ©,epistemΓ©s +epistΓͺmΓͺ,epistΓͺmΓͺs +episteme,epistemes,epistemai +epistemicist,epistemicists +epistemological turn,epistemological turns +epistemologist,epistemologists +epistemology,epistemologies +episternum,episternums,episterna +epistle,epistles +epistle lesson,epistle lessons +epistler,epistlers +epistolarian,epistolarians +epistolean,epistoleans +epistoler,epistolers +epistolet,epistolets +epistolizer,epistolizers +epistoma,epistomas +epistome,epistomes +epistrophe,epistrophes +epistyle,epistyles +episulfide,episulfides +episulfonium,episulfoniums +episulphide,episulphides +episyllogism,episyllogisms +episymbiont,episymbionts +episymbiosis,episymbioses +epitaph,epitaphs +epitapher,epitaphers +epitaphic,epitaphics +epitaphist,epitaphists +epitasis,epitases +epitaxial layer,epitaxial layers +epithalamion,epithalamions +epithalamium,epithalamiums,epithalamia +epithalamus,epithalamuses +epithalamy,epithalamies +epitheca,epithecae +epithelial duct,epithelial ducts +epithelial dysplasia,epithelial dysplasias +epithelialisation,epithelialisations +epithelial plug,epithelial plugs +epithelioma,epitheliomas,epitheliomata +epithelium,epitheliums,epithelia +epitheme,epithemes +epithem,epithems +epithet,epithets +epithite,epithites +epitomator,epitomators +epitome,epitomes,epitomai +epitomist,epitomists +epitomizer,epitomizers +epitoniid,epitoniids +epitope,epitopes +epitrachelion,epitrachelions +epitrite,epitrites +epitrochlea,epitrochleas +epitrochoid,epitrochoids +epizeuxis,epizeuxes +epizoan,epizoans +epizoanthid,epizoanthids +epizoodic,epizoodics +epizoon,epizoons,epizoa +epizoΓΆn,epizoΓΆns,epizoa +epizootic,epizootics +epizoΓΆtic,epizoΓΆtics +epocha,epochas +epoche,epoches +epoch,epochs +epode,epodes +epoetin,epoetins +epoicotheriid,epoicotheriids +eponychium,eponychia +eponyme,eponymes +eponym,eponyms +eponymist,eponymists +epoophoron,epoophora +epopea,epopeas +epopee,epopees +Γ©popΓ©e,Γ©popΓ©es +epopoeia,epopoeias +epopΕ“ia,epopΕ“ias +epopteia,epopteias +epopt,epopts +epotation,epotations +epothilone,epothilones +epoxidase,epoxidases +epoxidation,epoxidations +epoxide,epoxides +epoxyalcohol,epoxyalcohols +epoxyeicosatrienoic acid,epoxyeicosatrienoic acids +epoxy,epoxies +epoxylignane,epoxylignanes +epoxylignan,epoxylignans +epoxypropane,epoxypropanes +epoxypropyl,epoxypropyls +epoxy resin,epoxy resins +eppy,eppies +e-prescription,e-prescriptions +EPROM,EPROMs +eprouvette,eprouvettes +epsilonproteobacterium,epsilonproteobacteria +epsin,epsins +eptagon,eptagons +eptameride,eptamerides +EPT,EPTs +e-publisher,e-publishers +epulis,epulises +epulotic,epulotics +epyllion,epyllia +eq,eqq +e-quaintance,e-quaintances +equal,equals +equal-interval chord,equal-interval chords +equaliser,equalisers +equalitarian,equalitarians +equality sign,equality signs +equalization,equalizations +equalizer,equalizers +equal marriage,equal marriages +equal sign,equal signs +equals sign,equals signs +equal weight,equal weights +equant,equants +equation division,equation divisions +equation,equations +equative,equatives +Equatoguinean,Equatoguineans +equator,equators +equatorial,equatorials +Equatorial Guinean,Equatorial Guineans +equerry,equerries +equery,equeries +eques,equites +equestrian,equestrians +equestrienne,equestriennes +equid,equids +equidistribution,equidistributions +equijoin,equijoins +equilateral,equilaterals +equilateral triangle,equilateral triangles +equilibrant,equilibrants +equilibration,equilibrations +equilibrist,equilibrists +equilibrium constant,equilibrium constants +equilibrium,equilibriums,equilibria +equilibrium price,equilibrium prices +equilibrium vapor pressure,equilibrium vapor pressures +equilisation,equilisations +equimultiple,equimultiples +equine,equines +equinoctial,equinoctials +equinoctial year,equinoctial years +equinox,equinoxes,equinoctes +equipartition,equipartitions +equipartitioning,equipartitionings +equipluve,equipluves +equipmentman,equipmentmen +equipotential,equipotentials +equipotential surface,equipotential surfaces +equipper,equippers +equiprobability,equiprobabilities +equipt,equipts +equisetid,equisetids +equisetopsid,equisetopsids +equisetum,equisetums,equiseta +equison,equisons +equivalation,equivalations +equivalence class,equivalence classes +equivalence,equivalences +equivalence principle,equivalence principles +equivalence relation,equivalence relations +equivalent,equivalents +equivalentist,equivalentists +equivalent potential temperature,equivalent potential temperatures +equivalent variation,equivalent variations +equivalent weight,equivalent weights +equivalve,equivalves +equiviscous temperature,equiviscous temperatures +equivocal,equivocals +equivocation,equivocations +equivocator,equivocators +equivoke,equivokes +equivoque,equivoques +eradiation,eradiations +eradication,eradications +eradicative,eradicatives +eradicator,eradicators +era,eras +erasable programmable logic device,erasable programmable logic devices +eraser,erasers +eraser pen,eraser pens +Erasmian,Erasmians +erastes,erastai +Erastian,Erastians +erasure code,erasure codes +erathem,erathems +'erb,'erbs +erbium oxide,erbium oxides +ercedeken,ercedekens +ER diagram,ER diagrams +ErdΕ‘s number,ErdΕ‘s numbers +erd shrew,erd shrews +e-reader,e-readers +erebid,erebids +erect-crested penguin,erect-crested penguins +erecter,erecters +erector,erectors +erectour,erectours +ere,eres +eremiaphilid,eremiaphilids +eremitage,eremitages +eremite,eremites +eremobatid,eremobatids +Erenmalm,Erenmalms +eresid,eresids +e-resource,e-resources +erethism,erethisms +erethistid,erethistids +erethizontid,erethizontids +ereuthophobia,ereuthophobias +Erewhonian,Erewhonians +erf,erfs +erf,erfs,erven +erfkin,erfkins +ergasilid,ergasilids +ergasiophyte,ergasiophytes +ergative,ergatives +ergative verb,ergative verbs +ergatocracy,ergatocracies +erg,ergs +erg,ergs,areg +ergoalkaloid,ergoalkaloids +ergodic theory,ergodic theories +ergology,ergologies +ergometer,ergometers +ergonomics,ergonomics +ergonomist,ergonomists +ergopeptine,ergopeptines +ergoregion,ergoregions +ergosphere,ergospheres +ergostane,ergostanes +ergosurface,ergosurfaces +ergot,ergots +ergotism,ergotisms +erhu,erhu,erhus +erica,ericas +eric,erics +e-right,e-rights +erinaceid,erinaceids +eringo,eringos,eringoes +Erinys,Erinyses +eriococcid,eriococcids +eriocraniid,eriocraniids +eriometer,eriometers +erionite,erionites +eriophyid,eriophyids +eriosomatid,eriosomatids +eriphiid,eriphiids +eristic,eristics +Eritrean,Eritreans +erization,erizations +erk,erks +erlang,erlangs +Erlenmeyer flask,Erlenmeyer flasks +erl-king,erl-kings +erlking,erlkings +ermelin,ermelins +ermine,ermines +ermine moth,ermine moths +ermin,ermins +Ermin,Ermins +ermit,ermits +erne,ernes +ern,erns +erodent,erodents +eroder,eroders +erodium,erodiums +erogation,erogations +eroge,eroge +erogenous zone,erogenous zones +eromenos,eromenoi +erosion,erosions +eroteme,erotemes +erotesis,eroteses +erotic,erotics +eroticism,eroticisms +erotic massage,erotic massages +erotomane,erotomanes +erotomaniac,erotomaniacs +erotopathy,erotopathies +erotophobe,erotophobes +erototoxin,erototoxins +erotylid,erotylids +ERP,ERPs +erpetologist,erpetologists +erpobdellid,erpobdellids +errand boy,errand boys +errand,errands +errand ghost,errand ghosts +errand-ghost,errand-ghosts +erratic,erratics +erration,errations +erratum,errata +errhine,errhines +error bar,error bars +errorbar,errorbars +error catastrophe,error catastrophes +error function,error functions +errorist,errorists +error message,error messages +error of the first kind,errors of the first kind +error of the second kind,errors of the second kind +errour,errours +ersatzer,ersatzers +ersatz,ersatzes +ersatzist,ersatzists +ersh,ershes +erster,ersters +ERT,ERTs +erub,erubs +eruca,erucae +erucate,erucates +eructation,eructations +erudit,erudits +eruption column,eruption columns +eruption,eruptions +eruptive,eruptives +eruv,eruvs,eruvim,eruvin +ERV,ERVs +erw,erws,erwau +erycid,erycids +erycinid,erycinids +erymid,erymids +eryngium,eryngiums +eryngo,eryngos,eryngoes +eryonid,eryonids +eryopid,eryopids +erythema,erythemas,erythemata +erythorbate,erythorbates +erythraeid,erythraeids +erythrina,erythrinas +erythrinid,erythrinids +erythrism,erythrisms +erythritol,erythritols +erythroblast,erythroblasts +erythroblastosis,erythroblastoses +erythrocyte,erythrocytes +erythrocyte sedimentation rate,erythrocyte sedimentation rates +erythrocytometer,erythrocytometers +erythrocytosis,erythrocytoses +erythroderma,erythrodermas,erythrodermata +erythrodextrin,erythrodextrins +erythrofuranose,erythrofuranoses +erythroidine,erythroidines +erythroleukaemia,erythroleukaemias +erythroleukemia,erythroleukemias +erythromycin,erythromycins +erythrose,erythroses +erythrosin,erythrosins +erythrosuchid,erythrosuchids +erythrulose,erythruloses +Erzya,Erzyas +esbat,esbats +escabeche,escabeches +escadrille,escadrilles +esca,escae +escalade,escalades +escalader,escaladers +escalation,escalations +escalation plan,escalation plans +escalator clause,escalator clauses +escalator,escalators +escalefter,escalefters +escallonia,escallonias +escallop,escallops +escalope,escalopes +escalop,escalops +escambio,escambios +escapade,escapades +escape artist,escape artists +escape character,escape characters +escape clause,escape clauses +escapee,escapees +escape,escapes +escape fire,escape fires +escape hatch,escape hatches +escape key,escape keys +escapement,escapements +escape pod,escape pods +escaper,escapers +escape rhythm,escape rhythms +escape sequence,escape sequences +escape tone,escape tones +escape velocity,escape velocities +escapist,escapists +escapologist,escapologists +escarbuncle,escarbuncles +escargatoire,escargatoires +escarp,escarps +escarpment,escarpments +ESC,ESCs +eschalot,eschalots +eschar,eschars +escharotic,escharotics +escharotick,escharoticks +escheat,escheats +escheatment,escheatments +escheator,escheators +eschevin,eschevins +eschewal,eschewals +eschewer,eschewers +eschrichtiid,eschrichtiids +eschscholzia,eschscholzias +esclavage,esclavages +escocheon,escocheons +escolar,escolars +escopet,escopets +escorial,escorials +escort agency,escort agencies +escortee,escortees +escort,escorts +escort service,escort services +escouade,escouades +escout,escouts +escript,escripts +escritoire,escritoires +escrod,escrods +escrol,escrols +escroll,escrolls +escrow,escrows +escuage,escuages +escudo,escudos +Esculapian,Esculapians +esculent,esculents +esculentoside,esculentosides +escutcheon,escutcheons +escutcheon pin,escutcheon pins +e-seminar,e-seminars +eserine,eserines +e-service,e-services +es,esses +esguard,esguards +esh,eshes +e-shop,e-shops +e-shopper,e-shoppers +eskar,eskars +esker,eskers +Eskimoan,Eskimoans +Eskimo,Eskimo,Eskimos +Eskimo kiss,Eskimo kisses +eskimologist,eskimologists +Eskimologist,Eskimologists +Eskimo roll,Eskimo rolls +esky,eskies +esne,esnes +esocid,esocids +e-society,e-societies +esolang,esolangs +esophageal cancer,esophageal cancers +esophageal ulcer,esophageal ulcers +esophagectomy,esophagectomies +esophagogastroduodenoscopy,esophagogastroduodenoscopies +esophagoscope,esophagoscopes +esophagotomy,esophagotomies +esophagus,esophagi +esotericist,esotericists +esoterism,esoterisms +espadon,espadons +espadrille,espadrilles +espagnolette,espagnolettes +espalier,espaliers +espantoon,espantoons +esparcet,esparcets +espauliere,espaulieres +esperamicin,esperamicins +esperance,esperances +Esperantism,Esperantisms +Esperantist,Esperantists +esper,espers +espetada,espetadas +espial,espials +espier,espiers +espinel,espinels +esplanade,esplanades +espontoon,espontoons +espousal,espousals +espouser,espousers +espresso,espressos +espringal,espringals +esquilax,esquilaxes +Esquimau,Esquimaux +Esquimo,Esquimos +esquire,esquires +esquire,esquires +esquireship,esquireships +esquisse,esquisses +essayer,essayers +essay,essays +essaying,essayings +essayist,essayists +essence,essences +Essene,Essenes +essential amino acid,essential amino acids +essential,essentials +essential fatty acid,essential fatty acids +essentialist,essentialists +essential nutrient,essential nutrients +essential oil,essential oils +essential prime implicant,essential prime implicants +ess,esses +Essex girl,Essex girls +Essex man,Essex men +Essex skipper,Essex skippers +essikert,essikerts +essive case,essive cases +essive,essives +essoiner,essoiners +essonite,essonites +established church,established churches +establisher,establishers +establishing shot,establishing shots +establishmentarian,establishmentarians +establishment,establishments +estacade,estacades +estafet,estafets +estafette,estafettes +estaminet,estaminets +estampede,estampedes +estancia,estancias +estate agent,estate agents +estate car,estate cars +estate,estates +estate for life,estates for life +estate in land,estates in land +e-statement,e-statements +estate sale,estate sales +estate tax,estate taxes +esteemer,esteemers +estemmenosuchid,estemmenosuchids +esterase,esterases +ester,esters +esterification,esterifications +esthesia,esthesias +esthesiometer,esthesiometers +esthesioneuroblastoma,esthesioneuroblastomas +esthesis,estheses +esthete,esthetes +esthetician,estheticians +estheticism,estheticisms +esthetic surgery,esthetic surgeries +estiatorio,estiatorios +estimand,estimands +estimate,estimates +estimation,estimations +estimator,estimators +estivation,estivations +estoile,estoiles +Estonian,Estonians +estoppel,estoppels +e-store,e-stores +estrade,estrades +estragon,estragons +estramacon,estramacons +estrane,estranes +estrangement,estrangements +estranger,estrangers +estrapade,estrapades +estray,estrays +estreat,estreats +estre,estres +estrepement,estrepements +estrich,estriches +estrildid,estrildids +estrogenemia,estrogenemias +estrogen,estrogens +estrous cycle,estrous cycles +estrus,estruses +estuary,estuaries +estuation,estuations +estufa,estufas +esurient,esurients +etabonate,etabonates +etacist,etacists +etaerio,etaerios +eta,etas +eta,etas,eta +etagere,etageres +e-tailer,e-tailers +etalon,etalons +eta meson,eta mesons +etamine,etamines +etaoin shrdlu,etaoin shrdlus +Γ©tatisme,Γ©tatismes +etchant,etchants +etcher,etchers +etching,etchings +etching scribe,etching scribes +e-teacher,e-teachers +e-tender,e-tenders +eteostic,eteostics +eternalist,eternalists +eternal triangle,eternal triangles +eternitarian,eternitarians +etesian,etesians +e-text,e-texts +etext,etexts +ethanedithiol,ethanedithiols +ethanolamide,ethanolamides +ethanolamine,ethanolamines +ethanolate,ethanolates +ethenolysis,ethenolyses +etheostomoid,etheostomoids +etherate,etherates +etherealisation,etherealisations +ethereality,etherealities +etherealization,etherealizations +etherealness,etherealnesses +etherification,etherifications +etheriid,etheriids +etherization,etherizations +ethernet,ethernets +Ethernet,Ethernets +etheromaniac,etheromaniacs +eth,eths +ethical,ethicals +ethical investment,ethical investments +ethicality,ethicalities +ethical system,ethical systems +ethic dative,ethic datives +ethic,ethics +ethician,ethicians +ethicist,ethicists +ethick,ethicks +ethic of reciprocity,ethics of reciprocity +ethide,ethides +ethification,ethifications +ethiodide,ethiodides +ethionine,ethionines +Ethiop,Ethiops +Ethiopian,Ethiopians +Ethiopian wolf,Ethiopian wolves +ethmiid,ethmiids +ethmoid bone,ethmoid bones +ethmoid,ethmoids +ethmoid sinus,ethmoid sinuses +ethmoturbinal,ethmoturbinals +ethnarch,ethnarchs +ethnarchy,ethnarchies +ethnic,ethnics +ethnic group,ethnic groups +ethnicity,ethnicities +ethnick,ethnicks +ethnic minority,ethnic minorities +ethnicon,ethnica +ethnikon,ethnika +ethnoarchaeologist,ethnoarchaeologists +ethnobotanical,ethnobotanicals +ethnobotanist,ethnobotanists +ethnoburb,ethnoburbs +ethnocentricity,ethnocentricities +ethnocide,ethnocides +ethnocracy,ethnocracies +ethnocrat,ethnocrats +ethnoecologist,ethnoecologists +ethnogamy,ethnogamies +ethnogeographer,ethnogeographers +ethnographer,ethnographers +ethnography,ethnographys,ethnographies +ethnolect,ethnolects +ethnolinguist,ethnolinguists +ethnologist,ethnologists +ethnomethodologist,ethnomethodologists +ethnomusicologist,ethnomusicologists +ethnonationalism,ethnonationalisms +ethnonym,ethnonyms +ethnopharmacologist,ethnopharmacologists +ethnophaulism,ethnophaulisms +ethnophilia,ethnophilias +ethnophobia,ethnophobias +ethnoscape,ethnoscapes +ethnoscience,ethnosciences +ethnoscientist,ethnoscientists +ethnozoologist,ethnozoologists +ethogram,ethograms +ethologist,ethologists +ethos,ethe,ethea +ethoxide,ethoxides +ethoxy,ethoxys +ethoxylate,ethoxylates +ethoxylation,ethoxylations +e thumb,e thumbs +ethylation,ethylations +ethylenediaminetetraacetate,ethylenediaminetetraacetates +ethylenediaminetetracetate,ethylenediaminetetracetates +ethyleneimine,ethyleneimines +ethylene interpolymer,ethylene interpolymers +ethylenimine,ethylenimines +ethyl,ethyls +ethylidene,ethylidenes +ethylin,ethylins +ethylmercurithiosalicylate,ethylmercurithiosalicylates +ethylphenol,ethylphenols +ethylxanthate,ethylxanthates +ethynide,ethynides +ethynylation,ethynylations +ethynylene,ethynylenes +ethynyl,ethynyls +etianic acid,etianic acids +e-ticket,e-tickets +etidronate,etidronates +etiolation,etiolations +etiologist,etiologists +etiopathogenesis,etiopathogeneses +etioplast,etioplasts +etioporphyrin,etioporphyrins +etiquette,etiquettes +etmopterid,etmopterids +etna,etnas +etoile,etoiles +Γ©toile,Γ©toiles +Etonian,Etonians +Eton jacket,Eton jackets +Eton mess,Eton messes +eTool,eTools +E-tool,E-tools +etoposide,etoposides +e-transaction,e-transactions +Etrurian,Etrurians +Etruscan bear,Etruscan bears +Etruscan,Etruscans +Etruscan shrew,Etruscan shrews +Etruscologist,Etruscologists +ettin,ettins +ettle,ettles +ettler,ettlers +ettling,ettlings +ettling,ettlings +etude,etudes +Γ©tude,Γ©tudes +etui,etuis +Γ©tui,Γ©tuis +e-tutor,e-tutors +etwee,etwees +etyid,etyids +etym,etyms +etymologer,etymologers +etymological argument,etymological arguments +etymological hybrid,etymological hybrids +etymologicon,etymologicons +etymologism,etymologisms +etymologist,etymologists +etymology,etymologies +etymon,etymons,etyma +euagaric,euagarics +euarthropod,euarthropods +euascomycete,euascomycetes +eubacterium,eubacteria +eubelid,eubelids +eublepharid,eublepharids +Euboean,Euboeans +EubΕ“an,EubΕ“ans +eubranchid,eubranchids +eucalypt,eucalypts +eucalyptus,eucalypti,eucalyptuses +eucaryon,eucaryons +eucaryote,eucaryotes +eucatastrophe,eucatastrophes +eucharis,eucharises +Eucharist,Eucharists +eucharitid,eucharitids +Euchite,Euchites +euchologion,euchologions,euchologia +euchologue,euchologues +euchology,euchologies +euchre,euchres +euchroate,euchroates +eucinetid,eucinetids +Euclidean domain,Euclidean domains +Euclidean group,Euclidean groups +Euclidean metric,Euclidean metrics +Euclidean plane,Euclidean planes +Euclidean space,Euclidean spaces +Euclidian space,Euclidian spaces +eucolloid,eucolloids +euconulid,euconulids +eucosmodontid,eucosmodontids +eucrite,eucrites +eucryptite,eucryptites +eudaemon,eudaemons +eudaemonist,eudaemonists +eudemon,eudemons +eudemonist,eudemonists +eudendriid,eudendriids +eudicot,eudicots +eudicotyledon,eudicotyledons +eudiometer,eudiometers +eudismic ratio,eudismic ratios +Eudoxian,Eudoxians +eudrilid,eudrilids +eudysmic ratio,eudysmic ratios +euergetist,euergetists +eugenia,eugenias +eugenicist,eugenicists +eugenist,eugenists +eugenol,eugenols +eugeroic,eugeroics +eugh,eughs +euglena,euglenas +euglenophyte,euglenophytes +euglobulin,euglobulins +euglobulin lysis time,euglobulin lysis times +euglyphid,euglyphids +euhelopid,euhelopids +euhelopodid,euhelopodids +euhemerist,euhemerists +euhemerization,euhemerizations +eukaryon,eukaryons +eukaryote,eukaryotes +eulachon,eulachons +Euler characteristic,Euler characteristics +Euler diagram,Euler diagrams +Euler–Lagrange equation,Euler–Lagrange equations +eulimid,eulimids +eulogism,eulogisms +eulogist,eulogists +eulogium,eulogiums +eulogizer,eulogizers +eulogy,eulogies +eulophid,eulophids +eulytite,eulytites +eumelanosome,eumelanosomes +eumenid,eumenids +eumetazoan,eumetazoans +eumolpid,eumolpids +eumycota,eumycotas +eunicid,eunicids +Eunomian,Eunomians +eunuch,eunuchs +euomphalid,euomphalids +euonym,euonyms +euonymin,euonymins +euouae,euouaes +euparkeriid,euparkeriids +eupatorium,eupatoriums +eupatrid,eupatrids +eupelmid,eupelmids +eupeptide,eupeptides +euphaeid,euphaeids +euphane,euphanes +euphausiacean,euphausiaceans +euphausid,euphausids +euphausiid,euphausiids +euphemist,euphemists +euphemitid,euphemitids +euphemizer,euphemizers +euphist,euphists +euphonicon,euphonicons +euphonium,euphoniums +euphoniumist,euphoniumists +euphonon,euphonons +euphony,euphonies +euphorbia,euphorbias +euphoria,euphorias +euphoriant,euphoriants +euphoric,euphorics +euphotic zone,euphotic zones +euphotide,euphotides +euphrasia,euphrasias +euphrasy,euphrasies +euphroe,euphroes +euphthiracarid,euphthiracarids +euphuism,euphuisms +euphuist,euphuists +euphyllophyte,euphyllophytes +euplectella,euplectellas +euplerid,euplerids +euploid,euploids +eupnea,eupneas +eupraxophy,eupraxophies +eupraxsophy,eupraxsophies +eupryion,eupryions +eupterotid,eupterotids +Eurabian,Eurabians +Eurasian badger,Eurasian badgers +Eurasian black vulture,Eurasian black vultures +Eurasian bullfinch,Eurasian bullfinches +Eurasian,Eurasians +Eurasian jay,Eurasian jays +Eurasian lynx,Eurasian lynxes +eureka effect,eureka effects +eureka moment,eureka moments +Eureka step,Eureka steps +eurhinodelphinid,eurhinodelphinids +euripe,euripes +euripus,euripuses,euripi +eurite,eurites +Eurobond,Eurobonds +Eurocent,Eurocents +Eurocentrist,Eurocentrists +Eurocheque,Eurocheques +Euroconnector,Euroconnectors +Eurocrat,Eurocrats +eurodemo,eurodemos +Eurodeputy,Eurodeputies +eurodollar,eurodollars +Eurodollar,Eurodollars +euro,euro,euros +euro,euros +Euro,Euros,Euro +Eurofag,Eurofags +Euromaniac,Euromaniacs +EuropΓ¦an,EuropΓ¦ans +Europan,Europans +Europasian,Europasians +European badger,European badgers +European beaver,European beavers +European bison,European bison,European bisons +European bullhead,European bullheads +European Commissioner,European Commissioners +European dragon,European dragons +European eel,European eels +European,Europeans +European garden spider,European garden spiders +European hake,European hakes +European hare,European hares +European hedgehog,European hedgehogs +European hornbeam,European hornbeams +Europeanisation,Europeanisations +Europeanism,Europeanisms +Europeanist,Europeanists +European lobster,European lobsters +European mink,European minks +European mistletoe,European mistletoes +European option,European options +European otter,European otters +European Parliament,European Parliaments +European peacock,European peacocks +European perch,European perches +European pollock,European pollocks,European pollock +European redbud,European redbuds +European river lamprey,European river lampreys +European robin,European robins +European sea bass,European sea bass +European seabass,European seabass +European Shorthair,European Shorthairs +European skipper,European skippers +European smelt,European smelts +European spider crab,European spider crabs +European swamp thistle,European swamp thistles +European thimbleweed,European thimbleweeds +European water vole,European water voles +European wildcat,European wildcats +europhile,europhiles +Europlug,Europlugs +Europudding,Europuddings +Euro-rebel,Euro-rebels +Euroregion,Euroregions +eurosceptic,eurosceptics +Euro-sceptic,Euro-sceptics +Eurosceptic,Eurosceptics +eurosid,eurosids +Euro-skeptic,Euro-skeptics +Euroskeptic,Euroskeptics +Eurostar,Eurostars +Euro wasp,Euro wasps +Euro-wasp,Euro-wasps +eurus,euruses +euryarchaeon,euryarchaeons +eurybrachid,eurybrachids +eurylaimid,eurylaimids +euryleptid,euryleptids +eurymylid,eurymylids +euryphage,euryphages +eurypharyngid,eurypharyngids +eurypterid,eurypterids +eurypygid,eurypygids +eurysquillid,eurysquillids +eurytherm,eurytherms +eurythmy,eurythmies +eurytomid,eurytomids +Eusebian,Eusebians +eusirid,eusirids +euskaltegi,euskaltegis +Eustachian tube,Eustachian tubes +eustasy,eustasies +eustele,eusteles +eustigmatophyte,eustigmatophytes +eustreptospondylus,eustreptospondyluses +eustress,eustresses +eustyle,eustyles +eutaxy,eutaxies +eutectic alloy,eutectic alloys +eutectic,eutectics +eutectic mixture,eutectic mixtures +eutectic point,eutectic points +eutectoid,eutectoids +eutely,eutelies +euthanasist,euthanasists +euthanisation,euthanisations +euthanization,euthanizations +eutherian,eutherians +eutomer,eutomers +Eutopia,Eutopias +eutrephoceratid,eutrephoceratids +eutriconodont,eutriconodonts +eutrophic,eutrophics +eutrophy,eutrophies +eutypomyid,eutypomyids +euxanthate,euxanthates +euxenite,euxenites +evac,evacs +evacuation,evacuations +evacuation slide,evacuation slides +evacuator,evacuators +evacuatory,evacuatories +evacuchair,evacuchairs +evacuee,evacuees +evader,evaders +evadite,evadites +evagation,evagations +evagination,evaginations +evaluand,evaluands +evaluatee,evaluatees +evaluation,evaluations +evaluator,evaluators +evangel,evangels +evangelical,evangelicals +evangelism,evangelisms +evangelistary,evangelistaries +evangelist,evangelists +Evangelist,Evangelists +evaniid,evaniids +evanishment,evanishments +evaporator,evaporators +evaporimeter,evaporimeters +evaporite,evaporites +evaporometer,evaporometers +evapotranspirator,evapotranspirators +evasion,evasions +evection,evections +eve,eves +even-bishop,even-bishops +even-christian,even-christians +evener,eveners +even,evens +even function,even functions +evenhood,evenhoods +eveninger,eveningers +evening,evenings +evening glove,evening gloves +evening gown,evening gowns +evening gun,evening guns +evening out,evenings out +evening prayer,evening prayers +evening primrose,evening primroses +evening star,evening stars +evening wrap,evening wraps +Evenk,Evenks,Evenk,Evenki +evenlight,evenlights +even number,even numbers +evenold,evenolds +even-servant,even-servants +evensong,evensongs +even steven,even stevens +event-based programming,event-based programmings +event derivative,event derivatives +event-driven architecture,event-driven architectures +event-driven programming,event-driven programmings +eventer,eventers +event,events +event handler,event handlers +event horizon,event horizons +eventide,eventides +event marketing,event marketings +eventration,eventrations +eventualist,eventualists +eventuality,eventualities +everbloomer,everbloomers +everglade,everglades +evergreen,evergreens +everlasting,everlastings +everlasting flower,everlasting flowers +ever-loving,ever-lovings +everloving,everlovings +evermannellid,evermannellids +ever-present,ever-presents +eversion,eversions +ever smoker,ever smokers +ever-smoker,ever-smokers +Evertonian,Evertonians +everydude,everydudes +everyguy,everyguys +everyman,everymen +everywoman,everywomen +evesdropper,evesdroppers +evestrum,evestra +eve teasing,eve teasings +eve-teasing,eve-teasings +Eve teasing,Eve teasings +Eve-teasing,Eve-teasings +evet,evets +evictee,evictees +eviction,evictions +evictor,evictors +evidencer,evidencers +evidentialist,evidentialists +evildoer,evildoers +evildoing,evildoings +evil eye,evil eyes +evilfare,evilfares +evil genius,evil geniuses,evil genii +evil laugh,evil laughs +evil twin,evil twins +eviphidid,eviphidids +evisceration,eviscerations +eviscerator,eviscerators +evitation,evitations +evocation,evocations +evocator,evocators +evoked potential,evoked potentials +evoker,evokers +evolation,evolations +Γ©voluΓ©,Γ©voluΓ©s +evolute,evolutes +evolutionary biologist,evolutionary biologists +evolutionary theory,evolutionary theories +evolution,evolutions +evolutionist,evolutionists +evolvability,evolvabilities +evolvement,evolvements +evolvent,evolvents +evolver,evolvers +e-voter,e-voters +e-voucher,e-vouchers +EVP,EVPs +evulgation,evulgations +evzone,evzones,evzonoi +e-wallet,e-wallets +ewe,ewes,ewe +ewer,ewers +ewery,eweries +Ewing sarcoma,Ewing sarcomas +Ewing's sarcoma,Ewing's sarcomas +ewre,ewres +ewt,ewts +exabyte,exabytes +exacerbator,exacerbators +exacta,exactas +exacter,exacters +exaction,exactions +exactitude,exactitudes +exactor,exactors +exactress,exactresses +exact science,exact sciences +exact sequence,exact sequences +exaflop,exaflops +exaggeration,exaggerations +exaggerator,exaggerators +exagram,exagrams +exakatal,exakatals +exaliter,exaliters +exalitre,exalitres +exaltation,exaltations +exalter,exalters +exameter,exameters +exametre,exametres +exam,exams +examinant,examinants +examinate,examinates +examination,examinations +examinator,examinators +examinee,examinees +examiner,examiners +examinership,examinerships +examining room,examining rooms +exam paper,exam papers +example,examples +exampler,examplers +exanewton,exanewtons +exanthema,exanthemas,exanthemata +exaptation,exaptations +exarchate,exarchates +exarch,exarchs +exarticulation,exarticulations +exasecond,exaseconds +exasperater,exasperaters +exaton,exatons +exauctoration,exauctorations +exauguration,exaugurations +exbibyte,exbibytes +ex-boyfriend,ex-boyfriends +excambion,excambions +excardination,excardinations +excarnation,excarnations +excavate,excavates +excavation unit,excavation units +excavator,excavators +excavatrix,excavatrices +excedent,excedents +exceeder,exceeders +excellency,excellencies +Excellency,Excellencies +exceptional case-marking,exceptional case-markings +exceptionalist,exceptionalists +exceptionality,exceptionalities +exceptional space,exceptional spaces +exceptioner,exceptioners +exception,exceptions +exception handler,exception handlers +exceptor,exceptors +excerebration,excerebrations +excerpt,excerpts +excerptor,excerptors +excess,excesses +excessiveness,excessivenesses +excessive number,excessive numbers +excess return,excess returns +exchange,exchanges +exchange rate,exchange rates +exchanger,exchangers +exchange student,exchange students +exchange zone,exchange zones +excheat,excheats +excheator,excheators +exchequer,exchequers +Exchequer,Exchequers +excimer,excimers +excimer laser,excimer lasers +excipient,excipients +exciple,exciples +exciplex,exciplexes +excipulum,excipula +excircle,excircles +excise,excises +exciseman,excisemen +excise tax,excise taxes +excisionase,excisionases +excision,excisions +excisor,excisors +excitant,excitants +excitation energy,excitation energies +excitation,excitations +excitation function,excitation functions +excited state,excited states +exciter,exciters +excitive,excitives +exciton,excitons +excitotoxin,excitotoxins +excize,excizes +exclaimer,exclaimers +exclaim,exclaims +exclamation,exclamations +exclamation mark,exclamation marks +exclamation point,exclamation points +exclame,exclames +exclam,exclams +exclaustration,exclaustrations +exclave,exclaves +exclosure,exclosures +excluder,excluders +exclusionary rule,exclusionary rules +exclusionist,exclusionists +exclusion zone,exclusion zones +exclusive disjunction,exclusive disjunctions +exclusive,exclusives +exclusive or,exclusive ors +exclusive-or,exclusive-ors +exclusive right,exclusive rights +exclusivist,exclusivists +exclusivity,exclusivities +excommunicant,excommunicants +excommunicate,excommunicates +excommunication,excommunications +excommunicator,excommunicators +ex-con,ex-cons +ex-convict,ex-convicts +excoriation,excoriations +excosecant,excosecants +excrement,excrements +excrement,excrements +excrescence,excrescences +excrescency,excrescencies +excrescent,excrescents +excretion,excretions +excruciation,excruciations +excrudescence,excrudescences +excubitorium,excubitoria +exculpation,exculpations +excursion,excursions +excursionist,excursionists +excursion steamer,excursion steamers +excursus,excursuses,excursus +excusation,excusations +excusator,excusators +excuse,excuses +excuse me,excuse mes +excuser,excusers +excussion,excussions +exeat,exeats +exec.,execs. +execration,execrations +execrative,execratives +executable,executables +executant,executants +execute order,execute orders +executer,executers +executional peak,executional peaks +executioneress,executioneresses +executioner,executioners +execution,executions +executionist,executionists +executive committee,executive committees +executive ego function,executive ego functions +executive,executives +executive mansion,executive mansions +executive officer,executive officers +executive order,executive orders +executive producer,executive producers +executive summary,executive summaries +executor,executors +executorial trustee,executorial trustees +executory interest,executory interests +executour,executours +executress,executresses +executrix,executrices +exedra,exedras,exedrae +exegesis,exegeses +exegete,exegetes +exegetist,exegetists +exeligmos,exeligmoi +exemplar,exemplars +exemplary,exemplaries +exemplification,exemplifications +exemplifier,exemplifiers +exemplum,exempla +exempt,exempts +exemptionalist,exemptionalists +exemption,exemptions +exencephaly,exencephalies +exendin,exendins +exenteration,exenterations +exequatur,exequaturs +exequy,exequies +exercise ball,exercise balls +exercise bicycle,exercise bicycles +exercise book,exercise books +exercise,exercises +exercise in futility,exercises in futility +exercise machine,exercise machines +exerciser,exercisers +exercitant,exercitants +exercitive,exercitives +exercycle,exercycles +exergame,exergames +exergasia,exergasias +exergue,exergues +exertion,exertions +exessive,exessives +exetainer,exetainers +exeunt,exeunts +ex,exes,exs +exfiltrate,exfiltrates +exfiltration,exfiltrations +exfoliant,exfoliants +exfoliation,exfoliations +exfoliator,exfoliators +exfriend,exfriends +ex-gay,ex-gays +ex-girlfriend,ex-girlfriends +ex-god,ex-gods +exgod,exgods +exhalant,exhalants +exhalation,exhalations +exhaler,exhalers +exhausted receiver,exhausted receivers +exhauster,exhausters +exhaust,exhausts +exhaust pipe,exhaust pipes +exhaust purifier,exhaust purifiers +exhaust system,exhaust systems +exhaust valve,exhaust valves +exhedra,exhedras,exhedrae +exheredation,exheredations +exhibiter,exhibiters +exhibit,exhibits +exhibitioner,exhibitioners +exhibition,exhibitions +exhibitionist,exhibitionists +exhibitor,exhibitors +exhilarant,exhilarants +exhortation,exhortations +exhortative,exhortatives +exhorter,exhorters +exhumation,exhumations +exhumer,exhumers +ex-husband,ex-husbands +exicator,exicators +exicosis,exicoses +exigence,exigences +exigency,exigencies +exigendary,exigendaries +exigenter,exigenters +exigent,exigents +exilarch,exilarchs +exile,exiles +exinanition,exinanitions +exine,exines +existent,existents +existential crisis,existential crises +existential instantiation,existential instantiations +existentialism,existentialisms +existentialist,existentialists +existential quantifier,existential quantifiers +exister,existers +existimation,existimations +exitance,exitances +exit,exits +exit policy,exit policies +exit poll,exit polls +exit program,exit programs +exit sign,exit signs +exit stage left,exits stage left +exit strategy,exit strategies +exit wound,exit wounds +ex libris,ex libris +Exmoorian,Exmoorians +exoantigen,exoantigens +exobiologist,exobiologists +exocannibal,exocannibals +exocarp,exocarps +exocervix,exocervixes,exocervices +Exocet,Exocets +exocoelomic cavity,exocoelomic cavities +exocoetid,exocoetids +exocomet,exocomets +exocon,exocons +exocrine gland,exocrine glands +exocuticle,exocuticles +exocyst,exocysts +exocytosis,exocytoses +exode,exodes +exodomain,exodomains +exodus,exoduses +Exoduster,Exodusters +exoenzyme,exoenzymes +exoethnonym,exoethnonyms +exogamy,exogamies +exogen,exogens +exogeny,exogenies +exoglucanase,exoglucanases +exoglycosidase,exoglycosidases +exo-isomer,exo-isomers +exokernel,exokernels +exolution,exolutions +exome,exomes +exomer,exomers +exomoon,exomoons +exonarthex,exonarthexes +exoneme,exonemes +exoneration,exonerations +exonerator,exonerators +exoneree,exonerees +exon,exons +exon,exons +Exonian,Exonians +exonization,exonizations +exonuclease,exonucleases +exonumia,exonumia +exonumist,exonumists +exonym,exonyms +exopeptidase,exopeptidases +exophora,exophoras +exophyte,exophytes +exoplanet,exoplanets +exopod,exopods,exopoda +exopodite,exopodites +exopolymer,exopolymers +exopolyphosphatase,exopolyphosphatases +exopolysaccharide,exopolysaccharides +exoprotease,exoproteases +exoprotein,exoproteins +exorbitance,exorbitances +exorbitancy,exorbitancies +exorciser,exorcisers +exorcism,exorcisms +exorcist,exorcists +exorcizer,exorcizers +exord,exords +EXORD,EXORDS +exordium,exordiums,exordia +exoribonuclease,exoribonucleases +exornation,exornations +exorphine,exorphines +exorphin,exorphins +exosite,exosites +exoskeleton,exoskeletons +exosolar planet,exosolar planets +exosome complex,exosome complexes +exosome,exosomes +exosphere,exospheres +exospore,exospores +exosporium,exosporia +exostema,exostemas +exostome,exostomes +exostosis,exostoses +exosubstance,exosubstances +exosystem,exosystems +exoterism,exoterisms +exotery,exoteries +exotheca,exothecae +exothecium,exothecia +exothelium,exothelia +exotherm,exotherms +exotic atom,exotic atoms +exotic baryon,exotic baryons +exotic cheroot,exotic cheroots +exotic dancer,exotic dancers +exotic,exotics +exotic hadron,exotic hadrons +exoticization,exoticizations +exotick,exoticks +exotic meson,exotic mesons +Exotic Shorthair,Exotic Shorthairs +exotic sphere,exotic spheres +exotoxin,exotoxins +exozodi,exozodis +expandable,expandables +expanded form,expanded forms +expanded universe,expanded universes +expander,expanders +expando,expandos +expanse,expanses +expansin,expansins +expansion adapter,expansion adapters +expansion cleat,expansion cleats +expansion,expansions +expansionist,expansionists +expansion joint,expansion joints +expansion pack,expansion packs +expansion slot,expansion slots +ex-pat,ex-pats +expat,expats +expatiation,expatiations +expatiator,expatiators +expatriate,expatriates +expatriation,expatriations +expectance,expectances +expectancy,expectancies +expectation,expectations +expectative grace,expectative graces +expected value,expected values +expecter,expecters +expectorant,expectorants +expectorative,expectoratives +expedient,expedients +expediment,expediments +expediter,expediters +expedition,expeditions +expeditionist,expeditionists +expeditor,expeditors +expelee,expelees +expellee,expellees +expeller,expellers +expelling,expellings +expence,expences +expendability,expendabilities +expendable,expendables +expender,expenders +expense account,expense accounts +expense,expenses +expensive drunk,expensive drunks +experience,experiences +experience point,experience points +experience points,experience points +experiencer,experiencers +experient,experients +experientialist,experientialists +experimental,experimentals +experimentalist,experimentalists +experimental probability,experimental probabilities +experimentarian,experimentarians +experimentation,experimentations +experimentator,experimentators +experimentee,experimentees +experimenter,experimenters +experiment,experiments +experimentist,experimentists +expert,experts +expert system,expert systems +expert witness,expert witnesses +expiation,expiations +expiator,expiators +expilator,expilators +expirant,expirants +expiree,expirees +expiry,expiries +explainability,explainabilities +explainer,explainers +explanandum,explananda +explanans,explanantia +explanation,explanations +explanationist,explanationists +explanator,explanators +explanatory style,explanatory styles +explantation,explantations +explant,explants +explement,explements +expletive,expletives +explicability,explicabilities +explicandum,explicanda +explication,explications +explicator,explicators +explicitation,explicitations +explicit function,explicit functions +exploded view,exploded views +exploder,exploders +exploding cucumber,exploding cucumbers +exploitationer,exploitationers +exploitation,exploitations +exploitation film,exploitation films +exploitee,exploitees +exploiter,exploiters +exploit,exploits +exploiture,exploitures +exploration,explorations +explorator,explorators +exploratorium,exploratoriums +exploratory committee,exploratory committees +exploratory,exploratories +explorer,explorers +exploring,explorings +explorista,exploristas +explosimeter,explosimeters +explosion,explosions +explosive decompression,explosive decompressions +explosive,explosives +expo,expos +expoliation,expoliations +exponent,exponents +exponential distribution,exponential distributions +exponential equation,exponential equations +exponential,exponentials +exponential function,exponential functions +exponential object,exponential objects +exponentiator,exponentiators +exporter,exporters +exportin,exportins +export subsidy,export subsidies +exposed beam,exposed beams +exposΓ©,exposΓ©s +exposeome,exposeomes +exposer,exposers +exposition,expositions +exposition,expositions +expositor,expositors +expositour,expositours +exposome,exposomes +expostulator,expostulators +exposure meter,exposure meters +exposure treatment,exposure treatments +expounder,expounders +ex-president,ex-presidents +expresser,expressers +express,expresses +express,expresses +expression,expressions +expressionist,expressionists +expressivist,expressivists +express kidnapping,express kidnappings +express lane,express lanes +expressman,expressmen +expressome,expressomes +express rifle,express rifles +express train,express trains +expressway,expressways +exprobration,exprobrations +expropriation,expropriations +expugnation,expugnations +expugner,expugners +expuition,expuitions +expulser,expulsers +expulsion,expulsions +expulsionist,expulsionists +expunction,expunctions +expungement,expungements +expunger,expungers +expurgation,expurgations +expurgator,expurgators +exquisite,exquisites +exsanguination,exsanguinations +ex-Scientologist,ex-Scientologists +exscript,exscripts +exsecant,exsecants +exsection,exsections +ex-serviceman,ex-servicemen +exsiccant,exsiccants +exsiccata,exsiccatae +exsiccator,exsiccators +ex-slave,ex-slaves +ex-stepdad,ex-stepdads +ex-stepfather,ex-stepfathers +ex-stepmom,ex-stepmoms +ex-stepmother,ex-stepmothers +ex-stepparent,ex-stepparents +ex stock,ex stocks +ex-stock,ex-stocks +exstrophy,exstrophies +exsuction,exsuctions +exsufflation,exsufflations +extance,extances +extancy,extancies +extein,exteins +extemper,extempers +ex tempore,ex tempores +extempore,extempores +extemporisation,extemporisations +extemporization,extemporizations +extemporizer,extemporizers +extended basic block,extended basic blocks +extended metaphor,extended metaphors +extended real number system,real number systems +extender,extenders +extensin,extensins +extensional definition,extensional definitions +extension block,extension blocks +extension cable,extension cables +extension cord,extension cords +extension,extensions +extension field,extension fields +extensionist,extensionists +extensive form game,extensive form games +extensiveness,extensivenesses +extensometer,extensometers +extensor,extensors +extent,extents +extenuating circumstance,extenuating circumstances +extenuation,extenuations +extenuator,extenuators +exterior angle,exterior angles +exterior,exteriors +exteriority,exteriorities +exteriorization,exteriorizations +exteriour,exteriours +extermination camp,extermination camps +extermination,exterminations +exterminationist,exterminationists +exterminator,exterminators +exterminatress,exterminatresses +exterminatrix,exterminatrices +external cause,external causes +external conflict,external conflicts +external coupling,external couplings +external ear,external ears +external fertilization,external fertilizations +externalisation,externalisations +externalism,externalisms +externalist,externalists +externalization,externalizations +externalizer,externalizers +external link,external links +external risk,external risks +external stimulus,external stimuli +externe,externes +extern,externs +externship,externships +exteroceptor,exteroceptors +exterplex,exterplexes +ext.,exts. +ex-theologian,ex-theologians +extillation,extillations +extinction,extinctions +extinctionist,extinctionists +extinct language,extinct languages +extine,extines +extinguishant,extinguishants +extinguisher,extinguishers +extinguishment,extinguishments +extirpation,extirpations +extirpator,extirpators +extirper,extirpers +extispicy,extispicies +extoller,extollers +extolment,extolments +extorsion,extorsions +extorter,extorters +extortioner,extortioners +extortion,extortions +extortionist,extortionists +extra base hit,extra base hits +extracellular matrix,extracellular matrices +extractant,extractants +extract,extracts +extraction,extractions +extractive,extractives +extractor,extractors +extractor hood,extractor hoods +extracurricular,extracurriculars +extraditee,extraditees +extradition,extraditions +extrados,extradoses,extrados +extra,extras +extra-miler,extra-milers +extramission,extramissions +extraneous variable,extraneous variables +extranet,extranets +extraordinary optical transmission,extraordinary optical transmissions +extraordinary professor,extraordinary professors +extraordinary rendition,extraordinary renditions +extra pair of hands,extra pairs of hands +extrapetiolar stipule,extrapetiolar stipules +extra point,extra points +extrapolation,extrapolations +extrasolar planet,extrasolar planets +extrasystole,extrasystoles +extrasystolia,extrasystolias +extraterrestrial,extraterrestrials +extravagance,extravagances +extravaganza,extravaganzas,extravaganze +extravasate,extravasates +extravasation,extravasations +extravert,extraverts +extreat,extreats +Extremaduran,Extremadurans +extremal,extremals +extreme,extremes +extremely low frequency,extremely low frequencies +extreme programmer,extreme programmers +extreme sport,extreme sports +extremist,extremists +extremity,extremities +extremization,extremizations +extremogram,extremograms +extremophile,extremophiles +extremum,extrema,extremums +extrinsical,extrinsicals +extrinsic reward,extrinsic rewards +extropian,extropians +Extropian,Extropians +extrovert,extroverts +extructor,extructors +extrudate,extrudates +extruder,extruders +extrusion,extrusions +extrusive,extrusives +extuberance,extuberances +extuberancy,extuberancies +extuberation,extuberations +extumescence,extumescences +exudate,exudates +exudation,exudations +exuder,exuders +exulceration,exulcerations +exuperance,exuperances +exurbanite,exurbanites +exurb,exurbs +exurbia,exurbias +exutory,exutories +exuvia,exuviae +ex-voto,ex-votos +ex-wife,ex-wives +Eyak,Eyaks +eyalet,eyalets +eyas,eyasses +eyasmusket,eyasmuskets +eyass,eyasses +eye-ball,eye-balls +eyeball,eyeballs +eye bank,eye banks +eyebar,eyebars +eyebath,eyebaths +eyebeam,eyebeams +eyeblink,eyeblinks +eye bolt,eye bolts +eyebolt,eyebolts +eyeborg,eyeborgs +eyebright,eyebrights +eyebrow,eyebrows +eyebrow pencil,eyebrow pencils +eyecap,eyecaps +eye-catcher,eye-catchers +eyecatcher,eyecatchers +eye chart,eye charts +eyecup,eyecups +eye doctor,eye doctors +eye drop,eye drops +eye-drop,eye-drops +eyedrop,eyedrops +eyedropper,eyedroppers +eye,eyes +eye,eyes,eyen +eye fillet,eye fillets +eyeflap,eyeflaps +eyeful,eyefuls,eyesful +eyegasm,eyegasms +eyeglance,eyeglances +eyeglass,eyeglasses +eyeground,eyegrounds +eye-hand coordination,eye-hand coordinations +eyehole,eyeholes +eyehook,eyehooks +eyelash curler,eyelash curlers +eyelash,eyelashes +eyeleteer,eyeleteers +eyelet,eyelets +eyelid,eyelids +eyelift,eyelifts +eyeliner,eyeliners +eyemask,eyemasks +eye M.D.,eye M.D.s +eye MD,eye MDs +eye-opener,eye-openers +eyeopener,eyeopeners +eye patch,eye patches +eyepatch,eyepatches +eye pattern,eye patterns +eyephone,eyephones +eyepiece,eyepieces +eye-pit,eye-pits +eyepoint,eyepoints +eyer,eyers +eye rhyme,eye rhymes +eyering,eyerings +eyesalve,eyesalves +eyeservant,eyeservants +eyeshade,eyeshades +eyeshield,eyeshields +eyeslit,eyeslits +eye socket,eye sockets +eyesocket,eyesockets +eyesore,eyesores +eye splice,eye splices +eyesplice,eyesplices +eyespot,eyespots +eyestalk,eyestalks +eyestone,eyestones +eyestring,eyestrings +eyestripe,eyestripes +eye test,eye tests +eyet,eyets +Eyetie,Eyeties +eye tooth,eye teeth +eyetooth,eyeteeth +eyewall,eyewalls +eyewall mesovortex,eyewall mesovortices +eyewinker,eyewinkers +eyewink,eyewinks +eye witness,eye witnesses +eye-witness,eye-witnesses +eyewitness,eyewitnesses +ey,eyren +ey,eys +eygre,eygres +eyot,eyots +eyra,eyras +eyre,eyres +eyrie,eyries +eyrir,aurar +eyry,eyries +ezh,ezhes +e-zine,e-zines +ezine,ezines +F1 hybrid,F1 hybrids +F2M,F2Ms +faa,faas +fabada asturiana,fabadas asturianas +fabada,fabadas +fabavirus,fabaviruses +fabber,fabbers +fabella,fabellae +Faberge egg,Faberge eggs +FabergΓ© egg,FabergΓ© eggs +fab,fabs +Fab,Fabs +Fabian,Fabians +fabid,fabids +fab lab,fab labs +fable,fables +fabler,fablers +fabliau,fabliaux +fabricant,fabricants +fabricator,fabricators +fabric blindness,fabric blindnesss +fabric softener,fabric softeners +fabrosaurid,fabrosaurids +fabulate,fabulates +fabulation,fabulations +fabulator,fabulators +fabulist,fabulists +faburden,faburdens +facadectomy,facadectomies +facade,facades +faΓ§ade,faΓ§ades +facade pattern,facade patterns +faΓ§ade pattern,faΓ§ade patterns +fac brat,fac brats +face-ache,face-aches +faceache,faceaches +facebooker,facebookers +facebook,facebooks +facebuster,facebusters +face card,face cards +face cloth,face cloths +facecloth,facecloths +face,faces +face fly,face flies +face fuck,face fucks +faceful,facefuls +faceguard,faceguards +facelift,facelifts +facelinid,facelinids +facemail,facemails +face man,face men +faceman,facemen +face mask,face masks +facemask,facemasks +face mask penalty,face mask penalties +face off,face offs +face-off,face-offs +faceoff,faceoffs +faceoff spot,faceoff spots +face paint,face paints +facepaint,facepaints +facepalm,facepalms +facepiece,facepieces +face-plant,face-plants +faceplant,faceplants +faceplate,faceplates +face powder,face powders +faceprint,faceprints +facer,facers +facesitter,facesitters +facetectomy,facetectomies +facet,facets +face that would stop a clock,faces that would stop a clock +faceting,facetings +face-to-face,face-to-faces +facette,facettes +face validity,face validities +face value,face values +face-value,face-values +faceworker,faceworkers +fac,facs +facia,facias +facial cream,facial creams +facial expression,facial expressions +facial,facials +facial feature,facial features +facialist,facialists +facial mask,facial masks +facial nerve,facial nerves +faciend,faciends +faciendum,facienda +facient,facients +facilitation,facilitations +facilitator,facilitators +facility,facilities +facilization,facilizations +facing,facings +fackeltanz,fackeltΓ€nze +fack,facks +faΓ§on de parler,faΓ§ons de parler +faconne,faconnes +faΓ§onnΓ©,faΓ§onnΓ©s +fac-simile,fac-similes +facsimile,facsimiles +factbook,factbooks +fact check,fact checks +fact-check,fact-checks +factette,factettes +fact,facts +fact-finder,fact-finders +factfinder,factfinders +factionalizer,factionalizers +factioneer,factioneers +factioner,factioners +faction,factions +faction,factions +factionist,factionists +fact of life,facts of life +factoid,factoids +factoress,factoresses +factor,factors +factorial experiment,factorial experiments +factorial,factorials +factorial prime,factorial primes +factorial table,factorial tables +factoring,factorings +factorisation,factorisations +factorizability,factorizabilities +factorization,factorizations +factorizer,factorizers +factor market,factor markets +factor of production,factors of production +factor space,factor spaces +factory class,factory classes +factory,factories +factory farm,factory farms +factory method pattern,factory method patterns +factory pattern,factory patterns +factory reset,factory resets +factoryscape,factoryscapes +factory team,factory teams +factoryworker,factoryworkers +factotum,factotums +factour,factours +fact sheet,fact sheets +factsheet,factsheets +factum,facta,factums +facture,factures +facula,faculae +facultative biped,facultative bipeds +facultative quadruped,facultative quadrupeds +faculty,faculties +faddist,faddists +fadeaway,fadeaways +Faded Giant,Faded Giants +fade,fades +fade in,fade ins +fadeometer,fadeometers +fade out,fade outs +fade-out,fade-outs +fadeout,fadeouts +fader,faders +fad,fads +fadge,fadges +fading,fadings +fadista,fadistas +fadme,fadmes +fado,fados +fadoodle,fadoodles +faecal transplant,faecal transplants +fΓ¦cula,fΓ¦culΓ¦ +fae,faes +FAE,FAEs +faena,faenas +faerie,faeries +fΓ¦rie,fΓ¦ries +faerie godmother,faerie godmothers +Faeroese,Faeroese +FΓ¦roese,FΓ¦roese +faery,faeries +Faery Wiccan,Faery Wiccans +faetus,faetuses +fΓ¦tus,fΓ¦tuses +fa,fas +faff,faffs +fafillion,fafillions +fag boy,fag boys +fag-boy,fag-boys +fagboy,fagboys +fag break,fag breaks +fagbutt,fagbutts +fag-end,fag-ends +fagface,fagfaces +fag,fags +fag,fags +fag,fags +faggod,faggods +faggot,faggots +fag hag,fag hags +faglet,faglets +fag marriage,fag marriages +fagmaster,fagmasters +fagmosexual,fagmosexuals +fagopyrin,fagopyrins +fagot,fagots +fagotto,fagottos,fagottoes +fag stag,fag stags +fagtard,fagtards +fahlband,fahlbands +failed state,failed states +failer,failers +fail,fails +failing,failings +fail-safe,fail-safes +failure,failures +failure rate,failure rates +faineant,faineants +fainΓ©ant,fainΓ©ants +faine,faines +faint,faints +faintheartedness,faintheartednesses +fainting,faintings +faintling,faintlings +fair ball,fair balls +fair bet,fair bets +fair catch,fair catches +fair cop,fair cops +fair copy,fair copies +faire,faires +fair,fair +fair,fairs +fairgoer,fairgoers +fair go,fair gos +fairground,fairgrounds +fairgrounds,fairgrounds +fair-haired boy,fair-haired boys +fairie,fairies +fairing,fairings +fairleader,fairleaders +fairlead,fairleads +fair market value,fair market values +fair use,fair uses +fairwater,fairwaters +fairway,fairways +fair weather friend,fair weather friends +fair-weather friend,fair-weather friends +fairweather friend,fairweather friends +fair wind,fair winds +fairy bluebird,fairy bluebirds +fairybook,fairybooks +fairy cake,fairy cakes +fairycake,fairycakes +fairy circle,fairy circles +fairy,fairies +fairyfly,fairyflies +fairy fort,fairy forts +fairy godmother,fairy godmothers +fairyland,fairylands +fairy penguin,fairy penguins +fairy primrose,fairy primroses +fairy ring,fairy rings +fairy shrimp,fairy shrimps +fairy tale,fairy tales +fairytale,fairytales +fairy-wren,fairy-wrens +fairywren,fairywrens +fait accompli,faits accomplis +faithbreach,faithbreaches +faithe,faithes +faitheist,faitheists +faithhead,faithheads +faith healer,faith healers +faith-healer,faith-healers +faithless elector,faithless electors +faitour,faitours +fajita,fajitas +Fakaofoan,Fakaofoans +fakeaway,fakeaways +fakeer,fakeers +fake etymology,fake etymologies +fake,fakes +fake,fakes +fakelaki,fakelakis +fakeout,fakeouts +faker,fakers +fakery,fakeries +fakester,fakesters +fakie,fakies +fakir,fakirs +falaj,falajes +Falangist,Falangists +falanouc,falanoucs +falcade,falcades +falcata,falcatas +falcation,falcations +falcer,falcers +falchion,falchions +falconer,falconers +falconet,falconets +falcon,falcons +falconid,falconids +falconologist,falconologists +falderal,falderals +faldfee,faldfees +falding,faldings +faldistory,faldistories +faldstool,faldstools +FAL,FALs +falk,falks +Falklander,Falklanders +Falkland Islander,Falkland Islanders +Falkland Islands wolf,Falkland Islands wolves +Falkland Island wolf,Falkland Island wolves +fallacy,fallacies +fallacy fallacy,fallacy fallacies +fallax,fallaxes +fall-back,fall-backs +fallback,fallbacks +fallboard,fallboards +fall classic,fall classics +fallen angel,fallen angels +fallency,fallencies +fallen,fallen +faller,fallers +fall,falls +fallfish,fallfishes,fallfish +fall from grace,falls from grace +fall guy,fall guys +fallibilism,fallibilisms +fallibilist,fallibilists +falling action,falling actions +falling knife,falling knives +falling out,fallings out +falling-out,fallings-out +falling star,falling stars +fall line,fall lines +fall-off analysis,fall-off analyses +fall-off,fall-offs +falloff,falloffs +fallopian tube,fallopian tubes +Fallopian tube,Fallopian tubes +fallotaspidid,fallotaspidids +fall-out,fall-outs +fallout,fallouts +fall-out shelter,fall-out shelters +fallout shelter,fallout shelters +fallow crop,fallow crops +fallow deer,fallow deer +fallowist,fallowists +fallrate,fallrates +fallstreak,fallstreaks +fall-through,fall-throughs +fallthrough,fallthroughs +fallway,fallways +fall webworm,fall webworms +fall wind,fall winds +falsary,falsaries +false acacia,false acacias +false action,false actions +false alarm,false alarms +false analogy,false analogies +false attack,false attacks +falsecard,falsecards +false chanterelle,false chanterelles +false cognate,false cognates +false colour,false colours +false consciousness,false consciousnesses +false dawn,false dawns +false dichotomy,false dichotomies +false dilemma,false dilemmas +false economy,false economies +false etymology,false etymologies +falseface,falsefaces +false flat,false flats +false friend,false friends +false fruit,false fruits +false harmonic,false harmonics +false hermaphrodite,false hermaphrodites +false killer whale,false killer whales +false morel,false morels +false negative,false negatives +false pimpernel,false pimpernels +false positive,false positives +false potato beetle,false potato beetles +false pretense,false pretenses +falser,falsers +false scent,false scents +false shower,false showers +false signal,false signals +false start,false starts +false step,false steps +false trevally,false trevallies +false truffle,false truffles +false widow,false widows +falshood,falshoods +falsie,falsies +falsification,falsifications +falsificationist,falsificationists +falsificator,falsificators +falsifier,falsifiers +falsism,falsisms +falsity,falsities +faltering,falterings +falt,falts +faluche,faluches +falwe,falwes +falx,falxes,falces +famble,fambles +fambly,famblies +fam,fams +Famiclone,Famiclones +famil,famils +familial Mediterranean fever,familial Mediterranean fevers +familiar,familiars +familiarity,familiarities +familiarization,familiarizations +familiarizer,familiarizers +familicide,familicides +familistery,familisteries +familist,familists +family business,family businesses +family doctor,family doctors +family historian,family historians +family history,family histories +family home evening,family home evenings +family man,family men +family meal,family meals +familymoon,familymoons +family name,family names +family of orientation,families of orientation +family of procreation,families of procreation +family restaurant,family restaurants +family reunion,family reunions +family room,family rooms +family tree,family trees +famishment,famishments +fam'ly,fam'lies +fam trip,fam trips +famular,famulars +famulist,famulists +famulus,famuli +fanal,fanals +fanam,fanams +fanatic,fanatics +fanatick,fanaticks +fan base,fan bases +fanbase,fanbases +fanbearer,fanbearers +fan belt,fan belts +fanbelt,fanbelts +fanboi,fanbois +fanboy,fanboys +fancier,fanciers +fan club,fan clubs +fan coil,fan coils +fancy,fancies +fancy man,fancy men +fancymonger,fancymongers +fancy pants,fancy pants +fancy-pants,fancy pants +fan dance,fan dances +fan-dance,fan-dances +fan dancer,fan dancers +fandango,fandangos,fandangoes +fanding,fandings +fandom,fandoms +fandubber,fandubbers +fandubbing,fandubbings +fandub,fandubs +fane,fanes +fanega,fanegas +fan,fans +fan,fans +fanfaronade,fanfaronades +fanfaron,fanfarons +fanfest,fanfests +fanfoot,fanfoots +fangame,fangames +fanger,fangers +fang,fangs +fang,fangs +fangirl,fangirls +fangle,fangles +fangot,fangots +fanion,fanions +fanjet,fanjets +fank,fanks +fanleaf,fanleafs +fanlight,fanlights +fanlisting,fanlistings +fannel,fannels +fanner,fanners +fanniid,fanniids +fanny,fannies +fanny,fannies +fanny fart,fanny farts +fanny magnet,fanny magnets +fanny pack,fanny packs +fano,fanos +fanon,fanons +fanook,fanooks +fan palm,fan palms +fansite,fansites +fanskate,fanskates +fanslator,fanslators +fansubber,fansubbers +fansub,fansubs +fantail,fantails +fantard,fantards +fantasia,fantasias +fantasiser,fantasisers +fantasist,fantasists +fantasizer,fantasizers +fantasm,fantasms +fantast,fantasts +fantasy,fantasies +fantasy land,fantasy lands +fantasyland,fantasylands +Fantasyland,Fantasylands +Fanti,Fantis +fantod,fantods +fantom,fantoms +fan translation,fan translations +fan translator,fan translators +fanvidder,fanvidders +fanvid,fanvids +fanwork,fanworks +fanzine,fanzines +fanziner,fanziners +fap,faps +faqeer,faqeers +FAQ,FAQs +faqih,faqihs,fuqaha' +faqir,faqirs +faqueer,faqueers +faquir,faquirs +Faraday cage,Faraday cages +Faraday dark space,Faraday dark spaces +faraday,faradays +Faraday rotation,Faraday rotations +farad,farads +faradism,faradisms +farand,farands +farandole,farandoles +farang,farangs +faravahar,faravahars +farb,farbs +farbrengen,farbrengens +farceur,farceurs +farceuse,farceuses +farcilite,farcilites +fardel,fardels +fardel,fardels +farden,fardens +farding-bag,farding-bags +fardingbag,fardingbags +fardingdale,fardingdales +fardingdeal,fardingdeals +Far-Downer,Far-Downers +fare basis,fare bases +farebeater,farebeaters +farebox,fareboxes +fare break point,fare break points +fare card,fare cards +farecard,farecards +fare dodger,fare dodgers +fare-dodger,fare-dodgers +faredodger,faredodgers +fare,fares +farepayer,farepayers +farer,farers +fare thee well,fare thee wells +farewell,farewells +far,fars +farfetch,farfetches +fargard,fargards +faring,farings +fario,fario +farl,farls +farlie,farlies +farmaceutical,farmaceuticals +farm animal,farm animals +farmboy,farmboys +farmeress,farmeresses +farmer,farmers +Farmer,Farmers +farmer's market,farmer's markets,farmers' markets +farmer's tan,farmer's tans +farmery,farmeries +farmette,farmettes +farm,farms +farmgirl,farmgirls +farmhand,farmhands +farmhouse,farmhouses +farm nigger,farm niggers +farm runoff,farm runoffs +farmscape,farmscapes +farmstand,farmstands +farmstead,farmsteads +farmsteading,farmsteadings +farm team,farm teams +farmwife,farmwives +farm worker,farm workers +farmworker,farmworkers +farmyard,farmyards +farnesoate,farnesoates +farnesyl,farnesyls +Faroese,Faroese +Faroish,Faroishes +far point,far points +far post,far posts +farrago,farragos,farragoes +farrand,farrands +farrier,farriers +farrow,farrows +farry,farries +farsang,farsangs +farseer,farseers +farse,farses +farside,farsides +farspeaker,farspeakers +fart-arse,fart-arses +fartarse,fartarses +farter,farters +fart,farts +farthead,fartheads +fartherance,fartherances +fartherer,fartherers +farthingale,farthingales +farthingdale,farthingdales +farthing dip,farthing dips +farthing,farthings +farthingland,farthinglands +farting,fartings +fart tax,fart taxes +fascet,fascets +fascia,fascias,fasciae +fascia lata,fascia latas +fasciated antshrike,fasciated antshrikes +fasciation,fasciations +fascicle,fascicles +fasciculation,fasciculations +fascicule,fascicules +fasciculin,fasciculins +fasciculus,fasciculi +fasciectomy,fasciectomies +fascination,fascinations +fascinator,fascinators +fascine,fascines +fascin,fascins +fascinoma,fascinomas +fascinum,fascina +fasciola,fasciolae +fasciolariid,fasciolariids +fasciole,fascioles +fascioliasis,fascioliases +fasciolid,fasciolids +fascion,fascions +fasciotomy,fasciotomies +fascist,fascists +Fascist,Fascists +fasel,fasels +fash,fashes +fashionable,fashionables +fashion contest,fashion contests +fashion designer,fashion designers +fashioner,fashioners +fashion house,fashion houses +fashioning,fashionings +fashionista,fashionistas +fashionist,fashionists +fashion model,fashion models +fashionmonger,fashionmongers +fashion plate,fashion plates +fashion show,fashion shows +fashion statement,fashion statements +fashion victim,fashion victims +fasiq,fasiqs,fasiqun +fastback,fastbacks +fastballer,fastballers +fastball,fastballs +fast bowler,fast bowlers +fast break,fast breaks +fastbreak,fastbreaks +fastbreeder reactor,fastbreeder reactors +fast busy signal,fast busy signals +fastener,fasteners +fastening,fastenings +faster,fasters +fast,fasts +fast,fasts +fast food restaurant,fast food restaurants +fast forward,fast forwards +fast Fourier transform,fast Fourier transforms +fast friend,fast friends +fastigiate,fastigiates +fastigium,fastigia +fasting,fastings +fast lane,fast lanes +fatal,fatals +fatalist,fatalists +fatality,fatalities +fata morgana,fata morganas +Fata Morgana,Fata Morganas +fat-ass,fat-asses +fatass,fatasses +fatback,fatbacks +fatberg,fatbergs +fatbutt,fatbutts +fat camp,fat camps +fat cat,fat cats +fatcat,fatcats +fat catshark,fat catsharks +fat cell,fat cells +fat client,fat clients +fat dormouse,fat dormice +fate map,fate maps +fatface,fatfaces +fat farm,fat farms +fat,fats +fat finger,fat fingers +fat fuck,fat fucks +fatfuck,fatfucks +fatha,fathas +fatha,fathas +fathead,fatheads +fathead minnow,fathead minnows +fatherer,fatherers +father,fathers +father figure,father figures +father-fucker,father-fuckers +fatherfucker,fatherfuckers +father in law,fathers in law +father-in-law,fathers-in-law,father-in-laws +fatherland,fatherlands +father lasher,father lashers +fatherlasher,fatherlashers +fatherling,fatherlings +father longlegs,father longlegs +father of chapel,fathers of chapel +Father's Day,Father's Days +father-to-be,fathers-to-be +fathomer,fathomers +fathometer,fathometers +fathom,fathoms +fatigability,fatigabilities +fatiguability,fatiguabilities +fatigue,fatigues +Fatimide,Fatimides +Fatimid,Fatimids +Fatimite,Fatimites +fatkini,fatkinis +fatling,fatlings +fat link,fat links +fat lip,fat lips +fatner,fatners +fatoush,fatoushes +fatphobe,fatphobes +fat quarter,fat quarters +fatshionista,fatshionistas +fatshit,fatshits +fatsia,fatsias +fatso,fatsos,fatsoes +fatsuit,fatsuits +fat-tailed dwarf lemur,fat-tailed dwarf lemurs +fat tail,fat tails +fat tax,fat taxes +fattener,fatteners +fattening,fattenings +fattism,fattisms +fattist,fattists +fattoush,fattoushes +fatty acid,fatty acids +fatty alcohol,fatty alcohols +fatty,fatties +fatty liver,fatty livers +fatuity,fatuities +fatwa,fatwas,fatawa +fatwah,fatwahs +faubourg,faubourgs +faucal,faucals +faucet,faucets +fauchard,fauchards +fauchion,fauchions +faucial tonsil,faucial tonsils +faujdar,faujdars +faulchion,faulchions +faulcon,faulcons +fauld,faulds +faule,faules +faulter,faulters +fault,faults +faultfinder,faultfinders +fault gouge,fault gouges +fault line,fault lines +fault-line,fault-lines +faultline,faultlines +fault plane,fault planes +fault scarp,fault scarps +fault trace,fault traces +fauna,faunae,faunas,faunΓ¦ +faune,faunes,fauni +faun,fauns +faunist,faunists +faunivore,faunivores +faunlet,faunlets +faunus,fauni +fausen,fausens +faussebraye,faussebrayes +Faustian bargain,Faustian bargains +fauteuil,fauteuils +fautor,fautors +fautour,fautours +fautress,fautresses +fauvette,fauvettes +fauvist,fauvists +faux ami,faux amis +fauxhawk,fauxhawks +fauxhemian,fauxhemians +fauxmance,fauxmances +fauxmosexual,fauxmosexuals +faux pas,faux pas +fauxpology,fauxpologies +faux queen,faux queens +fauxtograph,fauxtographs +fava bean,fava beans +fava,favas,fava +fave,faves +favela,favelas +favelet,favelets +favel,favels +fav,favs +favicon,favicons +faviid,faviids +favorer,favorers +favor,favors +favorite,favorites +favorite son,favorite sons +favoritism,favoritisms +favourer,favourers +favour,favours +favourite,favourites +favouritism,favouritisms +fawkner,fawkners +fawner,fawners +fawn,fawns +fawn lily,fawn lilies +fawnlily,fawnlilies +fawnling,fawnlings +faxed star,faxed stars +faxed-star,faxed-stars +fax,faxes +fax machine,fax machines +fayence,fayences +fay,fays +fay,fays +faygeleh,faygelehs +faying surface,faying surfaces +fayre,fayres +faythe,faythes +fayth,fayths +faytour,faytours +fazzolet,fazzolets +FBI agent,FBI agents +f-bomb,f-bombs +F-bomb,F-bombs +FBS,FBSs +F clef,F clefs +FD,FDs +F distribution,F distributions +feaberry,feaberries +feaellid,feaellids +feare,feares +fearer,fearers +fear monger,fear mongers +fearmonger,fearmongers +fearnaught,fearnaughts +fearnought,fearnoughts +fearscape,fearscapes +feasance,feasances +feasibility,feasibilities +feast day,feast days +feaster,feasters +feast,feasts +feasting,feastings +Feast of Fools,Feasts of Fools +feat,feats +featherback,featherbacks +feather bed,feather beds +featherbed,featherbeds +feather boa,feather boas +feather-brain,feather-brains +featherbrain,featherbrains +feather duster,feather dusters +feather,feathers +featherfew,featherfews +featherfoil,featherfoils +featherfoot,featherfeet +featherhead,featherheads +feathering strip,feathering strips +featherless biped,featherless bipeds +feathermaker,feathermakers +feather pen,feather pens +featherstitch,featherstitches +feathertail,feathertails +featherweight,featherweights +featherwood,featherwoods +feat of strength,feats of strength +feature,features +feature film,feature films +feature phone,feature phones +featurephone,featurephones +feature story,feature stories +featurette,featurettes +feaver,feavers +febricitant,febricitants +febrifacient,febrifacients +febrifuge,febrifuges +februation,februations +fecalith,fecaliths +fecaloma,fecalomas +fecal transplant,fecal transplants +fecker,feckers +feck,fecks +fecolith,fecoliths +fecula,feculae +fedary,fedaries +fedayee,fedayeen +feddle,feddles +federal council,federal councils +federal district,federal districts +federal,federals +federal government,federal governments +federalism,federalisms +federalist,federalists +federal official,federal officials +federal question,federal questions +federary,federaries +federast,federasts +federation,federations +fΓ©dΓ©ration,fΓ©dΓ©rations +fed,feds +FED,FEDs +fedora,fedoras +fedrizziid,fedrizziids +feebate,feebates +feeb,feebs +Feeb,Feebs +feechur,feechurs +feedbacker,feedbackers +feedback transfer function,feedback transfer functions +feed bag,feed bags +feed-bag,feed-bags +feedbag,feedbags +feed dog,feed dogs +feed drive,feed drives +feedee,feedees +feeder cattle,feeder cattle +feeder,feeders +feeder fund,feeder funds +feeder reservoir,feeder reservoirs +feeder school,feeder schools +feedforward,feedforwards +feed horn,feed horns +feed-horn,feed-horns +feedhorn,feedhorns +feeding bottle,feeding bottles +feeding chair,feeding chairs +feeding,feedings +feeding frenzy,feeding frenzies +feeding time,feeding times +feedline,feedlines +feedlot,feedlots +feedreader,feedreaders +feedstock,feedstocks +feedstore,feedstores +feedstream,feedstreams +feed-through,feed-throughs +feedthrough,feedthroughs +feed zone,feed zones +fee-faw-fum,fee-faw-fums +fee,fees +Feejeean,Feejeeans +feeler,feelers +feeler gauge,feeler gauges +feel,feels +feelie,feelies +feeling,feelings +feely box,feely boxes +feepayer,feepayers +feere,feeres +fΓ©erie,fΓ©eries +fee schedule,fee schedules +feese,feeses +fee simple determinable,fee simples determinable +fee-simple,fee-simples +fee simple,fees simple +fee simple subject to condition subsequent,fee simples subject to condition subsequent +fee simple subject to executory interest,fee simples subject to executory interest +fee simple subject to executory limitation,fee simples subject to executory limitation +fee tail,fee tails +Fe,Fes +fefnicute,fefnicutes +feghoot,feghoots +Fehling's solution,Fehling's solutions +feigning,feignings +feijoada,feijoadas +feijoa,feijoas +feinter,feinters +feint,feints +feis,feiseanna +feist,feists +feithe,feithes +feith,feiths +felafel,felafels +felchard,felchards +feldspar,feldspars +feldspath,feldspaths +fΓ©libre,fΓ©libres +felicitation,felicitations +felid,felids +feline,felines +felix culpa,felix culpas +fella,fellas +fellagha,fellagha +fellah,fellahs +fellah,fellahs,fellahin +fellar,fellars +fellator,fellators +fellatrice,fellatrices +fellatrix,fellatrices +feller buncher,feller bunchers +feller-buncher,feller-bunchers +feller,fellers +feller,fellers +fell,fells +fell,fells +felling head,felling heads +fellmonger,fellmongers +fellow-commoner,fellow-commoners +fellowcraft,fellowcrafts +fellow feeling,fellow feelings +fellow-feeling,fellow-feelings +fellow,fellows +fellow man,fellow men +fellowman,fellowmen +fellow me lad,fellow me lads +fellow-me-lad,fellow-me-lads +fellowred,fellowreds +fellowship,fellowships +fellow traveller,fellow travellers +fellow-traveller,fellow-travellers +fellwalker,fellwalkers +felly,fellies +felo-de-se,felos-de-se +feloid,feloids +felon,felons +felon,felons +felony,felonies +felsic,felsics +felsite,felsites +felstone,felstones +felt tip,felt tips +felt-tip,felt-tips +felt-tipped pen,felt-tipped pens +felt-tip pen,felt-tip pens +feltwork,feltworks +felucca,feluccas +felwort,felworts +female circumcision,female circumcisions +female condom,female condoms +female,females +female genital mutilation,female genital mutilations +female prostate,female prostates +femalist,femalists +femanon,femanons +fembot,fembots +femcee,femcees +feme covert,femes covert,femes coverts +feme,femes +femerell,femerells +feme sole,femes sole +fem,fems +femicide,femicides +femidom,femidoms +femifascist,femifascists +feminazi,feminazis +feminine,feminines +feminine product,feminine products +feminine rhyme,feminine rhymes +feminiser,feminisers +feminist,feminists +feminization,feminizations +feminizer,feminizers +feminoid,feminoids +femme fatale,femmes fatales,femme fatales +femme fatale firefly,femme fatale fireflies +femme,femmes +femme incomprise,femmes incomprises +femocrat,femocrats +femtoampere,femtoamperes +femtobarn,femtobarns +femtobecquerel,femtobecquerels +femtobel,femtobels +femtocandela,femtocandelas +femtocell,femtocells +femtocoulomb,femtocoulombs +femtofarad,femtofarads +femtogram,femtograms +femtogramme,femtogrammes +femtojoule,femtojoules +femtokatal,femtokatals +femtoliter,femtoliters +femtolitre,femtolitres +femtomachine,femtomachines +femtometer,femtometers +femtometre,femtometres +femtomole,femtomoles +femtosecond,femtoseconds +femur,femurs,femora +femur head,femur heads +fenberry,fenberries +fence,fences +fenceline,fencelines +fence month,fence months +fencepost,fenceposts +fencepost problem,fencepost problems +fencer,fencers +fencerow,fencerows +fence sitter,fence sitters +fencible,fencibles +fen cricket,fen crickets +fender bender,fender benders +fender-bender,fender-benders +fender,fenders +fenderhead,fenderheads +fender skirt,fender skirts +fend,fends +fenestra,fenestras,fenestrae +fenestral,fenestrals +fenestrane,fenestranes +fenestron,fenestrons +fenestrule,fenestrules +fen,fens +Feng Shui,uncountable +Fenian,Fenians +fenland,fenlands +fennec,fennecs +fennec fox,fennec foxes +fenne,fennes +fenne,fennes +Fennoman,Fennomans +Fennophile,Fennophiles +fenocchio,fenocchi +fenochio,fenochi,fenochii +fenoxaprop,fenoxaprops +feodary,feodaries +feodatory,feodatories +feod,feods +feoffee,feoffees +feoffer,feoffers +feoff,feoffs +feoffment,feoffments +feoffor,feoffors +feofor,feofors +feorm,feorms +feorm-fultum,feorm-fultumas,feorm-fultums +feormfultum,feormfultumas,feormfultums +feral cat,feral cats +feral child,feral children +feral,ferals +feral pigeon,feral pigeons +ferash,ferashes +ferchromide,ferchromides +fer-de-lance,fer-de-lances +ferd,ferds +ferding,ferdings +feredetate,feredetates +fere,feres +feretory,feretories +f***er,f***ers +fergusonite,fergusonites +feria,ferias +ferial,ferials +ferie,feries +Feringee,Feringees +Feringhee,Feringhees +fermata,fermatas,fermate +Fermat prime,Fermat primes +ferme,fermes +fermentate,fermentates +fermentation,fermentations +fermentation lock,fermentation locks +fermenter,fermenters +ferment,ferments +fermentor,fermentors +fermerere,fermereres +Fermi energy,Fermi energies +fermi,fermis +Fermi level,Fermi levels +fermillet,fermillets +fermion,fermions +fermionic condensate,fermionic condensates +Fermi surface,Fermi surfaces +fernbird,fernbirds +fernery,ferneries +fern,ferns +fern seed,fern seeds +fernticle,fernticles +feroher,ferohers +feromone,feromones +feroxyhyte,feroxyhytes +ferrandine,ferrandines +Ferrara,Ferraras +Ferrarese,Ferrareses,Ferrarese +Ferrari,Ferraris +ferrate,ferrates +ferredoxin,ferredoxins +ferreter,ferreters +ferret,ferrets +ferricenium,ferriceniums +ferricyanate,ferricyanates +ferricyanide,ferricyanides +ferricytochrome,ferricytochromes +ferrier,ferriers +ferrihemoprotein,ferrihemoproteins +ferrihydrite,ferrihydrites +ferril,ferrils +ferrimagnet,ferrimagnets +ferrioxalate,ferrioxalates +ferrioxamine,ferrioxamines +ferriporphyrin,ferriporphyrins +ferriprotoporphyrin,ferriprotoporphyrins +ferriprussiate,ferriprussiates +ferripyrophyllite,ferripyrophyllites +Ferris wheel,Ferris wheels +ferrite,ferrites +ferritin,ferritins +ferritization,ferritizations +ferroalloy,ferroalloys +ferrocarbon,ferrocarbons +ferrocene,ferrocenes +ferrocenium,ferroceniums +ferrocenophane,ferrocenophanes +ferrocenophanone,ferrocenophanones +ferrocenylphosphine,ferrocenylphosphines +ferrocolumbite,ferrocolumbites +ferrocyanate,ferrocyanates +ferrocyanide,ferrocyanides +ferrocytochrome,ferrocytochromes +ferrodistortion,ferrodistortions +ferroelectric,ferroelectrics +ferroequinologist,ferroequinologists +ferrofluid,ferrofluids +ferrogel,ferrogels +ferrohexahydrite,ferrohexahydrites +ferroin,ferroins +ferrolyomesophase,ferrolyomesophases +ferromagnet,ferromagnets +ferromanganese,ferromanganeses +ferrometal,ferrometals +ferropericlase,ferropericlases +ferropnictide,ferropnictides +ferroporphyrin,ferroporphyrins +ferroprotein,ferroproteins +ferroprotoporphyrin,ferroprotoporphyrins +ferroprussiate,ferroprussiates +ferrosilicon,ferrosilicons +ferrotherapy,ferrotherapies +ferrotype,ferrotypes +ferrovanadium,ferrovanadiums +ferroxidase,ferroxidases +ferrozine,ferrozines +ferruginous duck,ferruginous ducks +ferruginous hawk,ferruginous hawks +ferrule,ferrules +ferryboater,ferryboaters +ferry boat,ferry boats +ferry-boat,ferry-boats +ferryboat,ferryboats +ferryboatman,ferryboatmen +ferry,ferries +ferryman,ferrymen +ferrywoman,ferrywomen +FERS,FERSs +fertigation,fertigations +fertility drug,fertility drugs +fertility rate,fertility rates +fertilization,fertilizations +ferula,ferulas +ferular,ferulars +ferulate,ferulates +ferule,ferules +feruling,ferulings +feruloyl,feruloyls +ferumoxide,ferumoxides +ferumoxtran,ferumoxtrans +ferussaciid,ferussaciids +fescue,fescues +fesnyng,fesnyngs +fess,fesses +fess point,fess points +festerment,festerments +fest,fests +festilogy,festilogies +festination,festinations +festival,festivals +festivalgoer,festivalgoers +festivalist,festivalists +festive season,festive seasons +festivity,festivities +festoon,festoons +festschrift,festschrifts,festschriften +festue,festues +festy,festies +feta cheese,feta cheeses +Feta cheese,Feta cheeses +fetal alcohol syndrome,fetal alcohol syndromes +fetal position,fetal positions +fetation,fetations +fetch candle,fetch candles +fetcher,fetchers +fetch,fetches +fetch quest,fetch quests +fete,fetes +fΓͺte,fΓͺtes +fet,fets +FET,FETs +fether,fethers +fetich,fetiches +fetichist,fetichists +feticide,feticides +fetid,fetids +fetidin,fetidins +fetish,fetishes +fetishist,fetishists +fetishizer,fetishizers +fetlock,fetlocks +fetopathy,fetopathies +fetoprotein,fetoproteins +fetor,fetors +fetoscope,fetoscopes +fetta cheese,fetta cheeses +Fetta cheese,Fetta cheeses +fetterbush,fetterbushes +fetterer,fetterers +fetter,fetters +fettle,fettles +fettler,fettlers +fettling,fettlings +fetuin,fetuins +fetus fetishist,fetus fetishists +fetus,fetuses +fetus in fetu,fetus in fetus +fetwah,fetwahs +feuar,feuars +feudalist,feudalists +feudal law,feudal laws +feudal lord,feudal lords +feudal system,feudal systems +feudary,feudaries +feudatary,feudataries +feudatory,feudatories +feudatory state,feudatory states +feu de joie,feux de joie +feu-de-joie,feux-de-joie +feuder,feuders +feud,feuds +feud,feuds +feuding,feudings +feudist,feudists +feu,feus +Feuillant,Feuillants +feuilleton,feuilletons +feuilletonist,feuilletonists +feuterer,feuterers +feuter,feuters +feveret,feverets +fever,fevers +feverfew,feverfews +fevre,fevres +few-flowered sedge,few-flowered sedges +fewl,fewls +fewter,fewters +feygele,feygeles +Feynman diagram,Feynman diagrams +feyre,feyres +fez,fezzes,fezes +F,Fs +FFV,FFVs +f-hole,f-holes +fiacre,fiacres +fiador,fiadors +fiancee,fiancees +fiancΓ©e,fiancΓ©es +fiance,fiances +fiancΓ©,fiancΓ©s +fianchetto,fianchetti +fiar,fiars +fiasco,fiascos,fiascoes +fiat currency,fiat currencies +fiat,fiats +fiaunce,fiaunces +fibber,fibbers +fiberboard,fiberboards +fiber bundle,fiber bundles +fiber,fibers +fiberglass,fiberglasses +fiber gun,fiber guns +fiber plant,fiber plants +fiberscope,fiberscopes +fib,fibs +fib,fibs +Fibonacci number,Fibonacci numbers +Fibonacci sequence,Fibonacci sequences +fibrate,fibrates +fibration,fibrations +fibratus,fibrati +fibre bundle,fibre bundles +fibre,fibres +fibre-reinforced plastic,fibre-reinforced plastics +fibrescope,fibrescopes +fibril,fibrils +fibrilization,fibrilizations +fibrilla,fibrillae +fibrillarin,fibrillarins +fibrillin,fibrillins +fibrillization,fibrillizations +fibrinolysis,fibrinolyses +fibrinopeptide,fibrinopeptides +fibrisol,fibrisols +fibrist,fibrists +fibroadenoma,fibroadenomas +fibroatheroma,fibroatheromas +fibroblast,fibroblasts +fibrocyte,fibrocytes +fibroepithelioma,fibroepitheliomas,fibroepitheliomata +fibrofolliculoma,fibrofolliculomas +fibroid,fibroids +fibroin,fibroins +fibrokeratoma,fibrokeratomas +fibroleiomyoma,fibroleiomyomas,fibroleiomyomata +fibroma,fibromas,fibromata +fibromatosis,fibromatoses +fibromyoma,fibromyomas,fibromyomata +fibronection,fibronections +fibropellin,fibropellins +fibrosarcoma,fibrosarcomas +fibroxanthoma,fibroxanthomas,fibroxanthomata +fibster,fibsters +fibula,fibulas,fibulae,fibulΓ¦ +fibulare,fibularia +fibularis,fibulares +fibulin,fibulins +fice,fices +fic,fics +fiche,fiches +fichu,fichus +ficid,ficids +ficlet,ficlets +fico,ficoes +ficolin,ficolins +fictionaliser,fictionalisers +fictionalist,fictionalists +fictionalization,fictionalizations +fictionalizer,fictionalizers +fictioneer,fictioneers +fiction,fictions +fictionist,fictionists +fictive kin,fictive kin +fictomercial,fictomercials +fictor,fictors +ficus,ficusses +fidalgo,fidalgos,fidalgoes +fidayee,fidayees,fidayeen +fiddlefart,fiddlefarts +fiddle,fiddles +fiddlehead,fiddleheads +fiddleleaf,fiddleleafs +fiddler crab,fiddler crabs +fiddler,fiddlers +fiddlestick,fiddlesticks +fiddlestring,fiddlestrings +fiddling,fiddlings +fideicommissum,fideicommissa +fideist,fideists +fidejussor,fidejussors +fidelity bond,fidelity bonds +fidelity card,fidelity cards +fidelity,fidelities +fid,fids +fidge,fidges +fidgeter,fidgeters +fidget,fidgets +fidgeting,fidgetings +fidlam ben,fidlam bens +fido,fidos +fiducial,fiducials +fiduciary,fiduciaries +fiefdom,fiefdoms +fief,fiefs +field artillery,field artilleries +field axiom,field axioms +fieldboot,fieldboots +field corn,field corns +field day,field days +field effect,field effects +field emission display,field emission displays +field emission,field emissions +field emission microscope,field emission microscopes +fielden,fieldens +fielder,fielders +fielder's choice,fielders' choices,fielder's choices +fieldfare,fieldfares +field,fields +field glass,field glasses +field goal,field goals +field grade,field grades +field guide,field guides +field gun,field guns +fieldgun,fieldguns +field hand,field hands +fieldhand,fieldhands +field horsetail,field horsetails +field hospital,field hospitals +field house,field houses +fieldhouse,fieldhouses +fielding circle,fielding circles +fielding position,fielding positions +field kitchen,field kitchens +field lacrosse,field lacrosses +field line,field lines +fieldline,fieldlines +fieldman,fieldmen +field marshal,field marshals +field mouse,field mice +fieldmouse,fieldmice +fieldnote,fieldnotes +field officer,field officers +field of fire,fields of fire +field of force,fields of force +field of honor,fields of honor +field of study,fields of study +field of view,fields of view +fieldpiece,fieldpieces +field-programmable gate array,field-programmable gate arrays +field restriction,field restrictions +field seam,field seams +fieldset,fieldsets +field shift,field shifts +fieldshift,fieldshifts +fieldsman,fieldsmen +field sobriety test,field sobriety tests +fieldstone,fieldstones +field trial,field trials +field trip,field trips +field unit,field units +field vole,field voles +fieldworker,fieldworkers +field work,field works +fiend,fiends +fiendkin,fiendkins +fiendling,fiendlings +fiery cross,fiery crosses +fiesta,fiestas +fife,fifes +fifer,fifers +fifteener,fifteeners +fifteenth,fifteenths +fifth column,fifth columns +fifth columnist,fifth columnists +fifth cranial nerve,fifth cranial nerves +fifth,fifths +fifth gear,fifth gears +fifth grade,fifth grades +fifth slip,fifth slips +fifth wheel,fifth wheels +fiftieth,fiftieths +fifty-eighth,fifty-eighths +fifty-fifth,fifty-fifths +fifty,fifties +fifty-fifty,fifty-fiftys +fifty-first,fifty-firsts +fifty-fourth,fifty-fourths +fifty-ninth,fifty-ninths +fifty-oneth,fifty-oneths +fifty-second,fifty-seconds +fifty-seventh,fifty-sevenths +fifty-sixth,fifty-sixths +fifty-third,fifty-thirds +figary,figaries +figbird,figbirds +figeater,figeaters +fig.,fig.,figs. +fig,figs +fig,figs +figger,figgers +figgery,figgeries +figgy-dowdy,figgy-dowdies +fightback,fightbacks +fighter aircraft,fighter aircraft +fighter bomber,fighter bombers +fighter-bomber,fighter-bombers +fighter,fighters +fighter pilot,fighter pilots +fighter plane,fighter planes +fight,fights +fighting chance,fighting chances +fighting,fightings +fighting fish,fighting fish +fighting game,fighting games +fight song,fight songs +figitid,figitids +fig-leaf,fig-leafs +fig leaf,fig leaves +figleaf,figleaves +figment,figments +figpecker,figpeckers +figuline,figulines +figurante,figurantes +figurant,figurants +figurate number,figurate numbers +figuration,figurations +figure-caster,figure-casters +figure dash,figure dashes +figured bass,figured basses +figure eight,figure eights +figure,figures +figure four,figure fours +figurehead,figureheads +figure-of-eight,figure-of-eights +figure of merit,figures of merit +figure of speech,figures of speech +figure poem,figure poems +figure skater,figure skaters +figurine,figurines +figurist,figurists +fig wasp,fig wasps +figwort,figworts +Fijian,Fijians +fike,fikes +fike,fikes +filabeg,filabegs +filabuster,filabusters +filacer,filacers +filagree,filagrees +filamentation,filamentations +filament,filaments +filamin,filamins +filander,filanders +filaria,filariae +filaricide,filaricides +filatory,filatories +filature,filatures +filberd,filberds +filbert,filberts +filbert gall,filbert galls +filcher,filchers +file allocation table,file allocation tables +file cabinet,file cabinets +file card,file cards +file-drawer problem,file-drawer problems +file extension,file extensions +file,files +file,files +file,files +filefish,filefishes,filefish +filegroup,filegroups +filemask,filemasks +filename extension,filename extensions +filename,filenames +file photo,file photos +filer,filers +file section,file sections +fileserver,fileservers +filesharer,filesharers +file shredder,file shredders +file size,file sizes +filesize,filesizes +file snake,file snakes +filestore,filestores +file system,file systems +filesystem,filesystems +filet,filets +filet mignon,filets mignons +File Transfer Protocol,File Transfer Protocols +file type,file types +filetype,filetypes +filial life,filial lives +filibeg,filibegs +filibusterer,filibusterers +filibuster,filibusters +filicoid,filicoids +filigree,filigrees +filiment,filiments +filing cabinet,filing cabinets +filing fee,filing fees +filing,filings +filing system,filing systems +Filipina,Filipinas +Filipino,Filipinos +filipodium,filipodia +filistatid,filistatids +filker,filkers +filled pause,filled pauses +filler cap,filler caps +filler,fillers +fillΓ©r,fillΓ©rs +filler-upper,filler-uppers +filleter,filleters +fillet,fillets +filleting,filletings +fill,fills +fill,fills +fillibeg,fillibegs +fillibuster,fillibusters +fill-in,fill-ins +filling,fillings +filling gas,filling gases +filling station,filling stations +fill in the blank,fill in the blanks +fillipeen,fillipeens +fillip,fillips +fillister,fillisters +fillock,fillocks +fill or kill,fill or kills +fillrate,fillrates +fill-up,fill-ups +fillup,fillups +filly,fillies +film badge,film badges +film badge holder,film badge holders +film blanc,films blancs +film crew,film crews +film director,film directors +filmer,filmers +film,films +filmgoer,filmgoers +filming,filmings +filmization,filmizations +film maker,film makers +film-maker,film-makers +filmmaker,filmmakers +film noir,film noirs,films noirs +filmography,filmographies +filmologist,filmologists +film projector,film projectors +film punctuation,film punctuations +film set,film sets +film speed,film speeds +film star,film stars +filmstar,filmstars +film strip,film strips +filmstrip,filmstrips +filmzine,filmzines +Filofax,Filofaxes +filo,filos +Filo,Filos +filo pastry,filo pastries +filoplume,filoplumes +filopodium,filopodia +filoselle,filoselles +filovirida,filoviridas,filoviridae +filovirus,filoviruses +filterability,filterabilities +filter bank,filter banks +filterbank,filterbanks +filterer,filterers +filter feeder,filter feeders +filter-feeder,filter-feeders +filter,filters +filter funnel,filter funnels +filtergram,filtergrams +filter lane,filter lanes +filter paper,filter papers +filter tip,filter tips +filter tube,filter tubes +filtrate,filtrates +filtration,filtrations +filtre,filtres +filtride,filtrides +filtrum,filtra +filum,fila +fimble,fimbles +fimbria,fimbriae,fimbriΓ¦ +fimbriid,fimbriids +fimbrin,fimbrins +FIM,FIMs +finagler,finaglers +finagling,finaglings +final account,final accounts +final approach,final approaches +final cause,final causes +final class,final classes +final club,final clubs +final drive,final drives +finale,finales +final exam,final exams +final examination,final examinations +final,finals +Final Four,Final Fours +finalisation,finalisations +finaliser,finalisers +finalist,finalists +finality,finalities +finalization,finalizations +finalizer,finalizers +final sigma,final sigmas +Final Testament,Final Testaments +final whistle,final whistles +finance,finances +financer,financers +financescape,financescapes +financial bubble,financial bubbles +financial crisis,financial crises +financial institution,financial institutions +financial instrument,financial instruments +Financial Intelligence Unit,Financial Intelligence Units +financial investment,financial investments +financialist,financialists +financial market,financial markets +financial service,financial services +financial statement,financial statements +financial year,financial years +financier,financiers +financing,financings +finary,finaries +finaunce,finaunces +finback,finbacks +finch,finches +finder,finders +finderlist,finderlists +finderscope,finderscopes +findfault,findfaults +find,finds +finding,findings +findspot,findspots +fine,fines +fine,fines +fine,fines +fine,fines +fine leg,fine legs +fine line,fine lines +finer,finers +finest hour,finest hours +fine-tooth comb,fine-tooth combs +fine-tuned universe,fine-tuned universes +fin,fins +fin,fins +finfish,finfishes,finfish +finfoot,finfoots +fingerbang,fingerbangs +fingerboard,fingerboards +finger bowl,finger bowls +fingerbowl,fingerbowls +fingerbreadth,fingerbreadths +finger buffet,finger buffets +finger bun,finger buns +fingercot,fingercots +fingerer,fingerers +finger,fingers +finger food,finger foods +fingerfucker,fingerfuckers +finger fuck,finger fucks +fingerfuck,fingerfucks +fingerful,fingerfuls,fingersful +finger-fumbler,finger-fumblers +fingerguard,fingerguards +fingerhole,fingerholes +fingering,fingerings +finger joint,finger joints +fingerling,fingerlings +fingermark,fingermarks +fingernail,fingernails +fingernail moon,fingernail moons +finger on the pulse,fingers on the pulse +finger pad,finger pads +fingerpad,fingerpads +fingerpaint,fingerpaints +finger painting,finger paintings +fingerpick,fingerpicks +fingerplay,fingerplays +fingerpost,fingerposts +fingerprick,fingerpricks +fingerprint analysis,fingerprint analyses +fingerprinter,fingerprinters +fingerprint,fingerprints +finger ring,finger rings +fingerspelling,fingerspellings +finger spinner,finger spinners +fingerstick,fingersticks +fingerstyle,fingerstyles +fingertip,fingertips +fingle-fangle,fingle-fangles +fin gripper,fin grippers +finial,finials +Finian,Finians +finiff,finiffs +finif,finifs +finikin,finikins +finis,finises +finished good,finished goods +finished goods,finished goods +finished product,finished products +finisher,finishers +finish,finishes +finishing,finishings +finishing line,finishing lines +finishing move,finishing moves +finishing school,finishing schools +finishing-school,finishing-schools +finishing touch,finishing touches +finish line,finish lines +finish nail,finish nails +finite difference,finite differences +finite element,finite elements +finite generator,finite generators +finite verb,finite verbs +finitist,finitists +finity,finities +fin keel,fin keels +fink,finks +Fink truss,Fink trusses +Finlander,Finlanders +finlet,finlets +finnan haddie,finnan haddies +finnan haddock,finnan haddocks +finner,finners +finnesko,finneskos +Finn,Finns +Finnhorse,Finnhorses +finniff,finniffs +finnif,finnifs +finnikin,finnikins +finnimbrun,finnimbruns +Finnish forest reindeer,Finnish forest reindeer +Finnish horse,Finnish horses +finnoc,finnocs +finnock,finnocks +finnophone,finnophones +Finnophone,Finnophones +finocchio,finocchi,finocchios +finochio,finochi +fino,finos +finook,finooks +F instrument,F instruments +fin whale,fin whales +fionid,fionids +fiord,fiords +Fiordland penguin,Fiordland penguins +fiorino,fiorinos +fioritura,fioriture +fipenny,fipennies +fip,fips +fippenny bit,fippenny bits +fippenny,fippennies +fipple,fipples +firangi,firangi +Firangi,Firangi +fir-cone,fir-cones +fire alarm,fire alarms +fire alarm horn,fire alarm horns +fire ant,fire ants +firearm,firearms +fire axe,fire axes +fire ax,fire axes +fireback,firebacks +fireballer,fireballers +fireball,fireballs +fireband,firebands +firebare,firebares +firebase,firebases +firebath,firebaths +fire beetle,fire beetles +fire bellied toad,fire bellied toads +firebird,firebirds +fire blanket,fire blankets +fireblast,fireblasts +fire blight,fire blights +fire block,fire blocks +fireboard,fireboards +fireboat,fireboats +firebolt,firebolts +firebomb,firebombs +firebombing,firebombings +fire boss,fire bosses +firebote,firebotes +fire box,fire boxes +firebox,fireboxes +firebrand,firebrands +firebrat,firebrats +fire break,fire breaks +firebreak,firebreaks +fire-breather,fire-breathers +firebreather,firebreathers +fire brick,fire bricks +firebrick,firebricks +fire brigade,fire brigades +fire bucket,fire buckets +firebug,firebugs +fire button,fire buttons +fire cabinet,fire cabinets +firecall,firecall +fire chief,fire chiefs +fire clay,fire clays +fireclay,fireclays +fire code,fire codes +fire company,fire companies +firecracker,firecrackers +firecrest,firecrests +fire crotch,fire crotches +fire-crotch,fire-crotches +fire damper,fire dampers +firedamper,firedampers +fire dancer,fire dancers +fire department,fire departments +fire devil,fire devils +fire-devil,fire-devils +firedevil,firedevils +fire dog,fire dogs +firedog,firedogs +fire door,fire doors +firedragon,firedragons +firedrake,firedrakes +fire drill,fire drills +fire eater,fire eaters +fire-eater,fire-eaters +fireeater,fireeaters +firee,firees +fire engine,fire engines +fire engine red,fire engine reds +fire escape,fire escapes +fire exit,fire exits +fire extinguisher,fire extinguishers +firefighter,firefighters +firefight,firefights +firefish,firefishes,firefish +fireflaire,fireflaires +fire flapper,fire flappers +firefly,fireflies +fire fountain,fire fountains +firefountain,firefountains +firefox,firefoxes +firefront,firefronts +fire grenade,fire grenades +fire guard,fire guards +fireguard,fireguards +fire hall,fire halls +firehead tetra,firehead tetras +firehook,firehooks +fire hose,fire hoses +firehose,firehoses +fire house,fire houses +firehouse,firehouses +firehouse,firehouses +fire hydrant,fire hydrants +fire inspection,fire inspections +fire iron,fire irons +firekeeper,firekeepers +firelighter,firelighters +fireline,firelines +fire load,fire loads +firelock,firelocks +firelog,firelogs +fire lookout tower,fire lookout towers +fireman,firemen +fire marshal,fire marshals +firemaster,firemasters +fire mission,fire missions +firenado,firenadoes +fire opal,fire opals +fireperson,firepersons,firepeople +firepit,firepits +fireplace,fireplaces +fireplace match,fireplace matches +fireplug,fireplugs +firepole,firepoles +firepot,firepots +firepower,firepowers +firepower kill,firepower kills +fire retardant,fire retardants +fire-retardant,fire-retardants +firer,firers +fire salamander,fire salamanders +fire sale,fire sales +firesale,firesales +fire screen,fire screens +fireset,firesets +firesetter,firesetters +fireshine,fireshines +fire ship,fire ships +fireship,fireships +fireside chat,fireside chats +fireside,firesides +fire sign,fire signs +firestarter,firestarters +fire station,fire stations +fire step,fire steps +firestick,firesticks +fire stop,fire stops +fire-stop,fire-stops +firestop,firestops +fire storm,fire storms +firestorm,firestorms +firestriker,firestrikers +firesuit,firesuits +firetail,firetails +fire temple,fire temples +firethorn,firethorns +fire tower,fire towers +fire tower stairway,fire tower stairways +firetrap,firetraps +fire truck,fire trucks +firetruck,firetrucks +firewagon,firewagons +fire walker,fire walkers +firewalk,firewalks +firewall,firewalls +firewarden,firewardens +fireward,firewards +firewatcher,firewatchers +fire watch,fire watches +fireweed,fireweeds +fire whirl,fire whirls +fire-whirl,fire-whirls +firewhirl,firewhirls +firewire,firewires +firewoman,firewomen +firework,fireworks +fireworm,fireworms +firey,fireys +firing,firings +firing iron,firing irons +firing line,firing lines +firing pin,firing pins +firing range,firing ranges +firing squad,firing squads +firk,firks +firk,firks +firkin,firkins +firlot,firlots +firmament,firmaments +firman,firmans +firmer,firmers +firm,firms +firmicute,firmicutes +firming agent,firming agents +firm power,firm powers +firn,firns +FIRO,FIROs +firolid,firolids +firring,firrings +first-aid box,first-aid boxes +first-aider,first-aiders +first aid kit,first aid kits +first among equals,firsts among equals +first baseman,first basemen +First Bloke,First Blokes +first-born,first-borns +firstborn,firstborns +first-chance exception,first-chance exceptions +first choice,first choices +first city,first cities +first-class citizen,first-class citizens +first-class entity,first-class entities +first class match,first class matches +first-class object,first-class objects +first-class value,first-class values +firstcomer,firstcomers +first conditional,first conditionals +first cousin,first cousins +first cousin once removed,first cousins once removed +first cousin twice removed,first cousins twice removed +first-degree burn,first-degree burns +first-degree relative,first-degree relatives +first down,first downs +firster,firsters +first,firsts +first flight cover,first flight covers +first floor,first floors +first folio,first folios +firstfruit,firstfruits +first gear,first gears +first grade,first grades +first half,first halves +firstie,firsties +first imperative,first imperatives +first inversion,first inversions +First Laddie,First Laddies +first lady,first ladies +First Lady,First Ladies +first language,first languages +first lieutenant,first lieutenants +first line manager,first line managers +firstling,firstlings +first love,first loves +first mate,first mates +first milk,first milks +first minister,first ministers +first mover,first movers +first name,first names +first officer,first officers +first-order logic,first-order logics +first order of the day,first orders of the day +first-order spectrum,first-order spectra +first order stream,first order streams +first-passage time,first-passage times +first-person plural,first-person plurals +first-person shooter,first-person shooters +first-person singular,first-person singulars +first port of call,first ports of call +first principle,first principles +first quarter,first quarters +first rain,first rains +first-rate,first-rates +first receiver,first receivers +first responder,first responders +first sergeant,first sergeants +first session,first sessions +first slip,first slips +first-stringer,first-stringers +firststringer,firststringers +first-teamer,first-teamers +first team,first teams +first thing,first things +first-time buyer,first-time buyers +first time,first times +first-timer,first-timers +first touch,first touches +first truth,first truths +first unit,first units +first violin,first violins +first violinist,first violinists +first world problem,first world problems +firth,firths +firtree,firtrees +fisbo,fisbos +fiscalamity,fiscalamities +fiscal conservative,fiscal conservatives +fiscal,fiscals +fiscal,fiscals +fiscality,fiscalities +fiscal policy,fiscal policies +fiscal stamp,fiscal stamps +fiscal year,fiscal years +fisc,fiscs +fischerindole,fischerindoles +Fischer indole synthesis,Fischer indole syntheses +fise,fises +fisgig,fisgigs +fishapod,fishapods +fishbait,fishbaits +fishball,fishballs +Fishbed,Fishbeds +fishbelly,fishbellies +fishbone diagram,fishbone diagrams +fishbone,fishbones +fish bowl,fish bowls +fishbowl,fishbowls +fishburger,fishburgers +fish cake,fish cakes +fishcake,fishcakes +fishcatcher,fishcatchers +fish eagle,fish eagles +fisheater,fisheaters +fish-eating grin,fish-eating grins +fisher-boat,fisher-boats +fisherboy,fisherboys +fisher cat,fisher cats +fisher,fishers +fisher,fishers +fisherman,fishermen +fisherman's knot,fisherman's knots +fisherperson,fisherpersons,fisherpeople +fisherwoman,fisherwomen +fishery,fisheries +fishetarian,fishetarians +fisheye,fisheyes +fish-eye lens,fish-eye lenses +fisheye lens,fisheye lenses +fish farm,fish farms +fishfinder,fishfinders +fish finger,fish fingers +fish,fishes +fishfly,fishflies +fish fry,fish fries +fish garth,fish garths +fish gig,fish gigs +fishgig,fishgigs +fish hawk,fish hawks +fishhawk,fishhawks +fishhead,fishheads +fishhood,fishhoods +fish hook,fish hooks +fishhook,fishhooks +fishie,fishies +fishing boat,fishing boats +fishing cat,fishing cats +fishing expedition,fishing expeditions +fishing ground,fishing grounds +fishing hook,fishing hooks +fishing line,fishing lines +fishing owl,fishing owls +fishing pole,fishing poles +fishing rod,fishing rods +fishing space,fishing spaces +fishkeeper,fishkeepers +fish kettle,fish kettles +fish kill,fish kills +fishkill,fishkills +fish knife,fish knives +fish-knife,fish-knives +fish ladder,fish ladders +fishline,fishlines +fishling,fishlings +fishmarket,fishmarkets +fishmongeress,fishmongeresses +fishmonger,fishmongers +fishmoth,fishmoths +fishmouth,fishmouths +fisho,fishos +fish out of water,fishes out of water +fish owl,fish owls +fish pass,fish passes +fish paste,fish pastes +fishplate,fishplates +fish pond,fish ponds +fish-pond,fish-ponds +fishpond,fishponds +fishpool,fishpools +fish sauce,fish sauces +fishseller,fishsellers +fishskin,fishskins +fish slice,fish slices +fish stick,fish sticks +fish story,fish stories +fish supper,fish suppers +fishtail,fishtails +fish tank,fish tanks +fishtank,fishtanks +fish tape,fish tapes +fish-trap,fish-traps +fishway,fishways +fishweir,fishweirs +fishwich,fishwiches +fishwife,fishwives +fishwoman,fishwomen +fishy,fishies +fishy wishy,fishy wishies +fisking,fiskings +fissgig,fissgigs +fissibility,fissibilities +fission bomb,fission bombs +fissioning,fissionings +fission rocket,fission rockets +fissiped,fissipeds +fissure,fissures +fissurella,fissurellas +fissurellid,fissurellids +fist bump,fist bumps +fistbump,fistbumps +fistfighter,fistfighters +fist-fight,fist-fights +fistfight,fistfights +fist,fists +fist,fists +fist-fuck,fist-fucks +fistful,fistfuls,fistsful +fisticuffer,fisticuffers +fisticuff,fisticuffs +fisting,fistings +fistinut,fistinuts +fist jam,fist jams +fistmele,fistmeles +fistnote,fistnotes +fist-pumper,fist-pumpers +fist pump,fist pumps +fist-pump,fist-pumps +fistuca,fistucae +fistula,fistulas,fistulae,fistulΓ¦ +fistulariid,fistulariids +fistulectomy,fistulectomies +fistule,fistules +fistulization,fistulizations +fistulogram,fistulograms +fistulotomy,fistulotomies +fitchet,fitchets +fitchew,fitchews +fitch,fitches +fit,fits +fit,fits +fit,fits +fitment,fitments +fitna,fitnas +fitness center,fitness centers +fitness model,fitness models +fit-out,fit-outs +fitted cap,fitted caps +fitted sheet,fitted sheets +fitter,fitters +fitt,fitts +fittie,fitties +fitting,fittings +fitting room,fitting rooms +five and dime,five and dimes +five-and-dime,five-and-dimes +five-and-ten,five-and-tens +five-a-side,five-a-sides +fivebrane,fivebranes +five finger discount,five finger discounts +five-finger discount,five-finger discounts +five finger exercise,five finger exercises +five-finger exercise,five-finger exercises +five,fives +five-for,five-fors +five-hundredth,five-hundredths +fiveling,fivelings +five o'clock shadow,five o'clock shadows +fivepence,fivepences +Five percenter,Five percenters +Five-Percenter,Five-Percenters +five-point Calvinist,five-point Calvinists +fiver,fivers +Fiver,Fivers +fivescore,fivescores +five second delay,five second delays +five-second delay,five-second delays +fivesies,fivesies +fivesome,fivesomes +five-star,five-stars +five tool player,five tool players +five-tool player,five-tool players +fiveway,fiveways +fixation,fixations +fixative,fixatives +fixator,fixators +fixed asset,fixed assets +fixed charge,fixed charges +fixed disk,fixed disks +fixed feast,fixed feasts +fixed-gear bicycle,fixed-gear bicycles +fixed head coupΓ©,fixed head coupΓ©s +fixed income,fixed incomes +fixed point,fixed points +fixed satellite,fixed satellites +fixed set,fixed sets +fixed star,fixed stars +fixed-term contract,fixed-term contracts +fixed wave,fixed waves +fixer,fixers +fixer-upper,fixer-uppers +fix,fixes +fixie,fixies +fixigena,fixigenae +fixing,fixings +fixpoint,fixpoints +fixture,fixtures +fixure,fixures +fizbo,fizbos +fizgig,fizgigs +fizgig,fizgigs +fizgig,fizgigs +fizgig,fizgigs +fizzer,fizzers +fizz,fizzes +fizzing,fizzings +fizzle,fizzles +fizzog,fizzogs +fizzy drink,fizzy drinks +fjeld,fjelds +fjord,fjords +f**k,f**ks +f**khead,f**kheads +flabagast,flabagasts +flabbergaster,flabbergasters +flabbergast,flabbergasts +flabel,flabels +flabellation,flabellations +flabellinid,flabellinids +flabellum,flabella +flacket,flackets +flack,flacks +flacon,flacons +flag-bearer,flag-bearers +flagbearer,flagbearers +flag captain,flag captains +flag carrier,flag carriers +flag complex,flag complexes +flag day,flag days +flagellant,flagellants +flagellate,flagellates +flagellation,flagellations +flagellation,flagellations +flagellator,flagellators +flagellin,flagellins +flagellomania,flagellomanias +flagellum,flagella,flagellums +flageolet,flageolets +flageoletist,flageoletists +flag,flags +flag,flags +flag,flags +flag,flags +flagger,flaggers +flagging,flaggings +flaglet,flaglets +flagman,flagmen +flag of convenience,flags of convenience +flag officer,flag officers +flagon,flagons +flagperson,flagpersons +flag pole,flag poles +flagpole,flagpoles +flagpost,flagposts +flagrance,flagrances +flagration,flagrations +flagship,flagships +flagstaff,flagstaves,flagstaffs +flagstick,flagsticks +flagstone,flagstones +flag stop,flag stops +flagtail,flagtails +flagworm,flagworms +flail,flails +flailing,flailings +flair bartender,flair bartenders +flair,flairs +flakeboard,flakeboards +flake,flakes +flake,flakes +flak jacket,flak jackets +flambeau,flambeaus,flambeaux +flambee,flambees +flambe,flambes +flambΓ©,flambΓ©s +flamberge,flamberges +flamberg,flambergs +flamboyant,flamboyants +flamboyer,flamboyers +flame,flames +flame gun,flame guns +flamekeeper,flamekeepers +flamelet,flamelets +flamenco,flamencos +flamenco guitar,flamenco guitars +flame-out,flame-outs +flameout,flameouts +flame retardant,flame retardants +flame-retardant,flame-retardants +flamer,flamers +flame test,flame tests +flame thrower,flame throwers +flamethrower,flamethrowers +flame tree,flame trees +flame war,flame wars +flamewar,flamewars +flam,flams +flaming,flamings +flamingo,flamingos,flamingoes +flaming queen,flaming queens +flammable,flammables +flammkuchen,flammkuchens,flammkuchen +flanch,flanches +flanconade,flanconades +flaneur,flaneurs +flan,flans +flan,flans +flange,flanges +flanger,flangers +flangeway,flangeways +flang,flangs +flanker,flankers +flank,flanks +flannel cake,flannel cakes +flannelette,flannelettes +flannelgraph,flannelgraphs +flannelled fool,flannelled fools +flannel mouth,flannel mouths +flannel-mouth,flannel-mouths +flannelmouth,flannelmouths +flannie,flannies +flap,flaps +flap gate,flap gates +flapgate,flapgates +flapjack,flapjacks +flapper,flappers +flapper,flappers +flapper skate,flapper skates +flappet,flappets +flare angel,flare angels +flare,flares +flare gun,flare guns +flaregun,flareguns +flarepath,flarepaths +flare-up,flare-ups +flareup,flareups +flashback,flashbacks +flash-ball,flash-balls +flash bang,flash bangs +flashbang,flashbangs +flashboard,flashboards +flashbulb,flashbulbs +flash card,flash cards +flashcard,flashcards +flashcrowd,flashcrowds +flashcube,flashcubes +flash cut,flash cuts +flash drive,flash drives +flasher,flashers +flash fiction,flash fictions +flash,flashes +flash flood,flash floods +flashflood,flashfloods +flashforward,flashforwards +flash frame,flash frames +flash grenade,flash grenades +flashgun,flashguns +flash house,flash houses +flashing collar,flashing collars +flashing,flashings +flash in the pan,flashes in the pan +flashjack,flashjacks +flashlight fish,flashlight fishes,flashlight fish +flashlightfish,flashlightfishes,flashlightfish +flashlight,flashlights +flash lock,flash locks +flash mobber,flash mobbers +flash mob,flash mobs +flashmob,flashmobs +flashover,flashovers +flashpacker,flashpackers +flash point,flash points +flashpoint,flashpoints +flashpot,flashpots +flash powder,flash powders +flash suppressor,flash suppressors +flasket,flaskets +flask,flasks +flaskful,flaskfuls +flat affect,flat affects +flat back four,flat back fours +flatbed,flatbeds +flatbed lorry,flatbed lorries +flatbed truck,flatbed trucks +flatbill,flatbills +flatblock,flatblocks +flatboater,flatboaters +flatboat,flatboats +flatbow,flatbows +flat call,flat calls +flat cap,flat caps +flatcar,flatcars +flat earther,flat earthers +flat-earther,flat-earthers +flatfield,flatfields +flat file,flat files +flatfish,flatfish,flatfishes +flat,flats +flat,flats +flatfoot,flatfeet +flatform,flatforms +flat-headed cat,flat-headed cats +flathead,flatheads +Flathead,Flatheads +flathe,flathes +flathon,flathons +flatid,flatids +flat iron,flat irons +flatiron,flatirons +flat junction,flat junctions +flatlander,flatlanders +flatland,flatlands +flatlet,flatlets +flatliner,flatliners +flat lock,flat locks +flatmate,flatmates +flatour,flatours +flat pack,flat packs +flat rate,flat rates +flatscape,flatscapes +flatscreen,flatscreens +flatshare,flatshares +flat space,flat spaces +flat store,flat stores +flattener,flatteners +flattening,flattenings +flatterer,flatterers +flatter,flatters +flattering,flatterings +flattie,flatties +flat tire,flat tires +flattop,flattops +flatty,flatties +flat tyre,flat tyres +flatulence tax,flatulence taxes +flatweave,flatweaves +flat white,flat whites +flatwood,flatwoods +flatworm,flatworms +flat wrack,flat wracks +flaughter,flaughters +flaunter,flaunters +flauta,flautas +flautist,flautists +flavanoid,flavanoids +flavanol,flavanols +flavanone,flavanones +flavanonol,flavanonols +flavedo,flavedos +flavenoid,flavenoids +Flavian,Flavians +flavination,flavinations +flavine,flavines +flavin,flavins +flavinoid,flavinoids +flavivirid,flavivirids +flavivirus,flaviviruses +flavobacterium,flavobacteria +flavocytochrome,flavocytochromes +flavodoxin,flavodoxins +flavoenzyme,flavoenzymes +flavokavain,flavokavains +flavokawain,flavokawains +flavone,flavones +flavon,flavons +flavonoid,flavonoids +flavonol,flavonols +flavonolignan,flavonolignans +flavoprotein,flavoproteins +flavor enhancer,flavor enhancers +flavor,flavors +flavoring,flavorings +flavour enhancer,flavour enhancers +flavour,flavours +flavouring,flavourings +flavylium,flavyliums +flaw,flaws +flaw,flaws +flawn,flawns +flax bow,flax bows +flax-dresser,flax-dressers +flax,flaxes +flaxseed oil,flaxseed oils +flax-stick,flax-sticks +flayer,flayers +flay,flays +flaying,flayings +flea bag,flea bags +fleabag,fleabags +fleabane,fleabanes +flea beetle,flea beetles +fleabite,fleabites +flea circus,flea circuses +flea,fleas +flea flicker,flea flickers +fleaker,fleakers +fleak,fleaks +flea-louse,flea-lice +flea market,flea markets +fleam,fleams +flea pit,flea pits +fleapit,fleapits +fleawort,fleaworts +fleche faitiere,fleches faitieres +flΓ¨che faΓtiΓ¨re,flΓ¨ches faΓtiΓ¨res +fleche,fleches +flΓ¨che,flΓ¨ches +flechette,flechettes +fleck,flecks +flection,flections +flector,flectors +fledgling,fledglings +fleecer,fleecers +fleerer,fleerers +fleer,fleers +fleet captain,fleet captains +fleete,fleetes +fleet,fleets +fleet,fleets +fleet in being,fleets in being +fleet landing,fleet landings +fleetside,fleetsides +flehmen,flehmens +fleme,flemes +flemer,flemers +Fleming,Flemings +Flemish bend,Flemish bends +Flemish bond,Flemish bonds +flenser,flensers +flesher,fleshers +flesh fly,flesh flies +flesh-fly,flesh-flies +fleshfly,fleshflies +fleshhook,fleshhooks +fleshlight,fleshlights +flesh loaf,flesh loaves +fleshloaf,fleshloaves +fleshmeet,fleshmeets +fleshmonger,fleshmongers +fleshpot,fleshpots +flesh wound,flesh wounds +fletcher,fletchers +Fletcher,Fletchers +Fletcherite,Fletcherites +fletch,fletches +fletching,fletchings +flet,flets +fletton,flettons +fleur-de-lis,fleurs-de-lis +fleur-de-lys,fleurs-de-lys +fleur de sel,fleurs de sel +fleuret,fleurets +fleur,fleurs +fleuron,fleurons +flexagon,flexagons +flexatone,flexatones +flexecutive,flexecutives +flexible,flexibles +Flexi disc,Flexi discs +flexing,flexings +flexion,flexions +flexitarian,flexitarians +flexitimer,flexitimers +flexodomain,flexodomains +flexon,flexons +flexor,flexors +flexure,flexures +flexus,flexus +flexwing,flexwings +flibbergib,flibbergibs +flibbertigibbet,flibbertigibbets +flibberty-gibbet,flibberty-gibbets +flibustier,flibustiers +flicflac,flicflacs +flickerer,flickerers +flicker,flickers +flicker,flickers +flickering,flickerings +flickermouse,flickermice +flickertail,flickertails +flick,flicks +flick knife,flick knives +flick-knife,flick-knives +flick-on,flick-ons +Flickrer,Flickrers +flid,flids +flier,fliers +Flieringa ring,Flieringa rings +flight attendant,flight attendants +flight ceiling,flight ceilings +flightcraft,flightcraft +flight crew,flight crews +flight data recorder,flight data recorders +flight deck,flight decks +flight engineer,flight engineers +flighter,flighters +flight feather,flight feathers +flight interruption manifest,flight interruption manifests +flight level,flight levels +flight lieutenant,flight lieutenants +flight line,flight lines +flight mode,flight modes +flight of fancy,flights of fancy +flight path,flight paths +flightpath,flightpaths +flight plan,flight plans +flight recorder,flight recorders +flight-shot,flight-shots +flim-flam,flim-flams +flimflam,flimflams +flimflammer,flimflammers +flimflammery,flimflammeries +flimsy,flimsies +flincher,flinchers +flinch,flinches +flinching,flinchings +flinder,flinders +flindermouse,flindermice +flinger,flingers +fling,flings +flint,flints +flintiness,flintinesses +flinting,flintings +flintlock,flintlocks +flintstone,flintstones +flip book,flip books +flipbook,flipbooks +flip chart,flip charts +flipchart,flipcharts +flip dog,flip dogs +flip-flap,flip-flaps +flip,flips +Flip,Flips +flip flop,flip flops +flip-flop,flip-flops +flipflop,flipflops +flip-flopper,flip-floppers +flipflopper,flipfloppers +flip-in,flip-ins +flippancy,flippancies +flippase,flippases +flipped classroom,flipped classrooms +flipper baby,flipper babies +flipper,flippers +flip phone,flip phones +flip-phone,flip-phones +flippy disc,flippy discs +flippy diskette,flippy diskettes +flippy disk,flippy disks +flippy,flippies +flippy skirt,flippy skirts +flip side,flip sides +flipside,flipsides +flirtationship,flirtationships +flirter,flirters +flirt,flirts +flirt-gill,flirt-gills +flirtigig,flirtigigs +flirtini,flirtinis +flisk,flisks +flist,flists +flitch,flitches +flite,flites +flit,flits +flitter,flitters +flitter-mouse,flitter-mice +flittermouse,flittermice +flitting,flittings +fliver,flivers +flivver,flivvers +floatation,floatations +floatel,floatels +floater,floaters +float,floats +floating feeling,floating feelings +floating island,floating islands +floating palette,floating palettes +floating-point number,floating-point numbers +floating point operation,floating point operations +floating-point unit,floating-point units +floating vote,floating votes +floating voter,floating voters +floating wood tile,floating wood tiles +floatplane,floatplanes +floatstick,floatsticks +floaty,floaties +Flobert,Floberts +flocculant,flocculants +floccule,floccules +flocculent,flocculents +flocculent spiral galaxy,flocculent spiral galaxies +flocculonodular lobe,flocculonodular lobes +flocculus,flocculi +floccus,flocci +flock,flocks +flock,flocks +flocking,flockings +flockling,flocklings +flockmate,flockmates +floe,floes +floe rat,floe rats +flogger,floggers +flogging,floggings +flokati,flokatis +flone,flones +flong,flongs +flood chute,flood chutes +flooded gum,flooded gums +flooder,flooders +flood fill,flood fills +flood,floods +flood-gate,flood-gates +floodgate,floodgates +flooding,floodings +floodlight,floodlights +flood map,flood maps +floodmap,floodmaps +floodmark,floodmarks +flood plain,flood plains +floodplain,floodplains +flood pool,flood pools +flood stage,flood stages +flood test,flood tests +flood tide,flood tides +floodwall,floodwalls +floodwater,floodwaters +floodway,floodways +flook,flooks +floom,flooms +floorboard,floorboards +floor box,floor boxes +floorbox,floorboxes +floorcloth,floorcloths +floorcovering,floorcoverings +floorer,floorers +floor exercise,floor exercises +floor-filler,floor-fillers +floor,floors +floor function,floor functions +floor general,floor generals +floorgrip,floorgrips +floorhead,floorheads +flooring,floorings +floor lamp,floor lamps +floorlet,floorlets +floor manager,floor managers +floormate,floormates +floormat,floormats +floorperson,floorpeople,floorpersons +floor plan,floor plans +floorplan,floorplans +floorplate,floorplates +floor puzzle,floor puzzles +floorset,floorsets +floorshow,floorshows +floor tile,floor tiles +floortile,floortiles +floor-walker,floor-walkers +floorwalker,floorwalkers +floosie,floosies +floozie,floozies +floozy,floozies +flop,flops +flop,flops +flophouse,flophouses +flopper,floppers +floppy disc drive,floppy disc drives +floppy disk drive,floppy disk drives +floppy diskette drive,floppy diskette drives +floppy diskette,floppy diskettes +floppy disk,floppy disks +floppydock,floppydocks +floppy drive,floppy drives +floppy,floppies +floptical disk,floptical disks +floptical,flopticals +flopwing,flopwings +Floradora,Floradoras +flora,floras,florae,florΓ¦ +floral,florals +floral white,floral whites +floramour,floramours +Florence fennel,Florence fennels +Florence flask,Florence flasks +Florence,Florences +florentine,florentines +Florentine,Florentines +florescence,florescences +floret,florets +floribunda,floribundas +florican,floricans +floricide,floricides +floriculturist,floriculturists +Florida bean,Florida beans +Florida flambe,Florida flambes +Florida horse conch,Florida horse conches +Florida room,Florida rooms +Floridian,Floridians +florigen,florigens +floriken,florikens +florikin,florikins +florilegium,florilegia +florimania,florimanias +florimer,florimers +florin,florins +florist,florists +florist's,florist'ss +Florodora,Florodoras +floroon,floroons +floruit,floruits +floryshe,floryshes +floscularian,floscularians +floscule,floscules +flosh,floshes +flosser,flossers +floss,flosses +floss,flosses +flota,flotas +flotation cost,flotation costs +flotation,flotations +flotation tank,flotation tanks +flote,flotes +flotel,flotels +flother,flothers +flotilla,flotillas +flotillin,flotillins +floud,flouds +flounce,flounces +flouncer,flouncers +flounderer,flounderers +flounder,flounders,flounder +floundering,flounderings +flourisher,flourishers +flourish,flourishes +flourishing,flourishings +flourman,flourmen +flour moth,flour moths +flour treatment agent,flour treatment agents +flouter,flouters +flow battery,flow batteries +flow cell,flow cells +flowcell,flowcells +flow chart,flow charts +flowchart,flowcharts +flow cytometer,flow cytometers +flow diagram,flow diagrams +flower bed,flower beds +flowerbed,flowerbeds +flower box,flower boxes +flowerbox,flowerboxes +flower child,flower children +flowerer,flowerers +floweret,flowerets +flower-fence,flower-fences +flower,flowers +flower,flowers +flower fly,flower flies +flower-fly,flower-flies +flowerfly,flowerflies +flower-gentle,flower-gentles +flower girl,flower girls +flower head,flower heads +flowerhead,flowerheads +flowering,flowerings +flowering plant,flowering plants +flowerpecker,flowerpeckers +flower petal,flower petals +flower-petal,flower-petals +flowerpetal,flowerpetals +flowerpot,flowerpots +flow field,flow fields +flowfield,flowfields +flowgraph,flowgraphs +flowing,flowings +flowk,flowks +flowline,flowlines +flowmeter,flowmeters +flow of emotion,flows of emotion +flowrate,flowrates +flowre,flowres +flow'ret,flow'rets +flowret,flowrets +flow'r,flow'rs +flowsheet,flowsheets +flowstone,flowstones +flowthrough,flowthroughs +flowtop,flowtops +flow variable,flow variables +floyte,floytes +flt.,flts. +fluate,fluates +fluavil,fluavils +flubdub,flubdubs +flub,flubs +fluctosphere,fluctospheres +fluctuation,fluctuations +fluctuator,fluctuators +fluctus,fluctus +fluden,fludens +flue,flues +fluellen,fluellens +fluence,fluences +fluence,fluences +fluency,fluencies +flue pipe,flue pipes +fluffball,fluffballs +fluffer-doodle,fluffer-doodles +fluffer,fluffers +fluffernutter,fluffernutters +fluff,fluffs +fluff girl,fluff girls +fluffing,fluffings +flufftail,flufftails +fluffy,fluffies +flu,flus +flu friend,flu friends +flugelhorn,flugelhorns +flΓΌgelhorn,flΓΌgelhorns +flugelhornist,flugelhornists +flugelman,flugelmen +fluid drachm,fluid drachms +fluid feeder,fluid feeders +fluidification,fluidifications +fluidized bed,fluidized beds +fluidizer,fluidizers +fluid measure,fluid measures +fluid ounce,fluid ounces +fluidounce,fluidounces +fluidrachm,fluidrachms +fluidram,fluidrams +flukan,flukans +fluke,flukes +fluke,flukes +fluke,flukes +flukeworm,flukeworms +flume,flumes +flumen,flumina +flummadiddle,flummadiddles +flummery,flummeries +flumpet,flumpets +flump,flumps +flunami,flunamis +flunkee,flunkees +flunker,flunkers +flunkeydom,flunkeydoms +flunkey,flunkeys,flunkies +flunkout,flunkouts +flunky,flunkies +fluoborate,fluoborates +fluoboride,fluoborides +fluophosphate,fluophosphates +fluorane,fluoranes +fluoranthene,fluoranthenes +fluorapatite,fluorapatites +fluorene,fluorenes +fluorenol,fluorenols +fluorenyl,fluorenyls +fluorenylidene,fluorenylidenes +fluoresceine,fluoresceines +fluorescein,fluoresceins +fluorescent,fluorescents +fluorescent lamp,fluorescent lamps +fluorescent tube,fluorescent tubes +fluorestradiol,fluorestradiols +fluoridationist,fluoridationists +fluoridator,fluoridators +fluoride,fluorides +fluoridosis,fluoridoses +fluorimeter,fluorimeters +fluorine dating,fluorine datings +fluorine oxide,fluorine oxides +fluorine test,fluorine tests +fluorite,fluorites +fluoroacetate,fluoroacetates +fluoroalkane,fluoroalkanes +fluoroalkene,fluoroalkenes +fluoroalkyl,fluoroalkyls +fluoroantimonate,fluoroantimonates +fluoroaromatic,fluoroaromatics +fluorobenzene,fluorobenzenes +fluorobenzyl,fluorobenzyls +fluorocarbon,fluorocarbons +fluorochemical,fluorochemicals +fluorochlorohydrocarbon,fluorochlorohydrocarbons +fluorochrome,fluorochromes +fluorocitrate,fluorocitrates +fluorocoumarin,fluorocoumarins +fluorocytosine,fluorocytosines +fluoroelastomer,fluoroelastomers +fluorofibre,fluorofibres +fluoro,fluoros +fluorogram,fluorograms +fluorographene,fluorographenes +fluorograph,fluorographs +fluorohectorite,fluorohectorites +fluorohydride,fluorohydrides +fluorohydrin,fluorohydrins +fluoroid,fluoroids +fluoroimmunoassay,fluoroimmunoassays +fluorometer,fluorometers +fluoromethane,fluoromethanes +fluorone,fluorones +fluoronium ion,fluoronium ions +fluoronucleotide,fluoronucleotides +fluorophenol,fluorophenols +fluorophenylalanine,fluorophenylalanines +fluorophenyl,fluorophenyls +fluorophore,fluorophores +fluorophor,fluorophors +fluorophosphate,fluorophosphates +fluorophotometer,fluorophotometers +fluoropolymer,fluoropolymers +fluoroprobe,fluoroprobes +fluoroproline,fluoroprolines +fluoropyridine,fluoropyridines +fluoropyrimidine,fluoropyrimidines +fluoroquinolone,fluoroquinolones +fluoroscope,fluoroscopes +fluorosis,fluoroses +fluorosugar,fluorosugars +fluorosulfite,fluorosulfites +fluorosurfactant,fluorosurfactants +fluorotantalate,fluorotantalates +fluorotelomer,fluorotelomers +fluorothymidine,fluorothymidines +fluorouridine,fluorouridines +fluosilicate,fluosilicates +flurry,flurries +flurt,flurts +flushboard,flushboards +flusher,flushers +flush,flushes +flush,flushes +flushing,flushings +flushometer,flushometers +flush toilet,flush toilets +flustramine,flustramines +flute,flutes +flute,flutes +flutemouth,flutemouths +fluter,fluters +flutist,flutists +flutterball,flutterballs +flutterboard,flutterboards +flutterby,flutterbies +flutterer,flutterers +flutter,flutters +fluttering,flutterings +flutter kick,flutter kicks +flutter wheel,flutter wheels +fluvent,fluvents +fluvialist,fluvialists +fluviometer,fluviometers +fluvisol,fluvisols +fluxbrane,fluxbranes +flux capacitor,flux capacitors +flux density,flux densities +flux,fluxes +fluxgate,fluxgates +fluxional compound,fluxional compounds +fluxion,fluxions +fluxionist,fluxionists +fluxoid,fluxoids +fluxon,fluxons +fluxonium,fluxoniums +fluxtube,fluxtubes +flux unit,flux units +fluxunit,fluxunits +fly agaric,fly agarics +flyaway,flyaways +fly ball,fly balls +flyball,flyballs +flybane,flybanes +fly biscuit,fly biscuits +flyblow,flyblows +flyboat,flyboats +fly box,fly boxes +fly-box,fly-boxes +flyboy,flyboys +flybridge,flybridges +flyby,flybys +fly-by-night,fly-by-nights +flycatcher,flycatchers +flye,flyes +flyer,flyers +flyfisher,flyfishers +flyfisherman,flyfishermen +flyfish,flyfishes,flyfish +fly,flies +fly,flies +fly-half,fly-halves +flyhalf,flyhalves +flyhawk,flyhawks +fly-in,fly-ins +flying ace,flying aces +flying bishop,flying bishops +flying bomb,flying bombs +flying brick,flying bricks +flying bridge,flying bridges +flying buttress,flying buttresses +flying circus,flying circuses +flying coffin,flying coffins +flying fish,flying fish +flyingfish,flyingfish,flyingfishes +flying fox,flying foxes +flying frog,flying frogs +flying fuck,flying fucks +flying gurnard,flying gurnards +flying jib boom,flying jib booms +flying jib,flying jibs +flying kiss,flying kisses +flying lemur,flying lemurs +flying machine,flying machines +flying meet,flying meets +flying mouse,flying mice +flying officer,flying officers +flying purple people eater,flying purple people eaters +flying rat,flying rats +flying saucer,flying saucers +flying saucer group,flying saucer groups +flying sport,flying sports +flying squad,flying squads +flying squirrel,flying squirrels +flying start,flying starts +flying toilet,flying toilets +flying visit,flying visits +fly in the ointment,flies in the ointment +flyleaf,flyleaves +flyman,flymen +fly on the wall,flies on the wall +fly out,fly outs +flyout,flyouts +flyover,flyovers +flyover state,flyover states +flypaper,flypapers +flypast,flypasts +flype,flypes +fly-poster,fly-posters +flyposter,flyposters +Fly River turtle,Fly River turtles +flyrodder,flyrodders +flyrod,flyrods +flysch,flysches +fly sheet,fly sheets +flysheet,flysheets +flyspeck,flyspecks,flyspeck +fly swatter,fly swatters +flyswatter,flyswatters +flythrough,flythroughs +flyting,flytings +fly-tip,fly-tips +flytrap,flytraps +flyway,flyways +flyweight,flyweights +flyweight pattern,flyweight patterns +flywheel,flywheels +flywhisk,flywhisks +F minus,F minuses +fmole,fmoles +FN FAL,FN FALs +FN-FAL,FN-FALs +FN,FNs +fnord,fnords +f-number,f-numbers +foal,foals +foalfoot,foalfoots +foaling,foalings +foamer,foamers +foamflower,foamflowers +foaming agent,foaming agents +foam party,foam parties +fob,fobs +FOB,FOBs +focal depth,focal depths +focalization,focalizations +focal length,focal lengths +focal plane,focal planes +focal point,focal points +focimeter,focimeters +Fock space,Fock spaces +Fock state,Fock states +foc's'le,foc's'les +fo'c's'le lamp,fo'c's'le lamps +foc's'le lamp,foc's'le lamps +focuser,focusers +focus group,focus groups +focus-group,focus-groups +focusing,focusings +fodderer,fodderers +fodient,fodients +fody,fodies +fΕ“deracy,fΕ“deracies +fΕ“deralism,fΕ“deralisms +fΕ“deralist,fΕ“deralists +fΕ“deration,fΕ“derations +fΕ“dΓ©ration,fΕ“dΓ©rations +foederatus,foederati +foe,foes +foe,foes +foehn,foehns +foeman,foemen +foetation,foetations +foeticide,foeticides +fΕ“ticide,fΕ“ticides +foetopathy,foetopathies +foetoprotein,foetoproteins +fΕ“tor,fΕ“tors +foetoscope,foetoscopes +foetoscopy,foetoscopies +foetus,foetuses,foeti +fΕ“tus,fΕ“tuses,fΕ“ti +fo,fos +fogbank,fogbanks +fog bow,fog bows +fogbow,fogbows +fog collection,fog collections +fogdog,fogdogs +foge,foges +fogeydom,fogeydoms +fogey,fogies,fogeys +fog forest,fog forests +foggara,foggaras +fogger,foggers +foghorn,foghorns +fogie,fogies +fog lamp,fog lamps +foglamp,foglamps +fogle,fogles +fog light,fog lights +foglight,foglights +fog line,fog lines +fog of war,fogs of war +fogou,fogous +fogy,fogies +fohawk,fohawks +FOHE,FOHEs +Fohist,Fohists +fΓΆhn,fΓΆhns +foiba,foibas +foible,foibles +foid,foids +foiler,foilers +foil,foils +foil,foils +foiling,foilings +foilist,foilists +foin,foins +foin,foins +foison,foisons +foister,foisters +foist,foists +foist,foists +folate,folates +folboat,folboats +folbot,folbots +foldamer,foldamers +foldase,foldases +foldboater,foldboaters +fold boat,fold boats +foldboat,foldboats +folded mountain,folded mountains +folder,folders +fol-de-rol,fol-de-rols +fold,folds +fold,folds +folding chair,folding chairs +folding,foldings +folding knife,folding knives +folding screen,folding screens +foldome,foldomes +foldout,foldouts +foldover,foldovers +foldstool,foldstools +foley artist,foley artists +Foley catheter,Foley catheters +foley session,foley sessions +foliage leaf,foliage leaves +foliate curve,foliate curves +foliation,foliations +folie Γ  deux,folies Γ  deux +folie de grandeur,folies de grandeur +folinate,folinates +folio,folios +foliole,folioles +foliophage,foliophages +folio post,folio posts +foliot,foliots +folisol,folisols +folist,folists +folium,foliums,folia +folivore,folivores +folk dance,folk dances +folk devil,folk devils +folker,folkers +folk etymologist,folk etymologists +folk etymology,folk etymologies +folk,folk,folks +folk hero,folk heroes +folk-hero,folk-heroes +folk house,folk houses +folkie,folkies +folk illness,folk illnesses +folklorist,folklorists +folkmoot,folkmoots +folkmote,folkmotes +folk music,folk musics +folknik,folkniks +folk singer,folk singers +folksinger,folksingers +folk song,folk songs +folksong,folksongs +folksonomy,folksonomies +folkster,folksters +folk tale,folk tales +folktale,folktales +folkway,folkways +follicle,follicles +follicular dendritic cell,follicular dendritic cells +follicular phase,follicular phases +folliculinid,folliculinids +followday,followdays +followee,followees +follower,followers +following,followings +follow on,follow ons +follow-on,follow-ons +follow-through,follow-throughs +followthrough,followthroughs +follow-up,follow-ups +followup,followups +folly,follies +fomentation,fomentations +fomenter,fomenters +fomes,fomites +fomite,fomites +fondaco,fondachi +fondant,fondants +fond,fonds +fondler,fondlers +fondleslab,fondleslabs +fondling,fondlings +fondling,fondlings +fondon,fondons +fondue,fondues +fonduer,fonduers +fondu,fondus +fonduk,fonduks +fon,fons +fon,fons +fonne,fonnes +fons honorum,fontes honorum +fontanel,fontanels +fontanelle,fontanelles +fontange,fontanges +font,fonts +font,fonts +font,fonts +font name,font names +food additive,food additives +foodaholic,foodaholics +food baby,food babies +food bank,food banks +foodbank,foodbanks +food-borne disease,food-borne diseases +food chain,food chains +foodchain,foodchains +food colouring,food colourings +food coma,food comas +food court,food courts +foodcourt,foodcourts +food crop,food crops +food desert,food deserts +food drive,food drives +fooder,fooders +foodfest,foodfests +food fight,food fights +food fish,food fishes +foodfish,foodfishes +foodgasm,foodgasms +foodgrain,foodgrains +foodie,foodies +foodism,foodisms +foodist,foodists +foodmonger,foodmongers +foo dog,foo dogs +foodoir,foodoirs +foodophile,foodophiles +food pipe,food pipes +food plant,food plants +foodplant,foodplants +food porn,food porns +food preservative,food preservatives +foodprint,foodprints +food processor,food processors +food pyramid,food pyramids +foodseller,foodsellers +foodshed,foodsheds +food stamp,food stamps +foodstuff,foodstuffs +food stylist,food stylists +food supplement,food supplements +food vacuole,food vacuoles +food waste disposer,food waste disposers +foodway,foodways +food web,food webs +foodweb,foodwebs +foodyolk,foodyolks +foofaraw,foofaraws +foo fighter,foo fighters +foofooraw,foofooraws +foo,foos +Foolah,Foolahs +foole,fooles +fooler,foolers +foolery,fooleries +foolfish,foolfishes,foolfish +fool,fools +foo lion,foo lions +foolometer,foolometers +fool-saint,fool-saints +foolscap,foolscaps +fool's errand,fools' errands +fool's mate,fool's mates +fool's paradise,fool's paradises +foon,foons +foosa,foosas +footbag,footbags +footballer,footballers +football field,football fields +footballfish,footballfishes +football minute,football minutes +football player,football players +football pool,football pools +footband,footbands +footbath,footbaths +footbed,footbeds +footboard,footboards +footbone,footbones +footboy,footboys +foot brake,foot brakes +footbridge,footbridges +foot candle,foot candles +footcloth,footcloths +footdragging,footdraggings +footer,footers +foot-fall,foot-falls +footfall,footfalls +foot fault,foot faults +foot feed,foot feeds +foot,feet +footfucker,footfuckers +footfuck,footfucks +footglove,footgloves +footguard,footguards +foothill,foothills +foothold,footholds +foothole,footholes +foothook,foothooks +footing,footings +foot job,foot jobs +footjob,footjobs +foot kiss,foot kisses +footkiss,footkisses +footler,footlers +footlicker,footlickers +foot lifter,foot lifters +footlight,footlights +footling,footlings +foot locker,foot lockers +footlocker,footlockers +footlong,footlongs +footloose,footlooses +footman,footmen +footmark,footmarks +footmuff,footmuffs +footnote,footnotes +footpace,footpaces +footpad,footpads +foot passenger,foot passengers +footpath,footpaths +footpeg,footpegs +footplate,footplates +footplate man,footplate men +footpoint,footpoints +foot-poundal,foot-poundals +foot-pound,foot-pounds +foot-pound-second,foot-pound-seconds +footprint,footprints +foot race,foot races +footrace,footraces +foot rest,foot rests +footrest,footrests +footrope,footropes +footrot,footrots +footshock,footshocks +footslog,footslogs +footslogger,footsloggers +footslope,footslopes +foot soldier,foot soldiers +footsoldier,footsoldiers +footstalk,footstalks +footstall,footstalls +footstep,footsteps +footstone,footstones +footstool,footstools +footstrike,footstrikes +foot sweep,foot sweeps +footsweep,footsweeps +footswitch,footswitches +foot trap,foot traps +footwalk,footwalks +footwall,footwalls +footwarmer,footwarmers +footway,footways +footwell,footwells +footwoman,footwomen +footwrap,footwraps +footy,footies +foozle,foozles +fopdoodle,fopdoodles +fop,fops +fopling,foplings +foppery,fopperies +foracan,foracans +forage cap,forage caps +forage,forages +forager,foragers +foraging,foragings +foralite,foralites +foramen,foramina +foramen ovale,foramen ovales +foram,forams +foraminiferan,foraminiferans +foraminifer,foraminifers +foraminotomy,foraminotomies +foratid,foratids +forayer,forayers +foray,forays +forbearance,forbearances +forbearer,forbearers +forbear,forbears +forb,forbs +forbiddance,forbiddances +forbidder,forbidders +forbisen,forbisens +forbode,forbodes +forbod,forbods +forboding,forbodings +forbuyer,forbuyers +forbyland,forbylands +forced-birther,forced-birthers +forced convection,forced convections +forced laborer,forced laborers +forced march,forced marches +forced rhyme,forced rhymes +force field,force fields +force-field,force-fields +forcefield,forcefields +force,forces +force majeure,forces majeures +force multiplier,force multipliers +force of habit,forces of habit +force of nature,forces of nature +force out,force outs +force-out,force-outs +forceout,forceouts +force play,force plays +forceps,forceps,forcipes,forcepses +forcer,forcers +forcing house,forcing houses +forcipule,forcipules +fordede,fordedes +fordele,fordeles +ford,fords +Ford,Fords +foreacre,foreacres +foreannouncement,foreannouncements +forearc,forearcs +forearm bone,forearm bones +forearm,forearms +forebeam,forebeams +forebearance,forebearances +forebearer,forebearers +forebear,forebears +forebeat,forebeats +forebelief,forebeliefs +forebell,forebells +forebite,forebites +foreboder,foreboders +foreboding,forebodings +forebody,forebodies +forebrace,forebraces +forebrain,forebrains +forecastability,forecastabilities +forecaster,forecasters +forecast,forecasts +forecastle,forecastles +forecastle lamp,forecastle lamps +forechecker,forecheckers +foreclosee,foreclosees +forecloser,foreclosers +foreclosure,foreclosures +forecourt,forecourts +forecoxa,forecoxae +forecrown,forecrowns +foredeal,foredeals +foredeck,foredecks +foredeep,foredeeps +foredele,foredeles +foredge,foredges +foredraft,foredrafts +foredune,foredunes +fore edge,fore edges +forefather,forefathers +forefemur,forefemora +forefence,forefences +forefinger,forefingers +foreflow,foreflows +forefoot,forefeet +forefront,forefronts +foregame,foregames +foreganger,foregangers +foregear,foregears +foregift,foregifts +foregleam,foregleams +foreglimpse,foreglimpses +foregoer,foregoers +foregone conclusion,foregone conclusions +foreground,foregrounds +foreguard,foreguards +foreguess,foreguesses +foregut,foreguts +forehand,forehands +forehead,foreheads +forehearth,forehearths +forehock,forehocks +forehold,foreholds +foreholding,foreholdings +forehoof,forehoofs,forehooves +forehook,forehooks +foreign accent syndrome,foreign accent syndromes +foreign body,foreign bodies +foreign currency,foreign currencys +foreigner,foreigners +foreign exchange,foreign exchanges +foreign exchange market,foreign exchange markets +foreign,foreigns +foreignism,foreignisms +foreign key,foreign keys +foreign language,foreign languages +foreign minister,foreign ministers +foreignness,foreignnesses +foreign policy,foreign policies +foreign tongue,foreign tongues +forejudgement,forejudgements +forejudger,forejudgers +foreken,forekens +foreking,forekings +foreknower,foreknowers +forelady,foreladies +foreland,forelands +foreleader,foreleaders +foreleg,forelegs +forelimb,forelimbs +Forelle,Forelles +forelock,forelocks +forelook,forelooks +foreman,foremen +foremanship,foremanships +fore-mast,fore-masts +foremast,foremasts +foremath,foremaths +foremind,foreminds +foremother,foremothers +forename,forenames +forend,forends +forenight,forenights +forenoon,forenoons +forensic science,forensic sciences +forepart,foreparts +forepaw,forepaws +forepeak,forepeaks +foreperson,forepersons,forepeople +foreplane,foreplanes +forequarter,forequarters +forerank,foreranks +foreread,forereads +forereef,forereefs +forerib,foreribs +forerider,foreriders +forerunner,forerunners +foresail,foresails +foreseer,foreseers +foreset,foresets +foreshadower,foreshadowers +foreshadowing,foreshadowings +foreshaft,foreshafts +foreshank,foreshanks +foreshape,foreshapes +foresheet,foresheets +foreship,foreships +foreshock,foreshocks +foreshore,foreshores +foreshot,foreshots +foreshower,foreshowers +foreshow,foreshows +foreshowing,foreshowings +foreside,foresides +foresister,foresisters +foreskin,foreskins +foreskirt,foreskirts +foreslash,foreslashes +foresleeve,foresleeves +foresmack,foresmacks +foresmell,foresmells +forespeaking,forespeakings +forespeech,forespeeches +forespore,forespores +forestaff,forestaffs,forestaves +forestage,forestages +forestage,forestages +forestaller,forestallers +forestall,forestalls +forestart,forestarts +forestation,forestations +forestay,forestays +forestaysail,forestaysails +forest-bill,forest-bills +foreste,forestes +forester,foresters +forest falcon,forest falcons +forest fire,forest fires +forest fly,forest flies +forest,forests +forest green,forest greens +forest green tree frog,forest green tree frogs +forestick,foresticks +forestkeeper,forestkeepers +forestland,forestlands +forest machine,forest machines +forest plot,forest plots +forestry,forestries +foretalk,foretalks +foretarsus,foretarsi +foretaste,foretastes +foretaster,foretasters +foreteller,foretellers +foretelling,foretellings +forethought,forethoughts +foretibia,foretibiae +foretime,foretimes +foretoken,foretokens +foretokening,foretokenings +foretooth,foreteeth +foretop,foretops +foretopman,foretopmen +foretopmast,foretopmasts +foretopsail,foretopsails +foretriangle,foretriangles +forever,forevers +forever stamp,forever stamps +forewalk,forewalks +foreward,forewards +foreway,foreways +fore wing,fore wings +forewing,forewings +fore-wit,fore-wits +forewit,forewits +forewit,forewits +forewoman,forewomen +foreword,forewords +forex,forexes +foreyard,foreyards +forfalture,forfaltures +forfeitability,forfeitabilities +forfeiter,forfeiters +forfeit,forfeits +forfeiture,forfeitures +forfeiture fund,forfeiture funds +forfex,forfices +forficulid,forficulids +forge,forges +forge-hammer,forge-hammers +forgeman,forgemen +forger,forgers +forgery,forgeries +forget-me-not,forget-me-nots +forgetter,forgetters +forgetting,forgettings +forging,forgings +forgiver,forgivers +forgoer,forgoers +forgotten,forgottens +forgraithing,forgraithings +forint,forints +forkball,forkballs +forkbeard,forkbeards +fork bomb,fork bombs +forked tongue,forked tongues +fork,forks +forkful,forkfuls,forksful +forkhead,forkheads +fork in the road,forks in the road +forklift,forklifts +forkmaker,forkmakers +forktail,forktails +forkytail,forkytails +forlesing,forlesings +Forlivian,Forlivians +for loop,for loops +forloppin,forloppins +forlorn hope,forlorn hopes +formal cause,formal causes +formal fallacy,formal fallacies +formal,formals +formal grammar,formal grammars +formalist,formalists +formalization,formalizations +formal language,formal languages +formal logic,formal logics +formal ontology,formal ontologies +formal parameter,formal parameters +formal science,formal sciences +formal system,formal systems +formal validity,formal validities +formamidase,formamidases +formamide,formamides +formamidine,formamidines +formant,formants +formate,formates +format,formats +formation,formations +formation rule,formation rules +formation water,formation waters +formative,formatives +formator,formators +formatting,formattings +formazan,formazans +formboard,formboards +form class,form classes +formedon,formedons +forme,formes +forme fruste,formes frustes +formell,formells +formeret,formerets +former,formers +form factor,form factors +form feed,form feeds +formfeed,formfeeds +form,forms +form genus,form genera +formicariid,formicariids +formicarium,formicaria +formicary,formicaries +formication,formications +formicide,formicides +formicid,formicids +formiminotetrahydrofolate,formiminotetrahydrofolates +formin,formins +formivore,formivores +form letter,form letters +Formosan,Formosans +form taxon,form taxa +formula,formulae,formulas,formulΓ¦ +formulant,formulants +formularization,formularizations +formulary,formularies +formulation,formulations +formulator,formulators +formula unit,formula units +formule,formules +formulism,formulisms +formwork,formworks +formylase,formylases +formylation,formylations +formyl,formyls +formylpeptide,formylpeptides +formyltetrahydrofolate,formyltetrahydrofolates +formyltransferase,formyltransferases +fornicate gyrus,fornicate gyri,fornicate gyruses +fornication,fornications +fornicator,fornicators +fornicatorium,fornicatoriums,fornicatoria +fornicatour,fornicatours +fornicatress,fornicatresses +fornix,fornices +forpet,forpets +for-profit,for-profits +forprofit,forprofits +forray,forrays +forsaker,forsakers +forset,forsets +forskolin,forskolins +forslitting,forslittings +forspan,forspans +forsteal,forsteals +forster,forsters +forsterite,forsterites +forswearer,forswearers +forsythia,forsythias +fortalice,fortalices +Fort Bragg fever,Fort Bragg +Fortean,Forteans +forte,fortes +forte,fortes +fortepianist,fortepianists +fortepiano,fortepianos +fort,forts +forthcome,forthcomes +forthdeal,forthdeals +forthfare,forthfares +forthfaring,forthfarings +forthfather,forthfathers +forthgang,forthgangs +forthgoing,forthgoings +forthlook,forthlooks +forthput,forthputs +forthputter,forthputters +forthspeaker,forthspeakers +forthspeaking,forthspeakings +fortieth,fortieths +fortification curtain,fortification curtains +fortification,fortifications +fortified wine,fortified wines +fortifier,fortifiers +fortilage,fortilages +fortilice,fortilices +fortin,fortins +fortissimo,fortissimos +fortississimo,fortississimos +fortitude,fortitudes +fortlet,fortlets +fortnight,fortnights +fortnightly,fortnightlies +fortochka,fortochkas +fortress,fortresses +fortune cookie,fortune cookies +fortune,fortunes +fortune teller,fortune tellers +fortune-teller,fortune-tellers +fortuneteller,fortunetellers +forty-eighth,forty-eighths +forty-eightmo,forty-eightmos +fortyeightmo,fortyeightmos +forty-fifth,forty-fifths +forty-first,forty-firsts +forty,forties +forty-four,forty-fours +forty-fourth,forty-fourths +forty-niner,forty-niners +forty-ninth,forty-ninths +forty-oneth,forty-oneths +forty-second,forty-seconds +forty-seventh,forty-sevenths +forty-sixth,forty-sixths +fortysomething,fortysomethings +forty-spot,forty-spots +forty-third,forty-thirds +forum,forums,fora +forumite,forumites +forward dive,forward dives +forwarder,forwarders +forward,forwards +forward,forwards +forwarding address,forwarding addresses +forward line,forward lines +forward link,forward links +forward pass,forward passes +forward proxy,reverse proxies +forward roll,forward rolls +forward slash,forward slashes +forwards roll,forwards rolls +forward transfer function,forward transfer functions +Fosbury flop,Fosbury flops +fosmid,fosmids +fossa,fossae,fossΓ¦ +fossa,fossas +fossane,fossanes +fosse,fosses +FOSSer,FOSSers +fosset,fossets +fossette,fossettes +fosseway,fosseways +foss,fosses +foss,fosses +fossicker,fossickers +fossil,fossils +fossil fuel,fossil fuels +fossilist,fossilists +fossilization,fossilizations +fossilogy,fossilogies +fossil water,fossil waters +fossor,fossors +fossorial,fossorials +fossula,fossulae,fossulΓ¦ +foster child,foster children +fosterer,fosterers +foster family,foster families +foster father,foster fathers +fostering,fosterings +fosterling,fosterlings +foster mother,foster mothers +fostermother,fostermothers +foster parent,foster parents +fostress,fostresses +fostriecin,fostriecins +fother,fothers +fotmal,fotmals +fotograf,fotografs +Foucault current,Foucault currents +Foucault pendulum,Foucault pendulums +foud,fouds +fouettΓ©,fouettΓ©s +fougade,fougades +fougasse,fougasses +foul anchor,foul anchors +foulant,foulants +foulard,foulards +foul ball,foul balls +foul bill of health,foul bills of health +fouled anchor,fouled anchors +fouler,foulers +foul,fouls +foul line,foul lines +foul out,foul outs +foul pole,foul poles +foul shot,foul shots +foul tick,foul ticks +foul tip,foul tips +foul-up,foul-ups +foul wind,foul winds +foumart,foumarts +foundationalist,foundationalists +foundationer,foundationers +foundation,foundations +founder effect,founder effects +founder,founders +founder,founders +foundery,founderies +found,founds +founding father,founding fathers +Founding Father,Founding Fathers +founding member,founding members +foundling,foundlings +foundling wheel,foundling wheels +found object,found objects +foundress,foundresses +foundry,foundries +foundryman,foundrymen +fountain code,fountain codes +fountaineer,fountaineers +fountain,fountains +fountainhead,fountainheads +fountain lamp,fountain lamps +fountainlet,fountainlets +fountain of youth,fountains of youth +fountain pen,fountain pens +fountain shell,fountain shells +fountain water,fountain waters +fount,founts +fount,founts +fount of honor,founts of honor +fount of honour,founts of honour +four-acceleration,four-accelerations +four-bagger,four-baggers +fourball,fourballs +fourbe,fourbes +fourbery,fourberies +four-by-four,four-by-fours +four by two,four by twos +fourchette,fourchettes +four-door,four-doors +four door house,four door houses +fourdrinier,fourdriniers +four-eyed fish,four-eyed fishes +four-eyes,four-eyes +four-flusher,four-flushers +four-force,four-forces +fourgie,fourgies +fourgon,fourgons +fourgram,fourgrams +fourhorn sculpin,fourhorn sculpins +Fourier cosine series,Fourier cosine series +Fourierist,Fourierists +Fourierite,Fourierites +Fourier series,Fourier series +Fourier sine series,Fourier sine series +Fourier transform,Fourier transforms +four-in-hand,four-in-hands +four-leaf clover,four-leaf clovers +four-legged friend,four-legged friends +four-letter word,four-letter words +four L,four Ls +fourling,fourlings +four-master,four-masters +four-momentum,four-momenta +four-o'clock,four-o'clocks +four oh four,four oh fours +four-peat,four-peats +fourpeat,fourpeats +fourpence,fourpences +four penny nail,four penny nails +four-penny nail,four-penny nails +fourpenny nail,fourpenny nails +fourplex,fourplexes +four-point Calvinist,four-point Calvinists +four-poster,four-posters +fourposter,fourposters +fourragΓ¨re,fourragΓ¨res +fourrier,fourriers +four-seamer,four-seamers +four-seam fastball,four-seam fastballs +foursies,foursies +foursome,foursomes +four-speed,four-speeds +four-stroke engine,four-stroke engines +fourteener,fourteeners +fourteenie,fourteenies +fourteenth,fourteenths +fourth cousin,fourth cousins +fourth down,fourth downs +fourth finger,fourth fingers +fourth,fourths +fourth grade,fourth grades +fourth official,fourth officials +fourth slip,fourth slips +fourth wall,fourth walls +fourth-wall,fourth-walls +four-top,four-tops +four-vector,four-vectors +four-velocity,four-velocities +four-way cock,four-way cocks +four-wheel drive,four-wheel drives +four-wheeler,four-wheelers +foussa,foussas +fouter,fouters +fovea,foveas,foveae,foveΓ¦ +foveola,foveolas,foveolae,foveolΓ¦ +fovilla,fovillae +fower,fowers +fowler,fowlers +fowlery,fowleries +fowl,fowl,fowls +fowl-house,fowl-houses +fowling piece,fowling pieces +foxberry,foxberries +fox caller,fox callers +fox cub,fox cubs +foxfish,foxfish +fox,foxes +Fox,Foxes +foxglove,foxgloves +fox grape,fox grapes +fox hole,fox holes +foxhole,foxholes +foxhound,foxhounds +Foxhound,Foxhounds +foxhunt,foxhunts +foxie,foxies +fox in the henhouse,foxes in the henhouse +foxling,foxlings +foxnut,foxnuts +foxtail,foxtails +foxtail saw,foxtail saws +fox terrier,fox terriers +foxtrot,foxtrots +fox whistle,fox whistles +foyer,foyers +foyson,foysons +FPGA,FPGAs +FQI,FQIs +fqih,fqihs,fuqaha' +fracas,fracases,fracas +frac,fracs +frac,fracs +frac,fracs +fracker,frackers +fractal antenna,fractal antennas +fractal dimension,fractal dimensions +fractal,fractals +fractalisation,fractalisations +fractalkine,fractalkines +fractal response time,fractal response times +fractile,fractiles +fractional distillation,fractional distillations +fractional,fractionals +fractionalization,fractionalizations +fractionating column,fractionating columns +fractionator,fractionators +fraction,fractions +fractogram,fractograms +fracton,fractons +fracture,fractures +fracture plane,fracture planes +fractus,fracti +fraenulum,fraenula +frΓ¦nulum,frΓ¦nulums,frΓ¦nula +fraenum,fraena,fraenums +frΓ¦num,frΓ¦na,frΓ¦nums +Fra,Fras +frag,frags +fragger,fraggers +fragging,fraggings +fragility,fragilities +fragipan,fragipans +fragmental,fragmentals +fragmentation bomb,fragmentation bombs +fragmentation grenade,fragmentation grenades +fragment,fragments +fragmentist,fragmentists +fragment shader,fragment shaders +fragor,fragors +fragor,fragors +fragrance,fragrances +fragrancy,fragrancies +fragrant azalea,fragrant azaleas +fraidy cat,fraidy cats +fraidy-cat,fraidy-cats +frail,frails +frain,frains +fraining,frainings +fraise,fraises +fraise,fraises +fraisier,fraisiers +fraist,fraists +fraktaline,fraktalines +Fraktur,Frakturs +Frama,Framas +framboid,framboids +frame ball,frame balls +frame buffer,frame buffers +framebuffer,framebuffers +frame counter,frame counters +framed decision,framed decisions +frame drum,frame drums +frame,frames +frame house,frame houses +frame of mind,frames of mind +frame of reference,frames of reference +framerate,framerates +framer,framers +frame saw,frame saws +frameset,framesets +frameshift,frameshifts +frameshifting,frameshiftings +frameshift mutation,frameshift mutations +framesmith,framesmiths +frame-up,frame-ups +frameup,frameups +framework,frameworks +frame work knitter,frame work knitters +framework knitter,framework knitters +framily,framilies +framing chisel,framing chisels +framing device,framing devices +framing square,framing squares +franc,francs +franchisee,franchisees +franchiser,franchisers +franchisor,franchisors +Franciscan,Franciscans +francoa,francoas +franco,francos +francolin,francolins +Franco-Manitoban,Franco-Manitobans +francophile,francophiles +Francophile,Francophiles +Francophobe,Francophobes +francophone,francophones +Francophone,Francophones +franger,frangers +frangipani,frangipanis +frangipanni,frangipannis +franion,franions +frankalmoigne,frankalmoignes +Frankenstein complex,Frankenstein complexes +Frankenstein's monster,Frankenstein's monsters +frankenword,frankenwords +Frankenword,Frankenwords +franker,frankers +frank-fee,frank-fees +frank,franks +frank,franks +frank,franks +frank,franks +Frank,Franks +frankfurter,frankfurters +frankfurt,frankfurts +Frankfurt plane,Frankfurt planes +franking,frankings +Frankist,Frankists +franklin,franklins +Franklin,Franklins +Franklin stove,Franklin stoves +frank-marriage,frank-marriages +frankpledge,frankpledges +Franquist,Franquists +frape,frapes +frape,frapes +frapen,frapens +frap,fraps +frapist,frapists +frapler,fraplers +frappalatte,frappalattes +frappe,frappes +frappΓ©,frappΓ©s +frappuccino,frappuccinos +frappucino,frappucinos +Frascati,Frascatis +Fraser fir,Fraser firs +frataxin,frataxins +frat boy,frat boys +fratboy,fratboys +fratch,fratches +frater,fraters +frater house,frater houses +frater-house,frater-houses +fraternal nephew,fraternal nephews +fraternal niece,fraternal nieces +fraternisation,fraternisations +fraternization,fraternizations +fraternizer,fraternizers +fratery,frateries +frat,frats +frat house,frat houses +frathouse,frathouses +fratricide,fratricides +fraud,frauds +fraudster,fraudsters +frau,fraus +fraulein,frauleins +Fraunhofer line,Fraunhofer lines +fray,frays +fraying,frayings +frazil,frazils +freak accident,freak accidents +freakazoid,freakazoids +freak flag,freak flags +freak,freaks +freak,freaks +freak of nature,freaks of nature +freakout,freakouts +freak show,freak shows +freakshow,freakshows +freat,freats +frecency,frecencies +freckled duck,freckled ducks +freckleface,frecklefaces +freckle,freckles +freckling,frecklings +Frederictonian,Frederictonians +free agent,free agents +free ball,free balls +freebander,freebanders +freebase,freebases +freebaser,freebasers +freebee,freebees +freebie,freebies +freebirther,freebirthers +freeboard,freeboards +freebooter,freebooters +free cash flow,free cash flows +free convection,free convections +freecycle,freecycles +Freecycler,Freecyclers +free diver,free divers +free-diver,free-divers +freediver,freedivers +freedman,freedmen +freedom fighter,freedom fighters +freedom ride,freedom rides +freedom rider,freedom riders +freedperson,freedpeople +freedstool,freedstools +freedwoman,freedwomen +free edge,free edges +free fatty acid,free fatty acids +free float,free floats +free-for-all,free-for-alls +free,frees +freegan,freegans +free group,free groups +freeholder,freeholders +freehold,freeholds +free house,free houses +freehub,freehubs +free kick,free kicks +freekick,freekicks +freelage,freelages +freelance,freelances +freelancer,freelancers +Freelander,Freelanders +freeledge,freeledges +free-liver,free-livers +free-living organism,free-living organisms +freeloader,freeloaders +free lover,free lovers +free lunch,free lunches +freeman,freemen +free marketeer,free marketeers +free-marketeer,free-marketeers +free market,free markets +freemartin,freemartins +freemason,freemasons +Freemason,Freemasons +freeminer,freeminers +free morpheme,free morphemes +free neutron,free neutrons +free pass,free passes +Freeper,Freepers +free period,free periods +free product,free products +free radical,free radicals +free reed,free reeds +freer,freers +free ride,free rides +free rider,free riders +freeroll,freerolls +freerun,freeruns +free runner,free runners +free-sheet,free-sheets +freeship,freeships +freesia,freesias +freeskier,freeskiers +Free-Soiler,Free-Soilers +free spirit,free spirits +free state,free states +Free-Stater,Free-Staters +free-stone,free-stones +freestone,freestones +freestream,freestreams +freestyler,freestylers +freetard,freetards +freet,freets +freethinker,freethinkers +free throw,free throws +free-throw lane,free-throw lanes +free-throw line,free-throw lines +free trade area,free trade areas +free-trade area,free-trade areas +free transfer,free transfers +free ultrafilter,free ultrafilters +free variable,free variables +free vote,free votes +free water,free waters +freeway,freeways +freewheel,freewheels +freezable,freezables +freeze frame,freeze frames +freezeframe,freezeframes +freeze,freezes +freeze,freezes +freezeout,freezeouts +freeze pop,freeze pops +freezepop,freezepops +freezer burn,freezer burns +freezer,freezers +freeze valve,freeze valves +freezie,freezies +freezing level,freezing levels +freezing point,freezing points +free zone,free zones +freezoner,freezoners +fregatid,fregatids +Fregoli delusion,Fregoli delusions +freight car,freight cars +freight density,freight densities +freighter,freighters +freight operating company,freight operating companies +freight train,freight trains +freightwagon,freightwagons +freight yard,freight yards +freit,freits +freke,frekes,freken +fremd,fremds +fremman,fremmen,fremmans +French augmented sixth chord,French augmented sixth chords +French bean,French beans +French Bulldog,French Bulldogs +French Canadian,French Canadians +French cricket,French crickets +French cuff,French cuffs +French curve,French curves +French cut,French cuts +French dip,French dips +French donut,French donuts +French door,French doors +French drain,French drains +French franc,French francs +french fry,french fries +French fry,French fries +French grip,French grips +French Guianese,French Guianeses +French horn,French horns +Frenchification,Frenchifications +French inhale,French inhales +frenchise,frenchises +Frenchism,Frenchisms +French kisser,French kissers +French kiss,French kisses +French letter,French letters +French maid,French maids +Frenchman,Frenchmen +French onion soup,French onion soups +French parfait,French parfaits +French partridge,French partridges +French pedicure,French pedicures +Frenchperson,Frenchpersons,Frenchpeople +French Polynesian,French Polynesians +French press,French presses +French sash,French sashes +French stick,French sticks +French tickler,French ticklers +french window,french windows +French window,French windows +French wire,French wires +Frenchwoman,Frenchwomen +frenectomy,frenectomies +frenemy,frenemies +frenetic,frenetics +fren,frens +frenuloplasty,frenuloplasties +frenulum,frenula,frenulums +frenum,frena,frenums +frenzy,frenzies +frequence,frequences +frequency assignment,frequency assignments +frequency channel,frequency channels +frequency,frequencies +frequency modulation,frequency modulations +frequency multiplier,frequency multipliers +frequentation,frequentations +frequentative,frequentatives +frequenter,frequenters +frequent flier,frequent fliers +frequentist,frequentists +frescade,frescades +fresco,frescos,frescoes +freshener,fresheners +freshening,freshenings +fresher,freshers +freshers' week,freshers' weeks +freshet,freshets +fresh,freshes +freshie,freshies +freshling,freshlings +freshman,freshmen +freshmanhood,freshmanhoods +freshmanship,freshmanships +freshperson,freshpersons,freshpeople +fresh start,fresh starts +freshwater,freshwaters +freshwater pearl mussel,freshwater pearl mussels +freshwoman,freshwomen +fresnel,fresnels +Fresnel lamp,Fresnel lamps +Fresnel lantern,Fresnel lanterns +Fresnel lens,Fresnel lenses +Fresnel zone plate,Fresnel zone plates +fressing,fressings +fretboard,fretboards +fret,frets +fret,frets +fret,frets +fret,frets +fretman,fretmen +fret saw,fret saws +fretsaw,fretsaws +fretter,fretters +frett,fretts +fretting,frettings +fretum,freta +Freudian,Freudians +Freudian slip,Freudian slips +Frey curve,Frey curves +friand,friands +friar bird,friar birds +friarbird,friarbirds +friar,friars +friar's cowl,friar's cowls +friary,friaries +fribble,fribbles +fribbler,fribblers +friborg,friborgs +fricace,fricaces +fricandeau,fricandeaus,fricandeaux +fricandel,fricandels +fricando,fricandos,fricandoes +fricassee,fricassees +fricative,fricatives +fricatrice,fricatrices +frickle,frickles +frictional blight,frictional blights +friction hitch,friction hitches +Friday,Fridays +Friday the thirteenth,Fridays the thirteenth +fridge freezer,fridge freezers +fridge-freezer,fridge-freezers +'fridge,'fridges +fridge,fridges +fridgeful,fridgefuls +fridge magnet,fridge magnets +fridstol,fridstols +friedcake,friedcakes +fried egg,fried eggs +Friedman unit,Friedman units +friendess,friendesses +friend,friends +Friend,Friends +friendly amendment,friendly amendments +friendly,friendlies +friendly match,friendly matches +friendly society,friendly societies +friendly suit,friendly suits +friendly URL,friendly URLs +friend of a friend,friends of friends +friend of Bill W.,friends of Bill W. +friend of Dorothy,friends of Dorothy +friend of mine,friends of mine +friend of ours,friends of ours +friendship bench,friendship benches +friendship bracelet,friendship bracelets +friendship with benefits,friendships with benefits +friends list,friends lists +friendslist,friendslists +friend with benefits,friends with benefits +friendy,friendies +frienemy,frienemies +frier,friers +Frieslander,Frieslanders +frieze,friezes +frieze,friezes +friezer,friezers +frigate bird,frigate birds +frigatebird,frigatebirds +frigate,frigates +frigatoon,frigatoons +frig,frigs +frig,frigs +frigger,friggers +frigging,friggings +frightener,frighteners +frigidaire,frigidaires +frigid zone,frigid zones +frigorie,frigories +Frikadelle,Frikadellen +frikadelle,frikadeller,frikadellen +frikkadel,frikkadels +frilled lizard,frilled lizards +frilled shark,frilled sharks +frill,frills +fringe benefit,fringe benefits +fringe,fringes +fringer,fringers +fringe tree,fringe trees +fringillid,fringillids +f'rinstance,f'rinstances +frinstance,frinstances +fripperer,fripperers +fripper,frippers +frippet,frippets +frisbee,frisbees +Frisbee,Frisbees +friseur,friseurs +Frisian,Frisians +frisker,friskers +frisket,friskets +frisk,frisks +frislet,frislets +frisson,frissons +frist,frists +fristing,fristings +frit brick,frit bricks +frit,frits +frithborh,frithborhs +frith,friths +frith,friths +frithstool,frithstools +fritillaria,fritillarias +fritillary,fritillaries +frittata,frittatas +fritterer,fritterers +fritter,fritters +Fritz,Fritzes +Friulian,Friulians +frivol,frivols +frivolity,frivolities +frize,frizes +frizel,frizels +frizette,frizettes +friz,frizzes +frizzen,frizzens +frizzle,frizzles +frizzler,frizzlers +frizzy,frizzies +Frobenius number,Frobenius numbers +frob,frobs +frock coat,frock coats +frockcoat,frockcoats +frock,frocks +frock,frocks +froe,froes +froe,froes +'fro,'fros +fro,fros +frog and toad,frog and toads +frogbit,frogbits +frogfish,frogfishes,frogfish +frog,frogs +frog,frogs +frog,frogs +froggery,froggeries +froggy,froggies +frog hair,frog hairs +froghopper,froghoppers +frog kick,frog kicks +froglet,froglets +frogling,froglings +frogman,frogmen +frog march,frog marches +frog-march,frog-marches +frogmarch,frogmarches +frogmouth,frogmouths +frogskin,frogskins +frog view,frog views +frohawk,frohawks +froise,froises +frolic,frolics +frolicker,frolickers +frolick,frolicks +fromager,fromagers +fromagerie,fromageries +fromard,fromards +frondeur,frondeurs +frond,fronds +frondlet,frondlets +frontage,frontages +frontager,frontagers +frontage road,frontage roads +frontal bone,frontal bones +frontal,frontals +frontal lobe,frontal lobes +frontal sinus,frontal sinuses +frontal wedgie,frontal wedgies +frontbencher,frontbenchers +front bench,front benches +frontbench,frontbenches +front bottom,front bottoms +front controller pattern,front controller patterns +frontcourt,frontcourts +front crawl,front crawls +front desk,front desks +front door,front doors +front double biceps,front double biceps +front end,front ends +front-end,front-ends +frontend,frontends +front end loader,front end loaders +front-end loader,front-end loaders +fronter,fronters +frontflip,frontflips +front foot,front feet +front foot shot,front foot shots +front,fronts +front garden,front gardens +front group,front groups +frontier,frontiers +frontier orbital,frontier orbitals +frontiersman,frontiersmen +frontierswoman,frontierswomen +frontispiece,frontispieces +frontlet,frontlets +front line,front lines +frontline,frontlines +frontlist,frontlists +front loader,front loaders +frontloader,frontloaders +front load,front loads +front man,front men +frontman,frontmen +front name,front names +frontness,frontnesses +frontogenesis,frontogeneses +frontolysis,frontolyses +fronton,frontons +front organization,front organizations +front page,front pages +frontpage,frontpages +front ring,front rings +front room,front rooms +front row,front rows +front runner,front runners +front-runner,front-runners +frontrunner,frontrunners +front slash,front slashes +front vowel,front vowels +front wall,front walls +frontwoman,frontwomen +front yard,front yards +froodite,froodites +frosh,froshes +frosh,froshes,frosh +frosk,frosks +frostbird,frostbirds +frostbite,frostbites +frostfish,frostfishes,frostfish +frost heave,frost heaves +frosting,frostings +frostnip,frostnips +frost quake,frost quakes +frot,frots +frother,frothers +froth pack,froth packs +frotteur,frotteurs +frotteurist,frotteurists +Froude number,Froude numbers +frou-frou,frou-frous +froufrou,froufrous +frounce,frounces +froup,froups +frower,frowers +frow,frows +frow,frows +frow,frows +frowner,frowners +frown,frowns +frowst,frowsts +froyo,froyos +frozen dinner,frozen dinners +fructan,fructans +Fructidorian,Fructidorians +fructification,fructifications +fructifier,fructifiers +fructivore,fructivores +fructofuranose,fructofuranoses +fructofuranoside,fructofuranosides +fructokinase,fructokinases +fructooligosaccharide,fructooligosaccharides +fructopyranose,fructopyranoses +fructopyranoside,fructopyranosides +fructosamine,fructosamines +fructoside,fructosides +fructuary,fructuaries +Frue vanner,Frue vanners +frugalista,frugalistas +frugivore,frugivores +fruitarian,fruitarians +fruit bat,fruit bats +fruitbat,fruitbats +fruit bowl,fruit bowls +fruit cake,fruit cakes +fruit-cake,fruit-cakes +fruitcake,fruitcakes +fruit cocktail,fruit cocktails +fruit cup,fruit cups +fruit dove,fruit doves +fruiteater,fruiteaters +fruiterer,fruiterers +fruiteress,fruiteresses +fruiter,fruiters +fruit fly,fruit flies +fruitfly,fruitflies +fruiting body,fruiting bodies +fruition,fruitions +fruition,fruitions +fruitique,fruitiques +fruit loop,fruit loops +fruitloop,fruitloops +fruit machine,fruit machines +fruitmonger,fruitmongers +fruit of the poisonous tree,fruits of the poisonous tree +fruit pigeon,fruit pigeons +fruit salad,fruit salads +fruitseller,fruitsellers +fruitset,fruitsets +fruitshop,fruitshops +fruit tree,fruit trees +frumenty,frumenties +frumper,frumpers +frump,frumps +frumple,frumples +frush,frushes +frustration,frustrations +frustule,frustules +frustum,frustums,frusta +frutage,frutages +frutex,frutexes +fry cook,fry cooks +fryer,fryers +fry,fries +fry,fries +frying,fryings +frying pan,frying pans +fryingpan,fryingpans +fryling,frylings +fryolator,fryolators +frypan,frypans +fry up,fry ups +fry-up,fry-ups +FSBO,FSBOs +fsec,fsecs +f stop,f stops +f-stop,f-stops +f/stop,f/stops +FSW,FSWs +FTE,FTEs +FTIR,FTIRs +fuar,fuars +fub,fubs +fubu,fubus +fucan,fucans +fuchsia,fuchsias +Fuchsian group,Fuchsian groups +fuchsin,fuchsins +fuchsite,fuchsites +fucitol,fucitols +fucivore,fucivores +fucka,fuckas +fuckathon,fuckathons +fuckbrain,fuckbrains +fuck buddy,fuck buddies +fuckbuddy,fuckbuddies +fuck bunny,fuck bunnies +fuckbunny,fuckbunnies +fuckdoll,fuckdolls +fuckee,fuckees +fucker,fuckers +fuck face,fuck faces +fuckface,fuckfaces +fuckfest,fuckfests +fuck finger,fuck fingers +fuckfriend,fuckfriends +fuck,fucks +fuckhead,fuckheads +fuckhole,fuckholes +fuckhouse,fuckhouses +fucking,fuckings +fucking machine,fucking machines +fuckingmachine,fuckingmachines +fuck knuckle,fuck knuckles +fuck-knuckle,fuck-knuckles +fuckknuckle,fuckknuckles +fuckload,fuckloads +fuckmachine,fuckmachines +fuckmate,fuckmates +fuckmobile,fuckmobiles +fucknuckle,fucknuckles +fuck nugget,fuck nuggets +fucknugget,fucknuggets +fucknut,fucknuts +fucko,fuckos +fuckover,fuckovers +fuckpad,fuckpads +fuckpole,fuckpoles +fuckpot,fuckpots +fuckroom,fuckrooms +fuckshit,fuckshits +fuckshop,fuckshops +fuck sore,fuck sores +fucksore,fucksores +fuckstain,fuckstains +fuckstick,fucksticks +fucktape,fucktapes +fuck-tard,fuck-tards +fucktard,fucktards +fuck ton,fuck tons +fuck-ton,fuck-tons +fuckton,fucktons +fuck toy,fuck toys +fuck-toy,fuck-toys +fucktoy,fucktoys +fuck trophy,fuck trophies +fuck truck,fuck trucks +fucktwat,fucktwats +fuckumentary,fuckumentaries +fuck up,fuck ups +fuck-up,fuck-ups +fuckup,fuckups +fuckwad,fuckwads +fuckwit,fuckwits +fuck-you lizard,fuck-you lizards +fucoidan,fucoidans +fucoid,fucoids +fucolipid,fucolipids +fucopeptide,fucopeptides +fucopyranose,fucopyranoses +fucosamine,fucosamines +fucose,fucoses +fucosidase,fucosidases +fucoside,fucosides +fucosylation,fucosylations +fucosyl,fucosyls +fucosyltransferase,fucosyltransferases +fuculose,fuculoses +fucus,fuci,fucuses +fudder,fudders +fuddle,fuddles +fuddler,fuddlers +fuddling cup,fuddling cups +fuddy-duddy,fuddy-duddies +fuddyduddy,fuddyduddies +fudge cake,fudge cakes +fudge dragon,fudge dragons +fudge factor,fudge factors +fudge packer,fudge packers +fudgepacker,fudgepackers +fudger,fudgers +fudge wheel,fudge wheels +fudgicle,fudgicles +Fuegian,Fuegians +fuehrer,fuehrers +fuel cell,fuel cells +fuel economy,fuel economies +fueler,fuelers +fuel,fuels +fueling,fuelings +fuelling,fuellings +fuel molecule,fuel molecules +fuel rod,fuel rods +fuel station,fuel stations +fuel tank,fuel tanks +fuero,fueros +fu,fus +fugacity,fugacities +fuga,fugas +fugato,fugatos +fughetta,fughettas +fugit,fugits +fugitive from justice,fugitives from justice +fugitive,fugitives +fugleman,fuglemen +fugler,fuglers +fugue,fugues +fugue state,fugue states +fuguist,fuguists +fuhrer,fuhrers +FΓΌhrer,FΓΌhrers,FΓΌhrer +fu'ivla,fu'ivla +fujoshi,fujoshi +fukuchilite,fukuchilites +fukusa,fukusas,fukusa +Fulah,Fulahs +fulciment,fulciments +fulcrum,fulcrums,fulcra +Fuldan,Fuldans +fule,fules +fulfiller,fulfillers +fulfilment,fulfilments +fulgide,fulgides +fulgorid,fulgorids +fulguration,fulgurations +fulgurite,fulgurites +fulham,fulhams +fulimart,fulimarts +full adder,full adders +fullam,fullams +full back,full backs +full-back,full-backs +fullback,fullbacks +full bathroom,full bathrooms +full bird colonel,full bird colonels +full boat,full boats +full body scanner,full body scanners +full breakfast,full breakfasts +full circle,full circles +full count,full counts +full court press,full court presses +full-court press,full-court presses +full cousin,full cousins +full-deckism,full-deckisms +full dress uniform,full dress uniforms +full English breakfast,full English breakfasts +fullerane,fulleranes +fullerene,fullerenes +fuller,fullers +fuller,fullers +fulleride,fullerides +fullerite,fullerites +fulleroid,fulleroids +fullery,fulleries +full,fulls +fullhead,fullheads +full house,full houses +full infinitive,full infinitives +fulling,fullings +fulling mill,fulling mills +fullmart,fullmarts +full metal jacket,full metal jackets +full moon,full moons +full-mouth,full-mouths +full name,full names +full nelson,full nelsons +fullought,fulloughts +full sibling,full siblings +full-sibling,full-siblings +full stop,full stops +full throttle,full throttles +full-time equivalent,full-time equivalents +full-timer,full-timers +full toss,full tosses +full verb,full verbs +full whack,full whacks +fully qualified hostname,fully qualified hostnames +fulmar,fulmars +fulminate,fulminates +fulmination,fulminations +fulminator,fulminators +fulminic acid,fulminic acids +fulvalene,fulvalenes +fulvene,fulvenes +fulvenyl,fulvenyls +fulvic acid,fulvic acids +Fu Manchu,Fu Manchus +Fu Manchu moustache,Fu Manchu moustaches +Fu Manchu mustache,Fu Manchu mustaches +fumarase,fumarases +fumarate,fumarates +fumaric acid,fumaric acids +fumarole,fumaroles +fumblefingers,fumblefingers +fumble,fumbles +fumbler,fumblers +fumblerooski,fumblerooskis +fumbling,fumblings +fume cupboard,fume cupboards +fumed oak,fumed oaks +fume,fumes +fume hood,fume hoods +fumehood,fumehoods +fumerell,fumerells +fumer,fumers +fumet,fumets +fumetto,fumetti +fumewort,fumeworts +fumigant,fumigants +fumigation,fumigations +fumigator,fumigators +fumitory,fumitories +fummel,fummels +fumoir,fumoirs +fumonisin,fumonisins +fumulus,fumuli +funambulation,funambulations +funambulist,funambulists +funambulo,funambulos,funambuloes +funambulus,funambuli +funboarder,funboarders +funboard,funboards +funbox,funboxes +functional dependency,functional dependencies +functional food,functional foods +functional,functionals +functional group,functional groups +functionalist,functionalists +functionalization,functionalizations +functional requirement,functional requirements +functional reserve,functional reserves +functional root,functional roots +functional work,functional works +functionary,functionaries +function code,function codes +function-evaluation routine,function-evaluation routines +function,functions +function generator,function generators +functioning,functionings +function key,function keys +functionlessness,functionlessnesses +function multiplier,function multipliers +function object,function objects +functionoid,functionoids +function overloading,function overloadings +function space,function spaces +function table,function tables +function word,function words +functome,functomes +functor,functors +funda,fundas,fundae,fundaes +fundamental force,fundamental forces +fundamental,fundamentals +fundamental group,fundamental groups +fundamental interaction,fundamental interactions +fundamentalist,fundamentalists +fundamental particle,fundamental particles +fundament,fundaments +fundectomy,fundectomies +funder,funders +fund,funds +fundholder,fundholders +fundie,fundies +fundi,fundis +fundoplasty,fundoplasties +fundoplication,fundoplications +fundraiser,fundraisers +fundraising,fundraisings +fundulid,fundulids +fundusectomy,fundusectomies +fundus,fundi +fundy,fundies +funeral director,funeral directors +funeral,funerals +funeral home,funeral homes +funeralist,funeralists +funeral march,funeral marches +funeral parlor,funeral parlors +funeral parlour,funeral parlours +funfair,funfairs +funfest,funfests +funge,funges +fung,fungs +fungia,fungias +fungian,fungians +fungibility,fungibilities +fungible,fungibles +fungiid,fungiids +fungistat,fungistats +fungisterol,fungisterols +fungivore,fungivores +fungo bat,fungo bats +fungo,fungoes +fungoid,fungoids +fungologist,fungologists +fungus,fungi,funguses +fun house,fun houses +funhouse,funhouses +funicle,funicles +funicular,funiculars +funicular railway,funicular railways +funiculus,funiculi,funicles +funk,funks +funkster,funksters +funnel chanterelle,funnel chanterelles +funnel cloud,funnel clouds +funnel,funnels +funnel mark,funnel marks +funnel plot,funnel plots +funnel weaver,funnel weavers +funny bone,funny bones +funny book,funny books +funny car,funny cars +funny farm,funny farms +funny,funnies +funny,funnies +funnyman,funnymen +fun park,fun parks +fun run,fun runs +fun sponge,fun sponges +funster,funsters +funt,funts +furane,furanes +furan,furans +furanochromone,furanochromones +furanocoumarin,furanocoumarins +furanoindoline,furanoindolines +furanose,furanoses +furanoside,furanosides +furanosteroid,furanosteroids +furazan,furazans +furbaby,furbabies +furball,furballs +furbearer,furbearers +fur beetle,fur beetles +furbelow,furbelows +furbisher,furbishers +fur burger,fur burgers +furburger,furburgers +Furby,Furbys +fur coat,fur coats +furcula,furculae,furculΓ¦ +furculum,furcula +furfag,furfags +furfan,furfans,furfen +furfie,furfies +Fur,Fur +furfuran,furfurans +furfur,furfures +fur,furs +furfuryl,furfuryls +furipterid,furipterids +furkid,furkids +furlong,furlongs +furlough,furloughs +furmenty,furmenties +furmint,furmints +furnace,furnaces +furnaceman,furnacemen +furnariid,furnariids +furniment,furniments +furnisher,furnishers +furnish,furnishes +furnituremaker,furnituremakers +furoate,furoates +furocoumarin,furocoumarins +furoshiki,furoshiki +furovirus,furoviruses +furoxan,furoxans +furphy,furphies +furrier,furriers +furriner,furriners +furring,furrings +furrow,furrows +furry,furries +furry lobster,furry lobsters +fur seal,fur seals +fursona,fursonas +fursuiter,fursuiters +fursuit,fursuits +furtherance,furtherances +furtherer,furtherers +furuncle,furuncles +furvert,furverts +fury,furies +fury,furies +furyl,furyls +furzechat,furzechats +furze,furzes +furze-pig,furze-pigs +fusain,fusains +fusaricidin,fusaricidins +fusariosis,fusarioses +fusarium,fusaria +fusarole,fusaroles +fuschia,fuschias +fuse box,fuse boxes +fusebox,fuseboxes +fused sentence,fused sentences +fusee,fusees +fusee,fusees +fuse,fuses +fuselage,fuselages +fusellovirus,fuselloviruses +fusel oil,fusel oils +fuser,fusers +fuseway,fuseways +fusible,fusibles +fusidane,fusidanes +fusidate,fusidates +fusiform gyrus,fusiform gyri,fusiform gyruses +fusileer,fusileers +fusile,fusiles +fusil,fusils +fusilier,fusiliers +fusilinid,fusilinids +fusillade,fusillades +fusilli,fusilli +fusinite,fusinites +fusion bomb,fusion bombs +fusioneer,fusioneers +fusionist,fusionists +fusion protein,fusion proteins +fusion reactor,fusion reactors +fusion rocket,fusion rockets +fusion tag,fusion tags +fusogen,fusogens +fusogenicity,fusogenicities +fusokine,fusokines +fusome,fusomes +fusor,fusors +fuss-budget,fuss-budgets +fussbudget,fussbudgets +fusser,fussers +fuss,fusses +fussing,fussings +fusspot,fusspots +fustanella,fustanellas +fustercluck,fusterclucks +fust,fusts +fustianist,fustianists +fustigation,fustigations +fustilarian,fustilarians +fustilug,fustilugs +fusulinid,fusulinids +fusuma,fusumas,fusuma +futa,futas +futarchy,futarchies +futchel,futchels +futhark,futharks +futhermucker,futhermuckers +futhorc,futhorcs +futilitarian,futilitarians +futon,futons +futret,futrets +futtock,futtocks +futtock plate,futtock plates +futtock shroud,futtock shrouds +futton,futtons +Futunan,Futunans +futurama,futuramas +futurate,futurates +future continuous,future continuouses +future interest,future interests +future participle,future participles +future perfect continuous,future perfect continuouses +future perfect progressive,future perfect progressives +future progressive,future progressives +futures contract,futures contracts +futures market,futures markets +future tense,future tenses +futureworld,futureworlds +futurist,futurists +futurity,futurities +futurologist,futurologists +futz,futzes +fuze,fuzes +fuzzball,fuzzballs +fuzz box,fuzz boxes +fuzzbox,fuzzboxes +fuzzification,fuzzifications +fuzzifier,fuzzifiers +fuzz test,fuzz tests +fuzzword,fuzzwords +fuzzy,fuzzies +fuzzy logic,fuzzy logics +fuzzy melon,fuzzy melons +fuzzy set,fuzzy sets +Fuzzy Wuzzy Angel,Fuzzy Wuzzy Angels +fuzzy-wuzzy,fuzzy-wuzzies +fuΓΎark,fuΓΎarks +fuΓΎorc,fuΓΎorcs +FWD,FWDs +fweep,fweeps +f-word,f-words +F word,F words +fyborg,fyborgs +fyke,fykes +fyke net,fyke nets +fyke-net,fyke-nets +fylfot,fylfots +fynbos,fynboses +fyrdman,fyrdmen +fyrk,fyrks +fytte,fyttes +GAA,GAAs +gabbai,gabbais +gabbart,gabbarts +gabber,gabbers +gabbler,gabblers +gabbro,gabbros +gabeler,gabelers +gabel,gabels +gabelle,gabelles +gabeller,gabellers +gaberdine,gaberdines +gaberlunzie,gaberlunzies +gabert,gaberts +gabfest,gabfests +gab,gabs +gabionade,gabionades +gabion,gabions +gabionnade,gabionnades +gable end,gable ends +gable,gables +gable,gables +gable roof,gable roofs +gablet,gablets +gablock,gablocks +Gabonese,Gabonese +gaby,gabies +gΓ’che,gΓ’ches +gadabout,gadabouts +gadbee,gadbees +Gaddafist,Gaddafists +gadder,gadders +gade,gades +gadfly,gadflies +gadfly petrel,gadfly petrels +gad,gads +gadgetbahn,gadgetbahnen +gadgeteer,gadgeteers +gadget,gadgets +gadgie,gadgies +gadgie,gadgies +gadid,gadids +gadilid,gadilids +gadiniid,gadiniids +Gaditanian,Gaditanians +gadling,gadlings +gadman,gadmen +gadoid,gadoids +gadroon,gadroons +gadsman,gadsmen +gadwall,gadwalls +gadzookery,gadzookeries +Gael,Gaels +Gaelic coffee,Gaelic coffees +gaelscoil,gaelscoileanna +Gaeltacht,GaeltachtaΓ­,Gaeltachts +gaffa,gaffas +gaffe,gaffes +gaffer,gaffers +gaffer,gaffers +gaff,gaffs +gaffle,gaffles +gaff rig,gaff rigs +gaffrigger,gaffriggers +gaffsail,gaffsails +gaff-topsail,gaff-topsails +Gagauz,Gagauzes +Gagauzian,Gagauzians +gage,gages +gage,gages +gager,gagers +gag,gags +gagger,gaggers +gagging,gaggings +gagging order,gagging orders +gaggle,gaggles +gagmeister,gagmeisters +gag order,gag orders +gag reflex,gag reflexes +gag rein,gag reins +gag runner,gag runners +gagster,gagsters +gagwriter,gagwriters +gahmen,gahmens +Gaian,Gaians +gaida,gaidas +gaijin card,gaijin cards +gaijin,gaijin,gaijins +Gaika,Gaikas,Gaika +gailer,gailers +gaillardia,gaillardias +gailliarde,gailliardes +gainbirth,gainbirths +gainchare,gainchares +gainclap,gainclaps +gainer,gainers +gain,gains +gain,gains +gain line,gain lines +gainrace,gainraces +gainrising,gainrisings +gainsaw,gainsaws +gainsayer,gainsayers +gainsaying,gainsayings +gainsboro,gainsboros +gainshire,gainshires +gainside,gainsides +gainspeaker,gainspeakers +gainspeaking,gainspeakings +gainstand,gainstands +gainstriving,gainstrivings +gaintaking,gaintakings +gainturn,gainturns +gainturning,gainturnings +gairfowl,gairfowls +gaiter,gaiters +gait,gaits +Gaitskell,Gaitskells +gajillion,gajillions +galabiose,galabioses +galabiya,galabiyas +galactagogue,galactagogues +galactarate,galactarates +galactic halo,galactic halos +galactico,galacticos +galacticon,galacticons +galactic year,galactic years +galactin,galactins +galactitol,galactitols +galactocele,galactoceles +galactocerebroside,galactocerebrosides +galactofuranose,galactofuranoses +galactofuranoside,galactofuranosides +galactogen,galactogens +galactoglucan,galactoglucans +galactolipid,galactolipids +galactomannan,galactomannans +galactometer,galactometers +galactonic acid,galactonic acids +galactonojirimycin,galactonojirimycins +galactooligosaccharide,galactooligosaccharides +galactoprotein,galactoproteins +galactopyranose,galactopyranoses +galactopyranoside,galactopyranosides +galactopyranosylamine,galactopyranosylamines +galactopyranosyl,galactopyranosyls +galactosaminidase,galactosaminidases +galactosaminyl,galactosaminyls +galactosan,galactosans +galactosemic,galactosemics +galactosialidosis,galactosialidoses +galactosidase,galactosidases +galactoside,galactosides +galactosphingolipid,galactosphingolipids +galactosylation,galactosylations +galactosylceramidase,galactosylceramidases +galactosylceramide,galactosylceramides +galactosyldiacylglycerol,galactosyldiacylglycerols +galactosyl,galactosyls +galactosyltransferase,galactosyltransferases +galactoxyloglucan,galactoxyloglucans +galacturonic acid,galacturonic acids +galacturonosyltransferase,galacturonosyltransferases +gala,galas +galage,galages +galagid,galagids +galago,galagos,galagoes +galagonid,galagonids +galah,galahs +galah session,galah sessions +galanas,galanases +galanga,galangas +galangal,galangals +galanthophile,galanthophiles +galantine,galantines +GalΓ‘pagos hawk,GalΓ‘pagos hawks +Galapagos penguin,Galapagos penguins +GalΓ‘pagos penguin,GalΓ‘pagos penguins +Galapagos sea lion,Galapagos sea lions +GalΓ‘pagos sea lion,GalΓ‘pagos sea lions +GalΓ‘pagos tortoise,GalΓ‘pagos tortoises +gala pie,gala pies +galatea,galateas +galatheid,galatheids +Galatian,Galatians +galatriaose,galatriaoses +galaxiid,galaxiids +galaxy cluster,galaxy clusters +galaxy,galaxies +galaxy group,galaxy groups +galbe,galbes +galbulid,galbulids +galbulus,galbuli +galcon,galcons +galea,galeae +galeas,galeases +galeaspid,galeaspids +galectin,galectins +gale,gales +Galenical,Galenicals +Galenist,Galenists +galeommatid,galeommatids +galeommatoidean,galeommatoideans +galeopithecid,galeopithecids +galeorhinid,galeorhinids +galerite,galerites +galero,galeri +galesaurid,galesaurids +galette,galettes +gal,gal,gals +gal,gals +galge,galge +Galician,Galicians +Galician,Galicians +Galilean,Galileans +Galilean moon,Galilean moons +Galilean telescope,Galilean telescopes +galilee,galilees +galileo,galileos +galileon,galileons +galingale,galingales +galiongee,galiongees +galiot,galiots +galium,galiums +gallanilide,gallanilides +gallant,gallants +gallantry,gallantries +gallate,gallates +gallaunt,gallaunts +gall bladder,gall bladders +gallbladder,gallbladders +galleass,galleasses +Gallegan,Gallegans +galleon,galleons +galleot,galleots +galleria,gallerias +gallerina,gallerinas +gallerist,gallerists +gallery forest,gallery forests +gallery,galleries +gallerygoer,gallerygoers +gallery organ,gallery organs +galletyle,galletyles +galley,galleys +galley proof,galley proofs +galley slave,galley slaves +galley-worm,galley-worms +gallfly,gallflies +gall,galls +Galliano,Gallianos +galliard,galliards +galliass,galliasses +Gallican,Gallicans +gallicism,gallicisms +Gallicism,Gallicisms +galliform,galliforms +gallimaufrey,gallimaufreys +gallimaufry,gallimaufries +gallinacean,gallinaceans +gallinipper,gallinippers +gallinule,gallinules +galliot,galliots +gallipot,gallipots +gallium arsenide phosphide,gallium arsenide phosphides +gallivat,gallivats +galliwasp,galliwasps +gall midge,gall midges +gall mite,gall mites +gallnut,gallnuts +Gallomaniac,Gallomaniacs +gallonage,gallonages +gallon,gallons +galloon,galloons +galloot,galloots +gallopade,gallopades +galloper,gallopers +gallop,gallops +Gallophile,Gallophiles +Gallophilia,Gallophilias +gallophone,gallophones +gallopin,gallopins +Gallo-Roman,Gallo-Romans +galloway,galloways +gallowglass,gallowglass,gallowglasses +gallows bird,gallows birds +gallows,gallows,gallowses +gallows tree,gallows trees +gallow tree,gallow trees +gall stone,gall stones +gallstone,gallstones +Gallup poll,Gallup polls +gall wasp,gall wasps +gally,gallies +galoche,galoches +galoot,galoots +galop,galops +galoshe,galoshes +galosh,galoshes +galpal,galpals +galvanic action,galvanic actions +galvanic anode,galvanic anodes +galvanic couple,galvanic couples +galvaniser,galvanisers +galvanist,galvanists +galvanization,galvanizations +galvanizer,galvanizers +galvanograph,galvanographs +galvanomagnetism,galvanomagnetisms +galvanometer,galvanometers +galvanoscope,galvanoscopes +galvanostat,galvanostats +Galway hooker,Galway hookers +Galwegian,Galwegians +gambada,gambadas +gambade,gambades +gambado,gambados +gamba,gambas +Gambel's quail,Gambel's quails +gambeson,gambesons +gambet,gambets +Gambian,Gambians +gambison,gambisons +gambist,gambists +gambit,gambits +gamble,gambles +gambler,gamblers +gambol,gambols +gamboller,gambollers +gambrel,gambrels +gambrel roof,gambrel roofs +gambroon,gambroons +gambusia,gambusias +game bag,game bags +gamebag,gamebags +game bird,game birds +gamebird,gamebirds +game board,game boards +gameboard,gameboards +gamebook,gamebooks +game camera,game cameras +gamecard,gamecards +gamecatcher,gamecatchers +game changer,game changers +game clock,game clocks +game club,game clubs +gamecock,gamecocks +game console,game consoles +gameday,gamedays +game drive,game drives +game engine,game engines +game face,game faces +gamefic,gamefics +game fish,game fishes +gamefish,gamefishes,gamefish +gamefowl,gamefowls,gamefowl +gamegoer,gamegoers +gamekeeper,gamekeepers +game manager,game managers +game master,game masters +gamemaster,gamemasters +game of chance,games of chance +game of gotcha,games of gotcha +game of skill,games of skill +gameography,gameographies +gamepad,gamepads +game plan,game plans +gameplan,gameplans +gameplayer,gameplayers +game point,game points +game port,game ports +gamer,gamers +Gamerscore,Gamerscores +games console,games consoles +game score,game scores +game show,game shows +gameshow,gameshows +gamesman,gamesmen +gamespace,gamespaces +gamesplayer,gamesplayers +games room,games rooms +gamester,gamesters +gamestress,gamestresses +gametangium,gametangia +gamete,gametes +game theorist,game theorists +game-time decision,game-time decisions +gametocide,gametocides +gametocyte,gametocytes +gametogonium,gametogonia +gametophore,gametophores +gametophyte,gametophytes +gameverse,gameverses +game warden,game wardens +game with a purpose,games with a purpose +gameworld,gameworlds +gam,gams +gam,gams +gam,gams +gamine,gamines +gamin,gamins +gaming board,gaming boards +gaming machine,gaming machines +gamma bomb,gamma bombs +gamma decay,gamma decays +gammadion,gammadions +gamma,gammas +gamma globulin,gamma globulins +gammaglobulin,gammaglobulins +gammaherpesvirus,gammaherpesviruses +gamma-hydroxybutyrate,gamma-hydroxybutyrates +gamma-hydroxybutyric acid,gamma-hydroxybutyric acids +gamma knife,gamma knives,gamma knifes +gamma particle,gamma particles +gammaproteobacterium,gammaproteobacteria +gamma radiation,gamma radiations +gamma-ray burst,gamma-ray bursts +gamma ray,gamma rays +gammarellid,gammarellids +gammaretrovirus,gammaretroviruses +gammarid,gammarids +gammation,gammations +gammer,gammers +gammon,gammons +gammon,gammons +gammon,gammons +gammon,gammons +gammoning,gammonings +gammopathy,gammopathies +gammy,gammies +gammy,gammies +gamomaniac,gamomaniacs +gamomania,gamomanias +gamont,gamonts +gamp,gamps +gamut,gamuts +gander,ganders +Gandharan,Gandharans +gandoura,gandouras +gandy dancer,gandy dancers +gandy-dancer,gandy-dancers +ganef,ganefs +gangbanger,gangbangers +gang bang,gang bangs +gangbang,gangbangs +gangboard,gangboards +gangbuster,gangbusters +ganger,gangers +gang-gang,gang-gangs +gang,gangs +gangion,gangions +gangler,ganglers +gangliectomy,gangliectomies +gangline,ganglines +gangling,ganglings +gangliocyte,gangliocytes +gangliocytoma,gangliocytomas,gangliocytomata +ganglioglioma,gangliogliomas,gangliogliomata +ganglion cyst,ganglion cysts +ganglionectomy,ganglionectomies +ganglioneuroblastoma,ganglioneuroblastomas,ganglioneuroblastomata +ganglioneuroma,ganglioneuromas,ganglioneuromata +ganglion,ganglions,ganglia +ganglionopathy,ganglionopathies +ganglioplegic,ganglioplegics +ganglioside,gangliosides +gangmaster,gangmasters +gang of four,gangs of four +Gang of Four,Gangs of Four +gangplank,gangplanks +gang rape,gang rapes +gangrape,gangrapes +gang rapist,gang rapists +gangrel,gangrels +gang signal,gang signals +gang sign,gang signs +gangsta,gangstas +gangster,gangsters +gangway,gangways +ganister,ganisters +gannet,gannets +gannetry,gannetries +ganoderic acid,ganoderic acids +ganoid,ganoids +ganoidian,ganoidians +gansa,gansas +gantlet,gantlets +gantline,gantlines +gantlope,gantlopes +gantry crane,gantry cranes +gantry,gantries +gantry scaffold,gantry scaffolds +Gantt chart,Gantt charts +Ganymedean,Ganymedeans +ganzΓ‘,ganzΓ‘s +ganzfeld experiment,ganzfeld experiments +gaohu,gaohus +gaol-bird,gaol-birds +gaolbird,gaolbirds +gaoleress,gaoleresses +gaoler,gaolers +gaol,gaols +gaolhouse,gaolhouses +gaolkeeper,gaolkeepers +gaolmate,gaolmates +gaolor,gaolors +gaolyard,gaolyards +gaon,gaons +Gaon,Geonim,Gaons +gaper,gapers +gapers block,gapers blocks +gapers' block,gapers' blocks +gapeseed,gapeseeds +gapeworm,gapeworms +gap,gaps +gapik,gapiks +gap junction,gap junctions +gaplapper,gaplappers +gap of danger,gaps of danger +gapper,gappers +gap year,gap years +garaad,garaads +Garaad,Garaads +garage band,garage bands +garage door,garage doors +garage door opener,garage door openers +garage,garages +garage queen,garage queens +garage sale,garage sales +garam masala,garam masalas +Garand,Garands +garbage bag,garbage bags +garbage bin,garbage bins +garbage can,garbage cans +garbage collector,garbage collectors +garbage disposal,garbage disposals +garbage disposal unit,garbage disposal units +garbage lady,garbage ladies +garbage man,garbage men +garbageman,garbagemen +garbage mitt,garbage mitts +garbage scow,garbage scows +garbage truck,garbage trucks +garbage woman,garbage women +garbanzo,garbanzos +garb,garbs +garb,garbs +garble,garbles +garblement,garblements +garbler,garblers +garboard,garboards +garbo,garbos +garbologist,garbologists +garburator,garburators +garcinia,garcinias +garcon,garcons +garΓ§on,garΓ§ons +garΓ§onniΓ¨re,garΓ§onniΓ¨res +garda,gardai +garde,gardes +garden apartment,garden apartments +garden boy,garden boys +garden burger,garden burgers +garden-burger,garden-burgers +gardenburger,gardenburgers +Gardenburger,Gardenburgers +garden center,garden centers +garden centre,garden centres +garden city,garden cities +garden dormouse,garden dormice +gardener,gardeners +gardenful,gardenfuls,gardensful +garden,gardens +garden gnome,garden gnomes +gardenhose,gardenhoses +gardenia,gardenias +Garden of Eden,Gardens of Eden +garden office,garden offices +garden path,garden paths +garden path sentence,garden path sentences +garden-path sentence,garden-path sentences +garderobe,garderobes +gard,gards +gard,gards +gardian,gardians +Gardnerian Wiccan,Gardnerian Wiccans +gardon,gardons +garefowl,garefowls +Gareth,Gareths +garfish,garfishes,garfish +garganey,garganeys +gargarism,gargarisms +gar,gars +gar,gars +garget,gargets +gargle-factory,gargle-factories +gargle,gargles +gargle,gargles +gargler,garglers +gargling fluid,gargling fluids +gargouillade,gargouillades +gargoulette,gargoulettes +gargoyle,gargoyles +gargoylism,gargoylisms +gargyle,gargyles +garibaldi,garibaldis +garland chrysanthemum,garland chrysanthemums +garlander,garlanders +garland,garlands +garlic bread,garlic breads +garlic chive,garlic chives +garlick,garlicks +garlic mustard,garlic mustards +garlic pear,garlic pears +garlic press,garlic presses +garment bag,garment bags +garment,garments +garmento,garmentos +garmon,garmons +garner,garners +garnering,garnerings +garnet,garnets +garnet,garnets +garnets,garnets +garnett,garnetts +garnierite,garnierites +garnish bolt,garnish bolts +garnishee,garnishees +garnisher,garnishers +garnish,garnishes +garnishment,garnishments +garnishor,garnishors +garniture,garnitures +garookuh,garookuhs +garote,garotes +garotte,garottes +garotter,garotters +garpike,garpike,garpikes +garrafeira,garrafeiras +Garratt,Garratts +garreteer,garreteers +garret,garrets +garret window,garret windows +garrison belt,garrison belts +garrison,garrisons +garron,garrons +garrote,garrotes +garroter,garroters +garrot,garrots +garrotte,garrottes +garrotter,garrotters +garrupa,garrupas +garryowen,garryowens +garter belt,garter belts +garter,garters +gartering,garterings +garter snake,garter snakes +garth,garths +garuda,garudas +garum,garums +garvey,garveys +garvock,garvocks +Gary Glitter,Gary Glitters +Gary Stu,Gary Stus +gasalier,gasaliers +gasbag,gasbags +gas bar,gas bars +gas bladder,gas bladders +gas bottle,gas bottles +gas centrifuge,gas centrifuges +gas chamber,gas chambers +gas clathrate,gas clathrates +Gascoine,Gascoines +gasconade,gasconades +Gasconade,Gasconades +gasconader,gasconaders +Gascon,Gascons +gas constant,gas constants +gascoyne,gascoynes +gas cylinder,gas cylinders +gaseous phase,gaseous phases +gas fire,gas fires +gasfitter,gasfitters +gas gauge,gas gauges +gas generator,gas generators +gas giant,gas giants +gas guzzler,gas guzzlers +gas-guzzler,gas-guzzlers +gash,gashes +gas-hog,gas-hogs +gasholder,gasholders +gashouse,gashouses +gas hydrate,gas hydrates +gasification,gasifications +gasifier,gasifiers +gas jar,gas jars +gasket,gaskets +gaskin,gaskins +gaslighter,gaslighters +gaslight,gaslights +gas line,gas lines +gas main,gas mains +gasman,gasmen +gas mantle,gas mantles +gas mark,gas marks +gas mask,gas masks +gasmask,gasmasks +gasoduct,gasoducts +gasogene,gasogenes +gasogen,gasogens +gasolier,gasoliers +gasometer,gasometers +gasometre,gasometres +gasoor,gasoors +gasoscope,gasoscopes +gasotransmitter,gasotransmitters +gas pedal,gas pedals +gaspereau,gaspereaus +gasper,gaspers +gasp,gasps +gasping,gaspings +gas pump,gas pumps +gasser,gassers +Gasserian ganglion,Gasserian ganglia +gassho,gasshos +gas station,gas stations +gas syringe,gas syringes +gas tank,gas tanks +gasterectomy,gasterectomies +gaster,gasters +gasteromycete,gasteromycetes +gasteropelecid,gasteropelecids +gasterophilid,gasterophilids +gasteropod,gasteropods +gasterosteid,gasterosteids +gasteruptiid,gasteruptiids +gasteruptionid,gasteruptionids +gastornithid,gastornithids +gastrectasia,gastrectasias +gastrectomy,gastrectomies +gastric angle,gastric angles +gastric juice,gastric juices +gastricsin,gastricsins +gastric ulcer,gastric ulcers +gastriloquist,gastriloquists +gastrinemia,gastrinemias +gastrinoma,gastrinomas,gastrinomata +gastrioceratid,gastrioceratids +gastrique,gastriques +gastrocamera,gastrocameras +gastrocele,gastroceles +gastroc,gastrocs +gastrochaenid,gastrochaenids +gastrocnemius,gastrocnemii +gastrocotylid,gastrocotylids +gastrocotylinean,gastrocotylineans +gastrodelphyid,gastrodelphyids +gastrodome,gastrodomes +gastroenterologist,gastroenterologists +gastroenterostomy,gastroenterostomies +gastrointestinal tract,gastrointestinal tracts +gastrojejunostomy,gastrojejunostomies +gastrokinetic,gastrokinetics +gastrolater,gastrolaters +gastrolith,gastroliths +gastronaut,gastronauts +gastronome,gastronomes +gastronomer,gastronomers +gastronomist,gastronomists +gastronyssid,gastronyssids +gastroparesis,gastropareses +gastropathy,gastropathies +gastropexy,gastropexies +gastropod,gastropods +gastropterid,gastropterids +gastroptosis,gastroptoses +gastropub,gastropubs +gastroschisis,gastroschises +gastroscope,gastroscopes +gastrostege,gastrosteges +gastrostomy,gastrostomies +gastrotomy,gastrotomies +gastrotrich,gastrotrichs +gas truck,gas trucks +gastrula,gastrulas,gastrulae +gastrulation,gastrulations +gas turbine,gas turbines +gasworker,gasworkers +gate array,gate arrays +gateau,gateaus,gateaux +gΓ’teau,gΓ’teaux,gΓ’teaus +gate crasher,gate crashers +gatecrasher,gatecrashers +gated community,gated communities +gatefold,gatefolds +gate,gates +gate,gates +gate guard,gate guards +gate guardian,gate guardians +gate house,gate houses +gatehouse,gatehouses +gatekeeper,gatekeepers +gatekeep,gatekeeps +gateleg,gatelegs +gateline,gatelines +gateman,gatemen +gatepost,gateposts +gate rape,gate rapes +'Gater,'Gaters +gateway drug,gateway drugs +gateway,gateways +gatewoman,gatewomen +gat,gats +gat,gats +Gatha,Gathas +gatherer,gatherers +gather,gathers +gathering,gatherings +Gatling gun,Gatling guns +gator,gators +gatten tree,gatten trees +gaucherie,gaucheries +gaucho,gauchos +gaud,gauds +gaudryceratid,gaudryceratids +gaudy,gaudies +gaudy,gaudies +gauffre,gauffres +gau,gaus +gauge block,gauge blocks +gauge boson,gauge bosons +gauge,gauges +gauger,gaugers +gaugership,gaugerships +gauging,gaugings +gaugino,gauginos +gauleiter,gauleiters +Gaul,Gauls +Gaullism,Gaullisms +Gaullist,Gaullists +gault,gaults +gaultheria,gaultherias +gaum,gaums +gauntlet,gauntlets +gauntlet,gauntlets +gauntlope,gauntlopes +gauntree,gauntrees +gauntry,gauntries +gaura,gauras +gaur,gaurs +gause,gauses +gauss,gausses,gauss +Gauss gun,Gauss guns +Gaussian distribution,Gaussian distributions +Gaussian integer,Gaussian integers +gauze bandage,gauze bandages +gauze,gauzes +gauze mat,gauze mats +gavelet,gavelets +gavel,gavels +gavel,gavels +gavel,gavels +gavel,gavels +gaveller,gavellers +gaveloche,gaveloches +gavelock,gavelocks +gavial,gavials +gavialid,gavialids +gavid,gavids +gaviid,gaviids +gavot,gavots +gavotte,gavottes +gavver,gavvers +gawby,gawbies +gawd,gawds +gawker,gawkers +gawkers' block,gawkers' blocks +gawk,gawks +gawk,gawks +gawm,gawms +gawn,gawns +gawntree,gawntrees +gawping,gawpings +gawpus,gawpuses +gawth,gawths +gayal,gayals +gay bar,gay bars +gaybar,gaybars +gay blade,gay blades +gay bob,gay bobs +gaybo,gaybos +gay bomb,gay bombs +gayborhood,gayborhoods +gaybourhood,gaybourhoods +gay boy,gay boys +gayboy,gayboys +gayby,gaybies +gay club,gay clubs +gay dog,gay dogs +gaydom,gaydoms +gayelle,gayelles +gayelle,gayelles +gayer,gayers +gayfag,gayfags +gay,gays +gay,gays +gay icon,gay icons +gay marriage,gay marriages +gaymer,gaymers +gaymo,gaymos +gay panic defense,gay panic defenses +gaysian,gaysians +Gaysoc,Gaysocs +gaytopia,gaytopias +gaytre,gaytres +gaywad,gaywads +gazabo,gazabos +gazal,gazals +Gazan,Gazans +gazania,gazanias +gazebo,gazebos,gazeboes +gazee,gazees +gaze,gazes +gazehound,gazehounds +gazeka,gazekas +gazel,gazels +gazelle,gazelles,gazelle +gazer,gazers +gazet,gazets +gazetteer,gazetteers +gazetteer,gazetteers +gazette,gazettes +gazettement,gazettements +gazettist,gazettists +gazid,gazids +gazillionaire,gazillionaires +gazillion,gazillions +gazillionth,gazillionths +gazingstock,gazingstocks +gazogene,gazogenes +gazomba,gazombas +gazonga,gazongas +gazon,gazons +gazoon,gazoons +gazpacho,gazpachos +gazumper,gazumpers +gazump,gazumps +gazunder,gazunders +GC box,GC boxes +G-clamp,G-clamps +G clef,G clefs +G-clef,G-clefs +GCNS,GCNSs +GCSE,GCSEs +GDI,GDIs +gean,geans +geanticlinal,geanticlinals +geanticline,geanticlines +gearbox,gearboxes +gear change,gear changes +gear head,gear heads +gearhead,gearheads +gearing,gearings +gear lever,gear levers +gearmaker,gearmakers +gear ratio,gear ratios +gearset,gearsets +gear shift,gear shifts +gearshift,gearshifts +gear stick,gear sticks +gearstick,gearsticks +gear train,gear trains +gear wheel,gear wheels +gearwheel,gearwheels +geat,geats +Geat,Geats +gebur,geburs,geburas +gecarcinian,gecarcinians +gecarcinid,gecarcinids +gecarcinucid,gecarcinucids +geck,gecks +gecko,geckos,geckoes +geckotian,geckotians +gedankenexperiment,gedankenexperiments +gedd,gedds +geddock,geddocks +gedge,gedges +gedrite,gedrites +geebag,geebags +geegaw,geegaws +gee-gee,gee-gees +gee,gees +gee,gees +gee haw whimmy diddle,gee haw whimmy diddles +geekasm,geekasms +geek code,geek codes +geekette,geekettes +geekfest,geekfests +geek,geeks +geek,geeks +geeksta,geekstas +geekster,geeksters +geep,geeps +geest,geests +geezer,geezers +gegenion,gegenions +gE,gEs +gegger,geggers +gehenna,gehennas +gei,geis +Geiger counter,Geiger counters +Geiger-MΓΌller counter,Geiger-MΓΌller counters +geiko,geikos +geire,geires +geis,geises,geasa +geisha ball,geisha balls +geisha,geisha,geishas +geish,geishes +geison,geisons +geisonoceratid,geisonoceratids +Geissler tube,Geissler tubes +geist,geists +gekkonid,gekkonids +gekkotan,gekkotans +gelada,geladas +gelΓ€ndelΓ€ufer,gelΓ€ndelΓ€ufers,gelΓ€ndelΓ€ufer +gelandesprung,gelΓ€ndesprungs,gelΓ€ndesprΓΌnge +gelΓ€ndesprung,gelΓ€ndesprungs,gelΓ€ndesprΓΌnge +geland,gelands +gelastocorid,gelastocorids +gelateria,gelaterias +gelatinase,gelatinases +gelatine,gelatines +gelatin,gelatins +gelatinization,gelatinizations +gelation,gelations +gelato,gelati,gelatos +gelator,gelators +gel bracelet,gel bracelets +gelcap,gelcaps +gelder,gelders +gelder rose,gelder roses +geld,gelds +gelding,geldings +gelechiid,gelechiids +gelee,gelees +gelee,gelees +gel,gels +gelisol,gelisols +gellan gum,gellan gums +gell,gells +gelling agent,gelling agents +geloll,gelolls +gelotologist,gelotologists +gelotophobe,gelotophobes +gel pen,gel pens +gelsemium,gelsemiums +gelsolin,gelsolins +gelt,gelts +gelt,gelts +gelt,gelts +gemach,gemachim +Gemarist,Gemarists +gem-diol,gem-diols +gemeinschaft,gemeinschafts,gemeinschaften +gemeinschaftsgefuhl,gemeinschaftsfuhle,gemeinschaftsfuhlen +gemel,gemels +gemfish,gemfishes +gem,gems +GEM,GEMs +geminal diamine,geminal diamines +geminal diol,geminal diols +gemination,geminations +Geminian,Geminians +Gemini,Geminis +geminivirus,geminiviruses +gemish,gemishes +gemistocyte,gemistocytes +gemma,gemmae +gemman,gemmen +gemmule,gemmules +gemologist,gemologists +gemoot,gemoots +gemote,gemotes +gemot,gemots +gempylid,gempylids +gemsbok,gemsboks +gemsbuck,gemsbucks +gemshorn,gemshorns +gemstone,gemstones +genappe,genappes +genco,gencos +gendarme,gendarmes,gensdarmes +gendarmerie,gendarmeries +gender bender,gender benders +gender changer,gender changers +gender dysphoria,gender dysphorias +genderfucker,genderfuckers +genderfuck,genderfucks +gender gap,gender gaps +gender,genders +gender identity disorder,gender identity disorders +gender identity,gender identities +gendering,genderings +genderlect,genderlects +gender-neutral pronoun,gender-neutral pronouns +genderquake,genderquakes +genderqueer,genderqueers +gender reassignment,gender reassignments +genderswap,genderswaps +genealogist,genealogists +genearch,genearchs +geneat,geneat,geneats +gene bank,gene banks +genebank,genebanks +gene cassette,gene cassettes +gene expression,gene expressions +gene family,gene families +gene,genes +gene-napper,gene-nappers +gene pool,gene pools +gene product,gene products +generable,generables +general anaesthetic,general anaesthetics +general anesthetic,general anesthetics +general classification,general classifications +general contractor,general contractors +generalcy,generalcies +general election,general elections +general formula,general formulas,general formulae +general,generals +generalisation,generalisations +generalism,generalisms +generalissimo,generalissimos +generalist,generalists +generality,generalities +generalization,generalizations +generalized element,generalized elements +generalizer,generalizers +general ledger,general ledgers +general manager,general managers +general of the army,generals of the army +general partnership,general partnerships +general practitioner,general practitioners +General Secretary,General Secretaries +generalship,generalships +general staff,general staffs +general store,general stores +general strike,general strikes +generalty,generalties +generant,generants +generationer,generationers +generation gap,generation gaps +generation,generations +generativist,generativists +generativity,generativities +generator,generators +generatrix,generatrices,generatrixes +generic element,generic elements +generic,generics +genericide,genericides +generic interval,generic intervals +genericization,genericizations +genericized trademark,genericized trademarks +generic name,generic names +generitype,generitypes +genesis,geneses +genet,genets +genet,genets +genet,genets +gene therapy,gene therapies +genethliac,genethliacs +genethliacon,genethliaca +genetic algorithm,genetic algorithms +genetic code,genetic codes +genetic drift,genetic drifts +genetic engineer,genetic engineers +genetic fallacy,genetic fallacies +genetic gap,genetic gaps +genetic girl,genetic girls +geneticist,geneticists +genetic material,genetic materials +genetic memory,genetic memories +genetic programming,genetic programmings +genetive,genetives +Geneva,Genevas +Geneva mechanism,Geneva mechanisms +Genevan,Genevans +Geneva wheel,Geneva wheels +Genevese,Genevese +gen,gens +Gen,Gens +gengineer,gengineers +geniculation,geniculations +genie,genii,genies +genin,genins +genio,genios +genioglossus,genioglossi +geniohyoid,geniohyoids +genioplasty,genioplasties +genipap,genipaps +genista,genistas +genital cord,genital cords +genital,genitals +genital mutilation,genital mutilations +genital wart,genital warts +geniting,genitings +genitive-accusative,genitive-accusatives +genitive case,genitive cases +genitor,genitors +genitory,genitories +genitrix,genitrices +geniture,genitures +genius,geniuses,genii +genius locorum,genii locorum +genizah,genizoth +genkan,genkans,genkan +gennaker,gennakers +gennel,gennels +gennelman,gennelmen +genny,gennies +genoa,genoas +Genoan,Genoans +genocidaire,genocidaires +genocider,genociders +genogram,genograms +genogroup,genogroups +genoise,genoises +gΓ©noise,gΓ©noises +genome,genomes +genometastasis,genometastases +genome transplant,genome transplants +genomicist,genomicists +genomovar,genomovars +genopathy,genopathies +genophobe,genophobes +genophore,genophores +genophyte,genophytes +genotoxic stress,genotoxic stresses +genotoxin,genotoxins +genotype,genotypes +genotypification,genotypifications +genouillΓ¨re,genouillΓ¨res +genre,genres +genrelization,genrelizations +genro,genros,genro +gens,gentes,genses +genteelism,genteelisms +gent,gents +gentian blue,gentian blues +gentianella,gentianellas +gentian,gentians +gentile,gentiles +Gentile,Gentiles +gentilic,gentilics +Gentle Annie,Gentle Annies +gentleboy,gentleboys +gentle,gentles +gentlegirl,gentlegirls +gentlelady,gentleladies +gentleman about town,gentlemen about town +gentleman cow,gentleman cows +gentleman farmer,gentleman farmers +gentleman,gentlemen +gentleman of leisure,gentlemen of leisure +gentleman of the back door,gentlemen of the back door +gentleman's agreement,gentleman's agreements +gentleman’s agreement,gentleman’s agreements +gentleman's bet,gentleman's bets +gentleman scientist,gentlemen scientists +gentlemans cruiser,gentlemans cruisers +gentlemen's club,gentlemen's clubs +gentleness,gentlenesses +gentleperson,gentlepersons,gentlepeople +gentlewoman,gentlewomen +gentoo,gentoos +gentoo penguin,gentoo penguins +gentrification,gentrifications +gentrifier,gentrifiers +gentry,gentries +gents,gents +genuflection,genuflections +genuflexion,genuflexions +genu,genua +genuine fake,genuine fakes +genuine issue of material fact,genuine issues of material fact +genuphallation,genuphallations +genus,genera +genus name,genus names +genu valgum,genu valgums +genu varum,genu varums +Gen-Xer,Gen-Xers +geoarchaeologist,geoarchaeologists +geobarometer,geobarometers +geobiologist,geobiologists +geocache,geocaches +geocacher,geocachers +geochelone,geochelones +geochemist,geochemists +geochronologist,geochronologists +geochronology,geochronologies +geochronometer,geochronometers +geocoder,geocoders +geocoin,geocoins +geocomposite,geocomposites +geocoordinate,geocoordinates +geocoris,geocorises +geocorona,geocoronas +geocryologist,geocryologists +geodatabase,geodatabases +geode,geodes +geodesic dome,geodesic domes +geodesic,geodesics +geodesist,geodesists +geodiid,geodiids +geodimeter,geodimeters +geodome,geodomes +geoduck,geoducks +geodynamo,geodynamos +geoeconomist,geoeconomists +geoemydid,geoemydids +geoengineer,geoengineers +geofence,geofences +Geoffroy's bat,Geoffroy's bats +Geoffroy's cat,Geoffroy's cats +geofluid,geofluids +GEO,GEOs +geoglyph,geoglyphs +geognost,geognosts +geographer,geographers +geographical area,geographical areas +geographic information system,geographic information systems +geographist,geographists +geography fair,geography fairs +geohazard,geohazards +geohelminth,geohelminths +geohistorian,geohistorians +geohydrologist,geohydrologists +geoid,geoids +geoisomer,geoisomers +geoisotherm,geoisotherms +geolinguist,geolinguists +geolocator,geolocators +geologer,geologers +geologian,geologians +geological matrix,geological matrices +geologic era,geologic eras +geologic joint,geologic joints +geologic timescale,geologic timescales +geologist,geologists +geologizer,geologizers +geology,geologies +geomancer,geomancers +geomaterial,geomaterials +geomembrane,geomembranes +geometer,geometers +geometer moth,geometer moths +geometrician,geometricians +geometric isomer,geometric isomers +geometric mean,geometric means +geometric progression,geometric progressions +geometric series,geometric series +geometric topologist,geometric topologists +geometrid,geometrids +geometrid moth,geometrid moths +geometrisation,geometrisations +geometrization,geometrizations +geomicrobiologist,geomicrobiologists +geomorphologist,geomorphologists +geomyid,geomyids +geomyth,geomyths +geomythologist,geomythologists +geoneutrino,geoneutrinos +geon,geons +geonym,geonyms +geopark,geoparks +geophage,geophages +geophagist,geophagists +geophagy,geophagies +geophilosopher,geophilosophers +geophone,geophones +geophysician,geophysicians +geophysicist,geophysicists +geophysiologist,geophysiologists +geophyte,geophytes +geoplanid,geoplanids +geopolitical entity,geopolitical entities +geopolitician,geopoliticians +geopolymer,geopolymers +geopotential,geopotentials +geopotential height,geopotential heights +georama,georamas +Geordie,Geordies +georeactor,georeactors +George Cross,George Crosses +George Foreman grill,George Foreman grills +George,Georges +Georgetowner,Georgetowners +georgette,georgettes +Georgia Cracker,Georgia Crackers +Georgian,Georgians +georgic,georgics +georgick,georgicks +georissid,georissids +georyssid,georyssids +geoscience,geosciences +geoscientist,geoscientists +geosmin,geosmins +geosphere,geospheres +geospizine,geospizines +geostrategist,geostrategists +geostrategy,geostrategies +geostrophic wind,geostrophic winds +geostructure,geostructures +geosynclinal,geosynclinals +geosyncline,geosynclines +geosystem,geosystems +geotechnical engineer,geotechnical engineers +geotextile,geotextiles +geotherm,geotherms +geothermobarometer,geothermobarometers +geothermometer,geothermometers +geotope,geotopes +geotriid,geotriids +geotrupid,geotrupids +gephyrean,gephyreans +gephyrin,gephyrins +gephyrostegid,gephyrostegids +gepid,gepids +gerah,gerahs +geranium,geraniums +gerant,gerants +geranygeranyl,geranygeranyls +geranylate,geranylates +geranylation,geranylations +geranylgeranylation,geranylgeranylations +geranylgeranyl,geranylgeranyls +geranyl,geranyls +gerbe,gerbes +gerbera,gerberas +Gerber tube,Gerber tubes +gerb,gerbs +gerbilarium,gerbilariums +gerbil,gerbils +gerbille,gerbilles +gerbillid,gerbillids +gerboa,gerboas +gerdon,gerdons +gerege,gereges +gerent,gerents +gerenuk,gerenuks +gerfalcon,gerfalcons +ger,gerim +ger,gers +Gergovian,Gergovians +geriatric,geriatrics +geriatrician,geriatricians +germacranolide,germacranolides +germacrene,germacrenes +germanane,germananes +germanate,germanates +germanatrane,germanatranes +German augmented sixth chord,German augmented sixth chords +German cockroach,German cockroaches +germander,germanders +germane,germanes +german,germans +german,germans +German,Germans +German goiter,German goiters +German goitre,German goitres +germanic acid,germanic acids +germanide,germanides +Germanist,Germanists +germanone,germanones +germanophile,germanophiles +Germanophile,Germanophiles +germanophone,germanophones +Germanophone,Germanophones +German Rex,German Rexes +German Shepherd,German Shepherds +German virgin,German virgins +German wheel,German wheels +germanyl,germanyls +germaphobe,germaphobes +germarium,germaria +germband,germbands +germ cell,germ cells +germen,germens +germ,germs +Germ,Germs +germicide,germicides +germinability,germinabilities +germinal disc,germinal discs +germinal disk,germinal disks +germinant,germinants +germination,germinations +germin,germins +germinoma,germinomas +germ layer,germ layers +germline,germlines +germling,germlings +germogen,germogens +germophobe,germophobes +germ pore,germ pores +germule,germules +germylene,germylenes +germyl,germyls +germylidene,germylidenes +gerner,gerners +geronticide,geronticides +gerontocracy,gerontocracies +gerontocrat,gerontocrats +gerontogene,gerontogenes +gerontologist,gerontologists +gerontophile,gerontophiles +gerontophilia,gerontophilias +geropiga,geropigas +geroscientist,geroscientists +gerreid,gerreids +gerrhosaurid,gerrhosaurids +gerrid,gerrids +gerrymander,gerrymanders +gershayim,gershayims +Gershonite,Gershonites +gerund,gerunds +gerundive,gerundives +gerund-participle,gerund-participles +geryonid,geryonids +Gesamtkunstwerk,Gesamtkunstwerks +Gesellschaft,Gesellschaften +geshe,geshes +gesith,gesiths +gesling,geslings +gesneriad,gesneriads +gestagen,gestagens +gestalt,gestalts,gestalten +gestalt therapy,gestalt therapies +gestational sac,gestational sacs +gestation,gestations +gestation period,gestation periods +gestation sac,gestation sacs +gestatorial chair,gestatorial chairs +gest,gests +gest,gests +gesticulation,gesticulations +gesticulator,gesticulators +gestor,gestores +gestour,gestours +gesture,gestures +gesturement,gesturements +gesturer,gesturers +gesturing,gesturings +geta,geta +getaway,getaways +get,gets +get,gets +get,gittim,gitten +get-out clause,get-out clauses +get out of jail free card,get out of jail free cards +get-out-of-jail-free card,get-out-of-jail-free cards +get-penny,get-pennies +getter,getters +getter-up,getters-up +gett,getts +getting,gettings +get-together,get-togethers +get-up,get-ups +getup,getups +geum,geums +gew-gaw,gew-gaws +gewgaw,gewgaws +geyser,geysers +geyserite,geyserites +gezve,gezves +g force,g forces +g-force,g-forces +GG,GGs +G,Gs +ghair muqallid,ghair muqallids +Ghanaian,Ghanaians +Ghanan,Ghanans +Ghan,Ghans +gharial,gharials,gharial +gharry,gharries +ghatam,ghatams +ghat,ghats +ghaut,ghauts +ghawazee,ghawazees +ghayn,ghayns +ghazal,ghazals +ghazi,ghazis +Ghaznavid,Ghaznavids +ghazwa,ghazwas,ghazwat +Gheber,Ghebers +Ghent system,Ghent systems +gherao,gheraos,gheraoes +gherkin,gherkins +ghetto bird,ghetto birds +ghetto blaster,ghetto blasters +ghettoblaster,ghettoblasters +ghetto fence,ghetto fences +ghetto,ghettos,ghettoes,ghetti +Ghibelline,Ghibellines +ghibli,ghiblis +ghillie,ghillies +ghillie suit,ghillie suits +ghit,ghits +ghoast,ghoasts +ghole,gholes +ghost at the feast,ghosts at the feast +ghostball,ghostballs +ghost band,ghost bands +ghostbuster,ghostbusters +ghost car,ghost cars +ghost crab,ghost crabs +ghostfish,ghostfishes,ghostfish +ghostflower,ghostflowers +ghost frog,ghost frogs +ghost,ghosts +ghost gum,ghost gums +ghosthunter,ghosthunters +ghostie,ghosties +ghost image,ghost images +ghost island,ghost islands +ghostking,ghostkings +ghostland,ghostlands +ghost lore,ghost lores +ghost-lore,ghost-lores +ghostlore,ghostlores +ghost marriage,ghost marriages +ghost piece,ghost pieces +ghost post,ghost posts +ghost prisoner,ghost prisoners +ghost rocket,ghost rockets +ghost ship,ghost ships +ghostship,ghostships +ghost story,ghost stories +ghost town,ghost towns +ghost train,ghost trains +ghost word,ghost words +ghost writer,ghost writers +ghostwriter,ghostwriters +ghosty,ghosties +ghoti,ghoti +ghotul,ghotuls +ghoul,ghouls +ghoulie,ghoulies +ghural,ghurals +ghutra,ghutras +ghyll,ghylls +giant anteater,giant anteaters +giant armadillo,giant armadillos +giantess,giantesses +giant forest genet,giant forest genets +giant forest hog,giant forest hogs +giant frog,giant frogs +giant,giants +Giant,Giants +giant house spider,giant house spiders +giant kettle,giant kettles +giant-killer,giant-killers +giant-killing,giant-killings +giant lacewing,giant lacewings +giantling,giantlings +giant magnetoresistance,giant magnetoresistances +giant molecule,giant molecules +giant oarfish,giant oarfish,giant oarfishes +giant otter,giant otters +giant panda,giant pandas +giant pangolin,giant pangolins +giant periwinkle,giant periwinkles +giant planet,giant planets +giant quasar,giant quasars +giant radio galaxy,giant radio galaxies +giant roundworm,giant roundworms +giant salamander,giant salamanders +giant sequoia,giant sequoias +giant slalom,giant slaloms +giant squid,giant squids,giant squid +giant star,giant stars +giant tortoise,giant tortoises +giant tube worm,giant tube worms +giant virus,giant viruses +giant wood rail,giant wood rails +giaour,giaours +giaunt,giaunts +gibanica,gibanicas +gibbed lathe,gibbed lathes +gibberbird,gibberbirds +gibberellin,gibberellins +gibberer,gibberers +gibber,gibbers +gibber,gibbers +gibber,gibbers +gibberichthyid,gibberichthyids +gibber plain,gibber plains +gibbet,gibbets +gibbon,gibbons +gib boom,gib booms +gibbous moon,gibbous moons +gib-cat,gib-cats +gibe,gibes +gibel,gibels +gibelotte,gibelottes +giber,gibers +gibfish,gibfish +gib,gibs +gib,gibs +GiB,GiBs +gibibit,gibibits +gibibyte,gibibytes +giblet,giblets +Gibraltarian,Gibraltarians +Gibson,Gibsons +gibus,gibuses +GI can,GI cans +gidgee,gidgees +gid,gids +gier-eagle,gier-eagles +Giffard injector,Giffard injectors +Giffen good,Giffen goods +giffy,giffies +gif,gifs +GIF,GIFs +gifhornenolone,gifhornenolones +giftbag,giftbags +giftbox,giftboxes +gift card,gift cards +gift certificate,gift certificates +giftee,giftees +gifter,gifters +gift,gifts +gift horse,gift horses +gift of gab,gifts of gab +gift of the gab,gifts of the gab +giftpack,giftpacks +gift shop,gift shops +gift that keeps on giving,gifts that keep on giving +gift-wrap,gift-wraps +giga-amp,giga-amps +gigabarrel,gigabarrels +gigabase,gigabases +gigabel,gigabels +gigabit,gigabits +gigabyte,gigabytes +gigaelectron volt,gigaelectron volts +gigaelectronvolt,gigaelectronvolts +gigaflop,gigaflops +gigagram,gigagrams +gigagramme,gigagrammes +gigahertz,gigahertz +giga-joule,giga-joules +gigajoule,gigajoules +gigakatal,gigakatals +gigaliter,gigaliters +gigalitre,gigalitres +gigameter,gigameters +gigametre,gigametres +gigamp,gigamps +giganotosaurus,giganotosauruses,giganotosauri +gigantactinid,gigantactinids +giganticide,giganticides +gigantic jet,gigantic jets +gigantopterid,gigantopterids +gigantoraptor,gigantoraptors +gigantotherm,gigantotherms +giganturid,giganturids +giga-ohm,giga-ohms +gigaohm,gigaohms +gigaparsec,gigaparsecs +gigapascal,gigapascals +gigapixel,gigapixels +gigarad,gigarads +gigaseal,gigaseals +gigasecond,gigaseconds +gigaton,gigatons +gigatonne,gigatonnes +gigatrend,gigatrends +giga-volt,giga-volts +gigavolt,gigavolts +giga-watt,giga-watts +gigawatt,gigawatts +gigayear,gigayears +gig bag,gig bags +gigbag,gigbags +gigerium,gigeria +gigget,giggets +gig,gigs +gig,gigs +gig,gigs +giggle,giggles +giggler,gigglers +giggling,gigglings +giggot,giggots +gi,gis +GI,GIs +gig-lamp,gig-lamps +giglet,giglets +giglot,giglots +gigman,gigmen +gig-mill,gig-mills +gigography,gigographies +gigohm,gigohms +gigolo,gigolos +gigot,gigots +gigot sleeve,gigot sleeves +gigster,gigsters +gigue,gigues +Gilaki,Gilakis +Gila monster,Gila monsters +gilbert,gilberts +gilded cage,gilded cages +gilder,gilders +gilder,gilders +gild,gilds +gilet,gilets +gilgai,gilgais +gilgie,gilgies +gilia,gilias +gill-ale,gill-ales +gill bailer,gill bailers +gill cover,gill covers +gill,gills +gill,gills +gill,gills +gill,gills +gill,gills +Gill,Gills +gillhouse,gillhouses +gillian,gillians +gillie,gillies +gillie,gillies +gilli-flower,gilli-flowers +gilliflower,gilliflowers +gilliver,gillivers +gillnet,gillnets +gill raker,gill rakers +gill slit,gill slits +gill trama,gill tramas +gilly-flower,gilly-flowers +gillyflower,gillyflowers +gilly,gillies +gilour,gilours +gilpy,gilpies +gilse,gilses +gilt,gilts +gilt-head bream,gilt-head breams +gilthead,giltheads +Gilyak,Gilyaks,Gilyak +gimbal,gimbals +gimbal lock,gimbal locks +gimblet,gimblets +gimboid,gimboids +gimcrack,gimcracks +gimel,gimels +gimlet,gimlets +gimmal,gimmals +gimme,gimmes +gimmer,gimmers +gimmick,gimmicks +gimmickry,gimmickries +gimp,gimps +gimp,gimps +gimp hand,gimp hands +gimp nail,gimp nails +gimp suit,gimp suits +gina,ginas +gina,ginas +gin and it,gin and its +gin-and-It,gin-and-Its +gin and tonic,gin and tonics +gin burglar,gin burglars +ginch,ginches +gin fizz,gin fizzes +gingal,gingals +gingall,gingalls +ginge,ginges +gingerbread man,gingerbread men +gingerette,gingerettes +ginger,gingers +ginger knob,ginger knobs +ginger nut,ginger nuts +gingernut,gingernuts +gingerol,gingerols +ginger root,ginger roots +ginger snap,ginger snaps +gingersnap,gingersnaps +ging,gings +gin,gins +gin,gins +gingiva,gingivae +gingivectomy,gingivectomies +gingivoplasty,gingivoplasties +gingko,gingkos,gingkoes +gingle,gingles +ginglymostomatid,ginglymostomatids +ginglymus,ginglymi +ginhouse,ginhouses +Gini coefficient,Gini coefficients +gink,ginks +ginkgo,ginkgos,ginkgoes +ginkgoid,ginkgoids +ginkgolide,ginkgolides +ginkgo nut,ginkgo nuts +ginkgophyte,ginkgophytes +gin mill,gin mills +ginnee,ginnees +ginnel,ginnels +ginner,ginners +ginnery,ginneries +ginnet,ginnets +ginn,ginns +gino,ginos +gin palace,gin palaces +gin pole,gin poles +ginseng,ginsengs +ginsenosidase,ginsenosidases +ginsenoside,ginsenosides +ginshop,ginshops +ginsing,ginsings +gintleman,gintlemen +ginzo,ginzos +G.I. party,G.I. parties +GI party,GI parties +gipe,gipes +gip,gips +gipoun,gipouns +gippo,gippos,gippoes +gippy,gippies +gipser,gipsers +gipsy,gipsies +Gipsy,Gipsies +giraffe,giraffes +giraffe weevil,giraffe weevils +giraffid,giraffids +giraffoid,giraffoids +girandole,girandoles +girasol,girasols +girby,girbies +girder,girders +gird,girds +girdle,girdles +girdler,girdlers +girdlestead,girdlesteads +gire,gires +girkin,girkins +girl band,girl bands +girl-boy,girl-boys +girlchild,girlchildren +girl crush,girl crushes +girl-crush,girl-crushes +girle,girles +girlfag,girlfags +girlf,girlfs +girl Friday,girls Friday +girl friend,girl friends +girlfriend,girlfriends +girl,girls +girl group,girl groups +Girl Guide,Girl Guides +girlie girl,girlie girls +girlie,girlies +girllover,girllovers +girl next door,girls next door +girlond,girlonds +Girl Scout,Girl Scouts +girl's name,girls' names +girly girl,girly girls +girlygirl,girlygirls +girly,girlies +girly mag,girly mags +girlzine,girlzines +girning,girnings +giro,giros +Girondist,Girondists +giros,giros +girouettism,girouettisms +girrock,girrocks +girsha,girshas +girt,girts +girth,girths +girtline,girtlines +girus,giruses +gisaring,gisarings +gisarme,gisarmes +gisarm,gisarms +gish,gishes +gisle,gisles +gismo,gismos +gismu,gismu +gist,gists +gisting,gistings +gite,gites +gite,gites +gΓte,gΓtes +git,gits +git,gits +Gitksan,Gitksans,Gitksan +GI tract,GI tracts +gittern,gitterns +gittith,gittiths +gitty,gitties +Gitxsan,Gitxsans,Gitxsan +giveaway,giveaways +give-away shop,give-away shops +giveback,givebacks +given,givens +given name,given names +giver,givers +giver-upper,giver-uppers +giving,givings +gizmo,gizmos +gizzard,gizzards +g/kg,g/kg +glabella,glabellas,glabellae +glabellum,glabella +glacette,glacettes +glacial drift,glacial drifts +glacial erratic,glacial erratics +glacialist,glacialists +glaciation,glaciations +glacier buttercup,glacier buttercups +glacier,glaciers +glacioeustasy,glacioeustasies +glaciologist,glaciologists +glacis,glacises,glacis +gladder,gladders +glade,glades +glad-hander,glad-handers +glad hand,glad hands +gladiator,gladiators +gladiatour,gladiatours +gladiature,gladiatures +gladiola,gladiolas +gladiole,gladioles +gladiolus,gladioli +gladius,gladiuses,gladii +Gladstone bag,Gladstone bags +Gladstone,Gladstones +gladwyn,gladwyns +glaik,glaiks +glair,glairs +glaive,glaives +glamazon,glamazons +glamband,glambands +glamfest,glamfests +GLAM,GLAMs +glam lesbian,glam lesbians +Glamorgan sausage,Glamorgan sausages +glamorizer,glamorizers +glamor model,glamor models +glamour model,glamour models +glamourpuss,glamourpusses +glam rocker,glam rockers +glance coal,glance coals +glance,glances +glancer,glancers +gland,glands +gland,glands +glandular fever,glandular fevers +glandule,glandules +glans,glans,glandes +glans penis,glans penises,glans penes +glanville fritillary,glanville fritillaries +glaphyrid,glaphyrids +glaphyritid,glaphyritids +glare filter,glare filters +glare,glares +glareolid,glareolids +glaresid,glaresids +glaring,glarings +glarney,glarneys +Glasgow kiss,Glasgow kisses +Glasgow smile,Glasgow smiles +Glasite,Glasites +glassblower,glassblowers +glass ceiling,glass ceilings +glass cleaner,glass cleaners +glass cockpit,glass cockpits +glass-crab,glass-crabs +glass cutter,glass cutters +glasscutter,glasscutters +glass door,glass doors +glass-door,glass-doors +glassdoor,glassdoors +glasse,glasses +glass electrode,glass electrodes +glasser,glassers +glasser,glassers +glass eye,glass eyes +glasseye,glasseyes +glass felt,glass felts +glassfish,glassfishes,glassfish +glassformer,glassformers +glass frog,glass frogs +glassful,glassfuls,glassesful +glass harmonica,glass harmonicas +glass harp,glass harps +Glasshead,Glassheads +glasshouse,glasshouses +glassification,glassifications +glassine,glassines +glassing,glassings +Glassite,Glassites +glass jaw,glass jaws +glassmaker,glassmakers +glass noodle,glass noodles +glass onion,glass onions +glass-rope,glass-ropes +glass sponge,glass sponges +glass transition temperature,glass transition temperatures +glasswasher,glasswashers +glassworker,glassworkers +glasswork,glassworks +glassy,glassies +Glaswegian,Glaswegians +glaucid,glaucids +glaucocystid,glaucocystids +glaucocystophyte,glaucocystophytes +glaucoma,glaucomas +glaucometer,glaucometers +glauconite,glauconites +glaucope,glaucopes +glaucophane,glaucophanes +glaucophyte,glaucophytes +glaucosomatid,glaucosomatids +glaucous gull,glaucous gulls +glaucous sedge,glaucous sedges +glaucus,glaucuses +glaunce,glaunces +glave,glaves +glaverer,glaverers +glaymore,glaymores +glaze coat,glaze coats +glaze,glazes +glazer,glazers +glazier,glaziers +glazing agent,glazing agents +glazing,glazings +glead,gleads +gleam,gleams +gleaming,gleamings +gleaner,gleaners +glean,gleans +gleaning,gleanings +gleba,glebae +glebe,glebes +glebe-house,glebe-houses +glebe-land,glebe-lands +glede,gledes +glede,gledes +glee club,glee clubs +gleek,gleeks +gleek,gleeks +gleek,gleeks +Gleek,Gleeks +gleeman,gleemen +gleewoman,gleewomen +gleg,glegs +gleg,glegs +glei,gleis +glendoveer,glendoveers +Glengarry,Glengarries +glen,glens +glenohumeral joint,glenohumeral joints +glenoid fossa,glenoid fossae +glenoid,glenoids +glent,glents +gleucometer,gleucometers +gley,gleys +glial cell,glial cells +glib,glibs +glicke,glickes +glidant,glidants +glide,glides +GLIDE number,GLIDE numbers +glide ratio,glide ratios +glider,gliders +glider gun,glider guns +gliding plane,gliding planes +gliff,gliffs +glike,glikes +glim,glims +glimmer,glimmers +glimmering,glimmerings +glimpse,glimpses +glindex,glindexes +glint,glints +glint in the milkman's eye,glints in the milkman's eye +glioblast,glioblasts +glioblastoma,glioblastomas,glioblastomata +glioblastoma multiforme,glioblastoma multiformes +gliomagenesis,gliomageneses +glioma,gliomas,gliomata +gliosarcoma,gliosarcomas,gliosarcomata +gliotoxin,gliotoxins +glirarium,glirariums,gliraria +glirid,glirids +glissade,glissades +glissando,glissandi,glissandos,glissandoes +glissette,glissettes +Glissonian capsule,Glissonian capsules +glister,glisters +glister,glisters +glitazone,glitazones +glitch,glitches +glitter,glitters +glittering generality,glittering generalities +gloam,gloams +gloaming,gloamings +gloater,gloaters +gloat,gloats +global caliphate,global caliphates +global coupling,global couplings +global distribution system,global distribution systems +global economy,global economies +global,globals +global image,global images +global indicator,global indicators +globalist,globalists +globalizer,globalizers +global player,global players +global positioning system,global positioning systems +global variable,global variables +global warming denier,global warming deniers +globard,globards +globar,globars +globe artichoke,globe artichokes +globe daisy,globe daisies +globefish,globefishes,globefish +globeflower,globeflowers +globe,globes +globemaker,globemakers +globe mallow,globe mallows +globemallow,globemallows +globe-trot,globe-trots +globe trotter,globe trotters +globe-trotter,globe-trotters +globetrotter,globetrotters +glob,globs +globigerinid,globigerinids +globin,globins +globocrat,globocrats +globoid,globoids +globophobe,globophobes +globoside,globosides +globster,globsters +globular cluster,globular clusters +globular,globulars +globularia,globularias +globule,globules +globulet,globulets +globulimeter,globulimeters +globulin,globulins +globulomer,globulomers +globus cruciger,globus crucigers +glocalisation,glocalisations +glochid,glochids,glochidia +glochidium,glochidia +glockenspiel,glockenspiels +Glock,Glocks +gloeocystidium,gloeocystidia +glomalean,glomaleans +glomangioma,glomangiomas,glomangiomata +glomangiosarcoma,glomangiosarcomas +glomectomy,glomectomies +glome,glomes +glomeration,glomerations +glomerid,glomerids +glomerular lipidosis,glomerular lipidoses +glomerulation,glomerulations +glomerule,glomerules +glomerulonephritis,glomerulonephritides,glomerulonephrites +glomerulopathy,glomerulopathies +glomerulus,glomeruli +glommer,glommers +glomp,glomps +glomus,glomera +glond,glonds +gloom-and-doomer,gloom-and-doomers +gloomy Gus,gloomy Guses +Gloomy Gus,Gloomy Guses +gloop,gloops +glope,glopes +glop,glops +gloriette,gloriettes +glorifier,glorifiers +gloriole,glorioles +glorioso,gloriosos +glory box,glory boxes +glory,glories +glory hole,glory holes +glory-hole,glory-holes +gloryholer,gloryholers +gloser,glosers +glossa,glossae +glossarist,glossarists +glossary,glossaries +glossator,glossators +glossatrix,glossatrices +glossectomy,glossectomies +glosser,glossers +gloss,glosses +glossid,glossids +glossinid,glossinids +glossiphoniid,glossiphoniids +glossist,glossists +glossocomon,glossocoma +glossographer,glossographers +glossohyal,glossohyals +glossolalia,glossolalias +glossologist,glossologists +glossonym,glossonyms +glossopharyngeal,glossopharyngeals +glossoscolecid,glossoscolecids +glossosomatid,glossosomatids +glossy antshrike,glossy antshrikes +glossy,glossies +glossy ibis,glossy ibises +glost oven,glost ovens +glottal catch,glottal catches +glottal,glottals +glottalic airstream,glottalic airstreams +glottal stop,glottal stops +glottis,glottises,glottides +glottochronologist,glottochronologists +glottologist,glottologists +glottonym,glottonyms +glout,glouts +glove box,glove boxes +glovebox,gloveboxes +glove compartment,glove compartments +gloveful,glovefuls +glove,gloves +glovemaker,glovemakers +gloveman,glovemen +glove puppet,glove puppets +glover,glovers +Glover,Glovers +glover's suture,glover's sutures +glovesman,glovesmen +glow discharge,glow discharges +glower,glowers +glowing,glowings +glow-lamp,glow-lamps +glowlamp,glowlamps +glowlight,glowlights +glow plug,glow plugs +glowplug,glowplugs +glow stick,glow sticks +glowstick,glowsticks +glow-worm,glow-worms +glowworm,glowworms +gloxinia,gloxinias +gloze,glozes +glozer,glozers +glub,glubs +glucagonemia,glucagonemias +glucagon,glucagons +glucagonoma,glucagonomas +glucanase,glucanases +glucan,glucans +glucoamylase,glucoamylases +glucocerebroside,glucocerebrosides +glucocorticoid,glucocorticoids +glucocorticoid receptor,glucocorticoid receptors +glucocorticosteroid,glucocorticosteroids +glucofuranoside,glucofuranosides +glucofuranosyl,glucofuranosyls +glucogen,glucogens +glucohydrolase,glucohydrolases +glucometer,glucometers +gluconate,gluconates +gluconokinase,gluconokinases +gluconolactonase,gluconolactonases +glucooligosaccharide,glucooligosaccharides +glucopyranose,glucopyranoses +glucopyranoside,glucopyranosides +glucopyranosyl,glucopyranosyls +glucosaccharide,glucosaccharides +glucosamide,glucosamides +glucosaminidase,glucosaminidases +glucosaminide,glucosaminides +glucosaminoglycan,glucosaminoglycans +glucosaminyl,glucosaminyls +glucose-fructose syrup,glucose-fructose syrups +glucoseptanoside,glucoseptanosides +glucosidase,glucosidases +glucosidation,glucosidations +glucoside,glucosides +glucosinate,glucosinates +glucosinolate,glucosinolates +glucosylase,glucosylases +glucosylation,glucosylations +glucosylceramide,glucosylceramides +glucosyl,glucosyls +glucosyltransferase,glucosyltransferases +glucotoxicity,glucotoxicities +glucuronate,glucuronates +glucuronidase,glucuronidases +glucuronidation,glucuronidations +glucuronide,glucuronides +glucuronoglycan,glucuronoglycans +glucuronoside,glucuronosides +glucuronosyl,glucuronosyls +glucuronoxylan,glucuronoxylans +glucuronyltransferase,glucuronyltransferases +glueball,glueballs +glue,glues +glue gun,glue guns +gluelump,gluelumps +gluemaker,gluemakers +glue-pot,glue-pots +gluepot,gluepots +glue record,glue records +gluer,gluers +glue stick,glue sticks +gluestick,gluesticks +glug,glugs +gluino,gluinos +glume,glumes +glumella,glumellas +glumelle,glumelles +gluon,gluons +glutaconate,glutaconates +glutaeus,glutaei +glutΓ¦us,glutΓ¦i +glutamate,glutamates +glutaminase,glutaminases +glutaminyl,glutaminyls +glutamyl,glutamyls +glutamyltransferase,glutamyltransferases +glutamyltranspeptidase,glutamyltranspeptidases +glutarate,glutarates +glutathionylation,glutathionylations +glutch,glutches +gluteal cleft,gluteal clefts +glute,glutes +glutelin,glutelins +gluteus,gluteuses,glutei +gluteus maximus,glutei maximi +glut,gluts +glutination,glutinations +glutton for punishment,gluttons for punishment +glutton,gluttons +GLWT,GLWTs +glycal,glycals +glycanase,glycanases +glycan,glycans +glycaric acid,glycaric acids +glycate,glycates +glycation,glycations +glyceollin,glyceollins +glyceraldehyde,glyceraldehydes +glycerate,glycerates +glyceride,glycerides +glycerid,glycerids +glycerite,glycerites +glycerole,glyceroles +glycerolipid,glycerolipids +glycerolphosphate,glycerolphosphates +glycerolphospholipid,glycerolphospholipids +glycerol rhizotomy,glycerol rhizotomies +glycerolysis,gylcerolyses +glycerophosphate,glycerophosphates +glycerophosphocholine,glycerophosphocholines +glycerophosphoethanolamine,glycerophosphoethanolamines +glycerophosphoglucose,glycerophosphoglucoses +glycerophosphoglycerol,glycerophosphoglycerols +glycerophosphoinositol,glycerophosphoinositols +glycerophospholipid,glycerophospholipids +glycerophosphoric acid,glycerophosphoric acids +glyceroxide,glyceroxides +glyceryl,glyceryls +glycide,glycides +glycidyl,glycidyls +glycinal,glycinals +glycinate,glycinates +glycine,glycines +glycinin,glycinins +glycitol,glycitols +glycoalkaloid,glycoalkaloids +glyco-amino-acid,glyco-amino-acids +glycoantigen,glycoantigens +glycoarray,glycoarrays +glycobiologist,glycobiologists +glycocalyx,glycocalyces +glycochemist,glycochemists +glycocholate,glycocholates +glycocoll,glycocolls +glycoconjugate,glycoconjugates +glycodelin,glycodelins +glycodendrimer,glycodendrimers +glycoform,glycoforms +glycogene,glycogenes +glycogenesis,glycogeneses +glycogenolysis,glycogenolyses +glycoglycerolipid,glycoglycerolipids +glycohydrolysis,glycohydrolyses +glycoinositolphospholipid,glycoinositolphospholipids +glycolate,glycolates +glycol,glycols +glycolipid,glycolipids +glycolipidome,glycolipidomes +glycollate,glycollates +glycol nucleic acid,glycol nucleic acids +glycolyl,glycolyls +glycolylneuraminate,glycolylneuraminates +glycome,glycomes +glyconanoparticle,glyconanoparticles +glycone,glycones +Glyconian,Glyconians +glyconic acid,glyconic acids +glycopeptide,glycopeptides +glycopeptidolipid,glycopeptidolipids +glycopeptidomimetic,glycopeptidomimetics +glycophosphatidylinositol,glycophosphatidylinositols +glycophyte,glycophytes +glycopolymer,glycopolymers +glycoprotein,glycoproteins +glycoproteome,glycoproteomes +glycopyranoside,glycopyranosides +glycorandomization,glycorandomizations +glycosamine,glycosamines +glycosaminoglycan,glycosaminoglycans +glycosan,glycosans +glycoscience,glycosciences +glycoscientist,glycoscientists +glycose,glycoses +glycosidase,glycosidases +glycosidation,glycosidations +glycoside,glycosides +glycosidic acid,glycosidic acids +glycosidic bond,glycosidic bonds +glycosinolate,glycosinolates +glycosome,glycosomes +glycosphingolipid,glycosphingolipids +glycosylamine,glycosylamines +glycosyl-amino-acid,glycosyl-amino-acids +glycosylase,glycosylases +glycosylceramidase,glycosylceramidases +glycosylceramide,glycosylceramides +glycosylglycose,glycosylglycoses +glycosylglycoside,glycosylglycosides +glycosyl,glycosyls +glycosylhydrolase,glycosylhydrolases +glycosyllipid,glycosyllipids +glycosylphosphatidylinositol,glycosylphosphatidylinositols +glycosylsphingolipid,glycosylsphingolipids +glycosyltransferase,glycosyltransferases +glycosynapse,glycosynapses +glycosynthesis,glycosyntheses +glycuronate,glycuronates +glycuronic acid,glycuronic acids +glycylcycline,glycylcyclines +glycyl,glycyls +glycymeridid,glycymeridids +Gly,Glys +glyn,glyns +glyoxalate,glyoxalates +glyoxaline,glyoxalines +glyoxisome,glyoxisomes +glyoxylate cycle,glyoxylate cycles +glyoxylate,glyoxylates +glyoxysome,glyoxysomes +glype,glypes +glypheid,glypheids +glyph,glyphs +glyphic,glyphics +glyphipterigid,glyphipterigids +glyphograph,glyphographs +glyphosate,glyphosates +glypiation,glypiations +glypican,glypicans +glyptodon,glyptodons +glyptodont,glyptodonts +glyptodontid,glyptodontids +glyptosternoid,glyptosternoids +glyptotheca,glyptothecas +glyster,glysters +Gmailer,Gmailers +G-man,G-men +GMA pallet,GMA pallets +GMAT,GMATs +GMG,GMGs +gmina,gminas +GMO,GMOs +gnaborretni,gnaborretnis +gnaff,gnaffs +GNA,GNAs +gnamma,gnammas +gnaphalium,gnaphaliums +gnaphosid,gnaphosids +gnar,gnars +gnarl,gnarls +gnasher,gnashers +gnast,gnasts +gnasting,gnastings +gnatcatcher,gnatcatchers +gnateater,gnateaters +gnat,gnats +gnathidium,gnathidia +gnathiid,gnathiids +gnathite,gnathites +gnathobase,gnathobases +gnathodynamometer,gnathodynamometers +gnathologist,gnathologists +gnathophyllid,gnathophyllids +gnathoplasty,gnathoplasties +gnathopod,gnathopods +gnathopodite,gnathopodites +gnathorhizid,gnathorhizids +gnathostegite,gnathostegites +gnathostome,gnathostomes +gnathostomulid,gnathostomulids +gnatling,gnatlings +gnatworm,gnatworms +Gnawa,Gnawas,Gnawa +gnawer,gnawers +gnawing,gnawings +gneissoid,gneissoids +gnemonol,gnemonols +gnemonoside,gnemonosides +gnetin,gnetins +gnit,gnits +gnoff,gnoffs +gnoll,gnolls +gnome,gnomai +gnome,gnomes +gnomery,gnomeries +gnomology,gnomologies +gnomon,gnomons +gnomonic projection,gnomonic projections +gnomonist,gnomonists +gnomonology,gnomonologies +gnoscopine,gnoscopines +gnosis,gnoses +gnossienne,gnossiennes +Gnostic,Gnostics +G-note,G-notes +gnotobiologist,gnotobiologists +gnotobiont,gnotobionts +gnotobiota,gnotobiotas +gnotobiote,gnotobiotes +gnotobiot,gnotobiots +gnu,gnus +gnu goat,gnu goats +goad,goads +goad stick,goad sticks +goaf,goafs,goaves +goa,goas +go-ahead,go-aheads +go-ahead run,go-ahead runs +goal area,goal areas +goal attack,goal attacks +goalballer,goalballers +goalbox,goalboxes +goal cage,goal cages +goal celebration,goal celebrations +goal difference,goal differences +goaler,goalers +goal,goals +goalhanger,goalhangers +goalie,goalies +goal judge,goal judges +goal keeper,goal keepers +goalkeeper,goalkeepers +goalkicker,goalkickers +goal kick,goal kicks +goal line,goal lines +goalline,goallines +goalminder,goalminders +goalmouth,goalmouths +goal post,goal posts +goalpost,goalposts +goalscorer,goalscorers +goal shooter,goal shooters +goalsneak,goalsneaks +goal square,goal squares +goalsquare,goalsquares +goal suck,goal sucks +goaltender,goaltenders +goal umpire,goal umpires +Goan,Goans +goanna,goannas +go-around,go-arounds +goat antelope,goat antelope +goat-antelope,goat-antelopes +goat boat,goat boats +goatburger,goatburgers +goat cheese,goat cheese,goat cheeses +goatee,goatees +goatfish,goatfishes,goatfish +goat,goats +GOAT,GOATs +goatherder,goatherders +goatherd,goatherds +goating,goatings +goatling,goatlings +goat rodeo,goat rodeos +goat rope,goat ropes +goat-rope,goat-ropes +goat's-beard,goat's-beards +goatsbeard,goatsbeards +goat's cheese,goat's cheeses +goatskin,goatskins +goat's milk cheese,goat's milk cheeses +goatsucker,goatsuckers +go-away bird,go-away birds +go-away-bird,go-away-birds +Gobannian,Gobannians +gobbet,gobbets +gobbing,gobbings +gobble,gobbles +gobble hole,gobble holes +gobbler,gobblers +gobby,gobbies +gobdaw,gobdaws +Gobelin,Gobelins +gobemouche,gobemouches +gobernadora,gobernadoras +gobet,gobets +go-between,go-betweens +gobful,gobfuls,gobsful +gobiconodontid,gobiconodontids +gobiesocid,gobiesocids +gobiid,gobiids +gobioid,gobioids +gob iron,gob irons +goblet drum,goblet drums +goblet,goblets +gobline,goblines +gobliness,goblinesses +goblin,goblins +goblinoid,goblinoids +goblin shark,goblin sharks +gobo,gobos +gobshite,gobshites +gob stick,gob sticks +gob-stick,gob-sticks +gob stopper,gob stoppers +gobstopper,gobstoppers +gob-string,gob-strings +goburra,goburras +goby,goby,gobies +go-by,go-bys +go-cart,go-carts +gocart,gocarts +God botherer,God botherers +God boy,God boys +godcast,godcasts +Godcast,Godcasts +godchild,godchildren +God class,God classes +God complex,God complexes +goddaughter,goddaughters +goddesse,goddesses +goddess,goddesses +goddesship,goddesships +goddesshood,goddesshoods +goddess-ship,goddess-ships +goddessship,goddessships +goddist,goddists +GΓΆdel number,GΓΆdel numbers +godemiche,godemiches +godet,godets +godetia,godetias +go-devil,go-devils +godfather,godfathers +god game,god games +god,gods +godhead,godheads +godi,godis +godkid,godkids +god-king,god-kings +godling,godlings +godlore,godlores +godmama,godmamas +godmamma,godmammas +god mode,god modes +godmoder,godmoders +godmother,godmothers +God object,God objects +godord,godords +godown,godowns +godpapa,godpapas +godparent,godparents +godroon,godroons +God's acre,God's acres +godsend,godsends +godsib,godsibs +godsister,godsisters +God slot,God slots +godson,godsons +godspeed,godspeeds +God's word,God's words +godwink,godwinks +God wink,God winks +God-wink,God-winks +godwit,godwits +Godzilla,Godzillas +goeduck,goeducks +goeland,goelands +goelette,goelettes +goer,goers +goethite,goethites +goety,goeties +go-fast boat,go-fast boats +go-faster stripe,go-faster stripes +gofer,gofers +go fever,go fevers +goffel,goffels +goff,goffs +go-getter,go-getters +gogga,goggas +goggle box,goggle boxes +goggle-box,goggle-boxes +gogglebox,goggleboxes +goggle-eyed plover,goggle-eyed plovers +goggle-eye,goggle-eyes +goggle,goggles +goggler,gogglers +goglet,goglets +go-go boot,go-go boots +go,goes +gogo,gogos +gogo,gogos +Goidel,Goidels +goi,goiim +Goi,Goiim +going away dress,going away dresses +going barrel,going barrels +going concern,going concerns +going,goings +going over,going overs,goings over +going-over,going-overs,goings-over +going rate,going rates +goiter,goiters +goit,goits +goit,goits +goitre,goitres +goitrogen,goitrogens +goji berry,goji berries +goji,goji +go-kart,go-karts +GΓΆktΓΌrk,GΓΆktΓΌrks +goldband lily,goldband lilies +goldbricker,goldbrickers +goldbrick,goldbricks +gold bug,gold bugs +gold coin,gold coins +gold-copper ore,gold-copper ores +goldcrest,goldcrests +goldcup,goldcups +gold digger,gold diggers +golde,goldes +golden age,golden ages +goldenberry,goldenberries +golden boy,golden boys +golden calf,golden calves +golden-crested wren,golden-crested wrens +Goldendoodle,Goldendoodles +golden eagle,golden eagles +goldeneye,goldeneyes +golden fruit dove,golden fruit doves +golden girl,golden girls +golden goal,golden goals +golden goose,golden geese +golden hamster,golden hamsters +golden handshake,golden handshakes +golden hello,golden hellos +golden jackal,golden jackals +golden mean,golden means +golden mole,golden moles +golden oldie,golden oldies +golden opportunity,golden opportunities +golden oriole,golden orioles +golden palace monkey,golden palace monkeys +golden parachute,golden parachutes +golden pheasant,golden pheasants +golden plover,golden plovers +golden rectangle,golden rectangles +Golden Retriever,Golden Retrievers +goldenrod tree,goldenrod trees +golden rule,golden rules +golden-shouldered parrot,golden-shouldered parrots +golden shower,golden showers +golden slam,golden slams +golden sombrero,golden sombreros +golden staph,golden staphs +golden ticket,golden tickets +golden touch,golden touches +golden wedding,golden weddings +goldeye,goldeye,goldeyes +gold farmer,gold farmers +gold fever,gold fevers +goldfield,goldfields +goldfinch,goldfinches +gold-finder,gold-finders +gold-finger,gold fingers +goldfinny,goldfinnies +goldfish bowl,goldfish bowls +goldfish,goldfish,goldfishes +gold general,gold generals +goldhammer,goldhammers +goldie,goldies +Goldilocks economy,Goldilocks economies +goldilocks,goldilocks +Goldilocks planet,Goldilocks planets +Goldilocks zone,Goldilocks zones +golding,goldings +goldin,goldins +Goldman roll,Goldman rolls +gold medal,gold medals +gold medalist,gold medalists +gold medallist,gold medallists +gold mine,gold mines +goldmine,goldmines +goldmohur,goldmohurs +goldney,goldneys +gold ochre,gold ochres +gold piece,gold pieces +gold plate,gold plates +gold rush,gold rushes +goldrush,goldrushes +goldsinny,goldsinnies +goldsmith,goldsmiths +goldsmithy,goldsmithies +gold standard,gold standards +goldstino,goldstinos +Goldstone boson,Goldstone bosons +goldstripe darter,goldstripe darters +Goldwynism,Goldwynisms +golem,golems +golfaholic,golfaholics +golf ball,golf balls +golfball,golfballs +golf caddy,golf caddies +golf cart,golf carts +golf clap,golf claps +golf club,golf clubs +golf-club,golf-clubs +golf course,golf courses +golfer,golfers +golfer's elbow,golfer's elbows +golfingiid,golfingiids +golf pencil,golf pencils +golf shirt,golf shirts +golf widow,golf widows +Golgi body,Golgi bodies +golgin,golgins +Goliard,Goliards +Goliath beetle,Goliath beetles +goliath frog,goliath frogs +goliath,goliaths +go-live,go-lives +goll,golls +golliwogg,golliwoggs +golliwog,golliwogs +Gollum,Gollums +golly,gollies +golly,gollies +golly,gollies +gollywog,gollywogs +goloe-shoe,goloe-shoes +golomyanka,golomyankas +goloshe,goloshes +golosh,goloshes +goltschut,goltschuts +Gomarist,Gomarists +Gomarite,Gomarites +gombeen,gombeens +gome,gomes +gomeral,gomerals +gomer,gomers +gomer,gomers +GOMER,GOMERs +gomeril,gomerils +gomesi,gomesis +gom,goms +gompa,gompas +Gompertz curve,Gompertz curves +gomphid,gomphids +gomphothere,gomphotheres +gomphotherid,gomphotherids +gomphotheriid,gomphotheriids +gomphrena,gomphrenas +gonadectomy,gonadectomies +gonad,gonads +gonadoblastoma,gonadoblastomas,gonadoblastomata +gonadotroph,gonadotrophs +gonadotrophin,gonadotrophins +gonadotropin,gonadotropins +gonakie,gonakies +gonane,gonanes +gonangium,gonangia +gonapophysis,gonapophyses +gonatid,gonatids +gonch,gonch +Gond,Gonds +gondola,gondolas +gondolet,gondolets +gondolier,gondoliers +goneplacid,goneplacids +goner,goners +gonfalon,gonfalons +gonfalonier,gonfaloniers +gonfanon,gonfanons +gong,gongs +gon,gons +gon,gons +gongoozler,gongoozlers +gong show,gong shows +goniasterid,goniasterids +goniatite,goniatites +goniatitid,goniatitids +gonidium,gonidia +goniff,goniffs +gonif,gonifs +gonimium,gonimia +goniodoridid,goniodoridids +goniolens,goniolenses +gonioloboceratid,gonioloboceratids +goniometer,goniometers +goniometry,goniometries +gonion,gonions,gonia +goniopholid,goniopholids +goniopholidid,goniopholidids +goniophotometer,goniophotometers +goniorhynchid,goniorhynchids +gonioscope,gonioscopes +gonk,gonks +gonnabe,gonnabes +gonnegtion,gonnegtions +gonoblastidium,gonoblastidia +gonochorist,gonochorists +gonococcus,gonococci +gonocyte,gonocytes +gonodactylid,gonodactylids +gonolek,gonoleks +gonoph,gonophs +gonophore,gonophores +gonopod,gonopods +gonopodium,gonopodia +gonorrhea,gonorrheas +gonorynchid,gonorynchids +gonosome,gonosomes +gonostomatid,gonostomatids +gonozooid,gonozooids +gonyleptid,gonyleptids +gonzo,gonzos +goo ball,goo balls +goober bean,goober beans +goober,goobers +goober-grabbler,goober-grabblers +goober pea,goober peas +gooch,gooches +good bishop,good bishops +good-bye,good-byes +goodbye,goodbyes +good drunk,good drunks +good egg,good eggs +goodeid,goodeids +good ending,good endings +gooder,gooders +goodfella,goodfellas +good-for-nothing,good-for-nothings +goodgeon,goodgeons +good guy,good guys +good hiding,good hidings +good house,good houses +goodie,goodies +good job,good jobs +good lick,good licks +goodlihead,goodliheads +goodman,goodmen +good morning,good mornings +goodnesse,goodnesses +goodnight,goodnights +good ol' boy,good ol' boys +good old boy,good old boys +good old boy network,good old boy networks +good ole boy,good ole boys +Good Samaritan,Good Samaritans +Good Samaritan law,Good Samaritan laws +goods and sales tax,goods and sales taxes +goods and services tax,goods and services taxes +good sport,good sports +goods train,goods trains +goods van,goods vans +goods wagon,goods wagons +Good Thing,Good Things +good-time Charlie,good-time Charlies +good time girl,good time girls +good-time girl,good-time girls +goodtime girl,goodtime girls +good time,good times +good turn,good turns +goodwife,goodwives +goodwillie,goodwillies +goodwilly,goodwillies +goodwin,goodwins +goody bag,goody bags +Goodyear welt,Goodyear welts +goody,goodies +goody goody,goody goodies +goody-goody,goody-goodies +goodygoody,goodygoodies +goofball,goofballs +goofer,goofers +goofery,gooferies +goof,goofs +goof-off,goof-offs +goofoff,goofoffs +goof-up,goof-ups +goog,googs +googillion,googillions +Google bomb,Google bombs +google,googles +google,googles +googleome,googleomes +googleplex,googleplexes +Googler,Googlers +googlewhacker,googlewhackers +googlewhack,googlewhacks +googlewhore,googlewhores +googly,googlies +googolgon,googolgons +googol,googols +googolplex,googolplexes +googolplexth,googolplexths +goo-goo,goo-goos +goo-goo,goo-goos +goo,goos +gook,gooks +gook,gooks +gook wagon,gook wagons +goolie,goolies +goomah,goomahs +goomba,goombas +goombah,goombahs +goombah,goombahs +goom,gooms +goom,gooms +goonda,goondas +Gooner,Gooners +gooney bird,gooney birds +gooney,gooneys,goonies +goon,goons +goonie,goonies +goon squad,goon squads +goon stick,goon sticks +goon-stick,goon-sticks +goony,goonies +gooral,goorals +gooranut,gooranuts +Goori,Gooris +gooroo,gooroos +goosander,goosanders +gooseberry,gooseberries +goose bump,goose bumps +goosebump,goosebumps +goosecap,goosecaps +goose egg,goose eggs +goosefish,goosefishes,goosefish +goosefoot,goosefoots +goose,geese +goosegog,goosegogs +goosegrass,goosegrasses +gooseherd,gooseherds +gooseneck barnacle,gooseneck barnacles +gooseneck,goosenecks +goose-pen,goose-pens +goose pimple,goose pimples +goosery,gooseries +gooseskin,gooseskins +goose-step,goose-steps +goose wing,goose wings +goosewing,goosewings +goost,goosts +go-out,go-outs +gopak,gopaks +GOPer,GOPers +gopher ball,gopher balls +gopher,gophers +gopher,gophers +gopher tortoise,gopher tortoises +gopik,gopiks +go pill,go pills +gopura,gopuras +gopuram,gopurams +goral,gorals +goramy,goramies +gorce,gorces +gorcock,gorcocks +gorcrow,gorcrows +gord,gords +Gordian knot,Gordian knots +Gordian worm,Gordian worms +Gordie Howe hat trick,Gordie Howe hat tricks +gordita,gorditas +gorebill,gorebills +gorefest,gorefests +gore,gores +gorehound,gorehounds +Gorevan,Gorevans +gorge,gorges +gorgelet,gorgelets +gorger,gorgers +gorgerin,gorgerins +gorget,gorgets +Gorgio,Gorgios +gorgoneion,gorgoneia +gorgon,gorgons +gorgonian,gorgonians +gorgoniid,gorgoniids +gorgonocephalid,gorgonocephalids +gorgonopsid,gorgonopsids +gorilka,gorilkas +gorilla,gorillas +gorillagram,gorillagrams +gorilla in the room,gorillas in the room +gorilla salad,gorilla salads +Gorlin's syndrome,Gorlin's syndromes +gormander,gormanders +gormand,gormands +gormandizer,gormandizers +gormanite,gormanites +gorm,gorms +gorno,gornos +goroutine,goroutines +gorsedd,gorsedds,gorseddau +gorsoon,gorsoons +gosha,goshas +goshawk,goshawks +gosherd,gosherds +go-show,go-shows +goslet,goslets +gosling,goslings +go-slow,go-slows +gospel bird,gospel birds +gospeler,gospelers +gospel,gospels +Gospel,Gospels +gospeller,gospellers +gospell,gospells +gospelmonger,gospelmongers +Gospel shop,Gospel shops +Gossage,Gossages +gossamer spider,gossamer spiders +gossan,gossans +gossib,gossibs +gossiper,gossipers +gossipfest,gossipfests +gossip,gossips +gossip mill,gossip mills +gossipmonger,gossipmongers +gossipper,gossippers +gossipry,gossipries +gossoon,gossoons +gossypetin,gossypetins +gossypiboma,gossypibomas +gossypol,gossypols +gost,gosts +Gotcha Day,Gotcha Days +gotcha,gotchas +gotcha keyword,gotcha keywords +gote,gotes +goter,goters +gothabilly,gothabillies +Gothamist,Gothamists +Gothamite,Gothamites +goth,goths +Goth,Goths +Gothic arch,Gothic arches +Gothic double,Gothic doubles +Gothic,Gothics +Gotlander,Gotlanders +go to,go tos +gotra,gotras +gouache,gouaches +goudron,goudrons +gouernment,gouernments +gouernour,gouernours +gouge,gouges +gougΓ¨re,gougΓ¨res +gouger,gougers +goujere,goujeres +goujon,goujons +goujon,goujons +goulash,goulashes +Gould-Jacobs reaction,Gould-Jacobs reactions +gound,gounds +goura,gouras +gourami,gouramis,gouramies +gourbi,gourbis +gourde,gourdes +gourder,gourders +gourdful,gourdfuls,gourdsful +gourd,gourds +gourdworm,gourdworms +gour,gours +gourmand,gourmands +gourmandizer,gourmandizers +gourmet,gourmets +gournet,gournets +gousan,gousans +gousset,goussets +gout,gouts +goutte,gouttes +gouvernance,gouvernances +gouvernante,gouvernantes +gouvernment,gouvernments +gouvernor,gouvernors +gouvernour,gouvernours +gove,goves +governance,governances +governante,governantes +governate,governates +governaunce,governaunces +governer,governers +governess-cart,governess-carts +governess,governesses +governmentality,governmentalities +government man,government men +government take,government takes +government wharf,government wharves,government wharfs +governorate,governorates +governor general,governors general +governor-general,governors-general +governor,governors +governorship,governorships +governour,governours +governourship,governourships +gov,govs +gov't,gov'ts +govvy,govvies +gowan,gowans +gowdie,gowdies +gowk,gowks +gowlare,gowlares +gown,gowns +gownmaker,gownmakers +gownman,gownmen +gownsman,gownsmen +gowpen,gowpens +goyal,goyals +Goy,Goyim +goy,goyim,goys,goyem +Gozitan,Gozitans +gozzard,gozzards +GPA,GPAs +GPF,GPFs +G protein,G proteins +G-protein,G-proteins +GPS receiver,GPS receivers +Graafian follicle,Graafian follicles +graal,graals +grab bag,grab bags +grab-bag,grab-bags +grabbag,grabbags +grabber,grabbers +graben,grabens,graben +grabfest,grabfests +grab game,grab games +grab,grabs +grab,grabs +grace-cup,grace-cups +grace note,grace notes +grace period,grace periods +gracillariid,gracillariids +grackle,grackles +gradable antonym,gradable antonyms +gradable,gradables +gradation,gradations +gradatory,gradatories +grade crossing,grade crossings +gradee,gradees +grade,grades +grader,graders +grade school,grade schools +grad,grads +gradgrind,gradgrinds +gradian,gradians +gradient,gradients +gradient post,gradient posts +gradient wind,gradient winds +gradine,gradines +gradin,gradins +gradino,gradinos +gradiometer,gradiometers +gradiometry,gradiometries +grad school,grad schools +grad student,grad students +gradual,graduals +gradualist,gradualists +graduand,graduands +graduated cylinder,graduated cylinders +graduate engineer,graduate engineers +graduate,graduates +graduate nurse,graduate nurses +graduate school,graduate schools +graduate student,graduate students +graduate tax,graduate taxes +graduation,graduations +graduation mark,graduation marks +graduator,graduators +gradungulid,gradungulids +gradus,graduses +GrΓ¦caster,GrΓ¦casters +GrΓ¦cian,GrΓ¦cians +graecism,graecisms +GrΓ¦cism,GrΓ¦cisms +graf artist,graf artists +graffage,graffages +graffer,graffers +graffer,graffers +graff,graffs +graffiti artist,graffiti artists +graffiti bomber,graffiti bombers +graffitist,graffitists +graffito,graffiti +graf,grafs +grafter,grafters +grafting,graftings +graft polymer,graft polymers +Graham biscuit,Graham biscuits +Graham bread,Graham breads +graham cracker,graham crackers +Graham cracker,Graham crackers +grahamite,grahamites +grail,grails +grail,grails +grail,grails +graille,grailles +grain elevator,grain elevators +grainer,grainers +grainfield,grainfields +grain,grains +grainland,grainlands +grain refiner,grain refiners +grain weevil,grain weevils +grain whisky,grain whiskies +graith,graiths +grakle,grakles +grallinid,grallinids +gram atom,gram atoms +gram calorie,gram calories +gram equivalent,gram equivalents +gram,grams +gram,grams +graminicide,graminicides +graminivore,graminivores +graminoid,graminoids +gramma,grammas +grammalogue,grammalogues +grammarchecker,grammarcheckers +grammarian,grammarians +grammarism,grammarisms +grammar nazi,grammar nazis +grammar Nazi,grammar Nazis +grammar school,grammar schools +grammatical alternation,grammatical alternations +grammatical case,grammatical cases +grammatical mood,grammatical moods +grammatical person,grammatical persons +grammaticaster,grammaticasters +grammatication,grammatications +grammatician,grammaticians +grammaticism,grammaticisms +grammaticist,grammaticists +grammatid,grammatids +grammatist,grammatists +grammatite,grammatites +grammatologist,grammatologists +gramme,grammes +grammicolepidid,grammicolepidids +grammid,grammids +grammistid,grammistids +gram molecule,gram molecules +gramophone,gramophones +gramophonist,gramophonists +grampa,grampas +grampus,grampuses +grampy,grampies +grams,grams +granade,granades +granadilla,granadillas +granado,granados,granadoes +granary bread,granary breads +granary,granaries,granarys +granary weevil,granary weevils +granate,granates +grandaddy,grandaddies +granda,grandas +grandam,grandams +grandaughter,grandaughters +grand-aunt,grand-aunts +grandaunt,grandaunts +grandbabe,grandbabes +grandbaby,grandbabies +grandbairn,grandbairns +grandboomer,grandboomers +grandboy,grandboys +grand C,grand Cs +grandchild,grandchildren +grand chop,grand chops +granddaddy,granddaddies +granddad,granddads +granddaughter,granddaughters +granddog,granddogs +grand duchess,grand duchesses +grand duchy,grand duchies +grand dukedom,grand dukedoms +grand duke,grand dukes +grande dame,grandes dames +grandee,grandees +grande passion,grandes passions +grandfather clause,grandfather clauses +grandfather clock,grandfather clocks +grandfather,grandfathers +grandfather-in-law,grandfathers-in-law +grandfather's clock,grandfather's clocks +grand final,grand finals +grandgirl,grandgirls +grand,grand +grandiloquism,grandiloquisms +grandioso,grandiosos +grand jury,grand juries +grandkid,grandkids +grand larceny,grand larcenies +grandma,grandmas +grandmama,grandmamas +grandmamma,grandmammas +grandmammy,grandmammies +grandmaster,grandmasters +Grandmaster,Grandmasters +Grand Master,Grand Masters +grand mean,grand means +grandmom,grandmoms +grandmommy,grandmommies +grandmother,grandmothers +grandmother-in-law,grandmothers-in-law +grandmum,grandmums +grandmummy,grandmummies +grandnephew,grandnephews +grandniece,grandnieces +grandog,grandogs +grand old man,grand old men +grandpa,grandpas +grandpapa,grandpapas +grandpappy,grandpappies +grandparent,grandparents +grand piano,grand pianos +grand poobah,grand poobahs +Grand Poobah,Grand Poobahs +grand prince,grand princes +grand prior,grand priors +Grand Prix,Grands Prix +grand prize,grand prizes +grandrelation,grandrelations +grand salami,grand salamis +grand scheme,grand schemes +grand scheme of things,grand schemes of things +grandsire,grandsires +grand slam,grand slams +grandson,grandsons +grandson-in-law,grandsons-in-law +grand staff,grand staves +grandstander,grandstanders +grandstand,grandstands +grandstand play,grandstand plays +grand theory,grand theories +grand total,grand totals +Grand Tour,Grand Tours +grand uncle,grand uncles +grand-uncle,grand-uncles +granduncle,granduncles +grand unification theory,grand unification theories +grand vizier,grand viziers +grane,granes +granfalloon,granfalloons +grange,granges +granger,grangers +grangerisation,grangerisations +Grangerite,Grangerites +grangerization,grangerizations +granger law,granger laws +Granger law,Granger laws +gran,grans +granita,granitas +granite,granites +granitization,granitizations +granivore,granivores +grannam,grannams +grannie,grannies +granny annexe,granny annexes +granny flat,granny flats +granny gear,granny gears +granny,grannies +granny knot,granny knots +granny shot,granny shots +Granny Smith,Granny Smiths +granny square,granny squares +granodiorite,granodiorites +granofilosean,granofiloseans +granolith,granoliths +granpappy,granpappies +grant-back,grant-backs +grantee,grantees +granter,granters +grant-forward,grant-forwards +grant,grants +granthi,granthis +grantiid,grantiids +grant-in-aid,grants-in-aid +grantor,grantors +grantour,grantours +granular configuration automation,granular configuration automations +granulation,granulations +granule,granules +granulite,granulites +granulocyte,granulocytes +granulocyte-macrophage colony-stimulating factor,granulocyte-macrophage colony-stimulating factors +granuloma,granulomas,granulomata +granulopoiesis,granulopoieses +granulovirus,granuloviruses +granum,grana +granzyme,granzymes +grapefruit,grapefruits,grapefruit +grape hyacinth,grape hyacinths +grapery,graperies +grapeseed,grapeseeds +grapeseed oil,grapeseed oils +grape smuggler,grape smugglers +grape-stone,grape-stones +grapestone,grapestones +grapevine,grapevines +graph antihole,graph antiholes +grapheme,graphemes +graphene,graphenes +graphene layer,graphene layers +graph,graphs +graph hole,graph holes +graphical user interface,graphical user interfaces +graphic,graphics +graphician,graphicians +graphic novel,graphic novels +graphic novelist,graphic novelists +graphics card,graphics cards +graphics engine,graphics engines +graphics tablet,graphics tablets +graphics whore,graphics whores +graphing calculator,graphing calculators +graphing paper,graphing papers +graphino,graphinos +graphiologist,graphiologists +graphiscope,graphiscopes +graphitate,graphitates +graphite fluoride,graphite fluorides +graphitisation,graphitisations +graphitizing,graphitizings +graphoglytid,graphoglytids +graphoid,graphoids +grapholect,grapholects +graphologist,graphologists +graphomania,graphomanias +graphone,graphones +graphophone,graphophones +graphoscope,graphoscopes +graphospasm,graphospasms +graphotype,graphotypes +graph state,graph states +graph theorist,graph theorists +graph toughness,graph toughnesses +graphyne,graphynes +grapline,graplines +graplin,graplins +grapnel,grapnels +grapplehook,grapplehooks +grappler,grapplers +grappling,grapplings +grappling hook,grappling hooks +grappling iron,grappling irons +grapsid,grapsids +grapsoid,grapsoids +graptolite,graptolites +grasper,graspers +grasp,grasps +grassbird,grassbirds +grassbox,grassboxes +grasscloth,grasscloths +grass court,grass courts +grasscutter,grasscutters +grasseater,grasseaters +grasser,grassers +grassfire,grassfires +grass-green,grass-greens +grasshopper,grasshoppers +grassland,grasslands +Grassmannian,Grassmannians +grass mud horse,grass mud horses +grassplot,grassplots +grass script,grass scripts +grass skirt,grass skirts +grass snake,grass snakes +grass trap,grass traps +grass tree,grass trees +grass widower,grass widowers +grass widow,grass widows +grass widowhood,grass widowhoods +grasswren,grasswrens +grate,grates +grater,graters +grat,grats +GRAT,GRATs +graticule,graticules +gratification,gratifications +gratifier,gratifiers +grating,gratings +gratin,gratins +gratuity,gratuities +gratulation,gratulations +graunt,graunts +gravadlax,gravadlaxes +gravamen,gravamens +gravastar,gravastars +gravatar,gravatars +grave accent,grave accents +gravedigger,gravediggers +grave good,grave goods +grave,graves +grave,graves +Gravel Gertie,Gravel Gerties +grave marker,grave markers +gravemarker,gravemarkers +graven image,graven images +Gravenstein,Gravensteins +graver,gravers +grave robber,grave robbers +graverobber,graverobbers +graveside,gravesides +gravesite,gravesites +gravestead,gravesteads +gravestone,gravestones +graveyard,graveyards +graveyard shift,graveyard shifts +graveyard spiral,graveyard spirals +graveyard watch,graveyard watches +gravida,gravidas,gravidae +gravidity,gravidities +gravigrade,gravigrades +gravimagnetization,gravimagnetizations +gravimeter,gravimeters +gravimetric analysis,gravimetric analyses +graving,gravings +graviphoton,graviphotons +gravisaurian,gravisaurians +graviscalar,graviscalars +gravitational assist,gravitational assists +gravitational convection,gravitational convections +gravitational field,gravitational fields +gravitational lens,gravitational lenses +gravitational redshift,gravitational redshifts +gravitational singularity,gravitational singularities +gravitational slingshot,gravitational slingshots +gravitational wave,gravitational waves +gravitino,gravitinos +gravitometer,gravitometers +graviton,gravitons +gravity assist,gravity assists +gravity-assist,gravity-assists +gravity bong,gravity bongs +gravity cell,gravity cells +gravity drop,gravity drops +gravity meter,gravity meters +gravity slingshot,gravity slingshots +gravity wind,gravity winds +gravure,gravures +gravy boat,gravy boats +gravy train,gravy trains +grawlix,grawlixes,grawlix +grayanotoxin,grayanotoxins +gray area,gray areas +grayback,graybacks +graybar hotel,graybar hotels +graybeard,graybeards +graybody,graybodies +Gray code,Gray codes +gray eminence,gray eminences +gray ghost,gray ghosts +gray,grays +gray,grays +gray hat,gray hats +grayhead,grayheads +grayhound,grayhounds +gray iron,gray irons +gray jay,gray jays +graylag,graylags +gray langur,gray langurs +grayling,grayling,graylings +graylist,graylists +gray market,gray markets +gray nomad,gray nomads +grayscale,grayscales +gray seal,gray seals +gray short-tailed opossum,gray short-tailed opossums +gray squirrel,gray squirrels +graystone,graystones +gray tape,gray tapes +gray triggerfish,gray triggerfish +gray whale,gray whales +gray wolf,gray wolves +graze,grazes +grazer,grazers +grazier,graziers +GRB,GRBs +greaseball,greaseballs +greaseboard,greaseboards +greasebomb,greasebombs +greaseburger,greaseburgers +grease,greases +grease gun,grease guns +grease monkey,grease monkeys +grease-monkey,grease-monkeys +grease nipple,grease nipples +greasepaint,greasepaints +grease payment,grease payments +grease pit,grease pits +greaser,greasers +greasy spoon,greasy spoons +great antshrike,great antshrikes +great ape,great apes +great auk,great auks +great aunt,great aunts +great-aunt,great-aunts +great black-backed gull,great black-backed gulls +great circle,great circles +great circle route,great circle routes +great clock,great clocks +greatcoat,greatcoats +great crested grebe,great crested grebes +great crested newt,great crested newts +great crest,great crests +Great Dane,Great Danes +great egret,great egrets +greater alar cartilage,greater alar cartilages +Greater Antillean,Greater Antilleans +greater argentine,greater argentines +greater argonaut,greater argonauts +greater bamboo lemur,greater bamboo lemurs +greater bilby,greater bilbies +greater celandine,greater celandines +greater galago,greater galagos +greater saphenous vein,greater saphenous veins +greater scaup,greater scaups +greater than,greater thans +greater yellowlegs,greater yellowlegs +greatest common divisor,greatest common divisors +great grandchild,great grandchildren +great-grandchild,great-grandchildren +great granddaughter,great granddaughters +great-granddaughter,great-granddaughters +great grandfather,great grandfathers +great-grandfather,great-grandfathers +great grandkid,great grandkids +great-grandkid,great-grandkids +great-grandma,great-grandmas +great grandmaster,great grandmasters +great grandmother,great grandmothers +great-grandmother,great-grandmothers +great-grandpa,great-grandpas +great grandparent,great grandparents +great-grandparent,great-grandparents +great grandson,great grandsons +great-grandson,great-grandsons +great great grandchild,great great grandchildren +great-great-grandchild,great-great-grandchildren +great great granddaughter,great great granddaughters +great-great-granddaughter,great-great-granddaughters +great great grandfather,great great grandfathers +great-great-grandfather,great-great-grandfathers +great great grandmother,great great grandmothers +great-great-grandmother,great-great-grandmothers +great great grandparent,great great grandparents +great-great-grandparent,great-great-grandparents +great great grandson,great great grandsons +great-great-grandson,great-great-grandsons +great-great-great-great-great-great-grandfather,great-great-great-great-great-great-grandfathers +great,greats +great green macaw,great green macaws +great grey owl,great grey owls +great grey shrike,great grey shrikes +great gun,great guns +great hall,great halls +great horned owl,great horned owls +great horsetail,great horsetails +great house,great houses +great hundred,great hundreds +great icosihemidodecahedron,great icosihemidodecahedrons +great laurel,great laurels +great-nephew,great-nephews +great-niece,great-nieces +great northern diver,great northern divers +great northern loon,great northern loons +great northern prawn,great northern prawns +great octave,great octaves +great power,great powers +Great Pyrenees,Great Pyrenees +great ramshorn,great ramshorns +great room,great rooms +great saphenous vein,great saphenous veins +great seal,great seals +Great Seal,Great Seals +great skua,great skuas +great spotted kiwi,great spotted kiwis +great spotted woodpecker,great spotted woodpeckers +greatsword,greatswords +great tinamou,great tinamous +great tit,great tits +Great Turk,Great Turks +great uncle,great uncles +great-uncle,great-uncles +great white shark,great white sharks +Great Year,Great Years +greave,greaves +greave,greaves +greave,greaves +grebe,grebes +grebo,grebos +grece,greces +Grecian,Grecians +Grecian knot,Grecian knots +Grecism,Grecisms +Grecophone,Grecophones +grecque,grecques +greeble,greebles +greebo,greebos +greedfest,greedfests +greedhead,greedheads +greedmeister,greedmeisters +greedoid,greedoids +greedyguts,greedyguts +greegree,greegrees +gree,grees +gree,grees +Greek cross,Greek crosses +Greekess,Greekesses +greek,greeks +Greek house,Greek houses +Greek letter,Greek letters +Greekling,Greeklings +Greek number,Greek numbers +Greek numeral,Greek numerals +Greek salad,Greek salads +green alder,green alders +green alga,green algae +greenalite,greenalites +green anaconda,green anacondas +green anole,green anoles +green-backed firecrown,green-backed firecrowns +Greenbacker,Greenbackers +greenback,greenbacks +green bag,green bags +green ban,green bans +green bean,green beans +green-bed,green-beds +green belt,green belts +greenbelt,greenbelts +Green Beret,Green Berets +greenbody,greenbodies +greenbone,greenbones +green bottle fly,green bottle flies +greenbottle,greenbottles +greenbrier,greenbriers +greenbul,greenbuls +green card,green cards +green chain,green chains +green cormorant,green cormorants +green corridor,green corridors +green crab,green crabs +green energy,green energies +greenery,greeneries +green fallow,green fallows +greenfield,greenfields +greenfinch,greenfinches +greenfish,greenfishes,greenfish +green flash,green flashes +green fluorescent protein,green fluorescent proteins +greenfly,greenflies +greengage,greengages +greengill,greengills +Green Goddess,Green Goddesses +green gown,green gowns +green gram,green grams +green,greens +greengrocer,greengrocers +greengrocer's apostrophe,greengrocers' apostrophes +greengrocer's,greengrocers' +greengrocery,greengroceries +green hairstreak,green hairstreaks +greenhead,greenheads +greenheart,greenhearts +green hellebore,green hellebores +Green Hornet,Green Hornets +greenhorn,greenhorns +greenhouse cockpit,greenhouse cockpits +greenhouse effect,greenhouse effects +greenhouse,greenhouses +greenhouse slug,greenhouse slugs +greenie,greenies +greening,greenings +green-ink brigade,green-ink brigades +green-ink letter,green-ink letters +green jersey,green jerseys +greenkeeper,greenkeepers +green lacewing,green lacewings +Greenlander,Greenlanders +Greenland shark,Greenland sharks +green lane,green lanes +green leek,green leeks +greenlet,greenlets +green light,green lights +green line,green lines +greenling,greenlings +green lung,green lungs +greenmailer,greenmailers +greenmail,greenmails +green man,green men +greenmarket,greenmarkets +green monkey,green monkeys +green mustard,green mustards +green olive,green olives +green onion,green onions +green paper,green papers +green party,green parties +Greenpeacer,Greenpeacers +green pepper,green peppers +green plover,green plovers +green pocket,green pockets +green prawn,green prawns +green roof,green roofs +green room,green rooms +greenroom,greenrooms +greensand,greensands +green screen,green screens +greenscreen,greenscreens +green sea,green seas +green sea turtle,green sea turtles +greenshank,greenshanks +greenskeeper,greenskeepers +green slip,green slips +green smoothie,green smoothies +greensome,greensomes +greenspace,greenspaces +green spot,green spots +green-stall,green-stalls +green state,green states +greenstick fracture,greenstick fractures +greenstick,greensticks +greensward,greenswards +green tax,green taxes +green tea,green teas +green thread,green threads +green thumb,green thumbs +green turtle,green turtles +green 'un,green 'uns +green-veined white,green-veined whites +greenwasher,greenwashers +greenwash,greenwashes +green wave,green waves +greenwax,greenwaxes +greenway,greenways +greenweed,greenweeds +Greenwich Time Signal,Greenwich Time Signals +greenwood,greenwoods +green woodpecker,green woodpeckers +greeny,greenies +greetee,greetees +greeter,greeters +greeting card,greeting cards +greetings card,greetings cards +greeve,greeves +greeve,greeves +greeveship,greeveships +greeze,greezes +greffier,greffiers +gregarine,gregarines +gregarization,gregarizations +grego,gregos +Gregorian,Gregorians +gre,gres +GRE,GREs +greige,greiges +greisen,greisens +gremial,gremials +gremlin,gremlins +gremolata,gremolatas +gremoulata,gremoulatas +Grenadan,Grenadans +grenade,grenades +grenade launcher,grenade launchers +Grenadian,Grenadians +grenadier,grenadiers +grenadilla,grenadillas +grenadine,grenadines +grenado,grenadoes +Grenzer,Grenzers,Grenzer +grevilia,grevilias +grevillea,grevilleas +GrΓ©vy's zebra,GrΓ©vy's zebras +grex,greges +grex name,grex names +grey alder,grey alders +grey area,grey areas +greyback,greybacks +greybeard,greybeards +greybody,greybodies +grey crow,grey crows +grey eminence,grey eminences +grey ghost,grey ghosts +grey,greys +grey hat,grey hats +grey heron,grey herons +greyhound,greyhounds +grey jay,grey jays +greylag goose,graylag geese +greylag,greylags +grey-legged tinamou,grey-legged tinamous +greylist,greylists +grey market,grey markets +grey mullet,grey mullets +grey-necked wood rail,grey-necked wood rails +grey nomad,grey nomads +grey partridge,grey partridges +grey red-backed vole,grey red-backed voles +greyscale,greyscales +grey seal,grey seals +greystone,greystones +grey-throated rail,grey-throated rails +grey tinamou,grey tinamous +greywater,greywaters +grey whale,grey whales +grey-winged trumpeter,grey-winged trumpeters +grey wolf,grey wolves +GRG,GRGs +gribble,gribbles +grice,grice,grices +grice,grices +gricer,gricers +griddlecake,griddlecakes +griddle,griddles +grid,grids +gridiron,gridirons +gridline,gridlines +grid plan,grid plans +gridpoint,gridpoints +grid reference,grid references +grid road,grid roads +griefer,griefers +grief tourist,grief tourists +grievance,grievances +grievancer,grievancers +grievand,grievands +grievant,grievants +grievaunce,grievaunces +grieve,grieves +griever,grievers +grieving,grievings +grievousness,grievousnesses +griffe,griffes +griff,griffs +griff,griffs +griffiness,griffinesses +griffin,griffins +griffithsin,griffithsins +griffonage,griffonages +griffon,griffons +griffon vulture,griffon vultures +grifonin,grifonins +grifter,grifters +grift,grifts +grig,grigs +grigio,grigios +Grignard reaction,Grignard reactions +Grignard reagent,Grignard reagents +grigri,grigris +grigri,grigris +grike,grikes +grilf,grilfs +grillade,grillades +grillage,grillages +grilled cheese,grilled cheeses +grille,grilles +grille guard,grille guards +griller,grillers +grill,grills +grilling,grillings +grillmaster,grillmasters +grill room,grill rooms +grillroom,grillrooms +grillsteak,grillsteaks +grilse,grilses +grimace,grimaces +grimalkin,grimalkins +grimoire,grimoires +grimsir,grimsirs +grinch,grinches +grinder,grinders +grind,grinds +grindhouse,grindhouses +grinding frame,grinding frames +grinding,grindings +grindle,grindles +grindle-stone,grindle-stones +grindlet,grindlets +grindstone,grindstones +gringo,gringos,gringoes +grin,grins +grin,grins +grinner,grinners +griot,griots +grip car,grip cars +grip-car,grip-cars +gripe,gripes +griper,gripers +gripesite,gripesites +grip,grips +grip,grips +grip,grips +griphite,griphites +gripman,gripmen +gripper,grippers +grippie,grippies +gripple,gripples +gripple,gripples +gripsack,gripsacks +Griqua,Griquas,Griqua +grisaille,grisailles +grise,grises +grise,grises +griseofulvin,griseofulvins +grisette,grisettes +griskin,griskins +grism,grisms +grison,grisons +grist mill,grist mills +gristmill,gristmills +grit,grits +Grit,Grits +gritter,gritters +grivation,grivations +grivet,grivets +grivna,grivnas +grize,grizes +grizzled skipper,grizzled skippers +grizzle,grizzles +grizzler,grizzlers +grizzly bear,grizzly bears +grizzly,grizzlies +groane,groanes +groaner,groaners +groan,groans +groaning,groanings +groat,groats +groat,groats +groatland,groatlands +grobian,grobians +grocerant,grocerants +groceraunt,groceraunts +grocer,grocers +grocery,groceries +grocery list,grocery lists +groceryman,grocerymen +grocery store,grocery stores +grockel,grockels +grockle,grockles +grog-blossom,grog-blossoms +groggery,grogerries +groghouse,groghouses +grognard,grognards +grog shop,grog shops +grogshop,grogshops +groid,groids +groin attack,groin attacks +groined vault,groined vaults +groin,groins +groin vault,groin vaults +groma,gromas +gromet,gromets +grom,groms +gromiid,gromiids +grommet,grommets +gromwell,gromwells +groomee,groomees +groomer,groomers +groom,grooms +groom,grooms +groom-porter,groom-porters +groomship,groomships +groomsmaid,groomsmaids +groomsman,groomsmen +groomzilla,groomzillas +grooper,groopers +groop,groops +groop,groops +groove fricative,groove fricatives +groove,grooves +groovemeister,groovemeisters +groover,groovers +Groover's fallacy,Groover's fallacys +groovester,groovesters +grooving,groovings +gropefest,gropefests +grope,gropes +groper,gropers +groping,gropings +grosbeak,grosbeaks +groschen,groschens +grosgrain,grosgrains +grossbeak,grossbeaks +gross,gross,grosses +gross income,gross incomes +gross profit,gross profits +gross vehicle weight rating,gross vehicle weight ratings +gross weight,gross weights +grosz,groszy,grosze +grotesque,grotesques +grotesquery,grotesqueries +grot,grots +Grothendieck group,Grothendieck groups +grotto,grottos,grottoes +groucher,grouchers +grouch,grouches +groud,grouds +groundation,groundations +ground ball,ground balls +groundball,groundballs +ground ball with eyes,ground balls with eyes +ground bar,ground bars +ground bass,ground basses +groundbreaker,groundbreakers +groundbreaking,groundbreakings +groundburst,groundbursts +groundcherry,groundcherries +ground clearance,ground clearances +ground cover,ground covers +groundcover,groundcovers +groundcrew,groundcrews +grounded theory,grounded theories +ground effect,ground effects +ground effect machine,ground effect machines +ground-effect machine,ground-effect machines +ground-effect vehicle,ground-effect vehicles +grounde,groundes +grounder,grounders +ground failure,ground failures +ground floor,ground floors +groundfloor,groundfloors +ground game,ground games +ground glass,ground glasss +ground glass joint,ground glass joints +Groundhog Day,Groundhog Days +groundhog,groundhogs +groundhopper,groundhoppers +grounding,groundings +ground-ivy,ground ivies +groundkeeper,groundkeepers +ground laurel,ground laurels +groundline,groundlines +groundling,groundlings +ground loop,ground loops +groundmass,groundmasses +ground mobile force,ground mobile forces +groundnut,groundnuts +ground offensive,ground offensives +ground out,ground outs +groundout,groundouts +ground pangolin,ground pangolins +ground pounder,ground pounders +ground power,ground powers +ground proximity warning system,ground proximity warning systems +ground rent,ground rents +ground rule,ground rules +groundsel,groundsels +groundsel,groundsels +grounds,grounds +ground shark,ground sharks +groundsheet,groundsheets +groundsill,groundsills +groundskeeper,groundskeepers +groundsman,groundsmen +grounds officer,grounds officers +ground spider,ground spiders +ground squirrel,ground squirrels +ground state,ground states +groundstate,groundstates +groundstone,groundstones +ground-stroke,ground-strokes +groundstroke,groundstrokes +ground swell,ground swells +groundswell,groundswells +groundswoman,groundswomen +groundwall,groundwalls +groundwater level,groundwater levels +groundway,groundways +groundworker,groundworkers +groundwork,groundworks +groundworm,groundworms +ground zero,ground zeroes +group action,group actions +groupality,groupalities +group box,group boxes +group captain,group captains +group certificate,group certificates +groupe,groupes +grouper,groupers,grouper +groupetto,groupetti,groupettos +group,groups +groupie,groupies +groupification,groupifications +grouping,groupings +group leader,group leaders +grouplet,grouplets +group marriage,group marriages +groupmind,groupminds +group of death,groups of death +groupoid,groupoids +group ring,group rings +groupset,groupsets +group specific antigen,group specific antigens +group stage,group stages +group theoretician,group theoreticians +group theorist,group theorists +groupuscule,groupuscules +group velocity,group velocities +groupworker,groupworkers +grouse,grouse,grouses +grouse,grouses +grouser,grousers +grouting,groutings +grove,groves +groveler,grovelers +groveller,grovellers +grove snail,grove snails +growan,growans +grower,growers +grow house,grow houses +growler,growlers +growl,growls +grow light,grow lights +growling,growlings +grownd,grownds +grown up,grown ups +grown-up,grown-ups +grownup,grownups +grow operation,grow operations +grow op,grow ops +grow-op,grow-ops +growth factor,growth factors +growth,growths +growth hormone,growth hormones +growth medium,growth media +growth ring,growth rings +growth spurt,growth spurts +growth stock,growth stocks +groyne,groynes +grozing iron,grozing irons +grrrl,grrrls +grubber,grubbers +grubber kick,grubber kicks +Grubb's test,Grubb's tests +grubby,grubbies +grubhouse,grubhouses +grubling,grublings +grubstake,grubstakes +grubworm,grubworms +grudge,grudges +grudge match,grudge matches +grudger,grudgers +grudgery,grudgeries +grue,grues +grue,grues +gruel,gruels +grugru,grugrus +grugru worm,grugru worms +gruid,gruids +gruit,gruits +grumble,grumbles +grumbler,grumblers +grumbletonian,grumbletonians +grumbling,grumblings +grume,grumes +grummet,grummets +grump,grumps +grundel,grundels +grundle,grundles +grundle,grundles +grundle,grundles +grundy,grundies +grunerite,grunerites +grΓΌnerite,grΓΌnerites +grunger,grungers +grungester,grungesters +grunion,grunions +grunsel,grunsels +grunter,grunters +grunt,grunts +grunting,gruntings +grunting ox,grunting oxen +gruntling,gruntlings +grupetto,grupettos +gruppetto,gruppetti,gruppettos +grutch,grutches +gryfon,gryfons +gry,gries +gryke,grykes +gryllacridid,gryllacridids +gryllid,gryllids +grylloblattid,grylloblattids +gryllotalpid,gryllotalpids +gryphaea,gryphaeas +gryphaeid,gryphaeids +gryphite,gryphites +gryphon,gryphons +grypoceratid,grypoceratids +grysbok,grysboks +GSA,GSAs +GSE,GSEs +GSF,GSFs +gSign,gSigns +G-spot,G-spots +GSR,GSRs +G string,G strings +G-string,G-strings +G-suit,G-suits +GSW,GSWs +GTIN,GTINs +GTO,GTOs +GTP-binding protein,GTP-binding proteins +gtt,gtt +guacharo,guacharos,guacharoes +guache,guaches +Guadeloupean,Guadeloupeans +Guadeloupian,Guadeloupians +guaiac,guaiacs +guaiacol,guaiacols +guaiane,guaianes +guaianolide,guaianolides +guaibasaurid,guaibasaurids +guailo,guailos +guajillo,guajillos +Guale,Guales,Guale +Guamanian,Guamanians +guanabana,guanabanas +guanaco,guanacos,guanacoes +guana,guanas +Guanche,Guanches +guanco,guancos +guandao,guandaos +guan,guans +guanide,guanides +guanidinium,guanidiniums +guanidium,guanidiums +guanidyl,guanidyls +guanine,guanines +guanodine,guanodines +guanylate,guanylates +guanylyltransferase,guanylyltransferases +guapote,guapotes +guara,guaras +guarana,guaranas +guaranΓ­,guaranΓ­s +guaranteed arrival,guaranteed arrivals +guaranteed equity bond,guaranteed equity bonds +guarantee,guarantees +guaranteer,guaranteers +guarantor,guarantors +guaranty,guaranties +guardant,guardants +guard band,guard bands +guardband,guardbands +guard dog,guard dogs +guard-dog,guard-dogs +guardee,guardees +guarde,guardes +guarder,guarders +guard,guards +guardhouse,guardhouses +guardian ad litem,guardians ad litem +guardian angel,guardian angels +guardianess,guardianesses +guardian,guardians +Guardianista,Guardianistas +guardianship,guardianships +guardienne,guardiennes +guard mounting,guard mountings +guard of honour,guards of honour +guard post,guard posts +guardpost,guardposts +guard rail,guard rails +guardrail,guardrails +guardroom,guardrooms +guardsman,guardsmen +guard station,guard stations +guardswoman,guardswomen +guar,guars +guar gum,guar gums +guarri,guarris +guasa,guasas +Guatemalan,Guatemalans +guava,guavas +guayaba,guayabas +guayabera,guayaberas +gubernaculum,gubernacula +gubernation,gubernations +gub,gubs +gub'mint,gub'mints +gudgeon,gudgeons +gudgeon,gudgeons +Gueber,Guebers +Guebre,Guebres +gue,gues +gue,gues +guelder rose,guelder roses +Guelf,Guelfs +Guelph,Guelphs +guembri,guembris +guenon,guenons +gueparde,guepardes +guerdon,guerdons +guereza,guerezas +gueridon,gueridons +guΓ©ridon,guΓ©ridons +guerilla,guerillas +guerilla traveler,guerilla travelers +guerite,guerites +Guernsey,Guernsey +guernsey,guernseys +Guernsey,Guernseys +Guernsey lily,Guernsey lilies +Guernseyman,Guernseymen +guerrilla,guerrillas +guesser,guessers +guess,guesses +guessing game,guessing games +guessing,guessings +guesstimate,guesstimates +guess warp,guess warps +guest book,guest books +guestbook,guestbooks +guest,guests +guesthouse,guesthouses +guestimate,guestimates +guestlist,guestlists +guestmeal,guestmeals +guest of Her Majesty,guests of Her Majesty +guest of honour,guests of honour +guest room,guest rooms +guestroom,guestrooms +guest rope,guest ropes +guest speaker,guest speakers +guest star,guest stars +guest worker,guest workers +guevedoche,guevedoches +guevi,guevis +guffaw,guffaws +guffawing,guffawings +guffer,guffers +guga,gugas +guggle,guggles +gugglet,gugglets +Guianan slaty antshrike,Guianan slaty antshrikes +guib,guibs +guiche,guiches +guidance,guidances +guidaunce,guidaunces +guideboard,guideboards +guide book,guide books +guidebook,guidebooks +guided missile,guided missiles +guide dog,guide dogs +guide,guides +guidelight,guidelights +guideline,guidelines +guide on the side,guides on the side +guidepost,guideposts +guideress,guideresses +guider,guiders +guidette,guidettes +Guidette,Guidettes +guideway,guideways +guidewheel,guidewheels +guidewire,guidewires +guideword,guidewords +guiding light,guiding lights +guido,guidos +guidon,guidons +guidwillie,guidwillies +guidwilly,guidwillies +guige,guiges +GUI,GUIs +guilder,guilders +guild,guilds +guild-hall,guild-halls +guildhall,guildhalls +guildie,guildies +guildmate,guildmates +guildmember,guildmembers +guillemet,guillemets +guillemot,guillemots +guilloche,guilloches +guillotine,guillotines +guilor,guilors +guilter,guilters +guilt trip,guilt trips +guilty,guilties +guilty pleasure,guilty pleasures +guinea fowl,guinea fowls +guineafowl,guineafowls +guinea,guineas +guinea keet,guinea keets +Guinean,Guineans +guinea pig,guinea pigs +guineapig,guineapigs +guinea-worm,guinea-worms +guinguette,guinguettes +guiniad,guiniads +guipure,guipures +gΓΌira,gΓΌiras +guirland,guirlands +guiro,guiros +guisard,guisards +guisarme,guisarmes +guise,guises +guiser,guisers +guist,guists +guitarfish,guitarfish +guitar,guitars +guitarist,guitarists +guitguit,guitguits +Gujarati numeral,Gujarati numerals +Gujjar,Gujjars +gulag,gulags +gula,gulas,gulae +gular,gulars +gulch,gulches +gulden,guldens +gule,gules +gulet,gulets +gulf,gulfs +gulist,gulists +guller,gullers +gullet,gullets +gulley,gulleys +gull,gulls +gull,gulls +Gull,Gulls +gullion,gullions +gulliver,gullivers +gully,gullies +gully,gullies +gully washer,gully washers +gully-washer,gully-washers +gullywasher,gullywashers +gulofuranoside,gulofuranosides +gulose,guloses +gulper eel,gulper eels +gulper,gulpers +gulp,gulps +gulphe,gulphes +gulph,gulphs +gulping,gulpings +guluronate,guluronates +gum acacia,gum acacias +gumaguma,gumagumas +gum arabic,gums arabic +gumball,gumballs +gumball machine,gumball machines +gumboil,gumboils +gumbo limbo,gumbo limbos +gumboot,gumboots +gumdrop,gumdrops +gum,gums +gum lift,gum lifts +gumline,gumlines +gumma,gummas,gummata +gummer,gummers +gummi bear,gummi bears +gummies,gummies +gummy bear,gummy bears +gummy,gummies +gummy,gummies +gummy shark,gummy sharks +gummy worm,gummy worms +gump,gumps +gum resin,gum resins +gumshoe,gumshoes +gum tree,gum trees +gumtree,gumtrees +guna,gunas +gunarchy,gunarchies +gunbai,gunbais +gunbattle,gunbattles +gunbearer,gunbearers +gunbelt,gunbelts +gunboat diplomacy,gunboat diplomacies +gunboater,gunboaters +gunboat,gunboats +gun-brig,gun-brigs +gun carriage,gun carriages +gun club,gun clubs +gundalow,gundalows +Gundaroo bullock,Gundaroo bullocks +gundelet,gundelets +gundi,gundis +gun dog,gun dogs +gundog,gundogs +gunfighter,gunfighters +gunfight,gunfights +gunflint,gunflints +gun,guns +gunk-hole,gunk-holes +gunkhole,gunkholes +gun line,gun lines +gun lobby,gun lobbies +gunlock,gunlocks +gunmaker,gunmakers +gunman,gunmen +gunmetal-grey,gunmetal-greys +gunnel,gunnels +gunnera,gunneras +gunner,gunners +Gunner,Gunners +gunnery sergeant,gunnery sergeants +gunny,gunnies +gunny sack,gunny sacks +gunnysack,gunnysacks +gunperson,gunpersons +gunpoint,gunpoints +gunpoke,gunpokes +gunport,gunports +gunroom,gunrooms +gunrunner,gunrunners +gunsel,gunsels +gunsel,gunsels +gun shearer,gun shearers +gunship,gunships +gunshot,gunshots +gunsight,gunsights +gunslinger,gunslingers +gunsmithery,gunsmitheries +gunsmith,gunsmiths +gunsmithy,gunsmithies +gun sock,gun socks +gunstick,gunsticks +gunstock,gunstocks +gunstone,gunstones +gunter,gunters +gunter rig,gunter rigs +Gunter's chain,Gunter's chains +Gunter's Chain,Gunter's Chains +Gunter's line,Gunter's lines +Gunter's scale,Gunter's scales +gunwale,gunwales +gunwoman,gunwomen +gunya,gunyas +gunyah,gunyahs +gunzel,gunzels +guotie,guoties +guppie,guppies +guppie,guppies +guppy,guppies +guqin,guqin,guqins +gurbir,gurbirs +gurdwara-goer,gurdwara-goers +gurdwara,gurdwaras +gurge,gurges +gurgitator,gurgitators +gurgle,gurgles +gurgler,gurglers +gurglet,gurglets +gurgling,gurglings +gurgoyle,gurgoyles +gurjan,gurjans +gurjun,gurjuns +Gurkha,Gurkhas +gurlet,gurlets +gurl,gurls +gurmy,gurmies +gurnard,gurnard,gurnards +gurner,gurners +gurnet,gurnets +gurney,gurneys +gurn,gurns +gurning,gurnings +gurrier,gurriers +gurrnki,gurrnkis +gurrybutt,gurrybutts +gurry,gurries +gurt,gurts +guru,gurus +guruji,gurujis +gurukul,gurukuls +guruship,guruships +gusan,gusans +gusher,gushers +gush,gushes +gusla,guslas +gusle,gusles +gusli,guslis +gusset,gussets +gustard,gustards +gustation,gustations +gust,gusts +gustnado,gustnadoes +gutbomb,gutbombs +gutbucket,gutbuckets +gut buster,gut busters +gutbuster,gutbusters +gut factor,gut factors +gut feeling,gut feelings +gutful,gutfuls,gutsful +gut,guts +gutless wonder,gutless wonders +gut reaction,gut reactions +gutshot,gutshots +gutta,guttae +gutter ball,gutter balls +gutterball,gutterballs +gutter,gutters +gutter,gutters +guttermouth,guttermouths +guttersnipe,guttersnipes +guttifer,guttifers +gutting,guttings +guttler,guttlers +guttural,gutturals +guvnah,guvnahs +guvnuh,guvnuhs +Guyanan,Guyanans +Guyanese,Guyanese +guyfriend,guyfriends +guy,guys +guy,guys +Guy,Guys +Guy,Guys +guy line,guy lines +guyline,guylines +guyot,guyots +guy rope,guy ropes +guyrope,guyropes +guy wire,guy wires +guy-wire,guy-wires +guze,guzes +guzla,guzlas +guzunder,guzunders +guzzle,guzzles +guzzler,guzzlers +guzzy,guzzies +gwall,gwalls +gwarda,gwardas +gwarder,gwarders +gwarri,gwarris +GWAS,GWASes +gweduck,gweducks +gweep,gweeps +gweilo,gweilos +gweipo,gweipos +gwiniad,gwiniads +g-word,g-words +gwyniad,gwyniads +gyall,gyalls +gyapik,gyapiks +gybe,gybes +gyil,gyils +gylany,gylanies +gym bunny,gym bunnies +gymgoer,gymgoers +gym,gyms +gymkhana,gymkhanas +gymnal,gymnals +gymnarchid,gymnarchids +gymnarthrid,gymnarthrids +gymnasiarch,gymnasiarchs +gymnasium,gymnasia,gymnasiums +gymnast,gymnasts +gymnastic,gymnastics +gymnastics,gymnastics +gymnatorium,gymnatoriums,gymnatoria +gymnemate,gymnemates +gymnemic acid,gymnemic acids +gymnic,gymnics +gymnitid,gymnitids +gymnoblast,gymnoblasts +gymnocyte,gymnocytes +gymnocytode,gymnocytodes +gymnodont,gymnodonts +gymnogen,gymnogens +gymnophobe,gymnophobes +gymnophthalmid,gymnophthalmids +gymnoplast,gymnoplasts +gymnosophist,gymnosophists +gymnosperm,gymnosperms +gymnospore,gymnospores +gymnotid,gymnotids +gymnotus,gymnotuses +gymnure,gymnures +gymnurid,gymnurids +gym rat,gym rats +gym scooter,gym scooters +gymslip,gymslips +gynaeceum,gynaecea +gynΓ¦ceum,gynΓ¦cea +gynaecium,gynaecia +gynaecocracy,gynaecocracies +gynΓ¦cocracy,gynΓ¦cocracies +gynaecologist,gynaecologists +gynΓ¦cologist,gynΓ¦cologists +gynΓ¦conome,gynΓ¦conomes +gynaecophobia,gynaecophobias +gynΓ¦cophore,gynΓ¦cophores +gynander,gynanders +gynandroblastoma,gynandroblastomas,gynandroblastomata +gynandromorph,gynandromorphs +gynarchy,gynarchies +gyneceum,gynecea +gynecium,gynecia +gynecocracy,gynecocracies +gynecologist,gynecologists +gyne,gynes +gyneocracy,gyneocracies +gynephile,gynephiles +gynie,gynies +gynobase,gynobases +gynocide,gynocides +gynocritic,gynocritics +gynoecium,gynoecia +gyno,gynos +gynoid,gynoids +gynophore,gynophores +gynosphinx,gynosphinxes +gyopik,gyopiks +gype,gypes +gyp,gyps +gyp,gyps +gyp,gyps +gyp,gyps +gyppo,gyppos,gyppoes +gyppy,gyppies +gypsey,gypseys +gypsid,gypsids +gypsie,gypsies +gypsie's kiss,gypsie's kisses +gypsiologist,gypsiologists +gypsisol,gypsisols +gypsophila,gypsophilas +gypsophyte,gypsophytes +gypsoplast,gypsoplasts +gypstack,gypstacks +gypster,gypsters +gypsum,gypsums +gypsy cab,gypsy cabs +gypsy,gypsies +Gypsy,Gypsies +gypsy moth,gypsy moths +gypsy mushroom,gypsy mushrooms +gypsy's kiss,gypsy's kisses +gypsy tart,gypsy tarts +gypsywort,gypsyworts +gyptian,gyptians +gyration,gyrations +gyraton,gyratons +gyrator,gyrators +gyratory,gyratories +gyre,gyres +gyrene,gyrenes +gyrfalcon,gyrfalcons +gyrinid,gyrinids +gyrinocheilid,gyrinocheilids +gyrland,gyrlands +gyroangle,gyroangles +gyroautomorphism,gyroautomorphisms +gyroball,gyroballs +gyrocenter,gyrocenters +gyrocentre,gyrocentres +gyrocentroid,gyrocentroids +gyrocircle,gyrocircles +gyrocompass,gyrocompasses +gyrocopter,gyrocopters +gyrodiagonal,gyrodiagonals +gyrofield,gyrofields +gyrofluid,gyrofluids +gyrofrequency,gyrofrequencies +gyrogeodesic,gyrogeodesics +gyrogonite,gyrogonites +gyrogroup,gyrogroups +gyro,gyros +gyro,gyros +gyroid,gyroids +gyrolaser,gyrolasers +gyromagnetic ratio,gyromagnetic ratios +gyroma,gyromata +gyromidpoint,gyromidpoints +gyron,gyrons +gyroparallelogram,gyroparallelograms +gyroplane,gyroplanes +gyroquadrilateral,gyroquadrilaterals +gyroradius,gyroradii +gyroresonance,gyroresonances +gyrorotation,gyrorotations +gyroscope,gyroscopes +gyroscopic stabilizer,gyroscopic stabilizers +gyrosensor,gyrosensors +gyros,gyros +gyro-stabilizer,gyro-stabilizers +gyrostabilizer,gyrostabilizers +gyrostat,gyrostats +gyrotranslation,gyrotranslations +gyrotriangle,gyrotriangles +gyrotron,gyrotrons +gyrovague,gyrovagues +gyrovector,gyrovectors +gyroviscosity,gyroviscosities +gyrus,gyri,gyruses +gyse,gyses +gyve,gyves +h4x0r,h4x0rs,h4x0rz +haarder,haarders +Haarlemer,Haarlemers +haarscheibe,haarscheiben +Haast's eagle,Haast's eagles +habanera,habaneras +habanero,habaneros +habaΓ±ero,habaΓ±eros +Habbo,Habbos +habeas corpus,habeas corpora +habeas,habeases +habena,habenas +habendum,habendums +habenula,habenulae,habenulΓ¦ +haberdascher,haberdaschers +haberdasher,haberdashers +haberdashery,haberdasheries +haberdine,haberdines +habergeon,habergeons +haberlea,haberleas +hab,habs +habiliment,habiliments +habiline,habilines +habilitation,habilitations +hability,habilities +habitable zone,habitable zones +habitacle,habitacles +habitakle,habitakles +habitance,habitances +habitan,habitans +habitant,habitants +habitat,habitats +habitation,habitations +habitator,habitators +habit,habits +habitual abortion,habitual abortions +habitual aspect,habitual aspects +habitude,habitudes +habitue,habitues +habituΓ©,habituΓ©s +habitus,habitus +haboob,haboobs +Habsburg,Habsburgs +haceck,hacecks +haΔ‹ek,haΔ‹eks +hacek,haceks,hacky +haček,hačeks,hačky +hÑček,hÑčeks,hÑčky +hÑček language,hÑček languages +hacheck,hachecks +hachek,hacheks +hachure,hachures +hacienda,haciendas +hackamore,hackamores +hackaround,hackarounds +hackathon,hackathons +hackbolt,hackbolts +hackbuss,hackbusses +hackee,hackees +hacker,hackers +hackerspace,hackerspaces +hackery,hackeries +hackeysack,hackeysacks +hack,hacks +hack,hacks +hack,hacks +hack,hacks +hackie,hackies +hacking cough,hacking coughs +hacking run,hacking runs +Hackintosh,Hackintoshes +hack job,hack jobs +hackle,hackles +hackler,hacklers +hackman,hackmen +hackmatack,hackmatacks +hackney cab,hackney cabs +hackney carriage,hackney carriages +hackney,hackneys +hackneyman,hackneymen +hack saw,hack saws +hacksaw,hacksaws +hack squat,hack squats +hackster,hacksters +hacktivist,hacktivists +hacky sack,hacky sacks +hackysack,hackysacks +Hacky-Sack,Hacky-Sacks +hacoversed sine,hacoversed sines +hacoversine,hacoversines +hacqueton,hacquetons +haczek,haczeks +hadada ibis,hadada ibises +haddie,haddies +haddock,haddock,haddocks +hadeda,hadedas +hade,hades +hade,hades +Hadhramauti,Hadhramautis +hadith,hadith,hadiths +Hadithist,Hadithists +hadje,hadjes +hadji,hadjis +Hadramauti,Hadramautis +hadron,hadrons +hadronic atom,hadronic atoms +hadronisation,hadronisations +hadrontherapy,hadrontherapies +hadrosaur,hadrosaurs +hadrosaurian,hadrosaurians +hadrosaurid,hadrosaurids +hadrosaurine,hadrosaurines +hadrosauroid,hadrosauroids +hadziid,hadziids +haemacytometer,haemacytometers +haemadipsid,haemadipsids +haemagglutination,haemagglutinations +haemangioblast,haemangioblasts +haemangioblastoma,haemangioblastomas,haemangioblastomata +haemangiofibroma,haemangiofibromas +haemangioma,haemangiomas,haemangiomata +haemangiopericytoma,haemangiopericytomas,haemangiopericytomata +haemangiosarcoma,haemangiosarcomas,haemangiosarcomata +haemantamine,haemantamines +haemapophysis,haemapophyses +haematachometer,haematachometers +haematemesis,haematemeses +hΓ¦matemesis,hΓ¦matemeses +haematid,haematids +haematidrosis,haematidroses +haematinometer,haematinometers +haematoblast,haematoblasts +haematocele,haematoceles +haematocrit,haematocrits +haematocyte,haematocytes +haematodocha,haematodochae +haematologist,haematologists +hΓ¦matologist,hΓ¦matologists +haematoma,haematomas,haematomata +hΓ¦matoma,hΓ¦matomas,hΓ¦matomata +haematometer,haematometers +haematopinid,haematopinids +haematoporphyria,haematoporphyrias +haematoporphyrin,haematoporphyrins +hΓ¦matoporphyrin,hΓ¦matoporphyrins +haematoscope,haematoscopes +haematotoxin,haematotoxins +haematozoon,haematozoa +haemochromatosis,haemochromatoses +haemochromometer,haemochromometers +haemocoel,haemocoels +haemocyte,haemocytes +haemocytoblast,haemocytoblasts +haemocytometer,haemocytometers +haemoderivative,haemoderivatives +haemodiafiltration,haemodiafiltrations +haemodromograph,haemodromographs +haemofiltration,haemofiltrations +haemogamasid,haemogamasids +haemoglobinometer,haemoglobinometers +haemoglobinopathy,haemoglobinopathies +haemogram,haemograms +haemolymph,haemolymphs +haemolysate,haemolysates +haemolysin,haemolysins +haemolysis,haemolyses +haemomanometer,haemomanometers +haemometer,haemometers +haemoperfusion,haemoperfusions +haemophiliac,haemophiliacs +hΓ¦mophiliac,hΓ¦mophiliacs +haemoproteid,haemoproteids +haemoprotein,haemoproteins +haemoptysis,haemoptyses +hΓ¦moptysis,hΓ¦moptyses +haemorrhage,haemorrhages +hΓ¦morrhage,hΓ¦morrhages +haemorrhagic fever,haemorrhagic fevers +haemorrhaging,haemorrhagings +haemorrhoidectomy,haemorrhoidectomies +haemorrhoid,haemorrhoids +hΓ¦morrhoid,hΓ¦morrhoids +haemoscope,haemoscopes +haemostat,haemostats +haemostatic,haemostatics +haemotachometer,haemotachometers +haemotologist,haemotologists +haemotoxin,haemotoxins +haemulid,haemulids +hΓ¦resie,hΓ¦resies +hΓ¦resy,hΓ¦resies +hΓ¦retic,hΓ¦retics +hΓ¦retick,hΓ¦reticks +hΓ¦sitancy,hΓ¦sitancies +hafiz,hafizes,huffaz +hafnate,hafnates +hafter,hafters +haft,hafts +haft,hafts +hagberry,hagberries +hagbut,hagbuts +hagbutter,hagbutters +hagdon,hagdons +hagfish,hagfish,hagfishes +haggard,haggards +haggart,haggarts +haggertyite,haggertyites +haggis,haggises +haggler,hagglers +hag,hags +hag,hags +hagiarchy,hagiarchies +hagiographer,hagiographers +hagiolater,hagiolaters +hagiologist,hagiologists +hagioscope,hagioscopes +haglaz,haglazes +Hagner,Hagners +hagseed,hagseeds +hag-taper,hag-tapers +Hagueite,Hagueites +hagwon,hagwons +ha-ha,ha-has +ha-ha,ha-has +Hahnemannian,Hahnemannians +hahniid,hahniids +haiduc,haiducs +haiduck,haiducks +haiduk,haiduks +Haietlik,Haietliks +haikal,haikals +haik,haiks +haiku,haiku,haikus +hailer,hailers +hail-fellow,hail-fellows +hail fellow well met,hail fellows well met +hail-fellow-well-met,hail-fellow-well-mets,hail-fellows-well-met +hail shaft,hail shafts +hailshaft,hailshafts +hailstone,hailstones +hail storm,hail storms +hailstorm,hailstorms +haint,haints +hairball,hairballs +hairband,hairbands +hairbell,hairbells +hairbird,hairbirds +hairbow,hairbows +hairbreadth,hairbreadths +hair-brush,hair-brushes +hairbrush,hairbrushes +hair bundle,hair bundles +haircloth,haircloths +hair conditioner,hair conditioners +hair curler,hair curlers +hair cut,hair cuts +haircut,haircuts +haircutter,haircutters +hairdo,hairdos +hairdresser,hairdressers +hair dryer,hair dryers +hair-dryer,hair-dryers +hairdryer,hairdryers +hairdryer treatment,hairdryer treatments +hair dye,hair dyes +haire,haires +hair extension,hair extensions +hair gel,hair gels +hairgrip,hairgrips +hairline,hairlines +hair moss,hair mosses +hairnet,hairnets +hairpiece,hairpieces +hair pie,hair pies +hairpin bend,hairpin bends +hairpin curve,hairpin curves +hairpin,hairpins +hairpin turn,hairpin turns +hair roller,hair rollers +hair salon,hair salons +hair-salt,hair-salts +hairsbreadth,hairsbreadths +hair seal,hair seals +hair shirt,hair shirts +hairshirt,hairshirts +hairslide,hairslides +hair space,hair spaces +hairsplitter,hairsplitters +hair-splitting,hair-splittings +hair spray,hair sprays +hairspray,hairsprays +hairspring,hairsprings +hair stone,hair stones +hairstone,hairstones +hairstreak,hairstreaks +hair stroke,hair strokes +hairstyle,hairstyles +hairstyler,hairstylers +hair stylist,hair stylists +hairstylist,hairstylists +hairtail,hairtails +hair tie,hair ties +hair-trigger,hair-triggers +hairworm,hairworms +hairyback,hairybacks +hairy-eared dwarf lemur,hairy-eared dwarf lemurs +hairy eyeball,hairy eyeballs +hairy molly,hairy mollies +hairytail mole,hairytail moles +haitch,haitches +Haitian,Haitians +hajduk,hajduks +haje,hajes +hajib,hajibs +haji,hajis +hajjah,hajjahs +Hajjam,Hajjams,Hajjam +hajj,hajjes +hajji,hajjis +haka,haka +hakama,hakama +hakapik,hakapiks +hakea,hakeas +haked,hakeds +hake,hakes +hake,hakes +hake,hakes,hake +hake's-dame,hake's-dames +haketon,haketons +hakim,hakims +Hakka,Hakkas +Hakkapeliitta,Hakkapeliittas +hako,hakos +hakurei,hakureis +halacha,halachot,halachoth,halachos +Halacha,Halachot,Halachoth,Halachos,Halachas +halach uinic,halach uinics,halach uinicil +halakha,halakhot,halakhoth,halakhos +halant,halants +halapeno,halapenos,halapenoes +halaqa,halaqas +halaqah,halaqahs +halarachnid,halarachnids +halatopolymer,halatopolymers +halato-telechelic polymer,halato-telechelic polymers +halau,halaus +halberd,halberds +halberdier,halberdiers +halbert,halberts +halcampid,halcampids +halcyon,halcyons +halcyonid,halcyonids +halcyonoid,halcyonoids +haleciid,haleciids +halecret,halecrets +halesia,halesias +half adder,half adders +half ass,half asses +half aunt,half aunts +half-back,half-backs +halfback,halfbacks +half-baptism,half-baptisms +half bath,half baths +half bathroom,half bathrooms +halfbeak,halfbeaks +half birthday,half birthdays +half-birthday,half-birthdays +half blood,half bloods +half-boot,half-boots +half-break,half-breaks +half-breed,half-breeds +halfbreed,halfbreeds +halfbrother,halfbrothers +half brother,half brothers,half brethren +half-brother,half-brothers,half-brethren +half brother-in-law,half brothers-in-law +half cadence,half cadences +half-caf,half-cafs +half-caste,half-castes +half cell,half cells +half-cell,half-cells +half-century,half-centuries +half-chance,half-chances +halfcourt,halfcourts +half-court line,half-court lines +half-court violation,half-court violations +half cousin,half cousins +half-cousin,half-cousins +half-crown,half-crowns +halfdeck,halfdecks +half-diminished seventh chord,half-diminished seventh chords +half-dollar,half-dollars +half dozen,half dozens +half-elf,half-elves +halfendeal,halfendeals +half-equation,half-equations +halfer,halfers +half forward,half forwards +half glove,half gloves +half-god,half-gods +halfgod,halfgods +half-halt,half-halts +half,halves +half hitch,half hitches +half-hitch,half-hitches +half-hour,half-hours +half-integer,half-integers +half-island,half-islands +half-jacket,half-jackets +half-landing,half-landings +half-life,half-lives +halflife,halflives +half-line,half-lines +halfling,halflings +half-long vowel,half-long vowels +half marathon,half marathons +half measure,half measures +half-measure,half-measures +half-metal,half-metals +halfmonth,halfmonths +half-moon,half-moons +half nelson,half nelsons +half nephew,half nephews +half-nephew,half-nephews +half niece,half nieces +half-niece,half-nieces +half-noble,half-nobles +half note,half notes +half-open file,half-open files +half-open interval,half-open intervals +half orphan,half orphans +halfpace,halfpaces +halfpenny,halfpennies,halfpence +halfpennyworth,halfpennyworths +halfpike,halfpikes +half-pint,half-pints +half-pipe,half-pipes +halfpipe,halfpipes +halfplane,halfplanes +half-ray,half-rays +half-reaction,half-reactions +half rest,half rests +half rhyme,half rhymes +Halfrican,Halfricans +halfro,halfros +half-shower,half-showers +half sibling,half siblings +half-sibling,half-siblings +half sister,half sisters +half-sister,half-sisters +halfsister,halfsisters +half sister-in-law,half sisters-in-law +half sovereign,half sovereigns +half space,half spaces +halfspace,halfspaces +half stack,half stacks +half staff,half staffs +half-staff,half-staffs +halfstaff,halfstaffs +half step,half steps +half-step,half-steps +half time,half times +half-time,half-times +halftime,halftimes +half title,half titles +half-title,half-titles +halftone,halftones +half-tracker,half-trackers +half-track,half-tracks +half-truth,half-truths +half-uncle,half-uncles +half viaduct,half viaducts +half virgin,half virgins +half volley,half volleys +half-volley,half-volleys +halfwave,halfwaves +halfway house,halfway houses +half-width,half-widths +halfwidth,halfwidths +half-wit,half-wits +halfwit,halfwits +halfword,halfwords +half-year,half-years +halfyear,halfyears +halibut,halibuts,halibut +halichondrid,halichondrids +halichondriid,halichondriids +halichondrin,halichondrins +halicore,halicores +halictid,halictids +halictophagid,halictophagids +halide,halides +halid,halids +halidom,halidoms +halier,haliers +Haligonian,Haligonians +halimococcid,halimococcids +haliotid,haliotids +haliplid,haliplids +halirenium,halireniums +halirift,halirifts +halisaurine,halisaurines +halitosis,halitoses +halk,halks +halkieriid,halkieriids +hallage,hallages +hallan,hallans +Hall effect,Hall effects +halleluiah,halleluiahs +halleluja,hallelujas +hallelujah,hallelujahs +hall,halls +halliard,halliards +hallier,halliers +halligan,halligans +hallion,hallions +hallmark,hallmarks +Hallmark holiday,Hallmark holidays +Hallmark moment,Hallmark moments +hallmate,hallmates +hallmote,hallmotes +hall of fame,halls of fame +hall of mirrors,halls of mirrors +hall of residence,halls of residence +hall of shame,halls of shame +hallo,hallos +halloo,halloos +hallooing,hallooings +halloumi,halloumis +Halloweener,Halloweeners +Hallowe'en,Hallowe'ens +Halloween,Halloweens +hallow,hallows +hallow,hallows +hall pass,hall passes +hallstand,hallstands +hallucination,hallucinations +hallucinator,hallucinators +hallucinaut,hallucinauts +hallucinogen,hallucinogens +hallucinogenic,hallucinogenics +hallux,halluces,halluxes +hallway,hallways +halma,halmas +halmas,halmases +halmote,halmotes +haloacetate,haloacetates +haloacetylene,haloacetylenes +haloacid,haloacids +haloalcohol,haloalcohols +haloalkaliphile,haloalkaliphiles +haloalkane,haloalkanes +haloalkene,haloalkenes +haloalkenyl,haloalkenyls +haloalkyl,haloalkyls +haloalkyne,haloalkynes +haloamide,haloamides +haloarchaeon,haloarchaeons +haloarene,haloarenes +haloaromatic,haloaromatics +haloaryl,haloaryls +halobacterium,halobacteria +halobenzene,halobenzenes +halobiont,halobionts +haloborane,haloboranes +haloboration,haloborations +haloboronic acid,haloboronic acids +halocarbon,halocarbons +halocline,haloclines +halocyclization,halocyclizations +halo effect,halo effects +haloenolate,haloenolates +haloenol,haloenols +haloenone,haloenones +haloenzyme,haloenzymes +haloethylene,haloethylenes +haloform,haloforms +haloform reaction,haloform reactions +halofuran,halofurans +halogen,halogens +halogen lamp,halogen lamps +halogenoderma,halogenodermas +halogen oven,halogen ovens +halogen stove,halogen stoves +halo,halos,haloes +halohydrin,halohydrins +halohydroxylation,halohydroxylations +haloid,haloids +haloimide,haloimides +halomancy,halomancies +halometer,halometers +halomethane,halomethanes +halomethyl,halomethyls +halon,halons +halonium,haloniums +halonium ion,halonium ions +halo nucleus,halo nuclei +halonucleus,halonuclei +haloperoxidase,haloperoxidases +halophenol,halophenols +halophila,halophilas +halophile,halophiles +halophil,halophils +halophosphate,halophosphates +halophosphine,halophosphines +halophyte,halophytes +haloquinoline,haloquinolines +haloritid,haloritids +halosaurid,halosaurids +haloscope,haloscopes +halosilane,halosilanes +halosugar,halosugars +halosulfite,halosulfites +halpace,halpaces +halse,halses +halse,halses +halseman,halsemen +halseny,halsenies +halser,halsers +halster,halsters +haltere,halteres +halter,halters +halter,halters +halterini,halterinis +halterkini,halterkinis +halterneck,halternecks +halter-sack,halter-sacks +halter top,halter tops +halt,halts +halt,halts +halting site,halting sites +halurgist,halurgists +halvarine,halvarines +halver,halvers +halwe,halwes +halyard,halyards +hamadryad,hamadryads +hamadryas,hamadryases +hamal,hamals +hamamelid,hamamelids +hamamelidid,hamamelidids +hamamelis,hamamelises +ham-and-egger,ham-and-eggers +hamantasch,hamantaschen +hamantash,hamantashen +hamartoma,hamartomas,hamartomata +hamate bone,hamate bones +hamate,hamates +hamathecium,hamathecia +hambone,hambones +hamburger,hamburgers +Hamburger,Hamburgers +hamburg steak,hamburg steaks +hame,hames +hame,hames +hame,hames +hame,hames +hamentasch,hamentaschen +hamentash,hamentashen +hamerkop,hamerkops +hamesecken,hameseckens +hamesucken,hamesuckens +hamfat,hamfats +hamfatter,hamfatters +ham,hams +ham,hams +ham hock,ham hocks +hamilton,hamiltons +Hamilton,Hamiltons +Hamiltonian cycle,Hamiltonian cycles +Hamiltonian,Hamiltonians +Hamiltonian,Hamiltonians +Hamiltonian path,Hamiltonian paths +haminoeid,haminoeids +Hamite,Hamites +hamlet,hamlets +hammal,hammals +hammam,hammams +hammer beam,hammer beams +hammercloth,hammercloths +hammer dulcimer,hammer dulcimers +hammered dulcimer,hammered dulcimers +hammerer,hammerers +hammer,hammers +Hammer,Hammers +hammerhead,hammerheads +hammer headline,hammer headlines +hammerhead ribozyme,hammerhead ribozymes +hammerhead shark,hammerhead sharks +hammering,hammerings +hammerkop,hammerkops +hammerlock,hammerlocks +hammerman,hammermen +hammermill,hammermills +hammer-on,hammer-ons +hammersmith,hammersmiths +hammerstone,hammerstones +hammer toe,hammer toes +hammertoe,hammertoes +hammock,hammocks +Hammond organ,Hammond organs +hammy,hammies +hamper,hampers +hamper,hampers +H&P,H&Ps +Hampshirite,Hampshirites +hampster,hampsters +Hamptonian,Hamptonians +hamsa,hamsas +ham sandwich,ham sandwiches +ham-sandwich,ham-sandwiches +hamsandwich,hamsandwiches +ham shank,ham shanks +hamster,hamsters +hamster wheel,hamster wheels +hamstringer,hamstringers +hamstring,hamstrings +hamulus,hamuli +hamza,hamzas +hanamachi,hanamachis,hanamachi +hanaper,hanapers +hanap,hanaps +hanatoxin,hanatoxins +hanbok,hanboks +hance,hances +Han character,Han characters +hanch,hanches +hanch,hanches +handakuten,handakuten +hand antiseptic,hand antiseptics +hand axe,hand axes +handbag,handbags +handballer,handballers +handbarrow,handbarrows +handbasin,handbasins +handbasket,handbaskets +handbell,handbells +handbike,handbikes +hand bill,hand bills +handbill,handbills +handbook,handbooks +handbra,handbras +handbrake,handbrakes +handbrake turn,handbrake turns +handbreadth,handbreadths +hand bridge,hand bridges +handcar,handcars +hand cart,hand carts +hand-cart,hand-carts +handcart,handcarts +handclap,handclaps +handclasp,handclasps +handcloth,handcloths +handcops,handcopses +handcrafter,handcrafters +handcraft,handcrafts +handcraftsman,handcraftsmen +handcraftsmanship,handcraftsmanships +handcuff artist,handcuff artists +handcuff,handcuffs +handcycle,handcycles +hand dryer,hand dryers +hand-egg,hand-eggs +hande,handes +hander,handers +hand fan,hand fans +handfast,handfasts +handfasting,handfastings +handfish,handfishes +handflower,handflowers +handful,handfuls,handsful +handfull,handfulls +handgonne,handgonnes +hand grenade,hand grenades +handgrip,handgrips +handguard,handguards +handgun,handguns +hand,hands +hand-held,hand-helds +handheld,handhelds +handhold,handholds +hand-hole,hand holes +handicap,handicaps +handicapped,handicappeds +handicapped permit,handicapped permits +handicapped sign,handicapped signs +handicapped space,handicapped spaces +handicapper,handicappers +handicrafter,handicrafters +handicraft,handicrafts +handicraftman,handicraftmen +handi-craftsman,handi-craftsmen +handicraftsman,handicraftsmen +handie talkie,handie talkies +handi,handis +handiphobia,handiphobias +handiron,handirons +hand jive,hand jives +hand job,hand jobs +handjob,handjobs +handkercher,handkerchers +handkerchief code,handkerchief codes +handkerchief,handkerchiefs +handknit,handknits +handlamp,handlamps +handlanger,handlangers +handlebar,handlebars +handlebar moustache,handlebar moustaches +handlebar mustache,handlebar mustaches +handlebody,handlebodies +handle,handles +handle,handles +handler,handlers +handling,handlings +handlist,handlists +hand log,hand logs +handmaiden,handmaidens +handmaid,handmaids +handmark,handmarks +hand-me-down,hand-me-downs +handmill,handmills +hand net,hand nets +hand-off,hand-offs +handoff,handoffs +handout,handouts +hand-over,hand-overs +handover,handovers +handpass,handpasses +hand pay,hand pays +handphone,handphones +handpiece,handpieces +hand pie,hand pies +hand plant,hand plants +handplant,handplants +hand press,hand presses +handprint,handprints +handpump,handpumps +hand puppet,hand puppets +handrail,handrails +handroll,handrolls +hand sanitizer,hand sanitizers +hand saw,hand saws +handsaw,handsaws +handsbreadth,handsbreadths +handscroll,handscrolls +handsel,handsels +handset,handsets +handsfree,handsfrees +handshake,handshakes +handshaking,handshakings +hand shandy,hand shandies +handshape,handshapes +handshoe,handshoes,handshoon +handspan,handspans +handspike,handspikes +hand-spring,hand-springs +handspring,handsprings +handstamp,handstamps +handstand,handstands +handstroke,handstrokes +hand tab,hand tabs +hand tool,hand tools +handtool,handtools +hand towel,hand towels +handtowel,handtowels +hand truck,hand trucks +hand trunk,hand trunks +handwarmer,handwarmers +handwash,handwashes +handwave,handwaves +hand waving,hand wavings +handweaver,handweavers +handwell,handwells +handwheel,handwheels +handwhile,handwhiles +hand-work,hand-works +handwork,handworks +handwringer,handwringers +handwrit,handwrits +handyman,handymen +handyman's special,handyman's specials +handyperson,handypersons,handypeople +handystroke,handystrokes +handy talkie,handy talkies +handywoman,handywomen +hangar,hangars +hangar queen,hangar queens +hangar-queen,hangar-queens +hangashore,hangashores +hangbird,hangbirds +hang-by,hang-bies +hang-dog,hang-dogs +hangdog,hangdogs +hanger,hangers +hanger-on,hangers-on +hanger steak,hanger steaks +hang fire,hang fires +hang glider,hang gliders +hang-glider,hang-gliders +Hang,Hanghang +hang,hangs +hangi,hangis,hangi +hanging ball,hanging balls +hanging basket,hanging baskets +hanging chad,hanging chads +hanging loop,hanging loops +hanging offence,hanging offences +hanging offense,hanging offenses +hanging paragraph,hanging paragraphs +hanging participle,hanging participles +hanging sleeve,hanging sleeves +hanging tree,hanging trees +hanging wall,hanging walls +hangingwall,hangingwalls +hang-loose sign,hang-loose signs +hangman's noose,hangman's nooses +hangnail,hangnails +hangnest,hangnests +hangout,hangouts +hangover,hangovers +hangtag,hangtags +hang time,hang times +hangtime,hangtimes +hang-up,hang-ups +hangup,hangups +hanimal,hanimals +hanjaeo,hanjaeo +hanja,hanja +hankerer,hankerers +hankering,hankerings +hank,hanks +hankie,hankies +hanky,hankies +Hanoian,Hanoians +Hanoverian,Hanoverians +Hansard,Hansards +Hanseatic city,Hanseatic cities +hanse,hanses +hanse,hanses +Hanse,Hanses +hansel,hansels +hanshaw,hanshaws +Hansom cab,Hansom cabs +hansom,hansoms +Hanswurst,Hanswursts +hantavirus,hantaviruses +ha'nt,ha'nts +hantle,hantles +hanukkiah,hanukkiahs +hanuman,hanumans +hanzi,hanzi +Hanzi,Hanzi +hΓ o,hΓ o +haole,haoles +haor,haors +hapa,hapas +hapalindole,hapalindoles +hapalodectid,hapalodectids +hapantotype,hapantotypes +hapax,hapaxes +hapax legomenon,hapax legomena +ha'penny,ha'pennies,ha'pence +hap,haps +hap,haps +hap-harlot,hap-harlots +haphtarah,haphtarahs +Hapke parameter,Hapke parameters +hapkido,hapkidos +haploblock,haploblocks +haploceratid,haploceratids +haplochromine,haplochromines +haplodiploid,haplodiploids +haplography,haplographies +haplogroup,haplogroups +haploid,haploids +haplon,haplons +haplorhine,haplorhines +haplorrhine,haplorrhines +haploscope,haploscopes +haplosis,haploses +haplostele,haplosteles +haplotype,haplotypes +ha'p'orth,ha'p'orth,ha'p'orths +ha'porth,ha'porths +hap'orth,hap'orths +happenchance,happenchances +happener,happeners +happening,happenings +happenstance,happenstances +happi,happis +happy bunny,happy bunnies +happy camper,happy campers +Happy Christmas,Happy Christmases +happy-clappy,happy-clappies +happy dance,happy dances +happy ending,happy endings +happy hour,happy hours +happy little vegemite,happy little vegemites +happy medium,happy mediums +happy pill,happy pills +happy slap,happy slaps +happy slapper,happy slappers +happy snap,happy snaps +happy trail,happy trails +Hapsburg,Hapsburgs +hapsidopareiontid,hapsidopareiontids +hapten,haptens +haptenization,haptenizations +haptic interface,haptic interfaces +hapticity,hapticities +haptoglobin,haptoglobins +haptonema,haptonemas,haptonemata +haptophyte,haptophytes +haptor,haptors +hapuku,hapukus +haquebut,haquebuts +haram,harams +harami,haramis +haramzada,haramzadas +harang,harangs +harangue,harangues +haranguer,haranguers +haras,haras +harasser,harassers +harassment,harassments +harbinger,harbingers +harborage,harborages +harborer,harborers +harborfront,harborfronts +harbor gasket,harbor gaskets +harbor,harbors +harbor master,harbor masters +harbormaster,harbormasters +harborscape,harborscapes +harbor seal,harbor seals +harbourage,harbourages +harbourer,harbourers +harbourfront,harbourfronts +harbour,harbours +harbourmaster,harbourmasters +harbour porpoise,harbour porpoises +harbourscape,harbourscapes +harbour seal,harbour seals +harbourside,harboursides +harchitect,harchitects +hard-arse,hard-arses +hard-ass,hard-asses +hardass,hardasses +hardback,hardbacks +hardbake,hardbakes +hardballer,hardballers +hardball,hardballs +hardbeam,hardbeams +hard-bill,hard-bills +hardbill,hardbills +hard candy,hard candies +hard case,hard cases +hard c,hard c's +hard coding,hard codings +hard-coding,hard-codings +hard copy,hard copies +hardcopy,hardcopies +hard count,hard counts +hardcourt,hardcourts +hardcover,hardcovers +hard disc drive,hard disc drives +hard disc,hard discs +hard disk drive,hard disk drives +hard disk,hard disks +harddisk,harddisks +hard drive,hard drives +harddrive,harddrives +hard drop,hard drops +hardel,hardels +hardener,hardeners +hardening,hardenings +harder,harders +Harderian gland,Harderian glands +hardfern,hardferns +hard freeze,hard freezes +hard gainer,hard gainers +hard g,hard gs +hardground,hardgrounds +hard,hards +hard hat,hard hats +hardhat,hardhats +hardhead,hardheads +hardiment,hardiments +hardline,hardlines +hard-liner,hard-liners +hardliner,hardliners +hardman,hardmen +hard maple,hard maples +hard mutation,hard mutations +hardness,hardnesses +hard nut to crack,hard nuts to crack +hardock,hardocks +hard-on,hard-ons +hardon,hardons +hard palate,hard palates +hard pill to swallow,hard pills to swallow +hardpoint,hardpoints +hard redirect,hard redirects +hardscape,hardscapes +hard science fiction,hard science fictions +hard science,hard sciences +hard sell,hard sells +hard-sell,hard-sells +hardship,hardships +hard shoulder,hard shoulders +hard sign,hard signs +hard skill,hard skills +hard space,hard spaces +hardsport,hardsports +hard start,hard starts +hard stop,hard stops +hardtack,hardtack,hardtacks +hardtail,hardtails +hardtop,hardtops +hardware description language,hardware description languages +hardwareman,hardwaremen +hardware store,hardware stores +hardy,hardies +hardy hole,hardy holes +harebell,harebells +harefoot,harefeet +hare,hares +harehound,harehounds +Hare Krishna,Hare Krishnas +hareld,harelds +harem,harems +haremlik,haremliks +hare scramble,hare scrambles +Harezmian,Harezmians +haricot bean,haricot beans +haricot,haricots +haricot,haricots +harier,hariers +harikatha,harikathas +hariolation,hariolations +harissa,harissas +harkara,harkaras +Harki,Harkis +harle,harles +Harlemer,Harlemers +Harlemite,Harlemites +Harlem sunset,Harlem sunsets +harlequinade,harlequinades +harlequin duck,harlequin ducks +harlequin,harlequins +Harley Davidson,Harley Davidsons +Harley-Davidson,Harley-Davidsons +Harley,Harleys +harl,harls +harlot,harlots +harmattan,harmattans +harm,harms +harmonica,harmonicas +harmonic analyzer,harmonic analyzers +harmonic function,harmonic functions +harmonic,harmonics +harmonicist,harmonicists +harmonic mean,harmonic means +harmonic minor scale,harmonic minor scales +harmonic number,harmonic numbers +harmonicon,harmonicons +harmonic oscillator,harmonic oscillators +harmonic tremor,harmonic tremors +harmonisation,harmonisations +harmoniser,harmonisers +harmonist,harmonists +Harmonist,Harmonists +Harmonite,Harmonites +harmonium,harmoniums +harmonization,harmonizations +harmonizer,harmonizers +harmonograph,harmonographs +harmony,harmonies +harmost,harmosts +harm's way,harm's ways +harnass,harnasses +harness bend,harness bends +harness cask,harness casks +harnesser,harnessers +harness,harnesses +harness saddle,harness saddles +harn-pan,harn-pans +harnpan,harnpans +harnt,harnts +Harold,Harolds +harpagiferid,harpagiferids +harpagon,harpagons +harp closure,harp closures +harper,harpers +Harperite,Harperites +harp,harps +harpid,harpids +harping iron,harping irons +harpist,harpists +harpooneer,harpooneers +harpooner,harpooners +harpoon,harpoons +harpress,harpresses +harp seal,harp seals +harp shackle,harp shackles +harpsichon,harpsichons +harpsichord,harpsichords +harpsichordist,harpsichordists +harpy bat,harpy bats +harpy eagle,harpy eagles +harpy,harpies +harquebuse,harquebuses +harquebus,harquebuses,harquebusses +harquebuze,harquebuzes +Harrapan,Harrapans +harras,harrases +harre,harres +harr,harrs +harr,harrs +harridan,harridans +harrier,harriers +harrimaniid,harrimaniids +Harrington,Harringtons +Harrovian,Harrovians +harrower,harrowers +harrow,harrows +harrowing of hell,harrowings of hell +harrumpher,harrumphers +harrumph,harrumphs +harse,harses +harshness,harshnesses +hartal,hartals +hartbeest,hartbeests +hartebeest,hartebeest,hartebeests +hart,harts +hart,harts +harth,harths +Hartle-Hawking state,Hartle-Hawking states +Hartlepudlian,Hartlepudlians +hartmannellid,hartmannellids +Hartogs number,Hartogs numbers +hartshorn,hartshorns +hartwort,hartworts +harumph,harumphs +haruspex,haruspices +haruspication,haruspications +Harvard comma,Harvard commas +Harvard format,Harvard formats +Harvardian,Harvardians +harvester,harvesters +harvest festival,harvest festivals +Harvest Festival,Harvest Festivals +harvestfish,harvestfishes,harvestfish +harvest,harvests +harvesting,harvestings +harvestman,harvestmen +harvest mite,harvest mites +harvest moon,harvest moons +harvest mouse,harvest mice +harvest time,harvest times +Harvey Wallbanger,Harvey Wallbangers +has-been,has-beens +hasbian,hasbians +hasenpfeffer,hasenpfeffers +hashbang,hashbangs +hash brown,hash browns +hash-brown,hash-browns +hashbrown,hashbrowns +hash brownie,hash brownies +hashbrownie,hashbrownies +hash code,hash codes +hashcode,hashcodes +hash collision,hash collisions +Hashemite,Hashemites +hasher,hashers +hash function,hash functions +hash,hashes +hash house,hash houses +hashhouse,hashhouses +hashkey,hashkeys +hash map,hash maps +hashmap,hashmaps +hashpipe,hashpipes +hash sign,hash signs +hash slinger,hash slingers +hash-slinger,hash-slingers +hash table,hash tables +hashtable,hashtables +hashtag,hashtags +hash trail,hash trails +Hasidean,Hasideans +hask,hasks +haslet,haslets +Hasmonean,Hasmoneans +hasp,hasps +hassagay,hassagays +hassaguay,hassaguays +Hasse diagram,Hasse diagrams +Hassid,Hassidim,Hassids +Hassidic Jew,Hassidic Jews +hassle,hassles +hassock,hassocks +hasta,hastas +hastener,hasteners +hastening,hastenings +hasty pudding,hasty puddings +hasty-pudding,hasty-puddings +hasubanan,hasubanans +HA-tag,HA-tags +hatband,hatbands +hat block,hat blocks +hatbox,hatboxes +hatchback,hatchbacks +hatchboat,hatchboats +hatcheck,hatchecks +hatcheck,hatchecks +hatchek,hatcheks +hatcheler,hatchelers +hatchel,hatchels +hatcher,hatchers +hatchery,hatcheries +hatchet,hatchets +hatchet job,hatchet jobs +hatchet man,hatchet men +hatchetman,hatchetmen +hatch,hatches +hatching,hatchings +hatchling,hatchlings +hatchman,hatchmen +hatchment,hatchments +hatchure,hatchures +hatchway,hatchways +hatchwork,hatchworks +hate crime,hate crimes +hatee,hatees +hatefest,hatefests +hate figure,hate figures +hate fuck,hate fucks +hate-fuck,hate-fucks +hatefuck,hatefucks +hatelisting,hatelistings +hatemonger,hatemongers +hater,haters +hatesite,hatesites +hatful,hatfuls,hatsful +hat,hats +hathel,hathels +hathen,hathens +hatmaker,hatmakers +hatnote,hatnotes +hat parade,hat parades +hatpin,hatpins +hat rack,hat racks +hat-rack,hat-racks +hatrack,hatracks +hatred,hatreds +Hatschek's pit,Hatschek's pits +hat stand,hat stands +hat-stand,hat-stands +hatstand,hatstands +hat switch,hat switches +hatter,hatters +Hatter,Hatters +hatteria,hatterias +Hattie leaf,Hattie leaves +hat tip,hat tips +hatti-sherif,hatti-sherifs +hattock,hattocks +hat tournament,hat tournaments +hat tree,hat trees +hattree,hattrees +hat trick,hat tricks +hat-trick,hat-tricks +hattrick,hattricks +haubergeon,haubergeons +hauberk,hauberks +hauch,hauchs +haugh,haughs +haulage,haulages +haulee,haulees +hauler,haulers +Hauler,Haulers +haul,hauls +haulier,hauliers +haum,haums +haunch bone,haunch bones +haunch,haunches +Haunebu,Haunebus +haunted house,haunted houses +hauntee,hauntees +haunter,haunters +haunt,haunts +haunting,hauntings +Hausdorff content,Hausdorff contents +Hausdorff dimension,Hausdorff dimensions +Hausdorff metric,Hausdorff metrics +Hausdorff space,Hausdorff spaces +hausen,hausens +hausfrau,hausfraus,hausfrauen +Hausfrau,Hausfraus,Hausfrauen +hausmannite,hausmannites +hausse,hausses +Haussmannization,Haussmannizations +haustellate,haustellates +haustellum,haustella +haustoriid,haustoriids +haustorium,haustoria +haustrum,haustra +hautbois,hautbois +hautboy,hautboys +hautboyist,hautboyists +hauyne,hauynes +haΓΌyne,haΓΌynes +hauynite,hauynites +Havana Brown,Havana Browns +Havanan,Havanans +Havanese,Havaneses +havan,havans +have-a-go hero,have-a-go heroes +haveli,havelis +havelock,havelocks +havener,haveners +haven,havens +have not,have nots +have-not,have-nots +havercosine,havercosines +haver,havers +haver,havers +haversack,haversacks +haversed sine,haversed sines +Haversian canal,Haversian canals +Haversian system,Haversian systems +haversine,haversines +havier,haviers +havildar,havildars +having,havings +Hawaiian goose,Hawaiian geese +Hawai`ian,Hawai`ians +Hawai'ian,Hawai'ians +HawaiΚ»ian,HawaiΚ»ians +Hawaiian,Hawaiians +Hawaiian hawk,Hawaiian hawks +Hawaiian shirt,Hawaiian shirts +hawaiite,hawaiites +hawberk,hawberks +Hawcubite,Hawcubites +hawfinch,hawfinches +haw-haw,haw-haws +haw,haws +haw,haws +Hawiye,Hawiyes,Hawiye +hawkbill,hawkbills +hawkbit,hawkbits +hawk boy,hawk boys +hawker,hawkers +hawker,hawkers +hawk-eye,hawk-eyes +hawkeye,hawkeyes +hawkfish,hawkfish,hawkfishes +hawk,hawks +hawk,hawks +hawk,hawks +hawkie,hawkies +hawkling,hawklings +hawk moth,hawk moths +hawkmoth,hawkmoths +hawk nose,hawk noses +hawk-nose,hawk-noses +hawknose,hawknoses +hawk owl,hawk owls +hawk-owl,hawk-owls +hawksbill,hawksbills +hawksbill turtle,hawksbill turtles +hawkshaw,hawkshaws +Hawkubite,Hawkubites +hawm,hawms +hawsehole,hawseholes +hawse pipe,hawse pipes +hawse-pipe,hawse-pipes +hawsepipe,hawsepipes +hawser,hawsers +hawser iron,hawser irons +hawser-laid rope,hawser-laid ropes +HAWT,HAWTs +Hawthorne effect,Hawthorne effects +hawthorn,hawthorns +hax0r,hax0rs +haxor,haxors +haxx0r,haxx0rs +haxxor,haxxors +Hayasan,Hayasans +haybale,haybales +haybird,haybirds +haycation,haycations +haycock,haycocks +hay devil,hay devils +hayduck,hayducks +hayduk,hayduks +haye,hayes +haye,hayes +Hayekian,Hayekians +hayfield,hayfields +Hayflick limit,Hayflick limits +hayfork,hayforks +hay,hays +hayhead,hayheads +haylift,haylifts +hayloft,haylofts +haymaker,haymakers +haymow,haymows +hayrack,hayracks +hayrake,hayrakes +hayrick,hayricks +hay ride,hay rides +hayride,hayrides +hayshed,haysheds +haystack,haystacks +haystalk,haystalks +Haytian,Haytians +hay wagon,hay wagons +hay wain,hay wains +haywain,haywains +hayward,haywards +haywire,haywires +hazan,hazans +hazarder,hazarders +hazard,hazards +hazardous material,hazardous materials +hazard reduction burn,hazard reduction burns +hazee,hazees +hazel grouse,hazel grouses +hazelnut,hazelnuts +hazer,hazers +hazing,hazings +hazle,hazles +hazmat,hazmats +HBA,HBAs +h bar,h bars +H-bomb,H-bombs +HCA,HCAs +HCFC,HCFCs +HCl scrubber,HCl scrubbers +HDD,HDDs +headache,headaches +headake,headakes +headband,headbands +headbanger,headbangers +head blight,head blights +headboard,headboards +headborough,headboroughs +headborrow,headborrows +headbox,headboxes +head boy,head boys +head butt,head butts +head-butt,head-butts +headbutt,headbutts +head case,head cases +head-case,head-cases +headcase,headcases +head cheese,head cheeses +headcheese,headcheeses +headcloth,headcloths +head coach,head coaches +head cold,head colds +headcollar,headcollars +head cook and bottle washer,head cooks and bottle washers,head cook and bottle washers +head cook and bottle-washer,head cooks and bottle-washers,head cook and bottle-washers +head count,head counts +headcount,headcounts +headcover,headcovers +head covering,head coverings +head crash,head crashes +headdress,headdresses +head-emptier,head-emptiers +headend,headends +header file,header files +header,headers +head fake,head fakes +headfish,headfishes,headfish +headfold,headfolds +headfuck,headfucks +headful,headfuls,headsful +head game,head games +headgate,headgates +headgear,headgears +head girl,head girls +head group,head groups +headgroup,headgroups +head honcho,head honchos +head house,head houses +headhouse,headhouses +head hunter,head hunters +head-hunter,head-hunters +headhunter,headhunters +headhunting,headhuntings +heading,headings +head-kerchief,head-kerchiefs +headkerchief,headkerchiefs +headlamp,headlamps +headland,headlands +headlap,headlaps +headlight,headlights +headlighting,headlightings +head line,head lines +headline,headlines +headliner,headliners +head linesman,head linesmen +headling,headlings +headlock,headlocks +headloss,headlosss +head louse,head lice +head man,head men +headman,headmen +headmark,headmarks +headmaster,headmasters +headmate,headmates +headmistress,headmistresses +headmistress-ship,headmistress-ships +headmistressship,headmistressships +headmouth,headmouths +headnote,headnotes +head office,head offices +head of government,heads of government +head of hair,heads of hair +head of household,heads of household +head of state,heads of state +head of steam,heads of steam +head-on collision,head-on collisions +head-on,head-ons +headpan,headpans +headphone concert,headphone concerts +headphone,headphones +headpiece,headpieces +headpin,headpins +headprint,headprints +headquarters,headquarters +headrace,headraces +headrest,headrests +head rhyme,head rhymes +headright,headrights +head roll,head rolls +headrope,headropes +headrush,headrushes +head rush,head rushs +headsail,headsails +head scarf,head scarves +headscarf,headscarves +head scratcher,head scratchers +head-scratcher,head-scratchers +headset,headsets +headshake,headshakes +headshell,headshells +headship,headships +head shop,head shops +headshop,headshops +headshot,headshots +head-shrinker,head-shrinkers +headshrinker,headshrinkers +headshunt,headshunts +headslapper,headslappers +headsman,headsmen +heads of agreement,heads of agreement +heads of the bill,heads of the bills +heads or tails,heads or tails +headspace,headspaces +headspin,headspins +headspring,headsprings +headstall,headstalls +headstamp,headstamps +headstand,headstands +head start,head starts +headstart,headstarts +headstead,headsteads +headstock,headstocks +headstone,headstones +headstream,headstreams +headstripe,headstripes +heads-up display,heads-up displays +heads-up,heads-up,heads-ups +heads up,heads ups +head tax,head taxes +head teacher,head teachers +headteacher,headteachers +head-the-ball,head-the-balls +headtire,headtires +head trip,head trips +headtube,headtubes +head-turner,head-turners +head-up display,head-up displays +headwaiter,headwaiters +headwall,headwalls +headwark,headwarks +headwater,headwaters +headwind,headwinds +headword,headwords +headworks,headworks +headwound,headwounds +headwrap,headwraps +headyard,headyards +heaf,heafs +healand,healands +heald,healds +healee,healees +healend,healends +healer,healers +healme,healmes +healsfang,healsfangs,healsfang +health care,health cares +health centre,health centres +healthcentre,healthcentres +health club,health clubs +healthfood,healthfoods +health fund,health funds +healthspan,healthspans +health warning,health warnings +healthy participant effect,healthy participant effects +heam,heams +heanling,heanlings +heaper,heapers +heap,heaps +heapsort,heapsorts +hearer,hearers +hearership,hearerships +hearie,hearies +hearing aid,hearing aids +hearing dog,hearing dogs +hearing-ear dog,hearing-ear dogs +hearing trumpet,hearing trumpets +hearkener,hearkeners +hearsecloth,hearsecloths +hearse,hearses +heartache,heartaches +heartake,heartakes +heart attack,heart attacks +heartbalm,heartbalms +heartbeat,heartbeats +heart block,heart blocks +heartbond,heartbonds +heart breaker,heart breakers +heartbreaker,heartbreakers +Heartbreak Hotel,Heartbreak Hotels +heartbreaking,heartbreakings +heartburning,heartburnings +heartcut,heartcuts +hearte,heartes +heartener,hearteners +heart-failure,heart-failures +heartful,heartfuls,heartsful +hearthflame,hearthflames +hearth,hearths +hearthplace,hearthplaces +hearthrug,hearthrugs +hearthside,hearthsides +hearthstone,hearthstones +hearth tax,hearth taxes +hearting,heartings +heartland,heartlands +heart-leaf,heart-leaves +heartleaf,heartleaves +heartlet,heartlets +heart line,heart lines +heartline,heartlines +heartling,heartlings +heartnut,heartnuts +heart of glass,hearts of glass +heart of gold,hearts of gold +heartquake,heartquakes +heart rate,heart rates +heart rate monitor,heart rate monitors +heartsease,heartseases +heartsink,heartsinks +heartsink patient,heartsink patients +heartstopper,heartstoppers +heartstring,heartstrings +heart surgeon,heart surgeons +heartthrob,heartthrobs +heart to heart,heart to hearts +heart urchin,heart urchins +heart valve,heart valves +heart-warmer,heart-warmers +heartwarmer,heartwarmers +heartworm,heartworms +hearty,hearties +he-ass,he-asses +heat capacity,heat capacities +heat conductance,heat conductances +heat conductivity,heat conductivities +heat death,heat deaths +heat detector,heat detectors +heat dump,heat dumps +heat engine,heat engines +heater,heaters +heat exchanger,heat exchangers +heat haze,heat hazes +heathcropper,heathcroppers +heatheness,heathenesses +heathen,heathen,heathens +Heathen,Heathens +heather-bell,heather-bells +heather,heathers +heather-mixture,heather-mixtures +heathery,heatheries +heath fritillary,heath fritillaries +heathland,heathlands +heat index,heat indices +heating oil,heating oils +heating surface,heating surfaces +heat map,heat maps +heatmap,heatmaps +heat of fusion,heats of fusion +heat of reaction,heats of reaction +heat of vaporization,heats of vaporization +heat pump,heat pumps +heatseeker,heatseekers +heat shield,heat shields +heatshield,heatshields +heat sink,heat sinks +heatsink,heatsinks +heat stroke,heat strokes +heatstroke,heatstrokes +heat transfer,heat transfers +heat wave,heat waves +heatwave,heatwaves +heauen,heauens +heaume,heaumes +heave,heaves +heave-ho,heave-hoes,heave-hos +heavenful,heavenfuls,heavensful +heaven,heavens +heavenly body,heavenly bodies +heavenly stem,heavenly stems +heavenric,heavenrics +heaven tree,heaven trees +heaver,heavers +heaving,heavings +heaving line bend,heaving line bends +heav'n,heav'ns +heavy-duty vehicle,heavy-duty vehicles +heavy goods vehicle,heavy goods vehicles +heavy,heavys,heavies +heavy ion,heavy ions +heavy metal umlaut,heavy metal umlauts +heavy roller,heavy rollers +heavy sink,heavy sinks +heavy tail,heavy tails +heavyweight,heavyweights +hebbosome,hebbosomes +hebdomadary,hebdomadaries +hebdomad,hebdomads +hebdomadiversary,hebdomadiversaries +Hebe,Hebes +hebephile,hebephiles +hebesphenomegacorona,hebesphenomegacoronas +he-bitch,he-bitches +HebrΓ¦an,HebrΓ¦ans +Hebraist,Hebraists +Hebrean,Hebreans +Hebreish,Hebreishes +hebrephrenic,hebrephrenics +Hebrewess,Hebrewesses +Hebrew,Hebrews +Hebrician,Hebricians +Hebridean,Hebrideans +hebrid,hebrids +Hebridian,Hebridians +he-cat,he-cats +hecatologue,hecatologues +hecatomb,hecatombs +hecatonicosachoron,hecatonicosachorons,hecatonicosachora +hechsher,hechshers,hechserim +Hechtian strand,Hechtian strands +heckelphone,heckelphones +heck,hecks +heckler,hecklers +hectagon,hectagons +hectarage,hectarages +hectare,hectares +hectic,hectics +hectick,hecticks +hectoampere,hectoamperes +hectoamp,hectoamps +hectobecquerel,hectobecquerels +hectocotylus,hectocotyli +hectogon,hectogons +hectogram,hectograms +hectogramme,hectogrammes +hectograph,hectographs +hectokatal,hectokatals +hectoliter,hectoliters +hectolitre,hectolitres +hectometer,hectometers +hectometre,hectometres +hectopascal,hectopascals +hectopsyllid,hectopsyllids +hector,hectors +hectorite,hectorites +hectosecond,hectoseconds +hectostere,hectosteres +hectour,hectours +hectowatt,hectowatts +hectowatt-hour,hectowatt-hours +He dating,He datings +heddle,heddles +heddle hook,heddle hooks +hede,hedes +hedera,hederas +hederate,hederates +heder,heders +hedgeapple,hedgeapples +hedgeberry,hedgeberries +hedge bindweed,hedge bindweeds +hedgebote,hedgebotes +hedge fund,hedge funds +hedge garlic,hedge garlics +hedge,hedges +hedgehog,hedgehogs +hedgepig,hedgepigs +hedger,hedgers +hedgerow,hedgerows +hedge sparrow,hedge sparrows +hedge tree,hedge trees +hedge trimmer,hedge trimmers +hedgie,hedgies +hed,heds +hedon,hedons +hedonist,hedonists +hedylid,hedylids +heeb,heebs +Heegaard decomposition,Heegaard decompositions +Heegaard splitting,Heegaard splittings +hee-haw,hee-haws +heehaw,heehaws +heel bone,heel bones +heelbone,heelbones +heeld,heelds +heeler,heelers +heelflip,heelflips +heel,heels +heel,heels +heel hook,heel hooks +heel lift,heel lifts +heelpiece,heelpieces +heelpost,heelposts +heelprint,heelprints +heelside,heelsides +heeltap,heeltaps +heep,heeps +heer,heers +hefemale,hefemales +Heffalump,Heffalumps +hef,hefs +Hegelian,Hegelians +hegemon,hegemons +hegemonist,hegemonists +hegemony,hegemonies +hegetotheriid,hegetotheriids +hegge,hegges +hegira,hegiras +he-goat,he-goats +hegumen,hegumens +heiau,heiaus,heiau +heiduc,heiducs +heiduck,heiducks +heiduk,heiduks +heiferette,heiferettes +heifer,heifers +height above average terrain,heights above average terrain +heightener,heighteners +heightfield,heightfields +heighth,heighths +heightist,heightists +heightmap,heightmaps +Heimlich maneuver,Heimlich maneuvers +Heimlich manoeuver,Heimlich manoeuvers +heinie,heinies +Heinie,Heinies +heir apparent,heirs apparent +heirdom,heirdoms +heire,heires +heiress,heiresses +heirhead,heirheads +heir,heirs +heirloom,heirlooms +heir presumptive,heirs presumptive +heirship,heirships +heisenbug,heisenbugs +Heisenbug,Heisenbugs +heist,heists +hejira,hejiras +hektograph,hektographs +helcionellid,helcionellids +helcomyzid,helcomyzids +held ball,held balls +heldentenor,heldentenors +heleid,heleids +helenium,heleniums +heleomyzid,heleomyzids +heleophrynid,heleophrynids +helepole,helepoles +helepolis,helepolises +heleth,heleths +helgramite,helgramites +heliair,heliairs +helianthemum,helianthemums +helianthus,helianthuses +helibus,helibuses +helicarionid,helicarionids +helicase,helicases +helicate,helicates +helicene,helicenes +helichopper,helichoppers +helichrysum,helichrysums +helicid,helicids +helicinid,helicinids +helicity,helicities +helicobacter,helicobacters +helicodiscid,helicodiscids +helicograph,helicographs +helicoid,helicoids +helicon,helicons +heliconia,heliconias +heliconiid,heliconiids +helicopsychid,helicopsychids +helicopter bucket,helicopter buckets +helicopter,helicopters +helicopter parent,helicopter parents +helicotrema,helicotremata +helictite,helictites +helideck,helidecks +Heligolander,Heligolanders +helijet,helijets +helimagnet,helimagnets +heliobacterium,heliobacteria +heliochrome,heliochromes +heliodinid,heliodinids +heliodon,heliodons +heliodor,heliodors +heliogram,heliograms +heliographer,heliographers +heliograph,heliographs +heliolater,heliolaters +heliolatitude,heliolatitudes +heliolite,heliolites +heliometer,heliometers +helion,helions +heliophile,heliophiles +heliophyte,heliophytes +heliopore,heliopores +helioporid,helioporids +heliornithid,heliornithids +helioscope,helioscopes +helioseismologist,helioseismologists +heliosheath,heliosheaths +heliosphere,heliospheres +heliostat,heliostats +heliotail,heliotails +heliotheist,heliotheists +heliotherapist,heliotherapists +heliothid,heliothids +heliotroper,heliotropers +heliotype,heliotypes +heliozelid,heliozelids +heliozoan,heliozoans +helipad,helipads +heliport,heliports +heliskier,heliskiers +helislab,helislabs +helistop,helistops +helitanker,helitankers +helitron,helitrons +helium flash,helium flashes +helium speech,helium speeches +helium star,helium stars +helium variable,helium variables +helix,helixes,helices +Helkesaite,Helkesaites +Hellanodic,Hellanodics +hellbender,hellbenders +hellburner,hellburners +hellcat,hellcats +helldesk,helldesks +hell-diver,hell-divers +hellebore,hellebores +helleborine,helleborines +Hellene,Hellenes +Hellenisation,Hellenisations +Helleniser,Hellenisers +Hellenist,Hellenists +Hellenization,Hellenizations +Hellenizer,Hellenizers +Hellenophile,Hellenophiles +hellenophone,hellenophones +heller,hellers +hellfare,hellfares +hellgramite,hellgramites +hellgrammite,hellgrammites +hellhag,hellhags +hell,hells +hell hole,hell holes +hell-hole,hell-holes +hellhole,hellholes +Hell hole,Hell holes +Hellhole,Hellholes +hell hound,hell hounds +hell-hound,hell-hounds +hellhound,hellhounds +hellhouse,hellhouses +hellier,helliers +hellion,hellions +hellkite,hellkites +hellman,hellmen +hello girl,hello girls +hello,hellos +Hello World,Hello Worlds +hell-raiser,hell-raisers +hellraiser,hellraisers +Hells Angel,Hells Angels +hellscape,hellscapes +helluo librorum,helluones librorum +hell week,hell weeks +Hell Week,Hell Weeks +helmer,helmers +helmet,helmets +helmette,helmettes +helm,helms +helm,helms +helm,helms,helmen +Helmholtz coil,Helmholtz coils +Helmholtz resonator,Helmholtz resonators +helminthagogue,helminthagogues +helminth,helminths +helminthiasis,helminthiases +helminthic,helminthics +helminthite,helminthites +helminthoglyptid,helminthoglyptids +helminthologist,helminthologists +helmsman,helmsmen +helmswoman,helmswomen +HELOC,HELOCs +helodermatid,helodermatids +helo,helos +heloma,helomas,helomata +helophorid,helophorids +helophyte,helophytes +helot,helots +helotid,helotids +helpdesker,helpdeskers +help desk,help desks +help-desk,help-desks +helpdesk,helpdesks +helpee,helpees +helper dog,helper dogs +helper,helpers +helper verb,helper verbs +helpfile,helpfiles +helping hand,helping hands +helping,helpings +helping profession,helping professions +helping verb,helping verbs +helpline,helplines +helpmate,helpmates +helpmeet,helpmeets +helpsheet,helpsheets +Helsinkian,Helsinkians +helter,helters +helve,helves +Helvetian,Helvetians +hemachate,hemachates +hemacytometer,hemacytometers +hemadsorption,hemadsorptions +hemadynamometer,hemadynamometers +hemagglutination,hemagglutinations +hemangioblast,hemangioblasts +hemangioblastoma,hemangioblastomas,hemangioblastomata +hemangiofibroma,hemangiofibromas +hemangioma,hemangiomas,hemangiomata +hemangiopericytoma,hemangiopericytomas,hemangiopericytomata +hemangiosarcoma,hemangiosarcomas,hemangiosarcomata +he-man,he-men +hemapophysis,hemapophyses +hemarthrosis,hemarthroses +hematemesis,hematemeses +hematherm,hematherms +hematic,hematics +hematinic,hematinics +hematoblast,hematoblasts +hematocele,hematoceles +hematocrit,hematocrits +hematocyte,hematocytes +hematologist,hematologists +hematoma,hematomas,haematomata +hematopathologist,hematopathologists +hematopoietic cell,hematopoietic cells +hematoporphyria,hematoporphyrias +hematoporphyrin,hematoporphyrins +hematotoxicity,hematotoxicities +hematotoxin,hematotoxins +hematoxylin,hematoxylins +hematozoon,hematozoa +hembra,hembras +hemelytron,hemelytra +hemelytrum,hemelytra +hemeprotein,hemeproteins +hemeralopia,hemeralopias +Hemerobaptist,Hemerobaptists +hemerobian,hemerobians +hemerobiid,hemerobiids +hemerocallis,hemerocallises +hemerodrome,hemerodromes +hemerophyte,hemerophytes +hem,hems +hem,hems +hemiacetal,hemiacetals +hemiaminal,hemiaminals +hemianopia,hemianopias +hemianopsia,hemianopsias +hemiarthroplasty,hemiarthroplasties +hemiascomycete,hemiascomycetes +hemibiotroph,hemibiotrophs +hemiblock,hemiblocks +hemicarbonic acid,hemicarbonic acids +hemicarp,hemicarps +hemicellulase,hemicellulases +hemicellulose,hemicelluloses +hemicerebrum,hemicerebrums,hemicerebra +hemichannel,hemichannels +hemichordate,hemichordates +hemicolectomy,hemicolectomies +hemicomplex,hemicomplexes +hemicorporectomy,hemicorporectomies +hemicraniectomy,hemicraniectomies +hemicrany,hemicranies +hemicryptophyte,hemicryptophytes +hemicube,hemicubes +hemicycle,hemicycles +hemidactyl,hemidactyls +hemidemisemiquaver,hemidemisemiquavers +hemidesmosome,hemidesmosomes +hemiditone,hemiditones +hemiellipse,hemiellipses +hemiellipsoid,hemiellipsoids +hemifield,hemifields +hemifission,hemifissions +hemifusion,hemifusions +hemigaleid,hemigaleids +hemiglossectomy,hemiglossectomies +hemiglyph,hemiglyphs +hemihedron,hemihedrons,hemihedra +hemihydrate,hemihydrates +hemihyperplasia,hemihyperplasias +hemihypertrophy,hemihypertrophies +hemiketal,hemiketals +hemilaminectomy,hemilaminectomies +hemimembrane,hemimembranes +hemimerid,hemimerids +hemimicelle,hemimicelles +hemimorphism,hemimorphisms +hemina,heminae +hemin,hemins +hemiodontid,hemiodontids +hemiola,hemiolas +hemione,hemiones +hemiopia,hemiopias +hemiparasite,hemiparasites +hemiparesis,hemipareses +hemiparkinsonism,hemiparkinsonisms +hemipelvectomy,hemipelvectomies +hemipenis,hemipenes +hemipeptone,hemipeptones +hemiphractid,hemiphractids +hemiplegia,hemiplegias +hemiplegic,hemiplegics +hemipode,hemipodes +hemiprotein,hemiproteins +hemipteran,hemipterans +hemipter,hemipters +hemipteron,hemipterons +hemiramphid,hemiramphids +hemiscylliid,hemiscylliids +hemisection,hemisections +hemisolvate,hemisolvates +hemisotid,hemisotids +hemisphΓ¦re,hemisphΓ¦res +hemispherectomy,hemispherectomies +hemisphere,hemispheres +hemispheroid,hemispheroids +hemispherule,hemispherules +hemist,hemists +hemistich,hemistichs +hemisuccinate,hemisuccinates +hemisulfate,hemisulfates +hemisulphate,hemisulphates +hemisyndrome,hemisyndromes +hemisystole,hemisystoles +hemiterpene,hemiterpenes +hemiterpenoid,hemiterpenoids +hemitheid,hemitheids +hemithyroidectomy,hemithyroidectomies +hemitone,hemitones +hemitonic pentatonic scale,hemitonic pentatonic scales +hemitripterid,hemitripterids +hemitrope,hemitropes +hemizygote,hemizygotes +hemline,hemlines +hemlock,hemlocks +hemlock woolly adelgid,hemlock woolly adelgids +hemmel,hemmels +hemmer,hemmers +hemochrome,hemochromes +hemoclysm,hemoclysms +hemocoel,hemocoels +hemocyte,hemocytes +hemocytometer,hemocytometers +hemoderivative,hemoderivatives +hemodiafiltration,hemodiafiltrations +hemodialyzer,hemodialyzers +hemofiltration,hemofiltrations +hemoglobin,hemoglobins +hemoglobinometer,hemoglobinometers +hemoglobinopathy,hemoglobinopathies +hemogram,hemograms +hemolysate,hemolysates +hemolysin,hemolysins +hemolytic disease,hemolytic diseases +hemopathy,hemopathies +hemoperfusion,hemoperfusions +hemophagocyte,hemophagocytes +hemophiliac,hemophiliacs +hemoprotein,hemoproteins +hemoptysis,hemoptyses +hemorrhage,hemorrhages +hemorrhagic fever,hemorrhagic fevers +hemorrhoidectomy,hemorrhoidectomies +hemorrhoid,hemorrhoids +hemostat,hemostats +hemostatic,hemostatics +hemotoxin,hemotoxins +hemovore,hemovores +hemp,hemps +hemp-nettle,hemp-nettles +hemp tree,hemp trees +hemp-vine,hemp-vines +hempvine,hempvines +hemstitch,hemstitches +henagon,henagons +henbane,henbanes +henbit,henbits +henchboy,henchboys +hench,henches +henchman,henchmen +henchperson,henchpersons,henchpeople +hench-wench,hench-wenches +henchwench,henchwenches +henchwoman,henchwomen +hencoop,hencoops +hendecagon,hendecagons +hendecahedron,hendecahedra +hendecane,hendecanes +hendecasyllabic,hendecasyllabics +hendecasyllable,hendecasyllables +hendiadys,hendiadyses +hendigo,hendigos +hen do,hen dos +heneicosane,heneicosanes +heneicosanoyl,heneicosanoyls +henequen,henequens +henfest,henfests +henfish,henfish +henge,henges +hen harrier,hen harriers +hen-hawk,hen-hawks +hen,hens +henhouse,henhouses +henhussy,henhussies +henicid,henicids +henley,henleys +henna,hennas +henna tattoo,henna tattoos +hennery,henneries +hen night,hen nights +hennin,hennins +hennoxazole,hennoxazoles +Henny Penny,Henny Pennies +henotheism,henotheisms +henotheist,henotheists +hen party,hen parties +hen pigeon,hen pigeons +henricosborniid,henricosborniids +henroost,henroosts +henry,henries +henry,henries +henry,henries,henrys +hens' night,hens' nights +hen's party,hen's parties +hen's tooth,hen's teeth +hentaigana,hentaigana +hentai,hentai +henwife,henwives +henxman,henxmen +heortologist,heortologists +hepadnavirus,hepadnaviruses +heparanase,heparanases +heparinase,heparinases +heparinoid,heparinoids +hepatectomy,hepatectomies +hepatica,hepaticas +hepatic,hepatics +hepaticologist,hepaticologists +hepatic portal vein,hepatic portal veins +hepatisation,hepatisations +hepatitis,hepatitises,hepatitides +hepatoblast,hepatoblasts +hepatoblastoma,hepatoblastomas +hepatocarcinogen,hepatocarcinogens +hepatocarcinoma,hepatocarcinomas +hepatocellular carcinoma,hepatocellular carcinomas +hepatocyte,hepatocytes +hepatologist,hepatologists +hepatoma,hepatomas,hepatomata +hepatomegaly,hepatomegalies +hepatopancreas,hepatopancreases,hepatopancreata +hepatopathy,hepatopathies +hepatoprotection,hepatoprotections +hepatoprotective,hepatoprotectives +hepatosis,hepatoses +hepatosteatosis,hepatosteatoses +hepatotoxicant,hepatotoxicants +hepatotoxicity,hepatotoxicities +hepatotoxin,hepatotoxins +hepatotumorigenesis,hepatotumorigeneses +hepatovirus,hepatoviruses +hepatozoonosis,hepatozoonoses +hep cat,hep cats +hepcat,hepcats +hep,heps +Hephthalite,Hephthalites +hepialid,hepialids +hepoxilin,hepoxilins +hepper,heppers +heptachlorobiphenyl,heptachlorobiphenyls +heptachord,heptachords +heptacontagon,heptacontagons +heptacosadiene,heptacosadienes +heptacosane,heptacosanes +heptadecagon,heptadecagons +heptadecamer,heptadecamers +heptadecanoate,heptadecanoates +heptadecanoyl,heptadecanoyls +heptadecenoyl,heptadecenoyls +heptade,heptades +heptad,heptads +heptaene,heptaenes +heptafluoride,heptafluorides +heptafluoroniobate,heptafluoroniobates +heptageniid,heptageniids +heptaglot,heptaglots +heptagon,heptagons +heptagram,heptagrams +heptagrid,heptagrids +heptahedron,heptahedrons,heptahedra +heptahelicene,heptahelicenes +heptahydrate,heptahydrates +heptalene,heptalenes +heptalogy,heptalogies +heptamer,heptamers +heptameride,heptamerides +heptameron,heptamerons +heptameter,heptameters +heptamolybdate,heptamolybdates +heptane,heptanes +heptangle,heptangles +heptanoate,heptanoates +heptanol,heptanols +heptanone,heptanones +heptanoyl,heptanoyls +heptaoxide,heptaoxides +heptaparallelohedron,heptaparallelohedra +heptapeptide,heptapeptides +heptaphane,heptaphanes +heptapterid,heptapterids +heptarch,heptarchs +heptarchist,heptarchists +heptarchy,heptarchies +heptaselenide,heptaselenides +heptastich,heptastichs +heptasulfide,heptasulfides +heptasulphide,heptasulphides +heptathlete,heptathletes +heptathlon,heptathlons +heptatriacontane,heptatriacontanes +heptaxodontid,heptaxodontids +heptene,heptenes +heptenyl,heptenyls +hepteract,hepteracts +heptet,heptets +heptine,heptines +heptitol,heptitols +heptomino,heptominoes +heptopyranose,heptopyranoses +heptopyranoside,heptopyranosides +heptose,heptoses +heptoxide,heptoxides +heptylamine,heptylamines +heptyl,heptyls +heracleid,heracleids +Heracleonite,Heracleonites +heraclid,heraclids +Heraclitan,Heraclitans +herald,heralds +heraldist,heraldists +Herati,Heratis +heraud,herauds +herbal,herbals +herbalist,herbalists +herball,herballs +herbal medicine,herbal medicines +herbal supplement,herbal supplements +herbal tea,herbal teas +herbar,herbars +herbarian,herbarians +herbarist,herbarists +herbarium,herbariums,herbaria +herbary,herbaries +herbergage,herbergages +herbergeour,herbergeours +herber,herbers +herbert,herberts +herberwe,herberwes +herb,herbs +Herbig-Haro object,Herbig-Haro objects +herbist,herbists +herbivore,herbivores +herblet,herblets +herbologist,herbologists +herborist,herborists +herborization,herborizations +Herbrand function,Herbrand functions +Herbrand universe,Herbrand universes +herb tea,herb teas +herbwoman,herbwomen +hercoglossid,hercoglossids +Hercules beetle,Hercules beetles +herdbook,herdbooks +herdboy,herdboys +herder,herders +herdess,herdesses +herdgroom,herdgrooms +herd,herds +herd,herds +herdic,herdics +herding dog,herding dogs +herding instinct,herding instincts +herdman,herdmen +herd path,herd paths +herdsboy,herdsboys +herdsman,herdsmen +herdswoman,herdswomen +hereditament,hereditaments +hereditarian,hereditarians +hereditary,hereditaries +heredity,heredities +heredoc,heredocs +here document,here documents +Hereford,Herefords +here,heres +heremite,heremites +heresiarch,heresiarchs +heresiarchy,heresiarchies +heresiographer,heresiographers +heresiography,heresiographies +heresiologist,heresiologists +heresy,heresies +hereticaster,hereticasters +heretic,heretics +heretick,hereticks +heretike,heretikes +heretog,heretogs +heriot,heriots +herisson,herissons +heritance,heritances +heritor,heritors +heritour,heritours +herkie,herkies +herl,herls +herling,herlings +hermaeid,hermaeids +herma,hermae +Hermann,Hermanns +hermaphrodite brig,hermaphrodite brigs +hermaphrodite,hermaphrodites +hermaphrodyte,hermaphrodytes +hermeneut,hermeneuts +hermeneutic circle,hermeneutic circles +hermeneutician,hermeneuticians +hermetic,hermetics +hermeticist,hermeticists +hermetic seal,hermetic seals +herm,herms +herm,herms +hermie,hermies +hermitage,hermitages +hermitary,hermitaries +hermit crab,hermit crabs +hermitess,hermitesses +hermit,hermits +Hermitian conjugate,Hermitian conjugates +Hermitian matrix,Hermitian matrices +hermodactyl,hermodactyls +Hermogenian,Hermogenians +hernani,hernanis +hern,herns +hern,herns +hernia,hernias,herniae,herniΓ¦ +herniorrhaphy,herniorrhaphies +herniotomy,herniotomies +hernshaw,hernshaws +hero call,hero calls +Herodian,Herodians +heroess,heroesses +hero,heroes +heroic meter,heroic meters +heroic verse,heroic verses +heroine,heroines,heroinΓ¦ +heroization,heroizations +heroner,heroners +heron,herons +heronry,heronries +heronsew,heronsews +heronshaw,heronshaws +herΓ΅on,herΓ΅ons +heroon,heroons,heroa +hero sandwich,hero sandwiches +herpes,herpeses +herpestid,herpestids +herpesvirus,herpesviruses +herpetologist,herpetologists +herpetotheriid,herpetotheriids +herp,herps +herptile,herptiles +herpyllobiid,herpyllobiids +herrenvolk,herrenvolker +herrerasaurid,herrerasaurids +Herring body,Herring bodies +herringbone,herringbones +herring gull,herring gulls +herring,herrings,herring +Herrnhuter,Herrnhuters +herse,herses +Hershey highway,Hershey highways +hersiliid,hersiliids +hersillon,hersillons +hersir,hersirs +herstory,herstories +hertz,hertz,hertzes +Hertzsprung–Russell diagram,Hertzsprung–Russell diagrams +Herzegovinian,Herzegovinians +hESC,hESCs +he-she,he-shes +hesher,heshers +hesionid,hesionids +hesitancy,hesitancies +hesitater,hesitaters +hesitation,hesitations +hesitation wound,hesitation wounds +hesitator,hesitators +hesperadin,hesperadins +Hesperian,Hesperians +hesperidium,hesperidia +hesperiid,hesperiids +hesperomyine,hesperomyines +hesperornithid,hesperornithids +hesp,hesps +hessite,hessites +hessonite,hessonites +hest,hests +Hesychast,Hesychasts +hetΓ¦ra,hetΓ¦rΓ¦ +hetaera,hetaerae,hetaeras +hetaerist,hetaerists +heta,hetas +hetaira,hetairai,hetairas +hetarene,hetarenes +hetaryne,hetarynes +hetchel,hetchels +heteranthrene,heteranthrenes +heterenchelyid,heterenchelyids +heteroalkene,heteroalkenes +heteroallele,heteroalleles +heteroallene,heteroallenes +heteroanhydride,heteroanhydrides +heteroarene,heteroarenes +heteroaromatic,heteroaromatics +heteroarylation,heteroarylations +heteroaryne,heteroarynes +heteroatom,heteroatoms +heteroazeotrope,heteroazeotropes +heterobathmiid,heterobathmiids +heterobicycle,heterobicycles +heterobiography,heterobiographies +heterocatenation,heterocatenations +heterocerc,heterocercs +heterocerid,heterocerids +heterochain,heterochains +heterochromatinisation,heterochromatinisations +heterochromatinization,heterochromatinizations +heterochromosome,heterochromosomes +heteroclite,heteroclites +heteroclitic,heteroclitics +heterocomplexation,heterocomplexations +heterocomplex,heterocomplexes +heterocosm,heterocosms +heterocumulene,heterocumulenes +heterocycle,heterocycles +heterocyclic,heterocyclics +heterocycloalkane,heterocycloalkanes +heterocyclyl,heterocyclyls +heterocyst,heterocysts +heteroderid,heteroderids +heterodimer,heterodimers +heterodimerization,heterodimerizations +heterodisaccharide,heterodisaccharides +heterodisulfide,heterodisulfides +heterodisulphide,heterodisulphides +heterodont,heterodonts +heterodontid,heterodontids +heterodontosaurid,heterodontosaurids +heterodoxy,heterodoxies +heteroduplex,heteroduplexes +heterodyne,heterodynes +heteroelement,heteroelements +heteroepitaxy,heteroepitaxys +heteroexcimer,heteroexcimers +heterofascist,heterofascists +heteroflexibility,heteroflexibilities +heterofullerene,heterofullerenes +heterofunctionalization,heterofunctionalizations +heterogamete,heterogametes +heterogeneous catalysis,heterogeneous catalyses +heterogeneous mixture,heterogeneous mixtures +heterogenesis,heterogeneses +heterogenist,heterogenists +heterogenization,heterogenizations +heteroglycan,heteroglycans +heterograft,heterografts +heterogram,heterograms +heterogynid,heterogynids +heterohelicene,heterohelicenes +heteroheptamer,heteroheptamers +hetero,heteros +heterohexamer,heterohexamers +heterointerface,heterointerfaces +heterojunction,heterojunctions +heterokaryon,heterokaryons +heterokont,heterokonts +heterokontophyte,heterokontophytes +heterolayer,heterolayers +heteroligation,heteroligations +heterolith,heteroliths +heterolysin,heterolysins +heterolysis,heterolyses +heteromannan,heteromannans +heteromer,heteromers +heteromerization,heteromerizations +heterometal,heterometals +heterometallation,heterometallations +heteromonocycle,heteromonocycles +heteromorph,heteromorphs +heteromorphism,heteromorphisms +heteromyid,heteromyids +heteronormativism,heteronormativisms +heteronormativity,heteronormativities +heteronym,heteronyms +heterooctamer,heterooctamers +heterooligomer,heterooligomers +heteropathy,heteropathies +heteropentamer,heteropentamers +heterophane,heterophanes +heterophemist,heterophemists +heterophemy,heterophemies +heterophenomenology,heterophenomenologies +heterophil,heterophils +heterophobe,heterophobes +heterophone,heterophones +heterophony,heterophonies +heterophyid,heterophyids +heterophyte,heterophytes +heteroplasm,heteroplasms +heteroplastide,heteroplastides +heteroplasty,heteroplasties +heteropneustid,heteropneustids +heteropod,heteropods +heteropoly acid,heteropoly acids +heteropolyanion,heteropolyanions +heteropolymer,heteropolymers +heteropolysaccharide,heteropolysaccharides +heteropteran,heteropterans +heteropter,heteropters +heteroradical,heteroradicals +heteroreceptor,heteroreceptors +heteroresistance,heteroresistances +heteroring,heterorings +heterosaccharide,heterosaccharides +heteroscedasticity,heteroscedasticities +heteroscian,heteroscians +heterosexism,heterosexisms +heterosexist,heterosexists +heterosexual,heterosexuals +heterosexualist,heterosexualists +heteroside,heterosides +heterosis,heteroses +heterosome,heterosomes +heterospecific,heterospecifics +heterosphere,heterospheres +heterosquare,heterosquares +heterostracan,heterostracans +heterostructure,heterostructures +heterotaxis,heterotaxes +heterotetramer,heterotetramers +heterotherm,heterotherms +heterotransplantation,heterotransplantations +heterotricycle,heterotricycles +heterotrimer,heterotrimers +heterotroph,heterotrophs +heteroxylan,heteroxylans +heterozeotrope,heterozeotropes +heterozerconid,heterozerconids +heterozygosis,heterozygoses +heterozygote,heterozygotes +hether,hethers +hetman,hetmans +hettotype,hettotypes +hetty,hetties +heuchera,heucheras +heugh,heughs +heuk,heuks +heuretic,heuretics +heuristic,heuristics +Hevellian,Hevellians +hewe,hewes +hewer,hewers +hew,hews +hewhole,hewholes +he-whore,he-whores +he-wolf,he-wolves +hexaaquairon,hexaaquairons +hexaazide,hexaazides +hexaboride,hexaborides +hexabothriid,hexabothriids +hexabranchid,hexabranchids +hexabromide,hexabromides +hexabundle,hexabundles +hexacarbonyl,hexacarbonyls +hexacarboxylic acid,hexacarboxylic acids +hexacetonide,hexacetonides +hexachloride,hexachlorides +hexachloridoantimonate,hexachloridoantimonates +hexachlorobiphenyl,hexachlorobiphenyls +hexachloropalladate,hexachloropalladates +hexachloroplatinate,hexachloroplatinates +hexachord,hexachords +hexacode,hexacodes +hexacoral,hexacorals +hexacosane,hexacosanes +hexacosichoron,hexacosichorons,hexacosichora +hexactine,hexactines +hexactinellid,hexactinellids +hexacyanoferrate,hexacyanoferrates +hexacycle,hexacycles +hexadecachoron,hexadecachorons,hexadecachora +hexadecadienal,hexadecadienals +hexadecadienol,hexadecadienols +hexadecamer,hexadecamers +hexadecane,hexadecanes +hexadecanol,hexadecanols +hexadecanoyl,hexadecanoyls +hexadecapole,hexadecapoles +hexadecenal,hexadecenals +hexadecenoyl,hexadecenoyls +hexadecyl,hexadecyls +hexade,hexades +hexadeoxynucleotide,hexadeoxynucleotides +hexadepsipeptide,hexadepsipeptides +hexad,hexads +hexadiene,hexadienes +hexaene,hexaenes +hexaferrite,hexaferrites +hexaflexagon,hexaflexagons +hexafluoride,hexafluorides +hexafluoroantimonate,hexafluoroantimonates +hexafluorophosphate,hexafluorophosphates +hexafluoroplatinate,hexafluoroplatinates +hexafluoropropylene,hexafluoropropylenes +hexafluorosilicate,hexafluorosilicates +hexafluorothioacetone,hexafluorothioacetones +hexafoil,hexafoils +hexagenerian,hexagenerians +hexagonal prism,hexagonal prisms +hexagonal water,hexagonal waters +hexagon,hexagons +hexagony,hexagonies +hexagram,hexagrams +hexagramme,hexagrammes +hexagrammid,hexagrammids +hexagraph,hexagraphs +hexahedrite,hexahedrites +hexahedron,hexahedrons,hexahedra +hexahelicene,hexahelicenes +hexahemeron,hexahemera +hexahexaflexagon,hexahexaflexagons +hexahydrate,hexahydrates +hexahydride,hexahydrides +hexakisphosphate,hexakisphosphates +hexalogy,hexalogies +hexamer,hexamers +hexameron,hexamerons +hexametaphosphate,hexametaphosphates +hexamethonium,hexamethoniums +hexamethoxide,hexamethoxides +hexamethylene,hexamethylenes +hexametre,hexametres +hexametrist,hexametrists +hexaminidase,hexaminidases +hexanchid,hexanchids +hexanediol,hexanediols +hexanitride,hexanitrides +hexanoate,hexanoates +hexanol,hexanols +hexanone,hexanones +hexanoyl,hexanoyls +hexanucleotide,hexanucleotides +hexaoxide,hexaoxides +hexapeptide,hexapeptides +Hexapla,Hexaplas +hexaploid,hexaploids +hexapod,hexapods +hexapodid,hexapodids +hexapole,hexapoles +hexaquark,hexaquarks +hexasaccharide,hexasaccharides +hexasilicide,hexasilicides +hexasiloxane,hexasiloxanes +hexasolvate,hexasolvates +hexasome,hexasomes +hexasomy,hexasomies +hexastich,hexastichs +hexatetrahedron,hexatetrahedra +hexathelid,hexathelids +hexatriacontane,hexatriacontanes +hexatriene,hexatrienes +hexecontahedron,hexecontahedra +hexenal,hexenals +hexene,hexenes +hexenoic acid,hexenoic acids +hexenose,hexenoses +hexenyl,hexenyls +hexeract,hexeracts +hex head bolt,hex head bolts +hex head screw,hex head screws +hex head wrench,hex head wrenches +hex,hexes +hex,hexes +hexiamond,hexiamonds +hexit,hexits +hex key,hex keys +hexoctahedron,hexoctahedrons,hexoctahedra +hexode,hexodes +hexodialdose,hexodialdoses +hexofuranose,hexofuranoses +hexokinase,hexokinases +hexology,hexologies +hexomino,hexominoes +hexon,hexons +hexopyranose,hexopyranoses +hexopyranoside,hexopyranosides +hexosamine,hexosamines +hexosaminidase,hexosaminidases +hexosan,hexosans +hexose,hexoses +hexoside,hexosides +hexosyl,hexosyls +hexosyltransferase,hexosyltransferases +hexoxide,hexoxides +hex sign,hex signs +hextree,hextrees +hexulose,hexuloses +hexylamine,hexylamines +hexylene,hexylenes +hexyl,hexyls +hexylthiophene,hexylthiophenes +hexyne,hexynes +hexynoate,hexynoates +hexynoic acid,hexynoic acids +hexynyl,hexynyls +heyday,heydays +heydeguy,heydeguys +heyduc,heyducs +heyduke,heydukes +heyduk,heyduks +hey,heys +heylerosaurid,heylerosaurids +heyne,heynes +hey rube,hey rubes +hey Rube,hey Rubes +Heyting algebra,Heyting algebras +hezbo,hezbos +HFC,HFCs +hgwy,hgwys +H-hour,H-hours +hiatellid,hiatellids +hiation,hiations +hiatus,hiatus,hiatuses +hibachi,hibachis,hibachi +hibakusha,hibakushas +hibernacle,hibernacles +hibernaculum,hibernacula +hibernator,hibernators +Hibernian,Hibernians +Hibernianism,Hibernianisms +Hibernicism,Hibernicisms +hibernoma,hibernomas,hibernomata +Hibernophile,Hibernophiles +hibiscus,hibiscuses +hibonite,hibonites +hiccough,hiccoughs +hiccup,hiccups +hickery,hickeries +hickey,hickeys +hick,hicks +hickock,hickocks +hickory,hickories +hickory horned devil,hickory horned devils +hickory nut,hickory nuts +Hicksite,Hicksites +hickster,hicksters +hicksville,hicksvilles +Hicksville,Hicksvilles +hickup,hickups +hickwall,hickwalls +hickway,hickways +hidage,hidages +hidalgo,hidalgos,hidalgoes +hidato,hidatos +hidden agenda,hidden agendas +hidden camera,hidden cameras +hiddenite,hiddenites +hidden Markov model,hidden Markov models +hidden tax,hidden taxes +hidden variable,hidden variables +hiddle,hiddles +Hiddlestoner,Hiddlestoners +hideaway,hideaways +hidebehind,hidebehinds +hidegeld,hidegelds +hidegild,hidegilds +hidegild,hidegilds +hide,hides +hide,hides +hidel,hidels +hideling,hidelings +hideman,hidemen +hideousship,hideousships +hide-out,hide-outs +hideout,hideouts +hider,hiders +hidey-hole,hidey-holes +hideyhole,hideyholes +hiding place,hiding places +hidle,hidles +hidoku,hidokus +hidradenocarcinoma,hidradenocarcinomas,hidradenocarcinomata +hidradenoma,hidradenomas,hidradenomata +hidrocystoma,hidrocystomas,hidrocystomata +hidrosis,hidroses +hie,hies +hield,hields +hieracosphinx,hieracosphinxes +hierarch,hierarchs +hierarchical database,hierarchical databases +hierarchization,hierarchizations +hierarchy,hierarchies +hieratic,hieratics +hiermartyr,hiermartyrs +hierocracy,hierocracies +hierocrat,hierocrats +hierodule,hierodules +hieroglyph,hieroglyphs +hieroglyphic,hieroglyphics +hieroglyphick,hieroglyphicks +hieroglyphist,hieroglyphists +hierogram,hierograms +hierogrammatist,hierogrammatists +hierologist,hierologists +hieromnemon,hieromnemons +hieromonk,hieromonks +hieron,hierons +Hieronymite,Hieronymites +hierophant,hierophants +hierophany,hierophanies +hierotheca,hierothecae +hi-fi,hi-fis +higab,higabs +higgler,higglers +Higgs boson,Higgs bosons +Higgs,Higgses +higgsino,higgsinos +Higgsino,Higgsinos +Higgs particle,Higgs particles +high altar,high altars +high angel,high angels +highball,highballs +high bar,high bars +high-beam,high-beams +highbie,highbies +highbinder,highbinders +highbishop,highbishops +high bit,high bits +highboy,highboys +highbrow,highbrows +highbush blueberry,highbush blueberries +highbush cranberry,highbush cranberries +high chair,high chairs +highchair,highchairs +High Churchman,High Churchmen +high comma,high commas +High Commission,High Commissions +high concept,high concepts +high court,high courts +high crime,high crimes +high cross,high crosss +highday,highdays +high-density lipoprotein,high-density lipoproteins +high dependency unit,high dependency units +higher being,higher beings +higher consciousness,higher consciousnesses +higher intermediate fare,higher intermediate fares +higher intermediate point,higher intermediate points +higher-order function,higher-order functions +higher power,higher powers +higher-up,higher-ups +high explosive,high explosives +high fantasy,high fantasies +highfather,highfathers +high five,high fives +high flier,high fliers +high-flier,high-fliers +highflier,highfliers +high flyer,high flyers +high-flyer,high-flyers +highflyer,highflyers +high frequency gravitational wave,high frequency gravitational waves +high-frequency gravitational wave,high-frequency gravitational waves +high-fructose corn syrup,high-fructose corn syrups +highgate,highgates +high-hat,high-hats +high,highs +high,highs +high-holder,high-holders +high-hole,high-holes +high-intensity interval training,high-intensity interval trainings +high intensity training,high intensity trainings +high island,high islands +highjacker,highjackers +highjack,highjacks +highjacking,highjackings +high jinks,high jinks +high jumper,high jumpers +high-jumper,high-jumpers +highking,highkings +highland dance,highland dances +highlander,highlanders +Highlander,Highlanders +highland,highlands +highlandman,highlandmen +highland tinamou,highland tinamous +Highland wildcat,Highland wildcats +high-level language,high-level languages +highlighter,highlighters +highlight,highlights +highlighting,highlightings +high line,high lines +high-low,high-lows +highman,highmen +high-mindedness,high-mindednesses +high muckamuck,high muckamucks +high muckety-muck,high muckety-mucks +high nelly,high nellies +highnesse,highnesses +Highness,Highnesses +high noon,high noons +high note,high notes +high occupancy vehicle,high occupancy vehicles +high-occupancy vehicle,high-occupancy vehicles +high-pass,high-passes +highpass,highpasses +high pillow,high pillows +high point,high points +highpoint,highpoints +high priestess,high priestesses +high priest,high priests +highpriest,highpriests +highpriesthood,highpriesthoods +highpriestship,highpriestships +high probability trade,high probability trades +high profile,high profiles +high-rise,high-rises +highrise,highrises +high-riser,high-risers +high road,high roads +highroad,highroads +high roller,high rollers +high-roller,high-rollers +high scaler,high scalers +highschoolboy,highschoolboys +high schooler,high schoolers +highschooler,highschoolers +highschoolgirl,highschoolgirls +high school,high schools +highschool,highschools +high score,high scores +high score table,high score tables +high-score table,high-score tables +high sea,high seas +high season,high seasons +high side,high sides +high society,high societies +highspot,highspots +highstand,highstands +high-sticking,high-stickings +high street,high streets +highstreet,highstreets +high striker,high strikers +high tackle,high tackles +high tea,high teas +high technology,high technologies +high-test,high-tests +highth,highths +hight,hights +high tide,high tides +hightide,hightides +high-top,high-tops +hightop,hightops +high touch,high touches +high vacuum,high vacuums +high voltage sign,high voltage signs +highwater,highwaters +high-water mark,high-water marks +highway,highways +highwayman,highwaymen +highway robbery,highway robberies +highwaywoman,highwaywomen +highwire,highwires +high-wire walker,high-wire walkers +highwire walker,highwire walkers +high yaller,high yallers +high yellow,high yellows +higre,higres +hi-hat,hi-hats +H II region,H II regions +hijabi,hijabis +hijabista,hijabistas +hijacker,hijackers +hijack,hijacks +hijacking,hijackings +hijinks,hijinks +hijra,hijras +hijra,hijras +hikeathon,hikeathons +hike,hikes +hiker,hikers +hikoi,hikois +hilal,hilals +hilar appendage,hilar appendages +hilar appendix,hilar appendixes +Hilary term,Hilary terms +Hilbert cube,Hilbert cubes +hilding,hildings +hildoceratid,hildoceratids +hile,hiles +hilgardite,hilgardites +Hiligaynon,Hiligaynons +hilite,hilites +hiliting,hilitings +hillbilly,hillbillies +hillclimber,hillclimbers +hill climb,hill climbs +hillcrest,hillcrests +hill-fort,hill-forts +hillfort,hillforts +hill,hills +hillman,hillmen +hillock,hillocks +hill of beans,hills of beans +hill partridge,hill partridges +Hills hoist,Hills hoists +Hills Hoist,Hills Hoists +hillside,hillsides +hillslope,hillslopes +hillsman,hillsmen +hill station,hill stations +hill-station,hill-stations +hillstream,hillstreams +hillstream loach,hillstream loaches +hilltop,hilltops +hillwalker,hillwalkers +hilt,hilts +hilum,hila +hilus,hili +Himalayan blackberry,Himalayan blackberries +Himalayan field rat,Himalayan field rats +Himalayan griffon vulture,Himalayan griffon vultures +Himalayan,Himalayans +Himalayan marmot,Himalayan marmots +Himalayan shrew,Himalayan shrews +Himalayan striped squirrel,Himalayan striped squirrels +himantolophid,himantolophids +himation,himatia,himations +himbo,himbos +Himjarite,Himjarites +himpne,himpnes +Himyarite,Himyarites +hindberry,hindberries +hindbrain,hindbrains +hindcast,hindcasts +hinderance,hinderances +hinderer,hinderers +hinder,hinders +hinderling,hinderlings +hinderment,hinderments +hindfoot,hindfeet +hindgut,hindguts +hind,hinds +hind,hinds +Hindian,Hindians +hind leg,hind legs +hindleg,hindlegs +hind limb,hind limbs +hindlimb,hindlimbs +hindneck,hindnecks +Hindoo,Hindoos +Hindoostanee,Hindoostanees +hindquarter,hindquarters +hindrance,hindrances +hindraunce,hindraunces +hindside,hindsides +hind teat,hind teats +hind tit,hind tits +Hindu,Hindus +Hindutvavadi,Hindutvavadis +hind wing,hind wings +hindwing,hindwings +hiney,hineys +hinge,hinges +hinge termination,hinge terminations +hin,hins +hink,hinks +hinkie pinkie,hinkie pinkies +hinkypunk,hinkypunks +hinny,hinnies +hinny,hinnies +Hinoki cypress,Hinoki cypresses +hinoki,hinokis,hinoki +hintend,hintends +hinter,hinters +hinterlander,hinterlanders +hinterland,hinterlands +hint,hints +Hintikka set,Hintikka sets +hiodontid,hiodontids +hip and shoulder,hip and shoulders +hip bone,hip bones +hipbone,hipbones +hip check,hip checks +hip flask,hip flasks +hip-flask,hip-flasks +hipflask,hipflasks +hip,hips +hip,hips +HIP,HIPs +hip-hopper,hip-hoppers +hipline,hiplines +hip pack,hip packs +hipparion,hipparions +hippiater,hippiaters +hippid,hippids +hippie,hippies +hippiemobile,hippiemobiles +hippie trail,hippie trails +hippin,hippins +hippity-hop,hippity-hops +hippoboscid,hippoboscids +hippocamp,hippocamps +hippocampus,hippocampi +hippocaust,hippocausts +hippocentaur,hippocentaurs +hip-pocket flask,hip-pocket flasks +Hippocratic face,Hippocratic faces +Hippocratic oath,Hippocratic oaths +hippocrepian,hippocrepians +hippodame,hippodames +hippodrome,hippodromes +hippo fly,hippo flies +hippogriff,hippogriffs +hippogryph,hippogryphs +hippo,hippos +hippolith,hippoliths +hippolytid,hippolytids +hipponicid,hipponicids +hippophage,hippophages +hippophagist,hippophagists +hippophile,hippophiles +hippophobia,hippophobias +hippopotamid,hippopotamids +hippopotamoid,hippopotamoids +hippopotamus,hippopotamuses,hippopotami,hippopotamus +hipposaurid,hipposaurids +hipposiderid,hipposiderids +hippurate,hippurates +hippurite,hippurites +hippy,hippies +hip replacement,hip replacements +hip roof,hip roofs,hip rooves +hip speed,hip speeds +hipster,hipsters +hipsterism,hipsterisms +hiptard,hiptards +hip tree,hip trees +hipwort,hipworts +hiragana,hiragana +hircarra,hircarras +hirchen,hirchens +hird,hirds +hirdman,hirdmen +hired gun,hired guns +hired hand,hired hands +hiree,hirees +hire,hires +hireling,hirelings +Hiren,Hirens +hire purchase,hire purchases +hirer,hirers +hiring hall,hiring halls +hi-rise,hi-rises +hirn,hirns +hirola,hirola +Hiroshiman,Hiroshimans +hirrawem,hirrawems +hirundine,hirundines +hirundinid,hirundinids +His Holiness,Their Holinesses +Hispanian,Hispanians +Hispanic,Hispanics +Hispanicism,Hispanicisms +Hispanism,Hispanisms +Hispanist,Hispanists +Hispano,Hispanos +hispanophile,hispanophiles +Hispanophile,Hispanophiles +Hispanophone,Hispanophones +hisser,hissers +hiss,hisses +hissing,hissings +hissy fit,hissy fits +hissy-fit,hissy-fits +hissyfit,hissyfits +hissy,hissies +histaminase,histaminases +histamine,histamines +histel,histels +histerid,histerids +histidine,histidines +histidyl,histidyls +histiocyte,histiocytes +histiocytoma,histiocytomas,histiocytomata +histiopterid,histiopterids +histiostomatid,histiostomatids +histioteuthid,histioteuthids +histocidarid,histocidarids +histocompatibility antigen,histocompatibility antigens +histocompatibility gene,histocompatibility genes +histodifferentiation,histodifferentiations +histogram,histograms +histogramme,histogrammes +histographer,histographers +histohaematin,histohaematins +histologist,histologists +histone deacetylase,histone deacetylases +histone,histones +histopathologist,histopathologists +histoplasmoma,histoplasmomas +historian,historians +historiaster,historiasters +historical,historicals +historicalist,historicalists +historicalization,historicalizations +historical present tense,historical present tenses +historicist,historicists +historic present tense,historic present tenses +historie,histories +historiette,historiettes +historiographer,historiographers +historiology,historiologies +historionomer,historionomers +history,histories +histosol,histosols +histotype,histotypes +histozyme,histozymes +histrion,histrions +hit and run,hit and runs +hit-and-run,hit-and-runs +hit batsman,hit batsmen +hit-by-pitch,hit-by-pitches +hitchel,hitchels +hitcher,hitchers +hitch-hiker,hitch-hikers +hitchhiker,hitchhikers +hitch,hitches +hitching-bar,hitching-bars +hitching post,hitching posts +hitchment,hitchments +hit counter,hit counters +hithe,hithes +hit,hits +hitjob,hitjobs +Hitler,Hitlers +Hitlerite,Hitlerites +Hitler mustache,Hitler mustaches +hit list,hit lists +hitmaker,hitmakers +hit man,hit men +hitman,hitmen +hit-out,hit-outs +hitout,hitouts +hit parade,hit parades +hit point,hit points +hitpoint,hitpoints +hittee,hittees +hitter,hitters +hitter's count,hitter's counts +hit test,hit tests +hitting,hittings +Hittite,Hittites +Hittitologist,Hittitologists +hitwoman,hitwomen +hive,hives +hive mind,hive minds +hivemind,hiveminds +hive of activity,hives of activity +hiver,hivers +HIV-negative,HIV-negatives +HIV-positive,HIV-positives +HMO,HMOs +HMXB,HMXBs +HNA,HNAs +hoagie,hoagies +hoagy,hoagies +hoarder,hoarders +hoard,hoards +hoarding,hoardings +hoar frost,hoar frosts +hoar-frost,hoar-frosts +hoar,hoars +hoarhound,hoarhounds +hoarstone,hoarstones +hoary marmot,hoary marmots +hoast,hoasts +hoast,hoasts +hoatzin,hoatzins +hoaxee,hoaxees +hoaxer,hoaxers +hoax,hoaxes +hoaxster,hoaxsters +hoaxter,hoaxters +hoazin,hoazins +ho bag,ho bags +ho-bag,ho-bags +Hobartian,Hobartians +hobbarddehoy,hobbarddehoys +hobbardehoy,hobbardehoys +hobbedehoy,hobbedehoys +hobbet,hobbets +hobbetyhoy,hobbetyhoys +Hobbist,Hobbists +hobbit,hobbits +hobbit,hobbits +hobble-bush,hobble-bushes +hobblebush,hobblebushes +hobbledehoy,hobbledehoys +hobble,hobbles +hobbler,hobblers +hobbleshaw,hobbleshaws +hobble skirt,hobble skirts +hobbletehoy,hobbletehoys +hobby,hobbies +hobby,hobbies +hobby horse,hobby horses +hobby-horse,hobby-horses +hobbyhorse,hobbyhorses +hobbyism,hobbyisms +hobbyist,hobbyists +hobdehoy,hobdehoys +hobelar,hobelars +hobeler,hobelers +hoberdehoy,hoberdehoys +hobgoblin,hobgoblins +hob,hobs +hob,hobs +hobhouchin,hobhouchins +hobiler,hobilers +hobit,hobits +hoblin,hoblins +hobnail boot,hobnail boots +hobnail,hobnails +hobnail liver,hobnail livers +hobnobber,hobnobbers +hob-nob,hob-nobs +hobnob,hobnobs +hobo bag,hobo bags +hoboe,hoboes +hoboglyph,hoboglyphs +hobohemia,hobohemias +hobohemian,hobohemians +hobo,hobos,hoboes +hobo jungle,hobo jungles +hobosexual,hobosexuals +hobo spider,hobo spiders +hobo stove,hobo stoves +hoboy,hoboys +hobson-jobson,hobson-jobsons +Hobson-Jobson,Hobson-Jobsons +Hobson's choice,Hobson's choices +hocco,hoccos,hoccoes +hochepoche,hochepoches +hocket,hockets +hockey bag,hockey bags +hockeyist,hockeyists +hockey net,hockey nets +hockey puck,hockey pucks +hockey rink,hockey rinks +hockey skate,hockey skates +hockey stick,hockey sticks +hockey stop,hockey stops +hock,hocks +hock,hocks +hockle,hockles +hockshop,hockshops +hocus,hocuses +hocuspocus,hocuspocuses +ho-dad,ho-dads +hodad,hodads +hodag,hodags +hod carrier,hod carriers +hodden,hoddens +hodder,hodders +hoddie,hoddies +hoddydoddy,hoddydoddies +hod,hods +hodja,hodjas +hodmandod,hodmandods +hodman,hodmen +hodograph,hodographs +hodometer,hodometers +hodophile,hodophiles +hodoscope,hodoscopes +hoe bag,hoe bags +hoe-bag,hoe-bags +hoecake,hoecakes +hoe down,hoe downs +hoe-down,hoe-downs +hoedown,hoedowns +hoe,hoes +hoe,hoes +hoe,hoes +hoer,hoers +hof,hofs +hof,hofs +hof,hofs +hogan,hogans +hogapple,hogapples +hogback,hogbacks +hogchain,hogchains +hogchoker,hogchokers +hogcote,hogcotes +hog deer,hog deers +hogeschool,hogeschools +hog fennel,hog fennels +hogfish,hogfishes,hogfish +hogframe,hogframes +hog fuel,hog fuels +hoggan-bag,hoggan-bags +hoggaster,hoggasters +hoggerel,hoggerels +hogger,hoggers +hogger pump,hogger pumps +hoggery,hoggeries +hogget,hoggets +hog gum,hog gums +hog heaven,hog heavens +hogherd,hogherds +hogh,hoghs +hog,hogs +hog island,hog islands +hogleg,hoglegs +hoglet,hoglets +hog line,hog lines +hog line violation,hog line violations +hog maw,hog maws +hognose snake,hognose snakes +hognut,hognuts +hogpen,hogpens +hogreeve,hogreeves +hogringer,hogringers +hog-rubber,hog-rubbers +hogscore,hogscores +hogshead,hogsheads +hog's leg,hog's legs +hog's pudding,hogs' puddings +hogsty,hogsties +hogsucker,hogsuckers +hog town,hog towns +hog waller,hog wallers +hogwaller,hogwallers +hog wallow,hog wallows +hogweed,hogweeds +Hohenzollern,Hohenzollerns +hohlraum,hohlraums +ho,hos,hoes +hoiden,hoidens +hoik,hoiks +hoistaway,hoistaways +hoist bridge,hoist bridges +hoister,hoisters +hoist,hoists +hoistway,hoistways +hoja santa,hoja santas +hojillion,hojillions +hoke,hokes +hok,hoks +Hokie,Hokies +hokku,hokkus,hokku +hokum,hokums +holarchy,holarchies +holard,holards +holaspis,holaspides +holasteroid,holasteroids +holcad,holcads +hold-all,hold-alls +holdall,holdalls +holdawayite,holdawayites +holdback,holdbacks +holderbat,holderbats +holder,holders +holdfast,holdfasts +hold,holds +hold,holds +holding action,holding actions +holding cell,holding cells +holding company,holding companies +holding deal,holding deals +holding,holdings +holding midfielder,holding midfielders +holding note,holding notes +holding pattern,holding patterns +holdoff,holdoffs +hold out,hold outs +holdout,holdouts +hold over,hold overs +holdover,holdovers +hold-up,hold-ups +holdup,holdups +hole card,hole cards +-holed solid torus,-holed solid tori +-holed torus,-holed tori +hole,holes +hole in one,holes in one +hole-in-the-wall,hole-in-the-walls,holes-in-the-wall +hole punch,hole punches +holer,holers +holeshot,holeshots +hole state,hole states +holibut,holibuts,holibut +holiday camp,holiday camps +holidayer,holidayers +holiday,holidays +holiday home,holiday homes +holiday-maker,holiday-makers +holidaymaker,holidaymakers +holiday ownership,holiday ownerships +holiness,holinesses +Holiness,Holinesses +holin,holins +holinight,holinights +holist,holists +holk,holks +holla back,holla backs +hollandaise sauce,hollandaise sauces +Hollander,Hollanders +hollerer,hollerers +holler,hollers +holler,hollers +Hollerith card,Hollerith cards +hollo,hollos +hollow,hollows +hollowing,hollowings +hollow leg,hollow legs +hollow point,hollow points +hollow rail,hollow rails +hollow victory,hollow victories +holluschick,holluschickie +holluschickie,holluschickies +holly blue,holly blues +hollyhock,hollyhocks +holly,hollies +holly-leaved cherry,holly-leaved cherries +holly oak,holly oaks +Hollywood ending,Hollywood endings +Hollywood flat,Hollywood flats +Hollywood Irish,Hollywood Irish +Hollywood moment,Hollywood moments +Hollywood principle,Hollywood principles +Hollywood-style flat,Hollywood-style flats +holmberry,holmberries +holme,holmes +holmes,holmeses +Holmesian,Holmesians +Holmes rebound phenomenon,Holmes rebound phenomena +holm,holms +holm,holms +holmiid,holmiids +holm oak,holm oaks +holmos,holmoi +holmquistite,holmquistites +holoarchy,holoarchies +holoblast,holoblasts +holocaust,holocausts +holocentrid,holocentrids +holocephalan,holocephalans +holoclone,holoclones +holocoen,holocoens +holocube,holocubes +holodeck,holodecks +holoenzyme,holoenzymes +hologram,holograms +hologramme,hologrammes +holograph,holographs +holographic will,holographic wills +holohedron,holohedra +holo,holos +holoimage,holoimages +holometabolan,holometabolans +holometer,holometers +holomorph,holomorphs +holomorphism,holomorphisms +holomovement,holomovements +holon,holons +holonomic constraint,holonomic constraints +holonomy,holonomies +holonym,holonyms +holoparasite,holoparasites +holopeid,holopeids +holophote,holophotes +holophrasis,holophrases +holoprojection,holoprojections +holoprojector,holoprojectors +holoprotein,holoproteins +holoptychiid,holoptychiids +holoreceptor,holoreceptors +holorime,holorimes +holosiderite,holosiderites +holostome,holostomes +holothure,holothures +holothurian,holothurians +holothuriid,holothuriids +holothurin,holothurins +holothuroid,holothuroids +holotoxin,holotoxins +holotype,holotypes +holour,holours +holovid,holovids +holozoan,holozoans +holstein,holsteins +Holstein,Holsteins +holster,holsters +holt,holts +holy card,holy cards +holy cross,holy crosses +holyday,holydays +holy grail,holy grails +holyhedron,holyhedra +holy,holies +holynesse,holynesses +holyness,holynesses +Holy Roller,Holy Rollers +Holy Saturday,Holy Saturdays +holystone,holystones +holy war,holy wars +holy water,holy waters +holy-water sprinkle,holy-water sprinkles +holy water sprinkler,holy water sprinklers +Holy Wednesday,Holy Wednesdays +homage,homages +homager,homagers +homalocephalid,homalocephalids +homalodotheriid,homalodotheriids +homalonotid,homalonotids +homalonychid,homalonychids +homarid,homarids +Homburg hat,Homburg hats +homburg,homburgs +Homburg,Homburgs +home away from home,homes away from home +home base,home bases +homebody,homebodies +homeboy,homeboys +homebrewed,homebreweds +homebrewer,homebrewers +homebrew,homebrews +homebuilder,homebuilders +homebuyer,homebuyers +homecage,homecages +home carer,home carers +home cinema,home cinemas +homecoming,homecomings +Homecoming King,Homecoming Kings +Homecoming Queen,Homecoming Queens +home computer,home computers +home country,home countries +Home Depot,Home Depots +homefare,homefares +homefield,homefields +homefront,homefronts +home game,home games +homegirl,homegirls +homegroup,homegroups +home help,home helps +home,homes +Home Information Pack,Home Information Packs +home inspection,home inspections +home inspector,home inspectors +home invasion,home invasions +homeland,homelands +homeless shelter,homeless shelters +homelife,homelives +homeling,homelings +home loan,home loans +home lot,home lots +homelyn,homelyns +homemaker,homemakers +home movie,home movies +homeobox gene,homeobox genes +homeobox,homeoboxes +homeodomain,homeodomains +home office,home offices +homeograph,homeographs +homeoid,homeoids +homeomorph,homeomorphs +homeomorphism,homeomorphisms +homeopath,homeopaths +homeopathist,homeopathists +homeopathy,homeopathies +homeophone,homeophones +homeoplasty,homeoplasties +homeoprotein,homeoproteins +homeostasis,homeostases +homeotherm,homeotherms +homeowner,homeowners +home page,home pages +homepage,homepages +homeplace,homeplaces +home plate,home plates +homepreneur,homepreneurs +homer,homers +homer,homers +homerid,homerids +Homerism,Homerisms +homeroom,homerooms +Homer Simpson,Homer Simpsons +home ruler,home rulers +home run,home runs +Homer-Wright rosette,Homer-Wright rosettes +homeschooler,homeschoolers +home school,home schools +homeschool,homeschools +Home Secretary,Home Secretaries +home-sickness,home-sicknesses +homesickness,homesicknesses +home side,home sides +homesite,homesites +homesitter,homesitters +home slice,home slices +homeslice,homeslices +homestall,homestalls +homestand,homestands +homestay,homestays +homesteader,homesteaders +homestead,homesteads +home straight,home straights +home stretch,home stretches +homestretch,homestretches +home teacher,home teachers +home team,home teams +home thrust,home thrusts +home town,home towns +hometown,hometowns +home truth,home truths +home video,home videos +homevid,homevids +homeworker,homeworkers +homeworld,homeworlds +home wrecker,home wreckers +homewrecker,homewreckers +homey,homies,homeys +home zone,home zones +homicide,homicides +homicider,homiciders +homie,homies +homilete,homiletes +homilist,homilists +homily,homilies +homination,hominations +homing instinct,homing instincts +homing pigeon,homing pigeons +hominid,hominids +hominine,hominines +hominin,hominins +hominoid,hominoids +hommage,hommages +hommock,hommocks +homoallele,homoalleles +homoallylamine,homoallylamines +homoallylglycine,homoallylglycines +homoallyl,homoallyls +homoanhydride,homoanhydrides +homoceratid,homoceratids +homochain,homochains +homochiralization,homochiralizations +homocitrate,homocitrates +homocon,homocons +homoconjugation,homoconjugations +homocoupling,homocouplings +homocycle,homocycles +homodimer,homodimers +homodimerization,homodimerizations +homoduplex,homoduplexes +Homoean,Homoeans +homoeobox,homoeoboxes +homoeograph,homoeographs +homΕ“ograph,homΕ“ographs +homoeoid,homoeoids +homΕ“oid,homΕ“oids +homoeomeria,homoeomerias +homΕ“omeria,homΕ“omerias,homΕ“omeriΓ¦ +homoeomery,homoeomeries +homΕ“omery,homΕ“omeries +homΕ“omorph,homΕ“omorphs +homoeomorphism,homoeomorphisms +homΕ“omorphism,homΕ“omorphisms +homoeopath,homoeopaths +homΕ“opath,homΕ“opaths +homΕ“opathist,homΕ“opathists +homΕ“opathy,homΕ“opathies +homoeophone,homoeophones +homΕ“ophone,homΕ“ophones +homΕ“oplasty,homΕ“oplasties +homΕ“ostasis,homΕ“ostases +homoeotherm,homoeotherms +homoepitaxy,homoepitaxies +homofascist,homofascists +homofullerene,homofullerenes +homogalacturonan,homogalacturonans +homogenate,homogenates +homogeneity,homogeneities +homogeneous catalysis,homogeneous catalyses +homogeneous function,homogeneous functions +homogeneous mixture,homogeneous mixtures +homogeneous number,homogeneous numbers +homogeneous polynomial,homogeneous polynomials +homogeneous space,homogeneous spaces +homogeniser,homogenisers +homogenized milk,homogenized milks +homogenizer,homogenizers +homogenous function,homogenous functions +homogenous polynomial,homogenous polynomials +homogentisate,homogentisates +homoglycan,homoglycans +homoglyph,homoglyphs +homograft,homografts +homograph,homographs +homoheptamer,homoheptamers +homohexamer,homohexamers +homoiophone,homoiophones +homoioptoton,homoioptota +homoiotherm,homoiotherms +homoiousian,homoiousians +homojunction,homojunctions +homokaryon,homokaryons +homolid,homolids +homolignane,homolignanes +homolodromiid,homolodromiids +homologation,homologations +homolog,homologs +homologon,homologa +homologous pair,homologous pairs +homologous recombination,homologous recombinations +homologous series,homologous series +homologue,homologues +homology,homologies +homology sphere,homology spheres +homolysate,homolysates +homo marriage,homo marriages +homomarriage,homomarriages +homomer,homomers +homomorphism,homomorphisms +homomultimer,homomultimers +homonym,homonyms +homonymy,homonymies +homooctamer,homooctamers +homooligomer,homooligomers +homoousian,homoousians +homopentamer,homopentamers +homophase,homophases +homophene,homophenes +homophenylalanyl,homophenylalanyls +homophile,homophiles +homophobe,homophobes +homophobe,homophobes +homophone,homophones +homophony,homophonies +homophora,homophors +homoplast,homoplasts +homopolymer,homopolymers +homopolymerisation,homopolymerisations +homopolymerization,homopolymerizations +homopolysaccharide,homopolysaccharides +homopropargyl,homopropargyls +homopteran,homopterans +homopter,homopters +homoribopolymer,homoribopolymers +homosalate,homosalates +homo sapien,homo sapiens +Homo sapien,Homo sapiens +Homo sapiens,Homines sapientes +homoscedasticity,homoscedasticities +homosexual,homosexuals +homosexualist,homosexualists +homosexual panic defense,homosexual panic defenses +homospermine,homospermines +homosphere,homospheres +homospore,homospores +homostructure,homostructures +homotetramer,homotetramers +homothecy,homothecies +homothet,homothets +homotheticity,homotheticities +homothety,homotheties +homotop,homotops +homotopy,homotopies +homotransplant,homotransplants +homotrimer,homotrimers +homotropy,homotropies +homotype,homotypes +homowhore,homowhores +homozeotrope,homozeotropes +homozygote,homozygotes +homunculus,homunculi +honcho,honchos +honda,hondas +Honduran,Hondurans +hone,hones +hone,hones +honer,honers +honest broker,honest brokers +honestie,honesties +honest injun,honest injuns +honewort,honeworts +honey badger,honey badgers +honeybadger,honeybadgers +honeybag,honeybags +honey bear,honey bears +honey bee,honey bees +honeybee,honeybees +honeyberry,honeyberries +honeybird,honeybirds +honey bucket,honey buckets +honeybug,honeybugs +honeybun,honeybuns +honey bunny,honey bunnies +honeybunny,honeybunnies +honey buzzard,honey buzzards +honeycake,honeycakes +honeycomb,honeycombs +honeycombing,honeycombings +honeycomb stomach,honeycomb stomachs +honeycreeper,honeycreepers +honeydew list,honeydew lists +honeydew melon,honeydew melons +honey dipper,honey dippers +honey do list,honey do lists +honey-do list,honey-do lists +honeyeater,honeyeaters +honey fungus,honey fungi +honey guide,honey guides +honeyguide,honeyguides +honey locust,honey locusts +honeylocust,honeylocusts +honeymooner,honeymooners +honeymoon,honeymoons +honeymoon period,honeymoon periods +honeynet,honeynets +honeypie,honeypies +honey plant,honey plants +honey possum,honey possums +honey-pot ant,honey-pot ants +honeypot ant,honeypot ants +honey pot,honey pots +honeypot,honeypots +honeysucker,honeysuckers +honeysuck,honeysucks +honeysuckle,honeysuckles +honeytoken,honeytokens +honey trap,honey traps +honeytrap,honeytraps +honey wagon,honey wagons +honeywort,honeyworts +hong bao,hong bao,hongbaos +hongbao,hongbao,hongbaos +hong,hongs +Hongkie,Hongkies +Hong Kong dollar,Hong Kong dollars +Hongkongese,Hongkongese +hongweibing,hongweibing +honkatonk,honkatonks +honker,honkers +honkey,honkeys +honk,honks +honkie,honkies +honking,honkings +honky,honkies +honky tonk,honky tonks +honky-tonk,honky-tonks +honkytonk,honkytonks +honnor,honnors +honnour,honnours +honorable mention,honorable mentions +honorarium,honorariums,honoraria +honorary,honoraries +honorary trust,honorary trusts +honoree,honorees +honorer,honorers +honorificabilitudinity,honorificabilitudinities +honorific,honorifics +honorific transposition,honorific transpositions +honor killing,honor killings +honor roll,honor rolls +honourarium,honourariums,honouraria +honouree,honourees +honourer,honourers +honourific,honourifics +honour killing,honour killings +honour roll,honour rolls +honour system,honour systems +honu,honus +honyock,honyocks +hooch,hooches +hooch,hooches +hoochie-coochie,hoochie-coochies +hoochie,hoochies +hoochie mama,hoochie mamas +hooded crow,hooded crows +hooded seal,hooded seals +hooded tinamou,hooded tinamous +'hood,'hoods +hood,hoods +hoodia,hoodias +hoodiecrow,hoodiecrows +hoodie,hoodies +hoodlum,hoodlums +hoodoo,hoodoos +hood ornament,hood ornaments +hood rat,hood rats +hoodrat,hoodrats +hoodwinker,hoodwinkers +hoody,hoodies +hoofbeat,hoofbeats +hoofer,hoofers +hoof fungus,hoof fungi +hoof,hoofs,hooves +hoofmark,hoofmarks +hoofprint,hoofprints +hoohaa,hoohaas +hoo-hah,hoo-hahs +hoo-ha,hoo-has +hook above,hooks above +hookah,hookahs +hooka,hookas +hook and eye,hooks and eyes +hookbill,hookbills +hooke,hookes +hooker,hookers +Hooke's atom,Hooke's atoms +hookgun,hookguns +hook,hooks +hooking,hookings +hookkeeper,hookkeepers +hooklet,hooklets +hookman,hookmen +hooknose,hooknoses +hook shot,hook shots +hookswitch,hookswitches +hook turn,hook turns +hookup,hookups +hookworm,hookworms +hooley,hooleys +hoolie,hoolies +hooligan,hooligans +hoolock,hoolocks +hoond,hoonds +hoon,hoons +hoon,hoons +hoonoomaun,hoonoomauns +hooper,hoopers +hoop,hoops +hoop,hoops +Hoop,Hoops +hoopla,hooplas +hoopoe,hoopoes +hoopoo,hoopoos +hoop pine,hoop pines +hoop skirt,hoop skirts +hoopskirt,hoopskirts +hoop snake,hoop snakes +hoopster,hoopsters +hooptie,hoopties +hoopty,hoopties +hooray for Hollywood,hoorays for Hollywood +Hooray Henry,Hooray Henries +hooray,hoorays +hoosegow,hoosegows +hoose,hooses +Hoosier,Hoosiers +hootch,hootches +hootchie,hootchies +hootchy-kootchy,hootchy-kootchies +hootenanny,hootenannies +hooter,hooters +hoot,hoots +hooting,hootings +Hoovercrat,Hoovercrats +hoover,hoovers +Hooverville,Hoovervilles +hopak,hopaks +hopane,hopanes +hopanoid,hopanoids +hopback,hopbacks +hopbind,hopbinds +hopbine,hopbines +hope chest,hope chests +hopeful,hopefuls +hope,hopes +hoper,hopers +Hopf algebra,Hopf algebras +hop garden,hop gardens +hophead,hopheads +hop,hops +hop,hops +hop,hops +hophornbeam,hophornbeams +hoping,hopings +hop joint,hop joints +hoplichthyid,hoplichthyids +hoplite,hoplites +hoplitid,hoplitids +hoplocercid,hoplocercids +hoplolaimid,hoplolaimids +hoplologist,hoplologists +hoplon,hoplons +hoplophobe,hoplophobes +hoplopleurid,hoplopleurids +hopologist,hopologists +hop-o'-my-thumb,hop-o'-my-thumbs +hopper crystal,hopper crystals +hopper,hoppers +hoppet,hoppets +hopping Dick,hopping Dicks +hopping,hoppings +hopping,hoppings +hopple,hopples +hoppo,hoppos,hoppoes +hopportunity,hopportunities +hopscotcher,hopscotchers +hopyard,hopyards +horah,horahs +hora,horas +horary,horaries +horchata,horchatas +horde,hordes +hordeivirus,hordeiviruses +hordeolum,hordeola +horehound,horehounds +Horezmian,Horezmians +horilka,horilkas +horison,horisons +horizon,horizons +horizontal bar,horizontal bars +horizontal,horizontals +horizontal hula,horizontal hulas +horizontalist,horizontalists +horizontality,horizontalities +horizontal mambo,horizontal mambos +horizontal market,horizontal markets +Horlicks,Horlicks +hormathiid,hormathiids +hormesis,hormeses +hormogonium,hormogonia +hormone,hormones +hormone replacement therapy,hormone replacement therapies +hormotomid,hormotomids +horn antenna,horn antennae,horn antennas +hornbeak,hornbeaks +hornbeam,hornbeams +hornbill,hornbills +hornblower,hornblowers +hornbook,hornbooks +hornbug,hornbugs +Horn clause,Horn clauses +horn dog,horn dogs +horn-dog,horn-dogs +horndog,horndogs +horned frog,horned frogs +horned lark,horned larks +horned lizard,horned lizards +horned owl,horned owls +horned pout,horned pouts +horned screamer,horned screamers +hornel,hornels +horner,horners +Horner,Horners +hornet fly,hornet flies +hornet,hornets +Hornet,Hornets +hornfish,hornfishes,hornfish +hornful,hornfuls +hornist,hornists +hornito,hornitos,hornitoes +horn of plenty,horns of plenty +hornotine,hornotines +hornowl,hornowls +hornpike,hornpikes +hornpipe,hornpipes +hornpout,hornpouts +hornsnake,hornsnakes +hornswoggler,hornswogglers +horntail,horntails +hornwork,hornworks +hornworm,hornworms +hornwort,hornworts +hornwrack,hornwracks +horny goat weed,horny goat weeds +hornyhead chub,hornyhead chubs,hornyhead chub +hornyhead,hornyheads +horoball,horoballs +horocycle,horocycles +horologe,horologes +horologer,horologers +horologist,horologists +horometer,horometers +horophile,horophiles +horopter,horopters +horoscope,horoscopes +horoscoper,horoscopers +horoscopist,horoscopists +horosphere,horospheres +horrible,horribles +horrifier,horrifiers +horror autotoxicus,horror autotoxicuss +horror film,horror films +horror flick,horror flicks +horror,horrors +horror movie,horror movies +horror story,horror stories +horrour,horrours +hors d'Ε“uvre,hors d'Ε“uvre +hors d'oeuvre,hors d'oeuvres +hors-d'oeuvre,hors-d'oeuvres +horse and cart,horses and carts +horseapple,horseapples +horse archer,horse archers +horseback,horsebacks +horse bean,horse beans +horse blanket,horse blankets +horse-block,horse-blocks +horse bot fly,horse bot flies +horse box,horse boxes +horsebox,horseboxes +horsebreaker,horsebreakers +horseburger,horseburgers +horsecar,horsecars +horsecart,horsecarts +horse chestnut,horse chestnuts +horse-chestnut,horse-chestnuts +horsecloth,horsecloths +horsecollar,horsecollars +horse dick,horse dicks +horsedick,horsedicks +horse-drench,horse-drenches +horsefish,horsefishes,horsefish +horsefly,horseflies +horsefoot,horsefoots,horsefeet +horsehair,horsehairs +horsehead,horseheads +horseherd,horseherds +horsehood,horsehoods +horse,horses +horse-jockey,horse-jockeys +horselaugh,horselaughs +horse-leech,horse-leeches +horseless carriage,horseless carriages +horseling,horselings +horseload,horseloads +horse mackerel,horse mackerels +horseman,horsemen +horsenail,horsenails +horsenettle,horsenettles +horse opera,horse operas +horse-opera,horse-operas +horse pill,horse pills +horseplayer,horseplayers +horsepond,horseponds +horse power,horse powers +horsepower,horsepowers,horsepower +horse race,horse races +horserace,horseraces +horse-radish,horse-radishes +horserake,horserakes +horserider,horseriders +horse's ass,horses' asses +horseshoe crab,horseshoe crabs +horse shoe,horse shoes +horseshoe,horseshoes +horseshoe map,horseshoe maps +horseshoer,horseshoers +horseshoe sandwich,horseshoe sandwiches +horse's mouth,horses' mouths +horse soldier,horse soldiers +horse stance,horse stances +horse-stinger,horse-stingers +horsetail,horsetails +horse trader,horse traders +horse-trader,horse-traders +horsetrader,horsetraders +horse trailer,horse trailers +horse whip,horse whips +horsewhip,horsewhips +horsewhipping,horsewhippings +horse whisperer,horse whisperers +horsewoman,horsewomen +horsewood,horsewoods +horseworm,horseworms +horsey,horseys +horsiculture,horsicultures +horsie,horsies +horst,horsts +horsy,horsies +hortation,hortations +hortative,hortatives +hortatory,hortatories +hortensia,hortensias +horticultor,horticultors +horticulturist,horticulturists +hortyard,hortyards +Horus name,Horus names +hosannahing,hosannahings +hosanna,hosannas +hosaphone,hosaphones +hosebag,hosebags +hose barb,hose barbs +hosebeast,hosebeasts +hose clamp,hose clamps +hosehead,hoseheads +hose,hoses,hose,hosen +hosel,hosels +hosemonkey,hosemonkeys +hosepipe,hosepipes +hoser,hosers +hosing,hosings +hospital corner,hospital corners +hospitaler,hospitalers +hospital,hospitals +hospitalist,hospitalists +hospitaller,hospitallers +hospital pass,hospital passes +hospital ship,hospital ships +hospiticide,hospiticides +hospitium,hospitiums,hospitia +hospodar,hospodars +hoss,hosses +hoss opera,hoss operas +hostage,hostages +hostage negotiator,hostage negotiators +hostageship,hostageships +hosta,hostas +hostee,hostees +hosteler,hostelers +hostel,hostels +hosteller,hostellers +hostelry,hostelries +hoster,hosters +hostesse,hostesses +hostess,hostesses +hostess trolley,hostess trollies,hostess trolleys +host,hosts +host,hosts +host,hosts +hostie,hosties +hostie,hosties +hostile,hostiles +hostile takeover,hostile takeovers +hostile witness,hostile witnesses +hosting,hostings +hostler,hostlers +hostmask,hostmasks +hostmaster,hostmasters +hostname,hostnames +host response,host responses +hostry,hostries +hot air balloon,hot air balloons +hot-air balloon,hot-air balloons +hot and sour soup,hot and sour soups +hotbed,hotbeds +hot beef injection,hot beef injections +hot-beef injection,hot-beef injections +hot blast,hot blasts +hot bottle,hot bottles +hotbox,hotboxes +hot-brain,hot-brains +hotbrain,hotbrains +hot bread kitchen,hot bread kitchens +hot bulb,hot bulbs +hot button,hot buttons +hotcake,hotcakes +hot carl,hot carls +hot cathode,hot cathodes +hot chat,hot chats +hot check,hot checks +hot chisel,hot chisels +hotchpotch,hotchpotches +hotchpot,hotchpots +hot closet,hot closets +hot cocoa,hot cocoas +hot cross bun,hot cross buns +hot cupboard,hot cupboards +hot date,hot dates +hot desker,hot deskers +hot desk,hot desks +hot-desk,hot-desks +hotdesk,hotdesks +hot-dip,hot-dips +hot dipping,hot dippings +hotdish,hotdishes +hot dog bun,hot dog buns +hot dog,hot dogs +hot-dog,hot-dogs +hotdog,hotdogs +hotel,hotels +hotelier,hoteliers +hotelkeeper,hotelkeepers +hot favorite,hot favorites +hotfix,hotfixes +hot flash,hot flashes +hot-flue,hot-flues +hot flush,hot flushes +hotfoot,hotfoots +hot glue,hot glues +hot gospeller,hot gospellers +hot hamburger sandwich,hot hamburger sandwiches +hot hand,hot hands +hot hatchback,hot hatchbacks +hot hatch,hot hatches +hot-head,hot-heads +hothead,hotheads +hothouse,hothouses +hot iron test,hot iron tests +hot Jupiter,hot Jupiters +hot key,hot keys +hotkey,hotkeys +hot laboratory,hot laboratories +hot line,hot lines +hotline,hotlines +hotlink,hotlinks +hotlist,hotlists +hot lunch,hot lunches +Hotmailer,Hotmailers +hot melt adhesive,hot melt adhesives +hot melt glue,hot melt glues +hotmelt,hotmelts +Hotot,Hotots +hot pink,hot pinks +hot plate,hot plates +hotplate,hotplates +hot potato,hot potatoes +hotpresser,hotpressers +hot press,hot presses +hot property,hot properties +hot pursuit,hot pursuits +hotr,hotrs +hotrodder,hotrodders +hot rod,hot rods +hotrod,hotrods +hot saw,hot saws +hot seal,hot seals +hot seat,hot seats +hot set,hot sets +hot sheet,hot sheets +hot shift,hot shifts +hot shoe,hot shoes +hotshot,hotshots +hot-skull,hot-skulls +hot spell,hot spells +hot spot,hot spots +hotspot,hotspots +hot spring,hot springs +hotspur,hotspurs +hot squat,hot squats +hot stamp,hot stamps +hot stove,hot stoves +hot-stove,hot-stoves +hotsy-totsy,hotsy-totsies +hot tamale,hot tamales +hot tap,hot taps +hot tear,hot tears +hot tearing,hot tearings +Hottentotism,Hottentotisms +Hottentot teal,Hottentot teals +hotter,hotters +hot ticket,hot tickets +hottie,hotties +hot trod,hot trods +hot tube,hot tubes +hot tub,hot tubs +hotty,hotties +hotwalker,hotwalkers +hot wall,hot walls +hot war,hot wars +hotwash,hotwashes +hot water bottle,hot water bottles +hot water heater,hot water heaters +hot wave,hot waves +hot well,hot wells +hot whiskey,hot whiskeys +hot whisky,hot whiskies +hotwife,hotwives +hot wind,hot winds +houdah,houdahs +Houdini,Houdinis +hough,houghs +hough,houghs +houlet,houlets +hoult,hoults +hound dog,hound dogs +houndfish,houndfishes,houndfish +hound,hounds +hounding,houndings +houndling,houndlings +hound shark,hound sharks +hound's-tongue,hound's-tongues +houndstongue,houndstongues +houndstooth,houndsteeth +houngan,houngans +houpelande,houpelandes +houppelande,houppelandes +hour change,hour changes +hourglass figure,hourglass figures +hourglass,hourglasses +hour hand,hour hands +hour,hours +houri,houris +hourly,hourlies +hourly worker,hourly workers +houseboater,houseboaters +houseboat,houseboats +houseboi,housebois +housebote,housebotes +house boy,house boys +houseboy,houseboys +house breaker,house breakers +house-breaker,house-breakers +housebreaker,housebreakers +housebreaking,housebreakings +housebuilder,housebuilders +housebuyer,housebuyers +house call,house calls +house-call,house-calls +housecall,housecalls +housecar,housecars +housecarl,housecarls +house cat,house cats +housecat,housecats +housecleaner,housecleaners +house-coat,house-coats +housecoat,housecoats +house cricket,house crickets +house detective,house detectives +house-detective,house-detectives +house dick,house dicks +house door,house doors +house-door,house-doors +housedoor,housedoors +housedress,housedresses +housefather,housefathers +house floor,house floors +housefloor,housefloors +housefly,houseflies +house frau,house fraus +houseful,housefuls,housesful +housegirl,housegirls +houseguest,houseguests +household appliance,household appliances +household deity,household deities +householder,householders +household god,household gods +household,households +household income,household incomes +household name,household names +house,houses +house husband,house husbands +househusband,househusbands +house keeper,house keepers +housekeeper,housekeepers +house lamb,house lambs +houseleek,houseleeks +houselight,houselights +houseline,houselines +houseling,houselings +houseling,houselings +housemaid,housemaids +houseman,housemen +house martin,house martins +housemartin,housemartins +house master,house masters +housemaster,housemasters +housemate,housemates +housemother,housemothers +house mouse,house mice +house nigger,house niggers +house number,house numbers +house of accommodation,houses of accommodation +house of assignation,houses of assignation +house of cards,houses of cards +house of correction,houses of correction +house of ill fame,houses of ill fame +house of ill repute,houses of ill repute +House of Parliament,Houses of Parliament +house of worship,houses of worship +House of Worship,Houses of Worship +house organ,house organs +housepainter,housepainters +houseparent,houseparents +house party,house parties +housepet,housepets +house plant,house plants +houseplant,houseplants +house rat,house rats +house rule,house rules +house-search,house-searches +houseshoe,houseshoes +house sitter,house sitters +house-sitter,house-sitters +housesitter,housesitters +housesmith,housesmiths +house spider,house spiders +house style,house styles +housetop,housetops +housetrucker,housetruckers +housetruck,housetrucks +house wall,house walls +house-wall,house-walls +housewall,housewalls +house warming,house warmings +house-warming,house-warmings +housewarming,housewarmings +housewife,housewives +house wine,house wines +houseworker,houseworkers +housewright,housewrights +housing estate,housing estates +houss,housses +houstonia,houstonias +Houstonian,Houstonians +houtou,houtous +houttuynia,houttuynias +houve,houves +hoveler,hovelers +hovel,hovels +hoveller,hovellers +hoverbarge,hoverbarges +hoverbike,hoverbikes +hoverboarder,hoverboarders +hoverboard,hoverboards +hovercam,hovercams +hovercar,hovercars +hoverchair,hoverchairs +hovercraft,hovercrafts,hovercraft +hovercycle,hovercycles +hoverer,hoverers +hover-fly,hover-flies +hoverfly,hoverflies +hover,hovers +hoverjet,hoverjets +hoverport,hoverports +hovertrain,hovertrains +HOV,HOVs +howadji,howadjis +howardite,howardites +howcatchem,howcatchems +howdah,howdahs +howdunit,howdunits +howdunnit,howdunnits +howdy,howdies +howe,howes +howel,howels +hower,howers +howff,howffs +howf,howfs +how,hows +how,hows +howitzer,howitzers +howitz,howitzes +howker,howkers +howler,howlers +howler monkey,howler monkeys +howlet,howlets +howl,howls +howling,howlings +how-to,how-tos +howto,howtos +how-to-vote card,how-to-vote cards +howve,howves +hox gene,hox genes +Hoxhaist,Hoxhaists +Hoxtonite,Hoxtonites +hoya,hoyas +hoyden,hoydens +hoy,hoys +hoyman,hoymen +hPSC,hPSCs +H–R diagram,H–R diagrams +hrivna,hrivnas +hryvnia,hryvnias +hryvnya,hryvnyas +HS,HSs +hsien,hsiens +hsync,hsyncs +HSYNC,HSYNCs +h/t,h/ts +HT,HTs +HTTP cookie,HTTP cookies +huanaco,huanacos,huanacoes +Huaorani,Huaoranis +huapango,huapangos +huarache,huaraches +huatia,huatias +huayangosaurid,huayangosaurids +Huayco tinamou,Huayco tinamous +hubbardiid,hubbardiids +hubble bubble,hubble bubbles +hubble-bubble,hubble-bubbles +hubbly bubbly,hubbly bubblies +hub-bub,hub-bubs +hubbub,hubbubs +hubby,hubbies +hub cap,hub caps +hubcap,hubcaps +hub,hubs +hubnerite,hubnerites +hΓΌbnerite,hΓΌbnerites +hubodometer,hubodometers +hubometer,hubometers +huboon,huboons +hub world,hub worlds +huchen,huchens +huc,hucs +huckaback,huckabacks +huckabuck,huckabucks +hucker,huckers +huck,hucks +huckleberry,huckleberries +huckle bone,huckle bones +hucklebuck,hucklebucks +huckle,huckles +hucksterer,hucksterers +huckster,hucksters +huckstress,huckstresses +huddle,huddles +huddler,huddlers +hudge,hudges +hud,huds +HUD,HUDs +hudnah,hudnahs +hudna,hudnas +hue,hues +hue,hues +huemul,huemuls +huer,huers +huffer,huffers +huff,huffs +huffing,huffings +hugag,hugags +hugaholic,hugaholics +hugfest,hugfests +hugger,huggers +huggle,huggles +huggler,hugglers +hug,hugs +Huguenot,Huguenots +huhu beetle,huhu beetles +huhu,huhus +huia,huias +Huichol,Huichols +hui,huis +huipil,huipiles +huisher,huishers +huitfoil,huitfoils +hujra,hujras +huke,hukes +hula hooper,hula hoopers +hula hoop,hula hoops +hula hula,hula hulas +hula-hula,hula-hulas +hula,hulas +hulan,hulans +hulch,hulches +Hulkamaniac,Hulkamaniacs +hulk,hulks +Hulk,Hulks +hullabaloo,hullabaloos +hull breach,hull breaches +huller,hullers +hull,hulls +hull,hulls +hull-loss accident,hull-loss accidents +hullock,hullocks +hull splash,hull splashes +huly-huly,huly-hulys +humanation,humanations +human being,human beings +human cannonball,human cannonballs +human flea,human fleas +human-flesh search,human-flesh searches +human,humans +humanicide,humanicides +human immunodeficiency virus,human immunodeficiency viruses +humanisation,humanisations +humaniser,humanisers +humanist,humanists +humanitarian,humanitarians +humanitarian intervention,humanitarian interventions +humanitian,humanitians +humanization,humanizations +humanizer,humanizers +human knot,human knots +humanoid,humanoids +human pyramid,human pyramids +human right,human rights +human sacrifice,human sacrifices +human shield,human shields +human year,human years +humanzee,humanzees +humate,humates +humation,humations +humbird,humbirds +humble-bee,humble-bees +humblebee,humblebees +humblebrag,humblebrags +humble pie,humble pies +humble plant,humble plants +humbler,humblers +humbling,humblings +Humboldt penguin,Humboldt penguins +humbrella,humbrellas +humbucker,humbuckers +humbucking pickup,humbucking pickups +humbugger,humbuggers +humbug,humbugs +humdinger,humdingers +Humean,Humeans +humectant,humectants +humectation,humectations +Humeian,Humeians +humerus,humeri +hum,hums +Humian,Humians +humidex,humidexes +humid heat,humid heats +humidifier,humidifiers +humidistat,humidistats +humidor,humidors +humiliation,humiliations +humiliator,humiliators +humiliatrix,humiliatrixes,humiliatrices +humilitude,humilitudes +huminite,huminites +humisol,humisols +humita,humitas +humiture,humitures +hummeler,hummelers +hummel,hummels +hummeller,hummellers +hummer,hummers +Hummer,Hummers +humming-bird,humming-birds +hummingbird,hummingbirds +hummingbird moth,hummingbird moths +humming,hummings +humming top,humming tops +humming-top,humming-tops +hummock,hummocks +hummum,hummums +humoral immunity,humoral immunities +humoralist,humoralists +humoresque,humoresques +humor,humors +humorist,humorists +humour,humours +humourist,humourists +humpback,humpbacks +humpback salmon,humpback salmons +humpback whale,humpback whales +hump day,hump days +humpday,humpdays +hump dumpling,hump dumplings +hump,humps +humplock,humplocks +humppa,humppas +humpy,humpies +humstrum,humstrums +humuhumunukunukuapuaa,humuhumunukunukuapuaas +humult,humults +humvee,humvees +Humvee,Humvees +hunchback,hunchbacks +hunch,hunches +hundial,hundials +hundredaire,hundredaires +hundreder,hundreders +hundred-first,hundred-firsts +hundred,hundreds +hundred,hundreds +hundredth,hundredths +hundredweight,hundredweights +hundred-year storm,hundred-year storms +Hungarian Hound,Hungarian Hounds +Hungarian Kuvasz,Hungarian Kuvasz,Hungarian Kuvaszok +hungerer,hungerers +hunger,hungers +hunger strike,hunger strikes +hung jury,hung juries +hung parliament,hung parliaments +Hungryalism,Hungryalisms +hungry ghost,hungry ghosts +Hun,Huns +hunker,hunkers +hunkey,hunkeys +hunk,hunks +hunk of junk,hunks of junk +hunks,hunkses +hunky,hunkies +hunky punk,hunky punks +hunnert,hunnerts +hunt-and-pecker,hunt-and-peckers +huntaway,huntaways +Huntaway,Huntaways +hunter-gatherer,hunter-gatherers +hunter,hunters +Hunter's bend,Hunter's bends +hunter's moon,hunter's moons +hunt,hunts +hunting-crop,hunting-crops +hunting horn,hunting horns +hunting-horn,hunting-horns +hunting knife,hunting knives +hunting lodge,hunting lodges +hunting pink,hunting pinks +hunting spider,hunting spiders +huntingtin,huntingtins +hunting whip,hunting whips +huntmaster,huntmasters +huntress,huntresses +hunt saboteur,hunt saboteurs +huntsman,huntsmen,huntsmans +huntsman spider,huntsman spiders +huntsperson,huntspersons,huntspeople +hunt's-up,hunt's-ups +huntswoman,huntswomen +hunyack,hunyacks +Huon pine,Huon pines +huperzia,huperzias +huperzine,huperzines +hupokeimenon,hupokeimena +huqa,huqas +huqin,huqin +hurcheon,hurcheons +hurdle,hurdles +hurdler,hurdlers +hurdy-gurdy,hurdy-gurdies +hurkaru,hurkarus +hurlbat,hurlbats +hurler,hurlers +hurler on the ditch,hurlers on the ditch +Hurler's disease,Hurler's diseases +hurley,hurleys +hurl,hurls +hurlwind,hurlwinds +hurlyburly,hurlyburlies +hurple,hurples +hurrah,hurrahs +Hurrian,Hurrians +hurricane bow,hurricane bows +hurricane,hurricanes +hurricane,hurricanes +hurricano,hurricanos,hurricanoes +hurrier,hurriers +hurry-up wagon,hurry-up wagons +hurst,hursts +hurter,hurters +hurt,hurts +hurtleberry,hurtleberries +husbander,husbanders +husband,husbands +husband-in-law,husbands-in-law +husbandman,husbandmen +husbandry,husbandries +husbandwoman,husbandwomen +husher,hushers +husher,hushers +hushing,hushings +hush kit,hush kits +hushpuppy,hushpuppies +husker,huskers +husk,husks +huskie,huskies +husking,huskings +husky,huskies +huso,husos +hussar,hussars +hussie,hussies +hussif,hussifs,hussives +Hussite,Hussites +hussy,hussies +husting,hustings +hustle alarm,hustle alarms +hustle,hustles +hustler,hustlers +huswife,huswifes +hutch,hutches +Hutchinsonian,Hutchinsonians +hut,huts +hutia,hutias +hutment,hutments +hutong,hutongs,hutong +hutter,hutters +Hutterite,Hutterites +Hutu,Hutus,Hutu +huwasi,huwasi +huxter,huxters +huzoor,huzoors +huzzah,huzzahs +huzza,huzzas +HVC,HVCs +HVS,HVSes +hwacha,hwachas +hwair,hwairs +hwamei,hwameis +hwan,hwans +h-word,h-words +HXT,HXTs +hyacine,hyacines +hyacinth,hyacinths +hyΓ¦na,hyΓ¦na,hyΓ¦nΓ¦,hyΓ¦nas +hyaena,hyaenas,hyaenae +hyaenid,hyaenids +hyaenodontid,hyaenodontids +hyalea,hyaleas +hyalellid,hyalellids +hyalid,hyalids +hyaline degeneration,hyaline degenerations +hyalinocyte,hyalinocytes +hyalinosis,hyalinoses +hyalite,hyalites +hyaloclastite,hyaloclastites +hyalocyte,hyalocytes +hyalograph,hyalographs +hyalomere,hyalomeres +hyaloplasm,hyaloplasms +hyalotype,hyalotypes +hyaluronan,hyaluronans +hyaluronate,hyaluronates +hyaluronidase,hyaluronidases +hyawa,hyawas +hybernacle,hybernacles +hyblaeid,hyblaeids +hybodontid,hybodontids +hybosorid,hybosorids +hybotid,hybotids +hybrid car,hybrid cars +hybrid computer,hybrid computers +hybrid embryo,hybrid embryos +hybrid,hybrids +hybridist,hybridists +hybridization,hybridizations +hybridizer,hybridizers +hybrid meson,hybrid mesons +hybridoma,hybridomas +hybrid orbital,hybrid orbitals +hybrid rocket,hybrid rockets +hybrid vehicle,hybrid vehicles +hybrid wave function,hybrid wave functions +hydage,hydages +hydantoin,hydantoins +hydathode,hydathodes +hydatid,hydatids +hydatid of Morgagni,hydatids of Morgagni +hydatidosis,hydatidoses +hydatinid,hydatinids +hyde,hydes +Hyderabadi,Hyderabadis +hydrachnid,hydrachnids +hydracid,hydracids +hydractinian,hydractinians +hydractiniid,hydractiniids +hydraenid,hydraenids +hydragogue,hydragogues +hydra,hydras,hydrae,hydrΓ¦ +hydram,hydrams +hydramine,hydramines +hydrangea,hydrangeas +hydranth,hydranths +hydrant,hydrants +hydrargochloride,hydrargochlorides +hydrase,hydrases +hydratase,hydratases +hydrate,hydrates +hydrauger,hydraugers +hydraulicon,hydraulicons +hydraulic radius,hydraulic radii +hydraulic retention time,hydraulic retention times +hydraulophone,hydraulophones +hydrazide,hydrazides +hydrazide hydrazone,hydrazide hydrazones +hydrazide imide,hydrazide imides +hydrazidine,hydrazidines +hydrazination,hydrazinations +hydrazinium,hydraziniums +hydrazinophthalazine,hydrazinophthalazines +hydrazinylidene,hydrazinylidenes +hydrazoate,hydrazoates +hydrazo,hydrazos +hydrazone,hydrazones +hydrazonic acid,hydrazonic acids +hydrazonoic acid,hydrazonoic acids +hydrazonoyl,hydrazonoyls +hydrazonyl,hydrazonyls +hydriad,hydriads +hydria, hydriae +hydride,hydrides +hydrido complex,hydrido complexes +hydrilla,hydrillas +hydrino,hydrinos +hydriodate,hydriodates +hydriodic acid,hydriodic acids +hydriodide,hydriodides +hydroacylation,hydroacylations +hydroalkenylation,hydroalkenylations +hydroalkoxylation,hydroalkoxylations +hydroalumination,hydroaluminations +hydroamination,hydroaminations +hydroarylation,hydroarylations +hydroazidation,hydroazidations +hydrobarometer,hydrobarometers +hydrobath,hydrobaths +hydrobatid,hydrobatids +hydrobiid,hydrobiids +hydrobiologist,hydrobiologists +hydrobiosid,hydrobiosids +hydroboracite,hydroboracites +hydroborate,hydroborates +hydrobromate,hydrobromates +hydrobromide,hydrobromides +hydrocalcite,hydrocalcites +hydrocarbonate,hydrocarbonates +hydrocarbon,hydrocarbons +hydrocarboxylation,hydrocarboxylations +hydrocarburet,hydrocarburets +hydrocarbylene,hydrocarbylenes +hydrocarbyl,hydrocarbyls +hydrocarbylidene,hydrocarbylidenes +hydrocarbylidyne,hydrocarbylidynes +hydrocast,hydrocasts +hydrocaulus,hydrocauli +hydrocele,hydroceles +hydrocenid,hydrocenids +hydrochlorate,hydrochlorates +hydrochloric acid,hydrochloric acids +hydrochloride,hydrochlorides +hydrochlorination,hydrochlorinations +hydrochlorofluorocarbon,hydrochlorofluorocarbons +hydrochoerid,hydrochoerids +hydrocholeretic,hydrocholeretics +hydrocode,hydrocodes +hydrocoele,hydrocoeles +hydrocolloid,hydrocolloids +hydro complex,hydro complexes +hydroconversion,hydroconversions +hydrocopter,hydrocopters +hydrocracker,hydrocrackers +hydrocupration,hydrocuprations +hydrocution,hydrocutions +hydrocyanate,hydrocyanates +hydrocyanation,hydrocyanations +hydrocyanic acid,hydrocyanic acids +hydrocyanide,hydrocyanides +hydrodealkylation,hydrodealkylations +hydrodemetalation,hydrodemetalations +hydrodimerization,hydrodimerizations +hydrodistention,hydrodistentions +hydrodistillation,hydrodistillations +hydrodynamometer,hydrodynamometers +hydrΕ“cium,hydrΕ“cia +hydroelectric dam,hydroelectric dams +hydroelectric generator,hydroelectric generators +hydroextractor,hydroextractors +hydrofield,hydrofields +hydrofluate,hydrofluates +hydrofluorination,hydrofluorinations +hydrofluorocarbon,hydrofluorocarbons +hydrofluoroether,hydrofluoroethers +hydrofluosilicate,hydrofluosilicates +hydrofoil craft,hydrofoil crafts +hydrofoil,hydrofoils +hydrogel,hydrogels +hydrogen acid,hydrogen acids +hydrogenase,hydrogenases +hydrogenator,hydrogenators +hydrogen bomb,hydrogen bombs +hydrogen bond,hydrogen bonds +hydrogen car,hydrogen cars +hydrogen economy,hydrogen economies +hydrogen electrode,hydrogen electrodes +hydrogen gas electrode,hydrogen gas electrodes +hydrogen halide,hydrogen halides +hydrogen,hydrogens +hydrogenide,hydrogenides +hydrogen ion,hydrogen ions +hydrogen lamp,hydrogen lamps +hydrogen line,hydrogen lines +hydrogenlyase,hydrogenlyases +hydrogenosome,hydrogenosomes +hydrogenselenate,hydrogenselenates +hydrogen station,hydrogen stations +hydrogensulfate,hydrogensulfates +hydrogen sulfite,hydrogen sulfites +hydrogensulfite,hydrogensulfites +hydrogen sulphite,hydrogen sulphites +hydrogen vehicle,hydrogen vehicles +hydrogen warhead,hydrogen warheads +hydrogeologist,hydrogeologists +hydrogeology,hydrogeologies +hydrogeophyte,hydrogeophytes +hydrographer,hydrographers +hydrograph,hydrographs +hydrographist,hydrographists +hydroguret,hydrogurets +hydrohalic acid,hydrohalic acids +hydrohalide,hydrohalides +hydrohemicryptophyte,hydrohemicryptophytes +hydroid,hydroids +hydroiodic acid,hydroiodic acids +hydroiodide,hydroiodides +hydroisomerization,hydroisomerizations +hydrolaccolith,hydrolaccoliths +hydrolase,hydrolases +hydrolat,hydrolats +hydrolic cycle,hydrolic cycles +hydrolley,hydrolleys +hydrologist,hydrologists +hydrolysate,hydrolysates +hydrolyser,hydrolysers +hydrolysis,hydrolyses +hydrolyzate,hydrolyzates +hydrolyzation,hydrolyzations +hydrolyzer,hydrolyzers +hydromagnesiation,hydromagnesiations +hydromagnesite,hydromagnesites +hydromancer,hydromancers +hydromania,hydromanias +hydro marker,hydro markers +hydromassage,hydromassages +hydromedusa,hydromedusae +hydrometallation,hydrometallations +hydrometeor,hydrometeors +hydrometer,hydrometers +hydromethylation,hydromethylations +hydrometre,hydrometres +hydrometrid,hydrometrids +hydrometrograph,hydrometrographs +hydromica,hydromicas +hydromuscovite,hydromuscovites +hydronation,hydronations +hydronephrosis,hydronephroses +hydron,hydrons +hydronium,hydroniums +hydronym,hydronyms +hydropalladation,hydropalladations +hydropath,hydropaths +hydropathicity,hydropathicities +hydropathist,hydropathists +hydropathy,hydropathies +hydroperiod,hydroperiods +hydroperoxide,hydroperoxides +hydroperoxy,hydroperoxys +hydroperoxyl,hydroperoxyls +hydrophid,hydrophids +hydrophiid,hydrophiids +hydrophile,hydrophiles +hydrophilid,hydrophilids +hydrophilite,hydrophilites +hydrophobe,hydrophobes +hydrophobia,hydrophobias +hydrophobin,hydrophobins +hydrophone,hydrophones +hydrophore,hydrophores +hydrophosphination,hydrophosphinations +hydrophyte,hydrophytes +hydropillar,hydropillars +hydropiper,hydropipers +hydroplane,hydroplanes +hydroplastic,hydroplastics +hydropolysulfide,hydropolysulfides +hydropolysulphide,hydropolysulphides +hydropsychid,hydropsychids +hydropsy,hydropsies +hydroptilid,hydroptilids +hydropult,hydropults +hydropyrolysate,hydropyrolysates +hydropyrolysis,hydropyrolyses +hydropyrrolation,hydropyrrolations +hydrorhiza,hydrorhizas,hydrorhizae +hydrosalpinx,hydrosalpinxes,hydrosalpinges +hydrosalt,hydrosalts +hydroscaphid,hydroscaphids +hydroscientist,hydroscientists +hydroscope,hydroscopes +hydroseeder,hydroseeders +hydrosere,hydroseres +hydrosilane,hydrosilanes +hydrosilation,hydrosilations +hydrosilylation,hydrosilylations +hydroskeleton,hydroskeletons +hydrosol,hydrosols +hydrosolubility,hydrosolubilities +hydrosphere,hydrospheres +hydrostannane,hydrostannanes +hydrostannation,hydrostannations +hydrostat,hydrostats +hydrostatic equilibrium,hydrostatic equilibriums,hydrostatic equilibria +hydrostatician,hydrostaticians +hydrostatic pressure relief system,hydrostatic pressure relief systems +hydrostatic skeleton,hydrostatic skeletons +hydrosulfate,hydrosulfates +hydrosulfide,hydrosulfides +hydrosulfite,hydrosulfites +hydrosulphate,hydrosulphates +hydrosulphite,hydrosulphites +hydrosulphuret,hydrosulphurets +hydrosulphurous acid,hydrosulphurous acids +hydrotellurate,hydrotellurates +hydrotheca,hydrothecas,hydrothecae +hydrotherapist,hydrotherapists +hydrothermal vent,hydrothermal vents +hydrotherophyte,hydrotherophytes +hydrothiolation,hydrothiolations +hydrotic,hydrotics +hydrotimeter,hydrotimeters +hydrotreater,hydrotreaters +hydrotreatment,hydrotreatments +hydrotrioxide,hydrotrioxides +hydrotrope,hydrotropes +hydrous pyrolysis,hydrous pyrolyses +hydroxamate,hydroxamates +hydroxamic acid,hydroxamic acids +hydroxide,hydroxides +hydroxido,hydroxidos +hydroximic acid,hydroximic acids +hydroxonium,hydroxoniums +hydroxy acid,hydroxy acids +hydroxyalkyl,hydroxyalkyls +hydroxyamino,hydroxyaminos +hydroxyanthraquinone,hydroxyanthraquinones +hydroxyapatite,hydroxyapatites +hydroxyaryl,hydroxyaryls +hydroxybenzaldehyde,hydroxybenzaldehydes +hydroxybenzoate,hydroxybenzoates +hydroxybenzoic acid,hydroxybenzoic acids +hydroxybenzoquinone,hydroxybenzoquinones +hydroxybutyrate,hydroxybutyrates +hydroxybutyric acid,hydroxybutyric acids +hydroxycarbonate,hydroxycarbonates +hydroxycholesterol,hydroxycholesterols +hydroxycinnamate,hydroxycinnamates +hydroxycinnamic acid,hydroxycinnamic acids +hydroxycinnamoyl,hydroxycinnamoyls +hydroxycinnamoyltransferase,hydroxycinnamoyltransferases +hydroxycorticosteroid,hydroxycorticosteroids +hydroxycoumarin,hydroxycoumarins +hydroxydeboronation,hydroxydeboronations +hydroxyderivative,hydroxyderivatives +hydroxydopamine,hydroxydopamines +hydroxyecdysone,hydroxyecdysones +hydroxyethyl,hydroxyethyls +hydroxyethyl methacrylate,hydroxyethyl methacrylates +hydroxyethylrutoside,hydroxyethylrutosides +hydroxyglutarate,hydroxyglutarates +hydroxyglutaric acid,hydroxyglutaric acids +hydroxykenomicrolite,hydroxykenomicrolites +hydroxylamine,hydroxylamines +hydroxylapatite,hydroxylapatites +hydroxylase,hydroxylases +hydroxylation,hydroxylations +hydroxylbastnΓ€site,hydroxylbastnΓ€sites +hydroxyleucine,hydroxyleucines +hydroxyl,hydroxyls +hydroxymethylation,hydroxymethylations +hydroxymethylcytosine,hydroxymethylcytosines +hydroxymethyl,hydroxymethyls +hydroxynaphthoquinone,hydroxynaphthoquinones +hydroxyphenyl,hydroxyphenyls +hydroxypiperidine,hydroxypiperidines +hydroxypropyl,hydroxypropyls +hydroxyprostaglandin,hydroxyprostaglandins +hydroxyquinolate,hydroxyquinolates +hydroxyquinoline,hydroxyquinolines +hydroxyquinone,hydroxyquinones +hydroxystaurosporine,hydroxystaurosporines +hydroxystearic acid,hydroxystearic acids +hydroxysteroid,hydroxysteroids +hydroxytamoxifen,hydroxytamoxifens +hydroxytestosterone,hydroxytestosterones +hydroxytoluene,hydroxytoluenes +hydroxytryptamine,hydroxytryptamines +hydroxytryptophan,hydroxytryptophans +hydroxytyrosol,hydroxytyrosols +hydroxyvitamin,hydroxyvitamins +hydrozincite,hydrozincites +hydrozirconation,hydrozirconations +hydrozoan,hydrozoans +hydrozoon,hydrozoons,hydrozoa +hydruret,hydrurets +hyena,hyenas,hyena,hyenae +hyen,hyens +hyetograph,hyetographs +hyetologist,hyetologists +hyfrecator,hyfrecators +hygeist,hygeists +hygieist,hygieists +hygienist,hygienists +hygrobiid,hygrobiids +hygrodeik,hygrodeiks +hygrograph,hygrographs +hygroma,hygromas,hygromata +hygrometer,hygrometers +hygrometre,hygrometres +hygromiid,hygromiids +hygrophyte,hygrophytes +hygroreceptor,hygroreceptors +hygroscope,hygroscopes +hygrostat,hygrostats +hygrothermograph,hygrothermographs +hyke,hykes +hylaeochampsid,hylaeochampsids +hylaeosaur,hylaeosaurs +hyleg,hylegs +hylic,hylics +hylicist,hylicists +hylid,hylids +hylobate,hylobates +hylobatid,hylobatids +hyloist,hyloists +hylomorphism,hylomorphisms +hylopathist,hylopathists +hylotheism,hylotheisms +hylotheist,hylotheists +hylozoist,hylozoists +hymenΓ¦al,hymenΓ¦als +hymeneal,hymeneals +hymenean,hymeneans +hymen,hymens +hymenial cystidium,hymenial cystidiums,hymenial cystidia +hymeniderm,hymeniderms +hymenium,hymeniums,hymenia +hymenolepidid,hymenolepidids +hymenomycete,hymenomycetes +hymenophoral trama,hymenophoral tramas +hymenophore,hymenophores +hymenoplasty,hymenoplasties +hymenopodid,hymenopodids +hymenopteran,hymenopterans +hymenopter,hymenopters +hymenorrhaphy,hymenorrhaphies +hymenosomatid,hymenosomatids +hymenostome,hymenostomes +hymenotomy,hymenotomies +hymie,hymies +hymnal,hymnals +hymn-book,hymn-books +hymnbook,hymnbooks +hymn,hymns +hymnist,hymnists +hymnodist,hymnodists +hymnographer,hymnographers +hymnologist,hymnologists +hymnsheet,hymnsheets +hympne,hympnes +hynobiid,hynobiids +hyocephalid,hyocephalids +hyoglossus,hyoglossi +hyoid arch,hyoid arches +hyoid bone,hyoid bones +hyoid,hyoids +hyomandibula,hyomandibulas +hyomandibular,hyomandibulars +hyoplastron,hyoplastrons,hyoplastra +hyopsodontid,hyopsodontids +hyoscyamine,hyoscyamines +hyoshigi,hyoshigi +hyote,hyotes +hypalgesia,hypalgesias +hypallage,hypallages +Hypalon,Hypalons +hypanthium,hypanthia +hypaspist,hypaspists,hypaspistai +hype,hypes +hype man,hype men +hypeman,hypemen +hyperaccumulation,hyperaccumulations +hyperaccumulator,hyperaccumulators +hyperacetylation,hyperacetylations +hyperactivation,hyperactivations +hyperacuity,hyperacuities +hyperalgebra,hyperalgebras +hyperalimentation,hyperalimentations +hyperaminoacidemia,hyperaminoacidemias +hyperandrogenism,hyperandrogenisms +hyperapophysis,hyperapophyses +hyperarc,hyperarcs +hyperaspist,hyperaspists +hyperbaric chamber,hyperbaric chambers +hyperbaric oxygen chamber,hyperbaric oxygen chambers +hyperbass flute,hyperbass flutes +hyperbaton,hyperbatons,hyperbata +hyperbeat,hyperbeats +hyperbike,hyperbikes +hyperbola,hyperbolas,hyperbolae,hyperbolΓ¦ +hyperbole,hyperboles +hyperbolic cosine,hyperbolic cosines +hyperbolic function,hyperbolic functions +hyperbolic navigation system,hyperbolic navigation systems +hyperbolic plane,hyperbolic planes +hyperbolic polynomial,hyperbolic polynomials +hyperbolic sine,hyperbolic sines +hyperbolic space,hyperbolic spaces +hyperbolic tangent,hyperbolic tangents +hyperbolist,hyperbolists +hyperboloid,hyperboloids +hyperborean,hyperboreans +hyperburner,hyperburners +hypercarnivore,hypercarnivores +hypercell,hypercells +hypercharge,hypercharges +hypercoagulability,hypercoagulabilities +hypercoaster,hypercoasters +hypercolumn,hypercolumns +hypercomplex number,hypercomplex numbers +hypercomputation,hypercomputations +hypercomputer,hypercomputers +hypercone,hypercones +hyperconifold,hyperconifolds +hyperconsciousness,hyperconsciousnesses +hypercorrection,hypercorrections +hypercritical point,hypercritical points +hypercritic,hypercritics +hypercritick,hypercriticks +hypercube,hypercubes +hypercycle,hypercycles +hypercylinder,hypercylinders +hyperdactyly,hyperdactylies +hyperdensity,hyperdensities +hyperdeterminant,hyperdeterminants +hyperdiffusion,hyperdiffusions +hyperdilation,hyperdilations +hyperdrive,hyperdrives +hyperedge,hyperedges +hyperekplexia,hyperekplexias +hyperellipse,hyperellipses +hyperemesis gravidarum,hyperemeses gravidarum +hyperemesis,hyperemeses +hyperepidemic,hyperepidemics +hyperexcitation,hyperexcitations +hyperextension,hyperextensions +hyperface,hyperfaces +hyperfine structure,hyperfine structures +hyperflexion,hyperflexions +hyperforest,hyperforests +hyperfullerene,hyperfullerenes +hyperfunction,hyperfunctions +hypergastrinemia,hypergastrinemias +hypergelast,hypergelasts +hypergeometric distribution,hypergeometric distributions +hypergeometric function,hypergeometric functions +hypergeometric,hypergeometrics +hypergeometric series,hypergeometric series +hypergiant,hypergiants +hyperglucagonemia,hyperglucagonemias +hypergranulosis,hypergranuloses +hypergraph,hypergraphs +hypergraphic,hypergraphics +hypergroup,hypergroups +hypergroupoid,hypergroupoids +hyperhalophile,hyperhalophiles +hyperheuristic,hyperheuristics +hyperhypercube,hyperhypercubes +hypericum,hypericums +hyperiid,hyperiids +hyperinflation,hyperinflations +hyperinnovation,hyperinnovations +hyperinstrument,hyperinstruments +hyperinteger,hyperintegers +hyperintensity,hyperintensities +hyperiopsid,hyperiopsids +hyperjump,hyperjumps +hyperkagome,hyperkagomes +hyperkeratosis,hyperkeratoses +hyperlacticaemia,hyperlacticaemias +hyperlattice,hyperlattices +hyperlens,hyperlenses +hyperleptinemia,hyperleptinemias +hyperlink,hyperlinks +hyperlipidaemia,hyperlipidaemias +hyperlipidemia,hyperlipidemias +hyperlipoproteinemia,hyperlipoproteinemias +hypermap,hypermaps +hypermarket,hypermarkets +hypermart,hypermarts +hypermatrix,hypermatrices +hypermeasure,hypermeasures +hypermedium,hypermedia +hypermetamorphosis,hypermetamorphoses +hypermeter,hypermeters +hypermethioninaemia,hypermethioninaemias +hypermethioninemia,hypermethioninemias +hypermetropia,hypermetropias +hypermiler,hypermilers +hypermnesia,hypermnesias +hypermodernist,hypermodernists +hypermoron,hypermorons +hypermorph,hypermorphs +hypermultiplet,hypermultiplets +hypermutator,hypermutators +hypernephroma,hypernephromas,hypernephromata +hypernet,hypernets +hypernova,hypernovas,hypernovae +hypernucleus,hypernuclei +hypernumber,hypernumbers +hypernym,hypernyms +hypernymy,hypernymies +hyperoliid,hyperoliids +hyperon,hyperons +hyperonym,hyperonyms +hyperoodon,hyperoodons +hyperoΓΆdon,hyperoΓΆdons +hyperoodontid,hyperoodontids +hyperope,hyperopes +hyperoperation,hyperoperations +hyperoperator,hyperoperators +hyperopia,hyperopias +hyperosmolality,hyperosmolalities +hyperosmolar coma,hyperosmolar comas +hyperosmolar hyperglycemic nonketoic coma,hyperosmolar hyperglycemic nonketoic comas +hyperostosis,hyperostoses +hyperoxaluria,hyperoxalurias +hyperoxide,hyperoxides +hyperoxygenation,hyperoxygenations +hyperoxymuriate,hyperoxymuriates +hyperparameter,hyperparameters +hyperparasite,hyperparasites +hyperparasitemia,hyperparasitemias +hyperparathyroidism,hyperparathyroidisms +hyperpermeability,hyperpermeabilities +hyperphagia,hyperphagias +hyperphosphorylation,hyperphosphorylations +hyperplane,hyperplanes +hyperplasia,hyperplasias +hyperpolarisation,hyperpolarisations +hyperpolarization,hyperpolarizations +hyperpolyglot,hyperpolyglots +hyperpower,hyperpowers +hyperprior,hyperpriors +hyperproduction,hyperproductions +hyperprolinaemia,hyperprolinaemias +hyperprolinemia,hyperprolinemias +hyperreal,hyperreals +hyperrealist,hyperrealists +hyperreal number,hyperreal numbers +hyper-real religion,hyper-real religions +hyperrectangle,hyperrectangles +hypersalivation,hypersalivations +hypersatellite,hypersatellites +hyperscalar,hyperscalars +hypersecretion,hypersecretions +hypersensitivity,hypersensitivities +hypersentence,hypersentences +hypersilyl,hypersilyls +hyperslice,hyperslices +hyperspace drive,hyperspace drives +hyperspecialist,hyperspecialists +hypersphere,hyperspheres +hypersplenism,hypersplenisms +hypersplit,hypersplits +hyperstabilization,hyperstabilizations +hypersthene,hypersthenes +hyperstimulus,hyperstimuli +hyperstress,hyperstresses +hyperstructure,hyperstructures +hypersurface,hypersurfaces +hypersusceptibility,hypersusceptibilities +hypertask,hypertasks +hypertax,hypertaxes +hypertelescope,hypertelescopes +hypertension,hypertensions +hypertensive,hypertensives +hypertensor,hypertensors +hypertexture,hypertextures +hyperthermophile,hyperthermophiles +hypertolerance,hypertolerances +hypertopology,hypertopologies +hypertoroid,hypertoroids +hypertragulid,hypertragulids +hypertree,hypertrees +hypertrichosis,hypertrichoses +hypertriton,hypertritons +hypertrophia,hypertrophias +hypertropia,hypertropias +hyperurbanism,hyperurbanisms +hyper-use,hyper-uses +hypervalent compound,hypervalent compounds +hypervelocity,hypervelocities +hyperventilator,hyperventilators +hypervertex,hypervertices +hypervibration,hypervibrations +hypervisor,hypervisors +hypervitaminosis,hypervitaminoses +hypervolume,hypervolumes +hyperweb,hyperwebs +hypester,hypesters +hypesthesia,hypesthesias +hyphaema,hyphaemas +hypha,hyphae +hyphema,hyphemas +hyphenated compound,hyphenated compounds +hyphenate,hyphenates +hyphenation,hyphenations +hyphenator,hyphenators +hyphen,hyphens +hyphen-minus,hyphen-minuses +hyphomycete,hyphomycetes +hyphopodium,hyphopodia +hyp,hyps +hypnocyst,hypnocysts +hypnodomme,hypnodommes +hypnologist,hypnologists +hypnosis,hypnoses +hypnotherapist,hypnotherapists +hypnotherapy,hypnotherapies +hypnotic,hypnotics +hypnotisation,hypnotisations +hypnotisee,hypnotisees +hypnotist,hypnotists +hypnotizable,hypnotizables +hypnotization,hypnotizations +hypnotizer,hypnotizers +hypnozoite,hypnozoites +hypnum,hypnums +hypoacetylation,hypoacetylations +hypoadiponectinemia,hypoadiponectinemias +hypoaesthesia,hypoaesthesias +hypoaminoacidemia,hypoaminoacidemias +hypobetalipoproteinemia,hypobetalipoproteinemias +hypoblast,hypoblasts +hypoborate,hypoborates +hypobranchial,hypobranchials +hypobromite,hypobromites +hypocarnivore,hypocarnivores +hypocarp,hypocarps +hypocatastasis,hypocatastases +hypocaust,hypocausts +hypocenter,hypocenters +hypocentre,hypocentres +hypochilid,hypochilids +hypochlorite,hypochlorites +hypocholesterolemia,hypocholesterolemias +hypochondriac,hypochondriacs +hypochondriack,hypochondriacks +hypochondriasis,hypochondriases +hypochondrium,hypochondria +hypocleidium,hypocleidia +hypocone,hypocones +hypoconid,hypoconids +hypoconulid,hypoconulids +hypocorism,hypocorisms +hypocoristic,hypocoristics +hypocotyl,hypocotyls +hypocretin,hypocretins +hypocrisie,hypocrisies +hypocrisy,hypocrisies +hypocrite,hypocrites +hypocycloid,hypocycloids +hypodensity,hypodensities +hypoderma,hypodermata +hypoderm,hypoderms +hypodermic,hypodermics +hypodermic needle,hypodermic needles +hypodermis,hypodermes +hypodermoclysis,hypodermoclyses +hypodiastole,hypodiastoles +hypodigm,hypodigms +hypoellipse,hypoellipses +hypoelliptic operator,hypoelliptic operators +hypoesthesia,hypoesthesias +hypoflexid,hypoflexids +hypofluorite,hypofluorites +hypofunction,hypofunctions +hypogaeum,hypogaeums,hypogaea +hypogastrurid,hypogastrurids +hypogee,hypogees +hypogeum,hypogeums,hypogea +hypoglossal,hypoglossals +hypoglycemic,hypoglycemics +hypograph,hypographs +hypogyn,hypogyns +hypohalite,hypohalites +hypohalous acid,hypohalous acids +hypohyal,hypohyals +hypo,hypos +hypointensity,hypointensities +hypoiodite,hypoiodites +hypokeimenon,hypokeimena +hypokemenon,hypokemena +hypoketosis,hypoketoses +hypokimenon,hypokimena +hypokinesis,hypokineses +hypolimnion,hypolimnia +hypolipemia,hypolipemias +hypolipidaemia,hypolipidaemias +hypolophid,hypolophids +hypolophulid,hypolophulids +hypolymnion,hypolymnions +hypomanganate,hypomanganates +hypomania,hypomanias +hypomanic,hypomanics +hypomenorrhea,hypomenorrheas +hypomere,hypomeres +hypomethylation,hypomethylations +hypomorph,hypomorphs +hypomyelination,hypomyelinations +hyponathemia,hyponathemias +hyponitrite,hyponitrites +hyponychium,hyponychia +hyponym,hyponyms +hyponymy,hyponymies +hypoparathyroidism,hypoparathyroidisms +hypopharynx,hypopharynges,hypopharynxes +hypophora,hypophoras +hypophosphate,hypophosphates +hypophosphite,hypophosphites +hypophosphorylation,hypophosphorylations +hypophysectomy,hypophysectomies +hypophysis,hypophyses +hypopigmentation,hypopigmentations +hypoplastron,hypoplastrons,hypoplastra +hypopnea,hypopneas +hypopnoea,hypopnoeas +hypopnΕ“a,hypopnΕ“as +hypopomid,hypopomids +hypoproteinemia,hypoproteinemias +hypoptilum,hypoptila +hypoptychid,hypoptychids +hypopyon,hypopyons +hyporachis,hyporachises +hyporchema,hyporchemata +hyporhachis,hyporhachides +hyposecretion,hyposecretions +hyposensitivity,hyposensitivities +hyposmia,hyposmias +hyposmolality,osmolalities +hypospermatogenesis,hypospermatogeneses +hypospray,hyposprays +hypostasis,hypostases +hyposternum,hyposterna +hypostoma,hypostomas,hypostomata +hypostome,hypostomes +hypostrophe,hypostrophes +hyposulfite,hyposulfites +hyposulphate,hyposulphates +hyposulphite,hyposulphites +hypotarsus,hypotarsi +hypotension,hypotensions +hypotenuse,hypotenuses +hypothalamotomy,hypothalamotomies +hypothalamus,hypothalami +hypotheca,hypothecae +hypothecary,hypothecaries +hypothecation,hypothecations +hypothecation,hypothecations +hypothecator,hypothecators +hypothenar,hypothenars +hypothenuse,hypothenuses +hypothesis,hypotheses +hypothesizer,hypothesizers +hypothetical,hypotheticals +hypothetical taxonomic unit,hypothetical taxonomic units +hypothetist,hypothetists +hypotrachelium,hypotrachelia +hypotrich,hypotrichs +hypotrochoid,hypotrochoids +hypotyposis,hypotyposes +hypovolemia,hypovolemias +hypoxanthine,hypoxanthines +hyppogriff,hyppogriffs +hypsibiid,hypsibiids +hypsidorid,hypsidorids +hypsilophodont,hypsilophodonts +hypsilophodontid,hypsilophodontids +hypsiprymnodontid,hypsiprymnodontids +hypsodont,hypsodonts +hypsometer,hypsometers +hypsophyll,hypsophylls +hypural joint,hypural joints +hyracodontid,hyracodontids +hyracoid,hyracoids +hyrax,hyraxes,hyraces +hyriid,hyriids +hyssop,hyssops +hysterectomy,hysterectomies +hysteresis,hystereses +hysteresis loop,hysteresis loops +hysteric,hysterics +hysterick,hystericks +hysteroid,hysteroids +hysterology,hysterologies +hysteromyomectomy,hysteromyomectomies +hysteron,hysterons +hysteron proteron,hysteron proterons +hysterophyte,hysterophytes +hysteroplasty,hysteroplasties +hysterosalpingogram,hysterosalpingograms +hysteroscope,hysteroscopes +hysteroscopy,hysteroscopies +hysterotome,hysterotomes +hysterotomy,hysterotomies +hystorie,hystories +hystory,hystories +hystrichosphere,hystrichospheres +hystricid,hystricids +hystricognath,hystricognaths +hythe,hythes +hythergraph,hythergraphs +hyzer,hyzers +HzRG,HzRGs +IΒ²C,IΒ²Cs +iamb,iambs +iambic,iambics +iambick,iambicks +iambus,iambuses,iambi +iamid,iamids +ianthina,ianthinas +iapygid,iapygids +IAT,IATs +iatrochemist,iatrochemists +iatroepidemic,iatroepidemics +iatrogenesis,iatrogeneses +iatromathematician,iatromathematicians +iatrophysicist,iatrophysicists +Ibadi,Ibadis +ibaliid,ibaliids +Iban,Ibans,Iban +I-beam,I-beams +Iberian lynx,Iberian lynxes +iberiotoxin,iberiotoxins +iberis,iberises +iberulite,iberulites +ibex,ibex,ibexes,ibices +ibisbill,ibisbills +ibis,ibises,ibides,ibes +Ibizan Hound,Ibizan Hounds +IBMer,IBMers +IBM,IBMs +IBM PC,IBM PCs +ibotenate,ibotenates +i-breve,i-breves +ibrik,ibriks +ICBM,ICBMs +ice age,ice ages +ice axe,ice axes +ice ax,ice axes +ice bag,ice bags +iceball,iceballs +ice barrier,ice barriers +ice bath,ice baths +icebath,icebaths +iceberg,icebergs +icebird,icebirds +iceblink,iceblinks +iceblock,iceblocks +ice blue,ice blues +iceboater,iceboaters +ice boat,ice boats +ice-boat,ice-boats +iceboat,iceboats +icebox cake,icebox cakes +icebox,iceboxes +icebox pie,icebox pies +ice breaker,ice breakers +ice-breaker,ice-breakers +icebreaker,icebreakers +ice bucket,ice buckets +ice cap,ice caps +ice-cap,ice-caps +icecap,icecaps +ice cider,ice ciders +ice cream bar,ice cream bars +ice cream cone,ice cream cones +ice-cream cone,ice-cream cones +ice cream headache,ice cream headaches +icecream headache,icecream headaches +icecream,icecreams +ice cream maker,ice cream makers +ice cream parlor,ice cream parlors +ice-cream parlor,ice-cream parlors +ice cream sandwich,ice cream sandwichs +ice cream social,ice cream socials +ice cream soda,ice cream sodas +ice-cream soda,ice-cream sodas +ice cream sundae,ice cream sundaes +ice cream truck,ice cream trucks +ice cream van,ice cream vans +ice cube,ice cubes +icecube,icecubes +ice cube tray,ice cube trays +icecube tray,icecube trays +ice dam,ice dams +iced cream,iced creams +icedrake,icedrakes +iced tea,iced teas +ice dwarf,ice dwarfs +icefall,icefalls +ice field,ice fields +icefield,icefields +icefish,icefishes,icefish +ice fishing,ice fishings +ice floe,ice floes +ice foot,ice feet +ice fractal,ice fractals +ice giant,ice giants +ice hockey player,ice hockey players +ice house,ice houses +ice-house,ice-houses +icehouse,icehouses +ice kachang,ice kachangs +Icelander,Icelanders +Icelandic Sheepdog,Icelandic Sheepdogs +Icelandic Spitz,Icelandic Spitzes,Icelandic Spitze +icelid,icelids +ice lolly,ice lollies +ice luge,ice luges +icemaker,icemakers +iceman,icemen +ice milk,ice milks +ice needle,ice needles +ice nucleus,ice nuclei +ice pack,ice packs +icepack,icepacks +ice palace,ice palaces +ice pellet,ice pellets +ice pick,ice picks +icepick,icepicks +ice-pick lobotomy,ice-pick lobotomies +ice plant,ice plants +ice-plant,ice-plants +ice point,ice points +ice pop,ice pops +icequake,icequakes +ice queen,ice queens +ice resurfacer,ice resurfacers +icer,icers +ice rink,ice rinks +icerink,icerinks +icescape,icescapes +ice scooter,ice scooters +ice scour,ice scours +ice scraper,ice scrapers +ice sculpture,ice sculptures +ice sheet,ice sheets +ice shelf,ice shelves +ice show,ice shows +ice skate,ice skates +ice skater,ice skaters +ice skating rink,ice skating rinks +ice-skating rink,ice-skating rinks +ice storm,ice storms +ice swimmer,ice swimmers +iceteroid,iceteroids +ice tray,ice trays +icetray,icetrays +iceway,iceways +ice wedge,ice wedges +ice wine,ice wines +icewine,icewines +ice worm,ice worms +ice yacht,ice yachts +Ichang lemon,Ichang lemons +ichebu,ichebus +ICH,ICHs +ich-laut,ich-lauts +ichneumia,ichneumias +ichneumon fly,ichneumon flies +ichneumon,ichneumons +ichneumonidan,ichneumonidans +ichneumonid,ichneumonids +ichneumonoid,ichneumonoids +ichneumon wasp,ichneumon wasps +ichnite,ichnites +ichnocoenose,ichnocoenoses +ichnocoenosis,ichnocoenoses +ichnofacies,ichnofacies +ichnofossil,ichnofossils +ichnogenus,ichnogenera +ichnogram,ichnograms +ichnography,ichnographies +ichnolite,ichnolites +ichnologist,ichnologists +ichnotaxon,ichnotaxa +ichnovirus,ichnoviruses +ichoglan,ichoglans +ichthulin,ichthulins +ichthus,ichthuses +ichthyodectid,ichthyodectids +ichthyodorulite,ichthyodorulites +ichthyofauna,ichthyofaunas,ichthyofaunae +ichthyoid,ichthyoids +ichthyolite,ichthyolites +ichthyologist,ichthyologists +ichthyophage,ichthyophages +ichthyophagist,ichthyophagists +ichthyophiid,ichthyophiids +ichthyopterygium,ichthyopterygia +ichthyornid,ichthyornids +ichthyornithid,ichthyornithids +ichthyosaurian,ichthyosaurians +ichthyosaur,ichthyosaurs,ichthyosauri +ichthyosaurid,ichthyosaurids +ichthyostegid,ichthyostegids +ichthyotherapy,ichthyotherapies +ichthyotomist,ichthyotomists +ichthyotoxin,ichthyotoxins +ichthys,ichthyses +icicle,icicles +icing,icings +icker,ickers +ickle,ickles +icon,icons +iconic plate,iconic plates +iconoclast,iconoclasts +iconodule,iconodules +iconodulist,iconodulists +iconographer,iconographers +iconograph,iconographs +iconographist,iconographists +iconography,iconographies +iconolater,iconolaters +iconophile,iconophiles +iconophilist,iconophilists +iconoscope,iconoscopes +iconostasis,iconostases +iconotheca,iconothecas +iconstasis,iconostases +icosaedrum,icosaedrums +icosagon,icosagons +icosahedron,icosahedra,icosahedrons +icosanoid,icosanoids +icosasphere,icosaspheres +icosidodecadodecahedron,icosidodecadodecahedra,icosidodecadodecahedrons +icosidodecahedron,icosidodecahedra +icosihemidodecahedron,icosihemidodecahedrons +icosihenagon,icosihenagons +icositetrachoron,icositetrachorons,icositetrachora +icositetrahedron,icositetrahedrons,icositetrahedra +icosteid,icosteids +ICQer,ICQers +ICQ,ICQs +ictalurid,ictalurids +icteric,icterics +icterid,icterids +icterometer,icterometers +icthyoid,icthyoids +ictus,ictus,ictuses,ictΕ«s +ICU,ICUs +icy pole,icy poles +ID10T,ID10Ts +Idahoan,Idahoans +Idaho,Idahos +Idared,Idareds +ID card,ID cards +iddingsite,iddingsites +idea future,idea futures +idea hamster,idea hamsters +idea,ideas,ideΓ¦ +ideal gas,ideal gases +ideal,ideals +idealist,idealists +idealization,idealizations +idealizer,idealizers +idealogue,idealogues +ideal-seeking behavior,ideal-seeking behaviors +ideaphoria,ideaphorias +idear,idears +ideate,ideates +ideat,ideats +idea virus,idea viruses +IDE cable,IDE cables +idee fixe,idees fixes +idΓ©e fixe,idΓ©es fixes +idΓ©e,idΓ©es +idΓ©e mΓ¨re,idΓ©es mΓ¨res +ide,ides +idele,ideles +idempotent,idempotents +identical,identicals +identically zero,identically zeros +identical twin,identical twins +ident,idents +identification division,identification divisions +identification space,identification spaces +identifier,identifiers +identikit,identikits +identitarian,identitarians +identitarianism,identitarianisms +identity card,identity cards +identity crisis,identity crises +identity element,identity elements +identity function,identity functions +identity,identities +identity matrix,identity matrices,identity matrixes +identity theft,identity thefts +ideogram,ideograms +ideogramme,ideogrammes +ideographic full stop,ideographic full stops +ideograph,ideographs +ideography,ideographies +ideologeme,ideologemes +ideolog,ideologs +ideologist,ideologists +ideologue,ideologues +ideology,ideologies +ideomotor effect,ideomotor effects +ideophobia,ideophobias +ideophone,ideophones +ideopolis,ideopolises +ideoscape,ideoscapes +IDer,IDers +ides,ides +iDevice,iDevices +idget,idgets +ID hologram,ID holograms +idiacanthid,idiacanthids +id,ids +id,ids +id,ids +idioblast,idioblasts +idiochromosome,idiochromosomes +idiocracy,idiocracies +idiocracy,idiocracies +idiocy,idiocies +idioelectric,idioelectrics +idioglossia,idioglossias +idiogram,idiograms +idiograph,idiographs +idiolatry,idiolatries +idiolect,idiolects +idiomaticity,idiomaticities +idiom blend,idiom blends +idiomere,idiomeres +idiom,idioms,idiomata +idiomorph,idiomorphs +idiopathy,idiopathies +idiophase,idiophases +idiophone,idiophones +idiopid,idiopids +idiosepiid,idiosepiids +idiosyncracy,idiosyncracies +idiosyncrasy,idiosyncrasies +idiosyncratic reaction,idiosyncratic reactions +idiot board,idiot boards +idiot box,idiot boxes +idiot card,idiot cards +idioticon,idioticons +idiot,idiots +IDiot,IDiots +idiotism,idiotisms +idiot light,idiot lights +idiotope,idiotopes +idiot savant,idiot savants +idiot-savant,idiot-savants +idiotype,idiotypes +Idist,Idists +iditol,iditols +idjut,idjuts +idler,idlers +idli,idlis +idofuranose,idofuranoses +idolastre,idolastres +idolater,idolaters +idolator,idolators +idolatress,idolatresses +idolatry,idolatries +idol,idols +idolist,idolists +idolization,idolizations +idolizer,idolizers +idoloclast,idoloclasts +idolum,idola +idopyranose,idopyranoses +idopyranoside,idopyranosides +idose,idoses +idoteid,idoteids +i-dotter,i-dotters +IDP,IDPs +idrialine,idrialines +idrialite,idrialites +Idumean,Idumeans +iduronate,iduronates +IDX,IDXs +idylatry,idylatries +idyl,idyls +idylist,idylists +idyllic,idyllics +idyll,idylls +idyllist,idyllists +IED,IEDs +if,ifs +iframe,iframes +I-frame,I-frames +ifreet,ifreets +ifrit,ifrits +iftar,iftars +IFV,IFVs +igasurine,igasurines +Igbo,Igbos +IGF,IGFs +'ighness,'ighnesses +Ig,Igs +igloo,igloos +Ignatius bean,Ignatius beans +igneous rock,igneous rocks +ignicolist,ignicolists +ignimbrite,ignimbrites +ignipuncture,ignipunctures +ignis fatuus,ignes fatui +igniter,igniters +ignition,ignitions +ignition interlock,ignition interlocks +ignition temperature,ignition temperatures +ignition tube test,ignition tube tests +ignitor,ignitors +ignitron,ignitrons +ignominy,ignominies +ignoramus,ignoramuses +ignoramus,ignoramuses,ignorami +ignorantism,ignorantisms +ignorantist,ignorantists +ignoranus,ignoranuses +ignoraunce,ignoraunces +ignorer,ignorers +ignostic,ignostics +ignote,ignotes +iguana,iguanas +iguanian,iguanians +iguanid,iguanids +iguanodon,iguanodons +iguanodontian,iguanodontians +iguanodontid,iguanodontids +iguanodont,iguanodonts +igumen,igumens +I-hood,I-hoods +Ihood,Ihoods +ihram,ihrams +i,ies +ijazah,ijazahs +ijaza,ijazas +ikey,ikeys +I-Kiribati,I-Kiribati +ikkat,ikkats +ikon,ikons +ilala,ilalas +iland,ilands +ilariid,ilariids +ilarvirus,ilarviruses +%ile,%iles +ileitis,ileitides +ileostomy,ileostomies +ileum,ilea +ileus,ileuses +ilex,ilexes +iliac artery,iliac arteries +iliac furrow,iliac furrows +Iliad,Iliads +Ilian,Ilians +iliococcygeus,iliococcygei +iliofibularis,iliofibularises +iliopsoas,iliopsoases +ility,ilities +ilium,ilia +Ilizarov apparatus,Ilizarov apparatuses +ilk,ilks +illapse,illapses +illaqueation,illaqueations +illation,illations +illative case,illative cases +illative,illatives +ill-doer,ill-doers +ill-doing,ill-doings +illecebration,illecebrations +illegal alien,illegal aliens +illegal combatant,illegal combatants +illegal forward kick,illegal forward kicks +illegal,illegals +illegalism,illegalisms +illegality,illegalities +illegal number,illegal numbers +illfare,illfares +ill humor,ill humors +ill-humor,ill-humors +ill humour,ill humours +illicium,illicia +ill,ills +illinition,illinitions +Illinoisan,Illinoisans +Illinoisian,Illinoisians +Illinois,Illinois +illipe,illipes +illiquidity,illiquidities +illision,illisions +illite,illites +illiterate,illiterates +illocution,illocutions +illogicality,illogocalities +illo,illos +ill-scathe,ill-scathes +ill stound,ill stounds +illui,illuim +illuminance,illuminances +illuminant,illuminants +illuminate,illuminates +illumination,illuminations +illuminator,illuminators +Illuminee,Illuminees +illuminer,illuminers +illuminist,illuminists +illuminometer,illuminometers +ill-usage,ill-usages +illusionist,illusionists +illustration,illustrations +illustrator,illustrators +illutation,illutations +illuviation,illuviations +illuvium,illuviums,illuvia +ill will,ill wills +ill-will,ill-wills +illwisher,illwishers +illywhacker,illywhackers +Ilocano,Ilocanos +Ilokano,Ilokanos +ilvaite,ilvaites +ilysiid,ilysiids +imageboard,imageboards +image consultant,image consultants +image copy,image copies +image,images +image macro,image macros +image map,image maps +imagemap,imagemaps +imager,imagers +imagery,imageries +imagesetter,imagesetters +image space,image spaces +image tube,image tubes +imaginal disc,imaginal discs +imaginant,imaginants +imaginary axis,imaginary axes +imaginary,imaginaries +imaginary number,imaginary numbers +imaginary part,imaginary parts +imaginary unit,imaginary units +imagination,imaginations +Imagineer,Imagineers +imaginer,imaginers +imagining,imaginings +imaginist,imaginists +imagist,imagists +imago,imagines +imamate,imamates +Imamate,Imamates +imam bayildi,imam bayildis +imam,imams +imaret,imarets +imarti,imartis +imaum,imaums +imbalsamation,imbalsamations +imbankment,imbankments +imbargo,imbargos,imbargoes +imbarrassment,imbarrassments +imbat,imbats +imbecile,imbeciles +imbenching,imbenchings +imber-goose,imber-geese +imbiber,imbibers +imbibing,imbibings +imbibition,imbibitions +imbition,imbitions +imbitterer,imbitterers +imbizo,imbizos,izimbizo +imbonity,imbonities +imbosser,imbossers +imbracement,imbracements +imbracery,imbraceries +imbreke,imbrekes +imbrex,imbrices +imbrication,imbrications +imbrocado,imbrocados,imbrocadoes +imbrocata,imbrocatas +imbroccata,imbroccatas +imbroglio,imbroglios,imbrogli +imbuement,imbuements +imbuia,imbuias +imene,imenes +IMer,IMers +imidate,imidates +imidazolate,imidazolates +imidazole,imidazoles +imidazolidine,imidazolidines +imidazolidinone,imidazolidinones +imidazoline,imidazolines +imidazolinium,imidazoliniums +imidazolinone,imidazolinones +imidazolium,imidazoliums +imidazolonepropionate,imidazolonepropionates +imidazolylidene,imidazolylidenes +imidazolyl,imidazolyls +imidazopyridine,imidazopyridines +imidazoquinoline,imidazoquinolines +imidazoquinolinone,imidazoquinolinones +imidazothiazole,imidazothiazoles +imide,imides +imidic acid,imidic acids +imidine,imidines +imidodiphosphate,imidodiphosphates +imidogen,imidogens +imidonium,imidoniums +imidoyl,imidoyls +Im,Ims +imine,imines +imin,imins +iminium,iminiums +iminoacetate,iminoacetates +iminoacetic acid,iminoacetic acids +imino acid,imino acids +iminocyclitol,iminocyclitols +iminodiacetate,iminodiacetates +iminoester,iminoesters +iminoethyl,iminoethyls +imino,iminos +iminolactone,iminolactones +iminophosphine,iminophosphines +iminophosphorane,iminophosphoranes +iminoribitol,iminoribitols +iminostilbene,iminostilbenes +iminosugar,iminosugars +iminyl,iminyls +iminylium,iminyliums +imitater,imitaters +imitation,imitations +imitative harmony,imitative harmonies +imitator,imitators +imitatour,imitatours +imitatress,imitatresses +imitatrix,imitatrixes +immaculacy,immaculacies +immanant,immanants +immanation,immanations +immanence,immanences +immanent critique,immanent critiques +immanity,immanities +immaterialist,immaterialists +immaturity,immaturities +immeasurable,immeasurables +immediacy,immediacies +immediate family,immediate families +immediatist,immediatists +Immelman,Immelmans +Immelmann,Immelmanns +Immelmann maneuver,Immelmann maneuvers +Immelmann turn,Immelmann turns +immensity,immensities +immersion blender,immersion blenders +immersion heater,immersion heaters +immersion,immersions +immersionist,immersionists +immersion lens,immersion lenses +immid,immids +immie,immies +immigrant,immigrants +immigration,immigrations +imminency,imminencies +imminent abortion,imminent abortions +imminution,imminutions +immiseration,immiserations +immiserization,immiserizations +immission,immissions +immixture,immixtures +immobilisation,immobilisations +immobiliser,immobilisers +immobilism,immobilisms +immobility,immobilities +immobilizer,immobilizers +immoderation,immoderations +immolation,immolations +immolator,immolators +immoralist,immoralists +immortal,immortals +immortalisation,immortalisations +immortalist,immortalists +immortalization,immortalizations +immortelle,immortelles +immort,immorts +immovable,immovables +immundicity,immundicities +immune,immunes +immune reaction,immune reactions +immune response,immune responses +immune system,immune systems +immunizer,immunizers +immunoabsorbent,immunoabsorbents +immunoadhesin,immunoadhesins +immunoadjuvant,immunoadjuvants +immunoadsorbent,immunoadsorbents +immunoassay,immunoassays +immunobead,immunobeads +immunobiologist,immunobiologists +immunobiotic,immunobiotics +immunoblast,immunoblasts +immunoblot,immunoblots +immunochemist,immunochemists +immunochemistry,immunochemistries +immunocomplex,immunocomplexes +immunoconjugate,immunoconjugates +immunocontraceptive,immunocontraceptives +immunocyte,immunocytes +immunodeficiency,immunodeficiencies +immunodegradation,immunodegradations +immunodepletion,immunodepletions +immunodepressant,immunodepressants +immunodepression,immunodepressions +immunodetection,immunodetections +immunodiffusion,immunodiffusions +immunoelectrophoresis,immunoelectrophoreses +immunoepidemiology,immunoepidemiologies +immunoevasion,immunoevasions +immunoexpression,immunoexpressions +immunofluorescence,immunofluorescences +immunogeneticist,immunogeneticists +immunogen,immunogens +immunoglobin,immunoglobins +immunoglobulin,immunoglobulins +immunohematologist,immunohematologists +immunohistochemistry,immunohistochemistries +immunoinhibition,immunoinhibitions +immunointensity,immunointensities +immunolocalisation,immunolocalisations +immunolocalization,immunolocalizations +immunological,immunologicals +immunologic cytotoxicity,immunologic cytotoxicities +immunologist,immunologists +immunomagnetic separation,immunomagnetic separations +immunome,immunomes +immunomodifier,immunomodifiers +immunomodulator,immunomodulators +immunoneutralization,immunoneutralizations +immunopathogenesis,immunopathogeneses +immunopeptide,immunopeptides +immunopharmacologist,immunopharmacologists +immunophenotype,immunophenotypes +immunophilin,immunophilins +immunopotentiation,immunopotentiations +immunopotentiator,immunopotentiators +immunoprecipitant,immunoprecipitants +immunoprecipitate,immunoprecipitates +immunoprecipitation,immunoprecipitations +immunoprophylaxis,immunoprophylaxes +immunoprotein,immunoproteins +immunoproteome,immunoproteomes +immunopurification,immunopurifications +immunoreaction,immunoreactions +immunoreactivity,immunoreactivities +immunoreceptor,immunoreceptors +immunoregulator,immunoregulators +immunoresistance,immunoresistances +immunosorbent,immunosorbents +immunostainer,immunostainers +immunostain,immunostains +immunostimulant,immunostimulants +immunostimulation,immunostimulations +immunostimulator,immunostimulators +immunosuppressant,immunosuppressants +immunosuppressive,immunosuppressives +immunosuppressor,immunosuppressors +immunosystem,immunosystems +immunotherapeutic,immunotherapeutics +immunotherapist,immunotherapists +immunotherapy,immunotherapies +immunotolerance,immunotolerances +immunotoxicologist,immunotoxicologists +immunotoxin,immunotoxins +immunotype,immunotypes +immure,immures +immurement,immurements +immutable,immutables +impact crater,impact craters +impact energy,impact energies +impact factor,impact factors +impact,impacts +impaction,impactions +impactor,impactors +impact printer,impact printers +impact resistance,impact resistances +impact statement,impact statements +impaired,impaireds +impairer,impairers +impairment,impairments +impalement,impalements +impaler,impalers +impalla,impallas +impanator,impanators +impanelment,impanelments +imparisyllabic,imparisyllabics +imparity,imparities +imparsonee,imparsonees +impartation,impartations +imparter,imparters +impartialist,impartialists +impartment,impartments +impasse,impasses +impasto,impastos +impatiens,impatiens +impeacher,impeachers +impeachment,impeachments +impeder,impeders +impediment,impediments +imped,impeds +impedition,impeditions +impedivity,impedivities +impellent,impellents +impeller,impellers +impellor,impellors +impenetrability,impenetrabilities +impenitent,impenitents +imperative language,imperative languages +imperative mood,imperative moods +imperativist,imperativists +imperator,imperators +imperatrix,imperatrixes +imperence,imperences +imperfect,imperfects +imperfective,imperfectives +imperfect rhyme,imperfect rhymes +imperforate,imperforates +imperial decree,imperial decrees +imperial gallon,imperial gallons +imperial,imperials +imperialist,imperialists +imperiality,imperialities +imperial pint,imperial pints +Imperial stormtrooper,Imperial stormtroopers +Imperial Stormtrooper,Imperial Stormtroopers +Imperial Wizard,Imperial Wizards +impersonal subject,impersonal subjects +impersonal verb,impersonal verbs +impersonation,impersonations +impersonator,impersonators +impersonification,impersonifications +impetigo,impetigos +impetration,impetrations +impetus,impetuses +Impeyan pheasant,Impeyan pheasants +imphee,imphees +impignoration,impignorations +impi,impis +imp.,imp. +imp,imps +impinger,impingers +imping,impings +impire,impires +implacental,implacentals +implantation,implantations +implantee,implantees +implanter,implanters +implant,implants +implausibility,implausibilities +impleader,impleaders +implementation,implementations +implementer,implementers +implement,implements +implementing partner,implementing partners +implementor,implementors +impletion,impletions +implex,implexes +implexion,implexions +implicand,implicands +implicant,implicants +implicature,implicatures +Implicit Association Test,Implicit Association Tests +implicit cognition,implicit cognitions +implicit function,implicit functions +implicitization,implicitizations +implied line,implied lines +implodent,implodents +imploration,implorations +implorator,implorators +implorer,implorers +implosion,implosions +implosive,implosives +imployment,imployments +impluvium,impluviums,impluvia +impoisoner,impoisoners +impolicy,impolicies +imponderable,imponderables +imponent,imponents +impoon,impoons +imporsa,imporsas +importer,importers +importin,importins +importunator,importunators +importuner,importuners +importuning,importunings +importunity,importunities +imposer,imposers +imposing stone,imposing stones +imposition,impositions +impossible,impossibles +imposter,imposters +imposthumation,imposthumations +imposthume,imposthumes +impost,imposts +impost,imposts +impostor,impostors +impostour,impostours +impostress,impostresses +impostume,impostumes +imposture,impostures +imposure,imposures +impounder,impounders +impound,impounds +impoundment,impoundments +impoverisher,impoverishers +imp-pole,imp-poles +impracticable,impracticables +imprecation,imprecations +impregnant,impregnants +impregnation,impregnations +impregnator,impregnators +impresa,impresas +impresario,impresarios +imprese,impreses +impress,impresses +impressionable,impressionables +impression,impressions +impressionist,impressionists +impressment,impressments +impressor,impressors +impressure,impressures +imprest,imprests +imprimatur,imprimaturs,imprimantur +impriming,imprimings +imprinter,imprinters +imprint,imprints +imprisoner,imprisoners +imprisonment,imprisonments +improbability,improbabilities +improbation,improbations +impro,impros +impromptu,impromptus +improperation,improperations +improper fraction,improper fractions +improper integral,improper integrals +impropriation,impropriations +impropriator,impropriators +improvement,improvements +improver,improvers +improvidence,improvidences +improv,improvs +improving agent,improving agents +improving lease,improving leases +improvisation,improvisations +improvisatore,improvisatori +improvisator,improvisators +improvisatrice,improvisatrices,improvisatrici +improvisatrix,improvisatrices +improvised explosive device,improvised explosive devices +improviser,improvisers +improvision,improvisions +improvision,improvisions +improvvisatore,improvvisatori +improvvisatrice,improvvisatrici +impudency,impudencies +impugnation,impugnations +impugner,impugners +impulse buy,impulse buys +impulse function,impulse functions +impulse,impulses +impulse purchase,impulse purchases +impulsion,impulsions +impulsive,impulsives +impulsor,impulsors +impuration,impurations +impure name,impure names +impure s,impure ses +impurity,impurities +imputability,imputabilities +imputation,imputations +imputer,imputers +IMSI,IMSIs +imu,imus +IMXB,IMXBs +Ina Bauer,Ina Bauers +inability,inabilities +inablement,inablements +inaccessible,inaccessibles +inachid,inachids +inaction,inactions +inactivation,inactivations +inactivator,inactivators +inadaptability,inadaptabilities +inadaptation,inadaptations +inadequacy,inadequacies +inadequateness,inadequatenesses +inadequation,inadequations +inadvertency,inadvertencies +inamorata,inamoratas +inamorato,inamoratos +inane,inanes +inanimate,inanimates +inappetence,inappetences +inaptitude,inaptitudes +inattention,inattentions +inaugural,inaugurals +inauguration,inaugurations +inaugurator,inaugurators +inbalance,inbalances +inbeaming,inbeamings +inbeat,inbeats +inbend,inbends +in-betweener,in-betweeners +inbetweener,inbetweeners +in-between hop,in-between hops +in-betweeny,in-betweenies +inblow,inblows +inboard,inboards +inborrow,inborrows +inbound,inbounds +in-box,in-boxes +inbox,inboxes +inbreak,inbreaks +inbreaking,inbreakings +inbred,inbreds +inbreeder,inbreeders +inbuild,inbuilds +inburst,inbursts +Inca dove,Inca doves +Inca,Incas +incall,incalls +incandescent,incandescents +incandescent lamp,incandescent lamps +incantation,incantations +incapable,incapables +incapacitant,incapacitants +incapacitation,incapacitations +incapacity,incapacities +incapsulation,incapsulations +incarceration,incarcerations +incarcerator,incarcerators +incarnadine,incarnadines +incarnation,incarnations +incarnative,incarnatives +incavation,incavations +incendiarism,incendiarisms +incendiary,incendiaries +incense boat,incense boats +incense cedar,incense cedars +incenser,incensers +incension,incensions +incensor,incensors +incensory,incensories +incenter,incenters +incentive,incentives +incentre,incentres +inception,inceptions +inceptisol,inceptisols +inceptor,inceptors +inceration,incerations +incertitude,incertitudes +inchanter,inchanters +inchantment,inchantments +inchantress,inchantresses +in chief,in chiefs +inch,inches +inch,inches +inchman,inchmen +inchoactive,inchoactives +inchoate,inchoates +inchoation,inchoations +inch tracker,inch trackers +inchworm,inchworms +incidence function,incidence functions +incidence,incidences +incidence matrix,incidence matrices,incidence matrixes +incidency,incidencies +incidental expense,incidental expenses +incidental,incidentals +incidentaloma,incidentalomas +incident,incidents +incident report,incident reports +incident ticket system,incident ticket systems +incinerator,incinerators +incipience,incipiences +incipiency,incipiencies +incipit,incipits +incircle,incircles +incised meander,incised meanders +incision,incisions +incisor,incisors +incisura,incisurae +incisure,incisures +incitant,incitants +incitative,incitatives +incitement,incitements +inciter,inciters +inclamation,inclamations +inclination,inclinations +inclinator,inclinators +inclined plane,inclined planes +incline,inclines +incliner,incliners +inclinometer,inclinometers +incloser,inclosers +include,includes +inclusion complex,inclusion complexes +inclusion compound,inclusion compounds +inclusion polymorphism,inclusion polymorphisms +inclusive disjunction,inclusive disjunctions +inclusive or,inclusive ors +inclusivist,inclusivists +incog,incogs +incognita,incognitas +incognito,incognitos +incognitum,incognita +incombustible,incombustibles +income,incomes +incomer,incomers +income statement,income statements +income tax,income taxes +income tax return,income tax returns +incoming,incomings +incommensurable,incommensurables +incommensuration,incommensurations +incompatibilist,incompatibilists +incompatibility,incompatibilities +incompatible,incompatibles +incompetent,incompetents +incomplete abortion,incomplete abortions +incomplete flower,incomplete flowers +incomplete,incompletes +incomplete sentence,incomplete sentences +incompletion,incompletions +inconcinnity,inconcinnities +inconclusiveness,inconclusivenesses +incongruence,incongruences +incongruency,incongruencies +incongruity,incongruities +inconjunct,inconjuncts +inconnu,inconnus +inconsequency,inconsequencies +inconsideration,inconsiderations +inconsistency,inconsistencies +inconstancy,inconstancies +incontestability,incontestabilities +incontinence diaper,incontinence diapers +incontinence pad,incontinence pads +incontinent,incontinents +inconvenient,inconvenients +incorporated company,incorporated companies +incorporation,incorporations +incorporator,incorporators +incorporealist,incorporealists +incorrection,incorrections +incorrigible,incorrigibles +incorruptible,incorruptibles +incoterm,incoterms +Incoterm,Incoterms +incouragement,incouragements +incrassation,incrassations +incrassative,incrassatives +increase,increases +increasement,increasements +increaser,increasers +increasing function,increasing functions +incredibility,incredibilities +incremation,incremations +incremental backup,incremental backups +incrementalist,incrementalists +incrementation,incrementations +incrementer,incrementers +increment,increments +incrementor,incrementors +increpation,increpations +increscent,increscents +incretin,incretins +incrimination,incriminations +incross,incrosses +incrustation,incrustations +incrustment,incrustments +incuba,incubae +incubation,incubations +incubation period,incubation periods +incubator,incubators +incubus,incubi,incubuses +inculcation,inculcations +inculcator,inculcators +inculturation,inculturations +incumbency,incumbencies +incumbentess,incumbentesses +incumbent,incumbents +incumbrance,incumbrances +incumbrancer,incumbrancers +incunable,incunables +incunabulist,incunabulists +incunabulum,incunabula +incurable,incurables +incurrence,incurrences +incursion,incursions +incurvariid,incurvariids +incurvation,incurvations +incuse,incuses +incus,incudes +indaba,indabas +indacene,indacenes +indagator,indagators +indagatrix,indagatrices +indamine,indamines +indandione,indandiones +indane,indanes +indanol,indanols +indanone,indanones +indanthrene,indanthrenes +indanyl,indanyls +indazole,indazoles +indeavor,indeavors +indeavour,indeavours +indecency,indecencies +indecent liberty,indecent liberties +indeclinable,indeclinables +indefatigability,indefatigabilities +indefinable,indefinables +indefinite adjective,indefinite adjectives +indefinite article,indefinite articles +indefinite block,indefinite blocks +indefinite call sign,indefinite call signs +indefinite integral,indefinite integrals +indefinite pronoun,indefinite pronouns +indegree,indegrees +indel,indels +indemnification,indemnifications +indemnitee,indemnitees +indemnity,indemnities +indene,indenes +indenization,indenizations +indenol,indenols +indentation,indentations +indentedness,indentednesses +indenter,indenters +indent,indents +indention,indentions +indentment,indentments +indentor,indentors +indentour,indentours +indentured servant,indentured servants +indenture,indentures +indentureship,indentureships +indenylidene,indenylidenes +Independence Day,Independence Days +independence,independences +independency,independencies +independent city,independent cities +independent clause,independent clauses +independent contractor,independent contractors +independent function,independent functions +independent,independents +independentist,independentists +independent scholar,independent scholars +independent set,independent sets +independent variable,independent variables +indescribability,indescribabilities +indesert,indeserts +indeterminable,indeterminables +indeterminant,indeterminants +indeterminate gender,indeterminate genders +indeterminism,indeterminisms +indexation,indexations +index card,index cards +indexer,indexers +index finger,index fingers +index fossil,index fossils +indexical,indexicals +index,indexes,indices +index rerum,index rerums +index term,index terms +index verborum,index verborums +Indiaman,Indiamen +Indianan,Indianans +Indian apple,Indian apples +Indian burn,Indian burns +Indian carp,Indian carps +Indianeer,Indianeers +Indian elephant,Indian elephants +Indian fig,Indian figs +Indian giver,Indian givers +Indian hemp,Indian hemps +Indian,Indians +indianism,indianisms +Indianism,Indianisms +Indian mulberry,Indian mulberries +Indian pangolin,Indian pangolins +Indian peacock,Indian peacocks +Indian plum,Indian plums +Indian potato,Indian potatoes +Indian red,Indian reds +Indian rhinoceros,Indian rhinoceros,Indian rhinoceroses,Indian rhinocerotes +Indian sign,Indian signs +Indian summer,Indian summers +Indian sunburn,Indian sunburns +India pale ale,India pale ales +India shawl,India shawls +indicant,indicants +indication,indications +indicative mood,indicative moods +indicator function,indicator functions +indicatorid,indicatorids +indicator,indicators +indicatrix,indicatrices +indicavit,indicavits +indice,indices +indicia,indicias +indicium,indicia +indicolite,indicolites +indictable offence,indictable offences +indictee,indictees +indicter,indicters +indiction,indictions +indictor,indictors +indie,indies +indifference curve,indifference curves +indifference,indifferences +indifferentist,indifferentists +indigene,indigenes +indigent,indigents +indigest,indigests +indigitation,indigitations +indignancy,indignancies +indignatio,indignatios +indignation,indignations +indignity,indignities +indigobird,indigobirds +indigo bunting,indigo buntings +Indigo child,Indigo children +indigoid,indigoids +indirect free kick,indirect free kicks +indirection,indirections +indirect maternal death,indirect maternal deaths +indirect object,indirect objects +indirect quotation,indirect quotations +indiscernibility,indiscernibilities +indiscernible,indiscernibles +indiscretion,indiscretions +indispensability,indispensabilities +indispensable,indispensables +indisposition,indispositions +indistinctness,indistinctnesses +inditement,inditements +inditer,inditers +individual,individuals +individualisation,individualisations +individualist,individualists +individualization,individualizations +individualizer,individualizers +individuall,individualls +individual sport,individual sports +individual voluntary arrangement,individual voluntary arrangements +individuator,individuators +individuum,individuums,individua +indivisible,indivisibles +Indo-Aryan,Indo-Aryans +Indo-Briton,Indo-Britons +indocarbocyanine,indocarbocyanines +indochinite,indochinites +indoctrination,indoctrinations +indocyanine,indocyanines +Indo-European,Indo-Europeans +indoeuropeanist,indoeuropeanists +Indo-Europeanist,Indo-Europeanists +indogen,indogens +indolamine,indolamines +indolate,indolates +indoleamine,indoleamines +indole,indoles +indolence,indolences +indolency,indolencies +indolenine,indolenines +indolequinone,indolequinones +indolic,indolics +indol,indols +indoline,indolines +indolinone,indolinones +indolizidine,indolizidines +indolizine,indolizines +indolocarbazole,indolocarbazoles +Indologist,Indologists +indolylglucuronide,indolylglucuronides +indolyl,indolyls +Indonesian,Indonesians +indophenol,indophenols +Indophile,Indophiles +indorsation,indorsations +indorsee,indorsees +indorsement,indorsements +indorser,indorsers +indostomid,indostomids +indowment,indowments +indoxyl,indoxyls +indoyl,indoyls +indraft,indrafts +indraught,indraughts +indrawing,indrawings +indricothere,indricotheres +indrid,indrids +indriid,indriids +indri,indris +indubitable,indubitables +induced abortion,induced abortions +inducement,inducements +inducer,inducers +inductee,inductees +induction heater,induction heaters +induction,inductions +induction loop,induction loops +induction oven,induction ovens +induction programme,induction programmes +inductive definition,inductive definitions +inductive effect,inductive effects +inductivist,inductivists +inductivity,inductivities +inductometer,inductometers +inductor,inductors +inductorium,inductoriums,inductoria +inductura,inducturae +induhvidual,induhviduals +indulgence,indulgences +indulger,indulgers +induline,indulines +indulin,indulins +indult,indults +indulto,indultos +induna,indunas,izinduna +indusium,indusia +industrial action,industrial actions +industrial diamond,industrial diamonds +industrial disease,industrial diseases +industrial estate,industrial estates +industrial,industrials +industrialisation,industrialisations +industrialiser,industrialisers +industrialism,industrialisms +industrialist,industrialists +industrialization,industrializations +industrializer,industrializers +industrial output,industrial outputs +industrial park,industrial parks +industrial scale,industrial scales +industrial school,industrial schools +industrial store,industrial stores +industrial strength,industrial strengths +industrial tribunal,industrial tribunals +indweller,indwellers +indwelling catheter,indwelling catheters +indwelling,indwellings +indy,indies +indy,indies +inebriant,inebriants +inebriate,inebriates +inebriety,inebrieties +inedible,inedibles +inefficiency,inefficiencies +inegalitarian,inegalitarians +inequalitarian,inequalitarians +inequality,inequalities +inequation,inequations +inequity,inequities +inequivalve,inequivalves +inermiid,inermiids +inert gas,inert gases +inertial frame of reference,inertial frames of reference +inertial space,inertial spaces +inert,inerts +inescutcheon,inescutcheons +inessential,inessentials +inessive case,inessive cases +inessive,inessives +inevitable abortion,inevitable abortions +inevitable,inevitables +inexactitude,inexactitudes +inexorability,inexorabilities +infair,infairs +infallibilist,infallibilists +infallibility,infallibilities +infamita,infamitas +infamy,infamies +infancy,infancies +infang,infangs +infanta,infantas +infanteer,infanteers +infante,infantes +infanticide,infanticides +infantilist,infantilists +infant,infants +infant mortality rate,infant mortality rates +infant respiratory distress syndrome,infant respiratory distress syndromes +infantry fighting vehicle,infantry fighting vehicles +infantry,infantries +infantryman,infantrymen +infantrywoman,infantrywomen +infarct,infarcts +infarction,infarctions +infare,infares +infaring,infarings +infatuation,infatuations +infauna,infaunas,infaunae +infaunt,infaunts +infeasibility,infeasibilities +infected abortion,infected abortions +infectee,infectees +infecter,infecters +infection,infections +infectious bovine rhinotracheitis,infectious bovine rhinotracheitiss +infective,infectives +infector,infectors +infecundity,infecundities +infeodation,infeodations +infeoffment,infeoffments +inference rule,inference rules +inferentialist,inferentialists +inferior colliculus,inferior colliculi +inferior court,inferior courts +inferior good,inferior goods +inferior,inferiors +inferiority,inferiorities +inferior nasal concha,inferior nasal conchas +inferior planet,inferior planets +inferior vena cava,inferior venae cavae +inferiour,inferiours +infernal,infernals +infernal machine,infernal machines +inferno,infernos +inferobranchian,inferobranchians +inferognathal,inferognathals +inferrer,inferrers +infertility,infertilities +infestation,infestations +infester,infesters +infeudation,infeudations +infibulation,infibulations +infidel,infidels +infidelity,infidelities +infielder,infielders +infield fly,infield flies +infield fly rule,infield fly rules +infield hit,infield hits +infield,infields +infighter,infighters +in-fill,in-fills +infill,infills +infillion,infillions +infiltration,infiltrations +infima species,infimae species +infimum,infima,infimums +infinite loop,infinite loops +infinite recursion,infinite recursions +infinite series,infinite series +infinitesimal,infinitesimals +infinitive,infinitives +infinitive of purpose,infinitives of purpose +infinitude,infinitudes +infinity-edge pool,infinity-edge pools +infinity pool,infinity pools +infinity scarf,infinity scarves +infinity symbol,infinity symbols +infirmarer,infirmarers +infirmarian,infirmarians +infirmary,infirmaries +infirmatory,infirmatories +infirmity,infirmities +infix,infixes +inflamer,inflamers +inflammasome,inflammasomes +inflammatory,inflammatories +inflatable castle,inflatable castles +inflatable,inflatables +inflater,inflaters +inflatino,inflatinos +inflation,inflations +inflationist,inflationists +inflaton,inflatons +inflator,inflators +inflection point,inflection points +inflexure,inflexures +inflicter,inflicters +infliction,inflictions +inflorescence,inflorescences +inflow,inflows +influencee,influencees +influencer,influencers +influencing,influencings +influential,influentials +influent,influents +influenza,influenzas,influenze +influenzavirus,influenzaviruses +influxion,influxions +infobahn,infobahns +infobot,infobots +infobox,infoboxes +infodemic,infodemics +info-dump,info-dumps +infodump,infodumps +infographic,infographics +infoholic,infoholics +infoline,infolines +infomediary,infomediaries +infomercial,infomercials +infommercial,infommercials +infonaut,infonauts +infopreneur,infopreneurs +informal fallacy,informal fallacies +informant,informants +informatician,informaticians +informaticist,informaticists +informationalisation,informationalisations +informationalization,informationalizations +information float,information floats +informationist,informationists +information market,information markets +information model,information models +information science,information sciences +information system,information systems +informavore,informavores +informee,informees +informercial,informercials +informer,informers +informisation,informisations +informor,informors +informour,informours +infoscape,infoscapes +infosheet,infosheets +infoshop,infoshops +infosphere,infospheres +infostation,infostations +infostructure,infostructures +infosystem,infosystems +infotainer,infotainers +infotisement,infotisements +infotopia,infotopias +infovore,infovores +infraclass,infraclasses +infracohort,infracohorts +infraction,infractions +infractor,infractors +infrahuman,infrahumans +infra,infras +infrakingdom,infrakingdoms +infralabial,infralabials +infralapsarian,infralapsarians +infralittoral,infralittorals +infra-order,infra-orders +infraparticle,infraparticles +infraphylum,infraphyla +infrared,infrareds +infrared lamp,infrared lamps +infraspecies,infraspecies +infraspecific epithet,infraspecific epithets +infraspinatus,infraspinati +infrastructuralist,infrastructuralists +infrastructure,infrastructures +infriction,infrictions +infringement,infringements +infringer,infringers +infructescence,infructescences +infula,infulas +infundibuloma,infundibulomas +infundibulum,infundibula +infusate,infusates +infuser,infusers +infusion,infusions +infusionist,infusionists +infusorian,infusorians +infusor,infusors +infusorium,infusoria +infusory,infusories +inga,ingas +ingang,ingangs +ingate,ingates +ingathering,ingatherings +ing-bing,ing-bings +ingena,ingenas +ingenue,ingenues +ingΓ©nue,ingΓ©nues +ingenu,ingenus +ingester,ingesters +ing,ings +ing,ings +Inglefield clip,Inglefield clips +ingle,ingles +ingle,ingles +ingle,ingles +inglenook,inglenooks +ingolfiellid,ingolfiellids +ingot,ingots +ingrafter,ingrafters +ingraftment,ingraftments +ingrain,ingrains +ingrain wallpaper,ingrain wallpapers +ingrate,ingrates +ingratiation,ingratiations +ingratiator,ingratiators +ingredient,ingredients +ingress,ingresses +ingression,ingressions +ingressive,ingressives +Ingrian,Ingrians +ingroup,ingroups +inguen,inguens +ingurgitation,ingurgitations +inhabitancy,inhabitancies +inhabitant,inhabitants +inhabitation,inhabitations +inhabiter,inhabiters +inhabitor,inhabitors +inhabitress,inhabitresses +inhalant,inhalants +inhalation,inhalations +inhalator,inhalators +inhaler,inhalers +inhancement,inhancements +inharmonicity,inharmonicities +inhauler,inhaulers +inhaul,inhauls +inherent power,inherent powers +inheritance powder,inheritance powders +inheritance tax,inheritance taxes +inheriter,inheriters +inheritor,inheritors +inheritour,inheritours +inheritress,inheritresses +inheritrix,inheritrices +inhesion,inhesions +inhibition,inhibitions +inhibitor,inhibitors +inholder,inholders +inholding,inholdings +inhospitality,inhospitalities +inhumanity,inhumanities +inhumation,inhumations +inia,inias +iniencephaly,iniencephalies +iniid,iniids +in,ins +in,ins +inion,inia,inions +iniopterygian,iniopterygians +iniquity,iniquities +initial,initials +initialisation,initialisations +initialiser,initialisers +initialism,initialisms +initializer,initializers +initial object,initial objects +initial point,initial points +initiand,initiands +initiate,initiates +initiation ceremony,initiation ceremonies +initiation codon,initiation codons +initiation,initiations +initiative,initiatives +initiator,initiators +initiatory,initiatories +init,inits +injectable,injectables +injectate,injectates +injecter,injecters +injectible,injectibles +injection,injections +injector,injectors +in-joke,in-jokes +injunction,injunctions +injunctive,injunctives +injun,injuns +injurer,injurers +injuria,injurie +injury current,injury currents +injury,injuries +injury potential,injury potentials +injustice,injustices +Inka,Inkas +inkball,inkballs +inkblot,inkblots +inkblot test,inkblot tests +ink bottle,ink bottles +inkbottle,inkbottles +ink eradicator,ink eradicators +ink eraser,ink erasers +inker,inkers +inkfish,inkfishes,inkfish +ink fountain,ink fountains +inkhorn,inkhorns +inkhornism,inkhornisms +inkhorn term,inkhorn terms +inkhosi,amakhosi +inkjet,inkjets +inkjet printer,inkjet printers +inkling,inklings +inkoosi,inkoosis +inkosi,inkosis,amakosi +ink pad,ink pads +ink-pad,ink-pads +inkpad,inkpads +inkpot,inkpots +inkprint,inkprints +ink slinger,ink slingers +inkspot,inkspots +inkstand,inkstands +inkstone,inkstones +ink well,ink wells +inkwell,inkwells +inlander,inlanders +inland sea,inland seas +in-law,in-laws +inlaw,inlaws +in law unit,in law units +inlay card,inlay cards +inlayer,inlayers +inlay,inlays +inlead,inleads +inleak,inleaks +inleck,inlecks +inlet,inlets +in-line expansion,in-line expansions +in-line skate,in-line skates +in-line skater,in-line skaters +inlock,inlocks +inlook,inlooks +inmate,inmates +inmigrant,inmigrants +innard,innards +innate immune system,innate immune systems +innatist,innatists +innerbelt,innerbelts +inner cabinet,inner cabinets +inner cell mass,inner cell masss +inner child,inner children +inner circle,inner circles +inner city,inner cities +inner class,inner classes +inner core,inner cores +inner diameter,inner diameters +inner ear,inner ears +inner,inners +inner orbital complex,inner orbital complexes +inner planet,inner planets +inner product,inner products +inner product space,inner product spaces +inner salt,inner salts +innersole,innersoles +inner strength,inner strengths +inner tube,inner tubes +innertube,innertubes +innervation,innervations +inneth,inneths +innexin,innexins +innholder,innholders +innie,innies +inning,innings +innings,innings +inn,inns +innixion,innixions +innkeeper,innkeepers +innocency,innocencies +innocent bystander,innocent bystanders +innocent,innocents +innocuity,innocuities +innominate bone,innominate bones +innovation,innovations +innovationist,innovationists +innovator,innovators +innovatour,innovatours +innovatrix,innovatrices +innuendo,innuendoes,innuendos,innuendis +Innuit,Innuits +innumerate,innumerates +innyard,innyards +inobservance,inobservances +inoccupancy,inoccupancies +inocelliid,inocelliids +inoceramid,inoceramids +inoculant,inoculants +inoculation,inoculations +inoculator,inoculators +inoculatrix,inoculatrices +inoculum,inocula +inode,inodes +in-off,in-offs +inoperancy,inoperancies +inoperation,inoperations +inordination,inordinations +inorganic chemist,inorganic chemists +inorganic chemistry,inorganic chemistries +inorganic compound,inorganic compounds +inorganic,inorganics +inorganic polymer,inorganic polymers +inosculation,inosculations +inosilicate,inosilicates +inosinate,inosinates +inosine,inosines +inosite,inosites +inositide,inositides +inositol,inositols +inositolphospholipid,inositolphospholipids +inotrope,inotropes +inovirus,inoviruses +in-patient,in-patients +inpatient,inpatients +inpatriate,inpatriates +inpossible,inpossibles +inpouring,inpourings +input device,input devices +input,inputs +input-output section,input-output sections +input-output table,input-output tables +inputter,inputters +inqilab,inqilabs +inquest,inquests +inquietude,inquietudes +inquiline,inquilines +inquination,inquinations +inquirance,inquirances +inquirer,inquirers +inquiry,inquiries +inquisition,inquisitions +inquisitor,inquisitors +inquisitour,inquisitours +inradius,inradii +inrichment,inrichments +inroad,inroads +inro,inro +inrō,inro +inrun,inruns +inrunning,inrunnings +inrush,inrushes +insane asylum,insane asylums +inscape,inscapes +inscriber,inscribers +inscription,inscriptions +inscriptionist,inscriptionists +inscrutable,inscrutables +insculption,insculptions +insculpture,insculptures +inseam,inseams +insectarium,insectaria,insectariums +insectary,insectaries +insectation,insectations +insectator,insectators +insecticide,insecticides +insect,insects +insection,insections +insectivore,insectivores +insectivorous plant,insectivorous plants +insectoid,insectoids +insectologer,insectologers +insectologist,insectologists +insectotoxin,insectotoxins +insecurity,insecurities +insemination,inseminations +inseminator,inseminators +insensate,insensates +insensibility,insensibilities +inserter,inserters +inserting,insertings +insert,inserts +Insert,Inserts +insertion,insertions +insertion order,insertion orders +insert song,insert songs +insession,insessions +insessor,insessors +inset,insets +inshave,inshaves +inshoot,inshoots +inside address,inside addresses +inside back,inside backs +inside centre,inside centres +inside diameter,inside diameters +inside edge,inside edges +inside,insides +inside job,inside jobs +inside joke,inside jokes +inside lag,inside lags +inside pocket,inside pockets +insider,insiders +inside straight draw,inside straight draws +inside-the-parker,inside-the-parkers +inside-the-park homer,inside-the-park homers +inside track,inside tracks +insidiator,insidiators +insight,insights +insignia,insignias +insignis pine,insignis pines +insignis-pine,insignis-pines +insignitor,insignitors +insignment,insignments +INS,INSs +insinuation,insinuations +insinuator,insinuators +insinuendo,insinuendos,insinuendoes +insistance,insistances +insister,insisters +insisture,insistures +insition,insitions +insleeper,insleepers +insnarer,insnarers +insobriety,insobrieties +insole,insoles +insolency,insolencies +insolvency,insolvencies +insolvent,insolvents +insomniac,insomniacs +insonation,insonations +insonication,insonications +inspecter,inspecters +inspection,inspections +inspectorate,inspectorates +inspector general,inspectors general +inspector,inspectors +inspectorship,inspectorships +inspectour,inspectours +inspectress,inspectresses +inspectrix,inspectrices +inspeximus,inspeximuses +inspiral,inspirals +inspirationist,inspirationists +inspirator,inspirators +inspiratrix,inspiratrices +inspirer,inspirers +inspissant,inspissants +inspissator,inspissators +insta-call,insta-calls +instacall,instacalls +instadeath,instadeaths +instakill,instakills +instal,instals +installation art,installation arts +installation,installations +installed base,installed bases +installer,installers +installfest,installfests +install,installs +installment,installments +installment,installments +installment loan,installment loans +instalment,instalments +instance dungeon,instance dungeons +instance,instances +instance variable,instance variables +instancy,instancies +instantaneous velocity,instantaneous velocities +instantiation,instantiations +instantiator,instantiators +instant,instants +instant message,instant messages +instant messenger,instant messengers +instant noodle,instant noodles +instanton,instantons +instant replay,instant replays +instar,instars +instaunce,instaunces +instauration,instaurations +instaurator,instaurators +instep,insteps +instigation,instigations +instigator,instigators +instigatour,instigatours +instigatrix,instigatrices +instillation,instillations +instillator,instillators +instiller,instillers +instillment,instillments +institute,institutes +instituter,instituters +institutional framework,institutional frameworks +institutionalisation,institutionalisations +institutionalist,institutionalists +institutionalization,institutionalizations +institution,institutions +institutist,institutists +institutor,institutors +instreaming,instreamings +instream,instreams +instructer,instructers +instruct,instructs +instructional,instructionals +instruction set,instruction sets +instructive case,instructive cases +instructive,instructives +instructor,instructors +instructorship,instructorships +instructour,instructours +instructress,instructresses +instructrix,instructrixes +instrumental case,instrumental cases +instrumentalisation,instrumentalisations +instrumentalist,instrumentalists +instrumentality,instrumentalities +instrumentalization,instrumentalizations +instrumental version,instrumental versions +instrumental width,instrumental widths +instrument,instruments +instrumentist,instrumentists +instrument panel,instrument panels +insubordination,insubordinations +insubstantiality,insubstantialities +insuccation,insuccations +insuck,insucks +insudate,insudates +insufficiency,insufficiencies +insufflator,insufflators +insula,insulas,insulae +insulant,insulants +insular gray fox,insular gray foxes +insular,insulars +insularity,insularities +insulating tape,insulating tapes +insulationist,insulationists +insulator,insulators +insulinase,insulinases +insulinemia,insulinemias +insulinogogue,insulinogogues +insulinoma,insulinomas,insulinomata +insulitis,insulites +insultathon,insultathons +insultation,insultations +insulter,insulters +insult,insults +insult to injury,insults to injury +insuperability,insuperabilities +insurance company,insurance companies +insurance fraud,insurance frauds +insurance goal,insurance goals +insurance policy,insurance policies +insurancer,insurancers +insurance shot,insurance shots +insurant,insurants +insured,insureds +insuree,insurees +insurer,insurers +insurgence,insurgences +insurgency,insurgencies +insurgent,insurgents +insurrection,insurrections +insurrectionist,insurrectionists +insurrecto,insurrectos +in-swinger,in-swingers +inswinger,inswingers +inswing,inswings +intact dilation and extraction,intact dilation and extractions +intactivist,intactivists +intaglio,intagli,intaglios,intaglii +intailment,intailments +intake manifold,intake manifolds +intaker,intakers +intake silencer,intake silencers +intake system,intake systems +intaking,intakings +intalk,intalks +intangibility,intangibilities +intangible asset,intangible assets +intangible,intangibles +intarsia,intarsias +intasome,intasomes +intasuchid,intasuchids +intefadah,intefadahs +integer factorization,integer factorizations +integer,integers +integrable function,integrable functions +integral domain,integral domains +integral equation,integral equations +integral function,integral functions +integral,integrals +integral transform,integral transforms +integrand,integrands +integrant,integrants +integraph,integraphs +integrase,integrases +integrated circuit,integrated circuits +integrated optical circuit,integrated optical circuits +integration,integrations +integrationist,integrationists +integrator,integrators +integrin,integrins +integron,integrons +integumentary pattern,integumentary patterns +integumentary system,integumentary systems +integument,integuments +intein,inteins +intellection,intellections +intellectual disability,intellectual disabilities +intellectual,intellectuals +intellectualist,intellectualists +intellectuality,intellectualities +intellectuall,intellectualls +intelligence agency,intelligence agencies +intelligence asset,intelligence assets +intelligence quotient,intelligence quotients +intelligencer,intelligencers +intelligent system,intelligent systems +intemperance,intemperances +intendancy,intendancies +intendant,intendants +intended,intendeds +intendent,intendents +intender,intenders +intendiment,intendiments +intensification,intensifications +intensifier,intensifiers +intensional definition,intensional definitions +intensional logic,intensional logics +intension,intensions +intensity,intensities +intensive care unit,intensive care units +intensive-care unit,intensive-care units +intensive,intensives +intensivist,intensivists +intentional grounding,intentional groundings +intentionalist,intentionalists +intentional pass,intentional passes +intentional species,intentional species +intentional walk,intentional walks +intention,intentions +interactant,interactants +interact,interacts +interaction,interactions +interaction space,interaction spaces +interactive,interactives +interactive whiteboard,interactive whiteboards +interactome,interactomes +interactor,interactors +interagent,interagents +interambulacrum,interambulacra +interarrival,interarrivals +interatheriid,interatheriids +interaxis,interaxes +interbehaviour,interbehaviours +interbeing,interbeings +interblock,interblocks +interbrain,interbrains +interbreeder,interbreeders +intercalant,intercalants +intercalary meristem,intercalary meristems +intercalation compound,intercalation compounds +intercalation,intercalations +intercalator,intercalators +intercardinal direction,intercardinal directions +interceder,interceders +interceding,intercedings +intercentrum,intercentra +intercepter,intercepters +intercept,intercepts +interception,interceptions +interception try,interception tries +interceptor,interceptors +intercession,intercessions +intercessor,intercessors +intercessour,intercessours +interchange,interchanges +interchangement,interchangements +interchapter,interchapters +intercipient,intercipients +intercity,intercities +interclavicle,interclavicles +intercolumnation,intercolumnations +intercolumniation,intercolumniations +intercolumn,intercolumns +intercombination,intercombinations +intercom,intercoms +intercommunication,intercommunications +intercomparison,intercomparisons +interconnection,interconnections +interconnector,interconnectors +interconnexion,interconnexions +intercontinental ballistic missile,intercontinental ballistic missiles +interconversion,interconversions +interconvertability,interconvertabilities +intercooler,intercoolers +intercorrelation,intercorrelations +intercostal,intercostals +intercostalis,intercostales +intercourse,intercourses +intercrop,intercrops +intercross,intercrosses +intercurrent,intercurrents +intercycle,intercycles +interdentil,interdentils +interdependency,interdependencies +interdict,interdicts +interdiction,interdictions +interdictor,interdictors +interdiffusion,interdiffusions +interdisciplinarity,interdisciplinarities +interdome,interdomes +interduce,interduces +interdune,interdunes +interesterification,interesterifications +interester,interesters +interest group,interest groups +interesting condition,interesting conditions +interest rate,interest rates +interest rate swap,interest rate swaps +interexchange,interexchanges +interface definition language,interface definition languages +interface description language,interface description languages +interface,interfaces +interfacer,interfacers +interfacial energy,interfacial energies +interfacing,interfacings +interferant,interferants +interferent,interferents +interferer,interferers +interferogram,interferograms +interferometer,interferometers +interferometrist,interferometrists +interferon,interferons +interferonopathy,interferonopathies +interfix,interfixes +interflow,interflows +interfluve,interfluves +interframe,interframes +interfusion,interfusions +intergenic spacer,intergenic spacers +intergeniculate leaflet,intergeniculate leaflets +interglacial,interglacials +interglaciation,interglaciations +intergluteal cleft,intergluteal clefts +intergradation,intergradations +intergrase,intergrases +intergrowth,intergrowths +interhalogen compound,interhalogen compounds +interhalogen,interhalogens +interhyal,interhyals +interhyoideus,interhyoidei +interim,interims +interim order,interim orders +interior angle,interior angles +interior decoration,interior decorations +interior designer,interior designers +interior design,interior designs +interior,interiors +interiorized stuttering,interiorized stutterings +interiorized stutter,interiorized stutters +interior point,interior points +interiorscape,interiorscapes +interiorscaper,interiorscapers +interiour,interiours +interjection,interjections +interjector,interjectors +interjoist,interjoists +interjunction,interjunctions +interlanguage,interlanguages +interlapse,interlapses +interlarding,interlardings +interlayer,interlayers +interlayment,interlayments +interleaf,interleaves +interleaving,interleavings +interleukin,interleukins +interlinear,interlinears +interlineary,interlinearies +interlineation,interlineations +interlingua,interlinguas +interlining,interlinings +interlink,interlinks +interlocking tower,interlocking towers +interlock,interlocks +interlocution,interlocutions +interlocutor,interlocutors +interlocutor,interlocutors +interlocutory,interlocutories +interlocutour,interlocutours +interlocutress,interlocutresses +interlocutrice,interlocutrices +interlocutrix,interlocutrices +interloper,interlopers +interloping,interlopings +interlude,interludes +interluder,interluders +intermarriage,intermarriages +intermarrier,intermarriers +intermaxilla,intermaxillae +intermaxillary,intermaxillaries +intermean,intermeans +intermeddler,intermeddlers +intermeddling,intermeddlings +intermede,intermedes +intermediate cuneiform bone,intermediate cuneiform bones +intermediate filament,intermediate filaments +intermediate frequency,intermediate frequencies +intermediate,intermediates +intermediate language,intermediate languages +intermediate phalange,intermediate phalanges +intermediate school,intermediate schools +intermediate vector boson,intermediate vector bosons +intermediator,intermediators +intermediatrix,intermediatrices +intermedin,intermedins +intermediolateral nucleus,intermediolateral nuclei +intermedium,intermedia +interment,interments +intermeshing,intermeshings +intermetal,intermetals +intermetallic compound,intermetallic compounds +intermetallic,intermetallics +intermezzo,intermezzos +intermingling,interminglings +intermission,intermissions +intermittence,intermittences +intermittent,intermittents +intermittent lake,intermittent lakes +intermix,intermixes +intermixture,intermixtures +intermodillion,intermodillions +intermodulation,intermodulations +intermolecular force,intermolecular forces +intermonsoon,intermonsoons +intermorph,intermorphs +internal combustion engine,internal combustion engines +internal-combustion engine,internal-combustion engines +internal conflict,internal conflicts +internal diameter,internal diameters +internal energy,internal energies +internal fertilization,internal fertilizations +internalin,internalins +internalist,internalists +internalization,internalizations +internalizer,internalizers +internal link,internal links +internally displaced person,internally displaced persons +internal migration,internal migrations +internal organ,internal organs +internal rhyme,internal rhymes +internasal,internasals +international acre,international acres +international airport,international airports +international call prefix,international call prefixes +international call sign,international call signs +international,internationals +internationalisation,internationalisations +internationalist,internationalists +International Load Line,International Load Lines +international reply coupon,international reply coupons +international rules football,international rules footballs +international unit,international units +internaut,internauts +Internaut,Internauts +internecion,internecions +internection,internections +internee,internees +internegative,internegatives +interne,internes +Internet address,Internet addresses +Internet cafe,Internet cafes +Internet cafΓ©,Internet cafΓ©s +Internet forum,Internet forums +internet,internets +Internet personality,Internet personalities +Internet predator,Internet predators +Internet presence,Internet presences +Internet Protocol,Internet Protocols +Internetter,Internetters +internetwork,internetworks +interneural,interneurals +interneuron,interneurons +interning,internings +intern,interns +intern,interns +internist,internists +internment camp,internment camps +internment,internments +internode,internodes +internship,internships +internuncio,internuncios +internym,internyms +interoccipital,interoccipitals +interoceptor,interoceptors +interoperation,interoperations +interopercular,interoperculars +interoperculum,interopercula +interorbital,interorbitals +interosseus,interossei +interparietal,interparietals +interpause,interpauses +interpellant,interpellants +interpellation,interpellations +interpenetration,interpenetrations +interpetiolar stipule,interpetiolar stipules +interphase,interphases +interpilaster,interpilasters +interplant distance,interplant distances +interplay,interplays +interpleader,interpleaders +interplea,interpleas +interpolant,interpolants +interpolation,interpolations +interpolator,interpolators +interpolymer,interpolymers +interponent,interponents +interposer,interposers +interposit,interposits +interposition,interpositions +interpositive,interpositives +interposure,interposures +interpretament,interpretaments +interpretant,interpretants +interpreter,interpreters +interpretership,interpreterships +interpretess,interpretesses +inter-process communication,inter-process communications +interprocess communication,interprocess communications +interpunct,interpuncts +interpunction,interpunctions +interquartile range,interquartile ranges +interquel,interquels +interregent,interregents +interregional migration,interregional migrations +interregnum,interregnums,interregna +interreign,interreigns +interrelation,interrelations +interrelationship,interrelationships +interrenal,interrenals +interrer,interrers +interrex,interrexes,interreges +interrobang,interrobangs +interrogatee,interrogatees +interrogation,interrogations +interrogation mark,interrogation marks +interrogation point,interrogation points +interrogation-point,interrogation-points +interrogative adjective,interrogative adjectives +interrogative,interrogatives +interrogative pronoun,interrogative pronouns +interrogator,interrogators +interrogatory,interrogatories +in terrorem clause,in terrorem clauses +interrupter gear,interrupter gears +interrupter,interrupters +interrupting time,interrupting times +interrupt,interrupts +interruption,interruptions +interrupt request,interrupt requests +interscutularis,interscutulares +intersectin,intersectins +intersection,intersections +interseptum,intersepta +intersession,intersessions +intersex,intersexes +intersexual,intersexuals +intershell,intershells +interspace,interspaces +interspecific plum,interspecific plums +interspersal,interspersals +intersperser,interspersers +interspersion,interspersions +intersphere,interspheres +interspiration,interspirations +interstadial,interstadials +interstate compact,interstate compacts +interstate,interstates +interstellar comet,interstellar comets +interstellar planet,interstellar planets +interstellar space,interstellar spaces +interstice,interstices +interstitial fluid,interstitial fluids +interstitial,interstitials +interstitial nephritis,interstitial nephritises +interstition,interstitions +interstitium,interstitia +intersupraocular,intersupraoculars +intertank,intertanks +intertext,intertexts +intertextuality,intertextualities +intertidal zone,intertidal zones +intertie,interties +intertitle,intertitles +intertonic,intertonics +intertwiner,intertwiners +interurban,interurbans +intervacuum,intervacua +interval class,interval classes +intervale,intervales +interval,intervals +intervallum,intervallums,intervalla +intervalometer,intervalometers +interval variable,interval variables +intervarsity,intervarsities +intervasion,intervasions +intervener,interveners +intervenient,intervenients +intervening,intervenings +intervenor,intervenors +intervention,interventions +interventionism,interventionisms +interventionist,interventionists +interventor,interventors +interventricular septum,interventricular septa,interventricular septums +intervertebral disc,intervertebral discs +interviewee,interviewees +interviewer,interviewers +interview,interviews +intervillous space,intervillous spaces +intervolution,intervolutions +interweaving,interweavings +interweb,interwebs,interwebz +interwiki,interwikis +interwind,interwinds +interworld,interworlds +interzine,interzines +intestacy,intestacies +intestate,intestates +intestine,intestines +intext,intexts +intifadah,intifadahs +intifada,intifadas +intifadeh,intifadehs +inti,intis +intimacy,intimacies +intima,intimae,intimas +intimate,intimates +intimation,intimations +intimidation,intimidations +intimidator,intimidators +intimin,intimins +intimist,intimists +intinction,intinctions +intine,intines +int,ints +intolerability,intolerabilities +intolerant,intolerants +intolerator,intolerators +intonation,intonations +intonation,intonations +intoner,intoners +intorsion,intorsions +intortion,intortions +intoxicant,intoxicants +intoxication,intoxications +intoximeter,intoximeters +intraclast,intraclasts +intractability,intractabilities +intracule,intracules +intrada,intradas +intradirective verb,intradirective verbs +intrados,intradoses,intrados +intraesterification,intraesterifications +intraframe,intraframes +intramural,intramurals +intranet,intranets +intransigence,intransigences +intransitive verb,intransitive verbs +intransitivity,intransitivities +intrant,intrants +intraocular pressure,intraocular pressures +intraosseous needle,intraosseous needles +intrapetiolar stipule,intrapetiolar stipules +intrapreneur,intrapreneurs +intraregional migration,intraregional migrations +intrastate,intrastates +intrata,intratas +intraterrestrial,intraterrestrials +intrauterine device,intrauterine devices +intrauterine insemination,intrauterine inseminations +intravasation,intravasations +in-tray,in-trays +intray,intrays +intrenchment,intrenchments +intrepidity,intrepidities +intricacy,intricacies +intrico,intrichi,intricoes +intrigante,intrigantes +intrigue,intrigues +intriguer,intriguers +intriguery,intrigueries +intrinsicality,intrinsicalities +intrinsic brightness,intrinsic brightnesses +intrinsic motivation,intrinsic motivations +intrinsic protein,intrinsic proteins +intrinsic reward,intrinsic rewards +introduced species,introduced species +introducer,introducers +introduction agency,introduction agencies +introduction,introductions +introductor,introductors +introgression,introgressions +intro,intros +introit,introits +introitus,introitus,introitΓ»s +introitus vaginae,introitus vaginae,introitus vaginarum +introitus vaginΓ¦,introitus vaginΓ¦,introitus vaginarum +introjection,introjections +intromission,intromissions +intromittent organ,intromittent organs +intromitter,intromitters +intron,introns +intronization,intronizations +introspection,introspections +introspectionist,introspectionists +introspective sort,introspective sorts +introvert,introverts +intruder,intruders +intrusion,intrusions +intrusionist,intrusionists +intrusive,intrusives +intrusive r,intrusive rs +intuitionalist,intuitionalists +intuition,intuitions +intuitionistic logic,intuitionistic logics +intuitionist,intuitionists +intuitive,intuitives +intumescence,intumescences +inturgescence,inturgescences +in-turn,in-turns +inturn,inturns +intuse,intuses +intussusception,intussusceptions +inugami,inugamis +Inuit,Inuit +Inuk,Inuit +inukshuk,inukshuks,inukshuit,inuksuit +inuksuk,inuksuks +inula,inulas +inunction,inunctions +inurement,inurements +inustion,inustions +invader,invaders +invadopodium,invadopodia +invadosome,invadosomes +invagination,invaginations +invalidation,invalidations +invalidator,invalidators +invalid,invalids +invariable,invariables +invariance,invariances +invariant,invariants +invariant noun,invariant nouns +invariant section,invariant sections +invasin,invasins +invasion,invasions +invasionist,invasionists +invasive exotic,invasive exotics +invasive,invasives +invasive species,invasive species +invection,invections +invective,invectives +inveigher,inveighers +inveigler,inveiglers +inventer,inventers +inventioneer,inventioneers +invention,inventions +inventor,inventors +inventory,inventories +inventour,inventours +inventress,inventresses +inventrix,inventrices +inverity,inverities +Inverness,Invernesses +inverse cosine,inverse cosines +inverse Fourier transform,inverse Fourier transforms +inverse function,inverse functions +inverse hyperbolic function,inverse hyperbolic functions +inverse image,inverse images +inverse,inverses +inverse limit,inverse limits +inverse matrix,inverse matrices +inverse system,inverse systems +inverse trigonometric function,inverse trigonometric functions +inversion,inversions +inversion pair,inversion pairs +inversion table,inversion tables +invertebrate,invertebrates +inverted breve,inverted breves +inverted caret,inverted carets +inverted circumflex,inverted circumflexes +inverted comma,inverted commas +inverted exclamation point,inverted exclamation points +inverted hat,inverted hats +inverted index,inverted indexes +inverted pentacle,inverted pentacles +inverted question mark,inverted question marks +inverter,inverters +invertible matrix,invertible matrices +inverting function,inverting functions +invertin,invertins +invert,inverts +invertivore,invertivores +invertor,invertors +investee,investees +investigability,investigabilities +investigation,investigations +investigator,investigators +investigatrix,investigatrices +invest,invests +investiture,investitures +investment banker,investment bankers +investment bank,investment banks +investment bubble,investment bubbles +investment,investments +investor,investors +inveteratist,inveteratists +invidiousness,invidiousnesses +invigilation,invigilations +invigoration,invigorations +invigorator,invigorators +invisible bird,invisible birds +invisible export,invisible exports +invisible import,invisible imports +invisible,invisibles +invisible rail,invisible rails +invitational,invitationals +invitation,invitations +invitatory,invitatories +invitee,invitees +invite,invites +invitement,invitements +inviter,inviters +in vitro fertilisation,in vitro fertilisations +invitro,invitros +invocation,invocations +invoice,invoices +invoicer,invoicers +invoker,invokers +involucel,involucels +involucellum,involucella +involucre,involucres +involucret,involucrets +involucrum,involucra +involuntary muscle,involuntary muscles +involute,involutes +involution,involutions +involutory,involutories +involver,involvers +inwale,inwales +inwall,inwalls +inward,inwards +inwash,inwashes +inwheel,inwheels +inworking,inworkings +inyanga,inyangas,izinyanga +inyoite,inyoites +IoC,IoCs +IOC,IOCs +iodargyrite,iodargyrites +iodate,iodates +iodhydrin,iodhydrins +iodide,iodides +iodid,iodids +iodination,iodinations +iodine bush,iodine bushes +iodite,iodites +iodizer,iodizers +iodoacetate,iodoacetates +iodoalkenyl,iodoalkenyls +iodoamphetamine,iodoamphetamines +iodoanisole,iodoanisoles +iodoarene,iodoarenes +iodobenzene,iodobenzenes +iodobenzoate,iodobenzoates +iodobutane,iodobutanes +iodocholesterol,iodocholesterols +iodocyclization,iodocyclizations +iododerma,iododermas,iododermata +iododesilylation,iododesilylations +iodoethene,iodoethenes +iodoethylene,iodoethylenes +iodohydrin,iodohydrins +iodolium,iodoliums +iodonium ion,iodonium ions +iodoperoxidase,iodoperoxidases +iodophenol,iodophenols +iodophenyl,iodophenyls +iodophor,iodophors +iodopropane,iodopropanes +iodopsin,iodopsins +iodopyridine,iodopyridines +iodoquinoline,iodoquinolines +iodosilane,iodosilanes +iodosobenzene,iodosobenzenes +iodosugar,iodosugars +iodosulfite,iodosulfites +iodosylbenzene,iodosylbenzenes +iodothyronine,iodothyronines +iodoxole,iodoxoles +iodoxol,iodoxols +iodoxybenzoic acid,iodoxybenzoic acids +ioduret,iodurets +io,ios +io moth,io moths +ion carrier,ion carriers +ion channel,ion channels +ion channelopathy,ion channelopathies +ionene,ionenes +ion engine,ion engines +ion exchange resin,ion exchange resins +Ionian,Ionians +Ionian Island,Ionian Islands +ionic bond,ionic bonds +ionic crystal,ionic crystals +ionic liquid,ionic liquids +ionidium,ionidiums +ion,ions +ionisation,ionisations +ioniser,ionisers +ionization energy,ionization energies +ionization,ionizations +ionizer,ionizers +ion mirror,ion mirrors +ionogram,ionograms +ionome,ionomes +ionomer,ionomers +ionone,ionones +ionopause,ionopauses +ionophore,ionophores +ionosonde,ionosondes +ionosphere,ionospheres +ionospherist,ionospherists +ion selective electrode,ion selective electrodes +ion-selective electrode,ion-selective electrodes +ion-selective membrane,ion-selective membranes +iontotherapy,iontotherapies +ioqua,ioquas +iora,ioras +iotacism,iotacisms +iota,iotas +IOTA,IOTAs +iota subscript,iotas subscript +iotation,iotations +iothalamate,iothalamates +IOU,IOUs +Iowa,Iowas +Iowan,Iowans +ioxaglate,ioxaglates +ioxitalamate,ioxitalamates +ioxithalamate,ioxithalamates +IP address,IP addresses +IP camera,IP cameras +ipecacuanha,ipecacuanhas +ipe,ipes +IP,IPs +ipnopid,ipnopids +ipod,ipods +iPod,iPods +iPod tax,iPod taxes +ipomoea,ipomoeas +ipRGC,ipRGCs +iPSC,iPSC,iPSCs +ipseity,ipseities +IP tracker,IP trackers +ipu,ipus,ipu +Iqalummiuq,Iqalummiut +Iqalungmiut,Iqalungmiut +IQ,IQs +irade,irades +Iranian,Iranians +Irani,Irani +Iraqi,Iraqis +Iraqw,Iraqw +iravadiid,iravadiids +IRBM,IRBMs +IRCer,IRCers +IRC,IRCs,IRC's +IRCop,IRCops +ire,ires +Irelander,Irelanders +irenarch,irenarchs +irene,irenes +irenid,irenids +irestone,irestones +IrG,IrGs +iriambilanja,iriambilanja +Iricism,Iricisms +iridate,iridates +iridectomy,iridectomies +iridescent cloud,iridescent clouds +iridinid,iridinids +iridioscope,iridioscopes +iridocyte,iridocytes +iridoid,iridoids +iridologist,iridologists +iridophore,iridophores +iridotasis,iridotases +iridotomy,iridotomies +iridovirid,iridovirids +iridovirus,iridoviruses +IRI,IRIs +Iriomote cat,Iriomote cats +irisation,irisations +iriscope,iriscopes +iris dilator muscle,iris dilator muscles +Irishcism,Irishcisms +Irish coffee,Irish coffees +Irish flute,Irish flutes +Irish hobby,Irish hobbies +Irishism,Irishisms +Irish joke,Irish jokes +Irishman,Irishmen +Irish pennant,Irish pennants +Irish Setter,Irish Setters +Irish Traveller,Irish Travellers +Irish twin,Irish twins +Irish Wolfhound,Irish Wolfhounds +Irishwoman,Irishwomen +iris,irises,iris,irides +iris pigmented epithelium,iris pigmented epitheliums +irksomeness,irksomenesss +iroko,irokos +iron bacterium,iron bacteria +ironbark,ironbarks +ironclad,ironclads +iron cross,iron crosses +iron curtain,iron curtains +iron eagle,iron eagles +ironer,ironers +iron fist,iron fists +iron gray,iron grays +iron hoof,iron hoofs,iron hooves +iron horse,iron horses +ironing basket,ironing baskets +ironing board,ironing boards +ironingroom,ironingrooms +ironiser,ironisers +ironist,ironists +iron lung,iron lungs +iron maiden,iron maidens +ironmaker,ironmakers +iron man,iron men,iron mans +ironman,ironmen,ironmans +ironmaster,ironmasters +iron meteorite,iron meteorites +iron mine,iron mines +ironmine,ironmines +ironmongeress,ironmongeresses +ironmonger,ironmongers +ironomyiid,ironomyiids +iron ore,iron ores +iron oxide,iron oxides +iron rice bowl,iron rice bowls +ironside,ironsides +Ironside,Ironsides +ironsmith,ironsmiths +iron-sulfur cluster,iron-sulfur clusters +iron-sulfur protein,iron-sulfur proteins +iron-sulphur cluster,iron-sulphur clusters +iron-sulphur protein,iron-sulphur proteins +iron triangle,iron triangles +ironworker,ironworkers +irony mark,irony marks +Iroquoian,Iroquoians +irori,irori +irp,irps +IRP,IRPs +IRQL,IRQLs +irradiance,irradiances +irradiator,irradiators +irrational,irrationals +irrationalist,irrationalists +irrationality,irrationalities +irrational number,irrational numbers +irreality,irrealities +irreconcilable,irreconcilables +irredenta,irredentas +irredentist,irredentists +Irredentist,Irredentists +irreducible,irreducibles +irregular galaxy,irregular galaxies +irregular,irregulars +irregularist,irregularists +irregular plural,irregular plurals +irregular prime,irregular primes +irregular verb,irregular verbs +irreligionist,irreligionists +irrep,irreps +irresolution,irresolutions +irresponsible,irresponsibles +irreversibility,irreversibilities +irrigator,irrigators +Irr,Irrs +irritant,irritants +irritation,irritations +irroration,irrorations +irtyshite,irtyshites +Irukandji,Irukandjis +Irvingite,Irvingites +isaeid,isaeids +isagoge,isagoges +is-a,is-as +isangoma,isangomas,izangoma +isarithm,isarithms +isatin,isatins +isatogen,isatogens +isba,isbas +Iscariot,Iscariots +ischial callosity,ischial callosities +ischial tuberosity,ischial tuberosities +ischiatic nerve,ischiatic nerves +ischiocavernosus,ischiocavernosi +ischiopagus,ischiopagi +ischiopodite,ischiopodites +ischium,ischia +ischnochitonid,ischnochitonids +ischnurid,ischnurids +ischuretic,ischuretics +ischyrocerid,ischyrocerids +ISDN,ISDNs +isentrope,isentropes +isentropic flow,isentropic flows +isethionate,isethionates +isha,ishas +Ishikawa diagram,Ishikawa diagrams +I-ship,I-ships +ish,ishes +ishkhan,ishkhans +Ishmaelite,Ishmaelites +isibongo,izibongo +isicle,isicles +isidid,isidids +isidium,isidia +isis,isises +I-sites,I-sites +ISKCON,ISKCONs +Islamicist,Islamicists +Islamism,Islamisms +Islamist,Islamists +Islamite,Islamites +Islamofascist,Islamofascists +Islamophile,Islamophiles +Islamophobe,Islamophobes +island chain,island chains +islander,islanders +Islander,Islanders +island fox,island foxes +island gray fox,island gray foxes +island,islands +island maze,island mazes +island of stability,islands of stability +island state,island states +island universe,island universes +isle,isles +Isle of Wighter,Isle of Wighters +islet,islets +Ismaelian,Ismaelians +Ismaelite,Ismaelites +Ismaili,Ismailis +ism,isms +isoabsorption,isoabsorptions +isoacceptor,isoacceptors +isoalkane,isoalkanes +isoalloxazine,isoalloxazines +isoarsindole,isoarsindoles +isoarsinoline,isoarsinolines +isoasparaginyl,isoasparaginyls +isoaspartate,isoaspartates +isobar,isobars +isobase,isobases +isobath,isobaths +isobathytherm,isobathytherms +isobenzofuran,isobenzofurans +isobole,isoboles +isobologram,isobolograms +isobront,isobronts +isobutane,isobutanes +isobutyl,isobutyls +isobutyrate,isobutyrates +isobutyronitrile,isobutyronitriles +isocandela,isocandelas +isocaproate,isocaproates +isochasm,isochasms +isocheim,isocheims +isochimene,isochimenes +isochore,isochores +isochorismate,isochorismates +isochor,isochors +isochromane,isochromanes +isochromanequinone,isochromanequinones +isochromosome,isochromosomes +isochrone,isochrones +isochron,isochrons +isochronon,isochronons +isocitrate,isocitrates +isoclinal,isoclinals +isocline,isoclines +isocolon,isocolons,isocola +isocontour,isocontours +isocortex,isocortices +isocost,isocosts +isocoumarin,isocoumarins +isocracy,isocracies +isocrinid,isocrinids +isocryme,isocrymes +isocyanate,isocyanates +isocyanide,isocyanides +isocyanoacetate,isocyanoacetates +isocyanurate,isocyanurates +isodiazene,isodiazenes +isodoublet,isodoublets +isodrosotherm,isodrosotherms +isoelectric point,isoelectric points +isoentrope,isoentropes +isoenzyme,isoenzymes +isoetid,isoetids +isoflavane,isoflavanes +isoflavone,isoflavones +isoflavonoid,isoflavonoids +isoform,isoforms +isofuran,isofurans +isogamete,isogametes +isogeny,isogenies +isogeotherm,isogeotherms +isogloss,isoglosses +isoglucose,isoglucoses +isognomonid,isognomonids +isogonic line,isogonic lines +isogon,isogons +isograd,isograds +isograft,isografts +isogram,isograms +isography,isographies +isograv,isogravs +isogriv,isogrivs +isogroup,isogroups +isohel,isohels +isohexane,isohexanes +isohume,isohumes +isohumulone,isohumulones +isohyet,isohyets +isohyetose,isohyetoses +isohypse,isohypses +isoindole,isoindoles +isoindoline,isoindolines +iso,isos +ISO,ISOs +Isoko,Isoko,Isokos +isolani,isolanis +isolated pawn,isolated pawns +isolated system,isolated systems +isolate,isolates +isolationist,isolationists +isolator,isolators +isolead,isoleads +isolectin,isolectins +isolect,isolects +isolette,isolettes +isoleucyl,isoleucyls +isoline,isolines +isomaltase,isomaltases +isomaltooligosaccharide,isomaltooligosaccharides +isomaltosaccharide,isomaltosaccharides +isomerase,isomerases +isomerate,isomerates +isomere,isomeres +isomeride,isomerides +isomer,isomers +isomerization,isomerizations +isometric,isometrics +isometric perspective,isometric perspectives +isometric space,isometric spaces +isometropia,isometropias +isometry,isometries +isomiR,isomiRs +isomorphism,isomorphisms +isomorph,isomorphs +isomultiplet,isomultiplets +isonandra,isonandras +isoneph,isonephs +isonitrile,isonitriles +isonitroso compound,isonitroso compounds +isonym,isonyms +iso-octane,iso-octanes +isopach,isopaches +isopanose,isopanoses +isoparaffin,isoparaffins +isopentyl,isopentyls +isopeptidase,isopeptidases +isopeptide,isopeptides +isophase light,isophase lights +isophenogamy,isophenogamies +isophosphindole,isophosphindoles +isophosphinoline,isophosphinolines +isophote,isophotes +isophot,isophots +isophthalate,isophthalates +isopiestic line,isopiestic lines +isopleth,isopleths +isopod,isopods +isopolity,isopolities +isopoly acid,isopoly acids +isopolyanion,isopolyanions +isopor,isopors +isopotential,isopotentials +isoprene,isoprenes +isoprenoid,isoprenoids +isoprenylation,isoprenylations +isoprenyl,isoprenyls +isopropenyl,isopropenyls +isopropoxide,isopropoxides +isopropoxy,isopropoxys +isopropylamide,isopropylamides +isopropylamine,isopropylamines +isopropylcholestane,isopropylcholestanes +isopropylidene,isopropylidenes +isoprostane,isoprostanes +isoprotein,isoproteins +isoptic,isoptics +isopycnal,isopycnals +isopycnic,isopycnics +isoquant,isoquants +isoquinoline,isoquinolines +isorotation,isorotations +isosbestic point,isosbestic points +isoscalar,isoscalars +isoscaling,isoscalings +isoscape,isoscapes +isosceles trapezoid,isosceles trapezoids +isosceles triangle,isosceles triangles +isoschizomer,isoschizomers +isoseismal,isoseismals +isoselenocyanate,isoselenocyanates +isosinglet,isosinglets +isosorbide,isosorbides +isospin,isospins +isostatic,isostatics +isostere,isosteres +isostictid,isostictids +isostructure,isostructures +isosulphocyanate,isosulphocyanates +isosurface,isosurfaces +isotach,isotachs +isotemnid,isotemnids +isothere,isotheres +isothermal,isothermals +isotherm,isotherms +isothermobath,isothermobaths +isotherombrose,isotherombroses +isothiazole,isothiazoles +isothiazolinone,isothiazolinones +isothiocyanate,isothiocyanates +isothiourea,isothioureas +isotig,isotigs +isotomid,isotomids +isotone,isotones +isotope dilution,isotope dilutions +isotope effect,isotope effects +isotope exchange,isotope exchanges +isotope,isotopes +isotope shift,isotope shifts +isotope signature,isotope signatures +isotopic dilution,isotopic dilutions +isotopic signature,isotopic signatures +isotopolog,isotopologs +isotopologue,isotopologues +isotopomer,isotopomers +isotopy,isotopies +isotriplet,isotriplets +isotropization,isotropizations +isotype,isotypes +isourea,isoureas +isovector,isovectors +isovel,isovels +isoventiloquinone,isoventiloquinones +isovist,isovists +isoxazole,isoxazoles +isoxazolidine,isoxazolidines +isoxazolidinone,isoxazolidinones +isoxazoline,isoxazolines +isoxazolyl,isoxazolyls +isozyme,isozymes +Israelian,Israelians +Israeli,Israelis +Israelite,Israelites +issid,issids +issuance,issuances +issue,issues +issue pea,issue peas +issuer,issuers +issue tracking system,issue tracking systems +Istanbulite,Istanbulites +i-stem,i-stems +isthmectomy,isthmectomies +isthmus,isthmuses,isthmi +istiodactylid,istiodactylids +istiophorid,istiophorids +istle,istles +Istrian,Istrians +Istro-Romanian,Istro-Romanians +itacism,itacisms +itacist,itacists +itaconate,itaconates +ita,itas +Italian augmented sixth chord,Italian augmented sixth chords +Italian grip,Italian grips +Italianism,Italianisms +Italianist,Italianists +Italian,Italians +Italianization,Italianizations +Italian oak,Italian oaks +Italian sandwich,Italian sandwiches +Italian sonnet,Italian sonnets +italicisation,italicisations +Italicism,Italicisms +italic,italics +italicization,italicizations +italick,italicks +Italiote,Italiotes +Italophile,Italophiles +italophone,italophones +it bag,it bags +It boy,It boys +itch,itches +itemisation,itemisations +item,items +itemization,itemizations +itemizer,itemizers +item of clothing,items of clothing +item set,item sets +itemset,itemsets +iterate,iterates +iteration,iterations +iterator,iterators +iterator pattern,iterator patterns +iter,iters +iteron,iterons +It girl,It girls +Ithacan,Ithacans +ithe,ithes +ith,iths +ithonid,ithonids +ithyphallus,ithyphalli +itineracy,itineracies +itinerant,itinerants +itinerant worker,itinerant workers +itinerary,itineraries +itis,itises +'it,'its +it,its +iTouch,iTouches +ittyon,ittyons +ITU,ITUs +itzebu,itzebus +itzibu,itzibus +iudgement,iudgements +IUI,IUIs +IU,IUs +iustice,iustices +Ivatan,Ivatans,Ivatan +IVC,IVCs +Iverson bracket,Iverson brackets +IVF,IVFs +IV,IVs +Ivoirian,Ivoirians +Ivorian,Ivorians +ivorine,ivorines +ivory-bill,ivory-bills +ivory tower,ivory towers +ivorytype,ivorytypes +ivy,ivies +ivy-leaf,ivy-leaves +iwan,iwans +iWar,iWars +iwi,iwis +ixia,ixias +ixionid,ixionids +ixodicide,ixodicides +ixodid,ixodids +ixodorhynchid,ixodorhynchids +iyng,iynges +iynx,iynges +iyoba,iyobas +iyokan,iyokans +izaar,izaars +izakaya,izakayas +izard,izards +izba,izbas +Izedi,Izedis +izhitsa,izhitsas +Izhorian,Izhorians +izle,izles +Izmirian,Izmirians +izzard,izzards +J2ME,J2MEs +J2RE,J2REs +J2SE,J2SEs +jaali,jaalis +jab artist,jab artists +Jabba,Jabbas +Jabba the Hutt,Jabba the Hutts +jabberer,jabberers +jabberfest,jabberfests +jabbernowl,jabbernowls +jabbing,jabbings +jabiru,jabirus +jab jab,jab jabs +jab,jabs +jaborandi,jaborandis +jaboticaba,jaboticabas +jabroni,jabronis +jabuticaba,jabuticabas +jacal,jacals,jacales +jacamar,jacamars +jacana,jacanas +jacanid,jacanids +jacaranda,jacarandas +jacare,jacares +jacchus,jacchuses +j'accuse,j'accuses +jack-a-dandy,jack-a-dandies +jack-a-lantern,jack-a-lanterns +jackal buzzard,jackal buzzards +Jack-a-Lent,Jack-a-Lents +jackal,jackals +jackalope,jackalopes +jackanape,jackanapes +jack-a-napes,jack-a-napeses +jackanapes,jackanapeses +jackarooesse,jackarooesses +jackaroo,jackaroos +jackarse,jackarses +jackass cover,jackass covers +jackass,jackasses +jackass morwong,jackass morwongs +jackass penguin,jackass penguins +jack-ball,jack-balls +Jack Benny,Jack Bennys +jackboot,jackboots +jack-by-the-hedge,jack-by-the-hedges +jackdaw,jackdaws +jackeen,jackeens +jacker,jackers +jackeroo,jackeroos +jacket,jackets +jacket potato,jacket potatoes +jackfish,jackfishes,jackfish +jack fruit,jack fruits +jack-fruit,jack-fruits +jackfruit,jackfruits +jackhammer,jackhammers +jackhole,jackholes +Jackie Howe,Jackie Howes +jack-in-the-box,jacks-in-boxes,jacks-in-the-boxes,jack-in-the-boxes,jacks-in-the-box +Jack in the pulpit,Jacks in the pulpit +jack,jacks +jack,jacks +jack,jacks +Jack,Jacks +Jack Ketch,Jack Ketches +jack-knife,jack-knives +jackknife,jackknives +jackleg,jacklegs +jack mackerel,jack mackerels +jackman,jackmen +Jack Mormon,Jack Mormons +jack of all trades,jacks of all trades +jack-of-all-trades,jacks-of-all-trades +Jack of all trades,Jacks of all trades +Jack-of-all-trades,Jacks-of-all-trades +Jack of all Trades,Jacks of all Trades +jack of clubs,jacks of clubs +jack of diamonds,jacks of diamonds +jack off,jack offs +jackoff,jackoffs +jack of hearts,jacks of hearts +jack of spades,jacks of spades +jack-of-the-dust,jack-of-the-dusts +jack o'lantern,jack o'lanterns +jack-o'-lantern,jack-o'-lanterns +Jack O'Lantern,Jack O'Lanterns +Jack out of doors,Jacks out of doors +jack pine,jack pines +jack plane,jack planes +jackplane,jackplanes +jack plug,jack plugs +jackpot,jackpots +jackpot,jackpots +jackpudding,jackpuddings +Jack Pudding,Jack Puddings +jackrabbit,jackrabbits +jackrabbit start,jackrabbit starts +jack russell,jack russells +Jack Russell terrier,Jack Russell terriers +jacksaw,jacksaws +jackscrew,jackscrews +jackshaft,jackshafts +jacksie,jacksies +jackslave,jackslaves +jacksmith,jacksmiths +jacksnipe,jacksnipes +Jacksonian,Jacksonians +Jacksonian seizure,Jacksonian seizures +Jacksonite,Jacksonites +jack-staff,jack-staffs +jackstaff,jackstaffs +jackstay,jackstays +jackstay search,jackstay searches +jackstone,jackstones +jackstraw,jackstraws +jacksy,jacksies +jacktar,jacktars +Jack Tar,Jack Tars +jack-up,jack-ups +Jacky Hanger,Jacky Hangers +Jacky Hangman,Jacky Hangmen +Jacky Howe,Jacky Howes +Jacobean,Jacobeans +Jacobean lily,Jacobean lilies +jacobian,jacobians +Jacobian,Jacobians +Jacobine,Jacobines +Jacobin,Jacobins +Jacobi symbol,Jacobi symbols +Jacobite,Jacobites +jacobsite,jacobsites +Jacob's ladder,Jacob's ladders +jacobsoniid,jacobsoniids +Jacobson's organ,Jacobson's organs +Jacobus,Jacobuses +Jacot tool,Jacot tools +jacquard,jacquards +jacqueminot,jacqueminots +jacquerie,jacqueries +Jac shirt,Jac shirts +jactation,jactations +jactitation,jactitations +jaculation,jaculations +jaculator,jaculators +jacuzzi,jacuzzis +Jacuzzi,Jacuzzis +jade gate,jade gates +jade,jades +jade stalk,jade stalks +JAD,JADs +jadomycin,jadomycins +jadrool,jadrools +jaebol,jaebols +jaeger,jaegers +Jaeger,Jaegers +Jaffa cake,Jaffa cakes +jaffa,jaffas +Jaffa,Jaffas +Jaffa orange,Jaffa oranges +jaffeite,jaffeites +jaffle,jaffles +JΓ€gerbomb,JΓ€gerbombs +jager,jagers +jaggerbush,jaggerbushes +jagger,jaggers +jagger,jaggers +jaggery,jaggeries +jagghery,jaggheries +jagging iron,jagging irons +jaghirdar,jaghirdars +jaghire,jaghires +jaghir,jaghirs +jagir,jagirs +jag,jags +jag,jags +Jag,Jags +jagoff,jagoffs +jagra,jagras +jagra,jagras +jagua palm,jagua palms +jaguar,jaguars +jaguarondi,jaguarondis +jaguarundi,jaguarundis +jahrzeit,jahrzeits +jaikie,jaikies +jail-bird,jail-birds +jailbird,jailbirds +jailbreaker,jailbreakers +jailbreak,jailbreaks +jailee,jailees +jaileress,jaileresses +jailer,jailers +jailhouse,jailhouses +jailhouse lawyer,jailhouse lawyers +jailing,jailings +jailkeeper,jailkeepers +jail lock,jail locks +jailoress,jailoresses +jailor,jailors +jailyard,jailyards +Jainist,Jainists +Jainite,Jainites +Jain,Jains +Jaipurian,Jaipurians +Jaipuri,Jaipuris +jairou,jairous +Jakartan,Jakartans +jake brake,jake brakes +jake,jakes +jakey,jakeys,jakies +jakfruit,jakfruits +jakie,jakies +jakobid,jakobids +jako,jakos +jalapate,jalapates +jalapeno,jalapenos +jalapeΓ±o,jalapeΓ±os +jalapic acid,jalapic acids +jalapinolate,jalapinolates +jalebi,jalebis +jalfrezi,jalfrezis +jali,jalis +jalopy,jalopies +jalousie,jalousies +jamaat,jamaats +jamadar,jamadars +Jamaican apple,Jamaican apples +Jamaican,Jamaicans +Jamaican patty,Jamaican patties +Jamaica rose,Jamaica roses +jambalaya,jambalayas +jambeau,jambeaux +jambee,jambees +jambia,jambias +jambiyah,jambiyahs +jambiya,jambiyas +jamb,jambs +jambok,jamboks +jambolana,jambolanas +jamboree,jamborees +jamborette,jamborettes +jambu,jambus +jambul,jambuls +jambuster,jambusters +jam drop,jam drops +Jamerican,Jamericans +James Bond,James Bonds +James Bond villain,James Bond villains +jamesonite,jamesonites +Jamestown weed,Jamestown weeds +jam,jams +jam jar,jam jars +jamjar,jamjars +jammer,jammers +jammie,jammies +jamming,jammings +jammy Arab,jammy Arabs +jammy,jammies +jam rag,jam rags +jam sandwich,jam sandwiches +jam session,jam sessions +jam tart,jam tarts +jandal,jandals +Jane Doe,Jane Does +janegirl,janegirls +Janeite,Janeites +jane,janes +jane,janes +Jane,Janes +Jane Roe,Jane Roes +jangle,jangles +jangleress,jangleresses +jangler,janglers +jangling,janglings +jangseung,jangseungs,jangseung +janisary,janisaries +janissary,janissaries +janitor,janitors +janitorship,janitorships +janitress,janitresses +janitrix,janitrixes,janitrices +janizar,janizars +janizary,janizaries +janker,jankers +jank,janks +jannissary,jannissaries +jannock,jannocks +janolid,janolids +Jansenist,Jansenists +jansky,janskys,janskies +janthina,janthinas +janthinid,janthinids +Janus particle,Janus particles +Japanazi,Japanazis +Japanese aralia,Japanese aralias +Japanese bayberry,Japanese bayberry +Japanese bayberry whitefly,Japanese bayberry whiteflies +Japanese beetle,Japanese beetles +Japanese Bobtail,Japanese Bobtails +Japanese bunching onion,Japanese bunching onions +Japanese giant salamander,Japanese giant salamanders +Japanese,Japanese +Japanese lantern,Japanese lanterns +Japanese maple,Japanese maples +Japanese persimmon,Japanese persimmons +Japanese sea lion,Japanese sea lions +Japanese slipper,Japanese slippers +Japanese spitz,Japanese spitzes +Japanese yew,Japanese yews +japanner,japanners +Japanologist,Japanologists +Japanophile,Japanophiles +Japanophone,Japanophones +jape,japes +japer,japers +japester,japesters +Japhethite,Japhethites +Japhetite,Japhetites +JAPH,JAPHs +Jap,Japs +japonica,japonicas +Jap's eye,Japs' eyes +japygid,japygids +jararaca,jararacas +jararaka,jararakas +jarbua terapon,jarbua terapons +jardiniere,jardinieres +jardiniΓ¨re,jardiniΓ¨res +Jaredite,Jaredites +jarful,jarfuls,jarsful +jargonaut,jargonauts +jargoneer,jargoneers +jargonelle,jargonelles +jargonisation,jargonisations +jargonist,jargonists +jargonization,jargonizations +jargon,jargons +jargoon,jargoons +jarhead,jarheads +jar,jars +jar,jars +jark,jarks +jarl,jarls +jarnut,jarnuts +jarosewichite,jarosewichites +jar-owl,jar-owls +jarrah,jarrahs +jarring,jarrings +J. Arthur Rank,J. Arthur Ranks +jarvey,jarvies,jarveys +jarvy,jarvies +jasey,jaseys +jashawk,jashawks +jasmine,jasmines +jasm,jasms +jasmonate,jasmonates +Jason mask,Jason masks +jaspΓ©,jaspΓ©s +jasperite,jasperites +jasperization,jasperizations +jasper,jaspers +jasperoid,jasperoids +jasper opal,jasper opals +jassid,jassids +jat,jats +jato,jatos +jatropha,jatrophas +jau gok,jau gok +jaunter,jaunters +jaunt,jaunts +jaup,jaups +JavaBean,JavaBeans +Java cat,Java cats +javac,javacs +javaite,javaites +Java,Javas +Java man,Java men +JavaME,JavaMEs +Javanese,Javanese +javanite,javanites +Javan,Javans +Javan tiger,Javan tigers +JavaScripter,JavaScripters +JavaSE,JavaSEs +Java sparrow,Java sparrows +javazon,javazons +javelina,javelinas +javelineer,javelineers +javelinier,javeliniers +javelin,javelins +javel,javels +jawan,jawans +jawbation,jawbations +jaw beard,jaw beards +jawbone,jawbones +jawbreaker,jawbreakers +jawfish,jawfishes,jawfish +jaw harp,jaw harps +jaw,jaws +jawline,jawlines +jawn,jawns +jawsmith,jawsmiths +jaybird,jaybirds +jayhawker,jayhawkers +jay,jays +jay,jays +jaywalker,jaywalkers +jazeraint,jazeraints +jazerant,jazerants +jazz band,jazz bands +jazzband,jazzbands +jazzbo,jazzbos +jazz dance,jazz dances +jazzer,jazzers +jazzfest,jazzfests +jazzhead,jazzheads +jazzification,jazzifications +jazzist,jazzists +jazz mag,jazz mags +jazzman,jazzmen +jazznik,jazzniks +jazzophile,jazzophiles +jazzperson,jazzpersons,jazzpeople +jazz poet,jazz poets +jazzwoman,jazzwomen +JCB,JCBs +JC virus,JC viruses +JDK,JDKs +Jeames,Jeameses +jeans jacket,jeans jackets +jeast,jeasts +jeat,jeats +jebel,jebels +jedding ax,jedding axes +jedge,jedges +Jedi,Jedis,Jedi +Jedi Knight,Jedi Knights +Jedi Master,Jedi Masters +Jedi mind trick,Jedi mind tricks +jeel,jeels +jeem,jeems +jeep,jeeps +jeepney,jeepneys +jeer capstan,jeer capstans +jeerer,jeerers +jeering,jeerings +jeer,jeers +jeer,jeers +jeerleader,jeerleaders +jefe,jefes +jefe polΓ­tico,jefe polΓ­ticos,jefes polΓ­ticos +jeffersonia,jeffersonias +Jeffersonian,Jeffersonians +jeffersonite,jeffersonites +Jefferson,Jeffersons +jegging,jeggings +jeg,jegs +jehadi,jehadis +jehadist,jehadists +jehad,jehads +Jehovah,Jehovahs +Jehovah's Witness,Jehovah's Witnesses +jehu,jehus +jejeunostomy,jejeunostomies +jejeunum,jejeuna +jejunectomy,jejunectomies +jejunitis,jejunites +jejunocolostomy,jejunocolostomies +jejunoileitis,jejunoileites +jejunoileostomy,jejunoileostomies +jejunojejunostomy,jejunojejunostomies +jejunoplasty,jejunoplasties +jejunostomy,jejunostomies +jejunotomy,jejunotomies +jejunum,jejuna +Jekyll-and-Hyde,Jekyll-and-Hydes +Jekyll and Hyde,Jekylls and Hydes,Jekyll and Hydes +jelerang,jelerangs +jelick,jelicks +jellabah,jellabahs +jellaba,jellabas +jellium,jelliums,jellia +jell,jells +jelloid,jelloids +jello shooter,jello shooters +Jell-O shot,Jell-O shots +jelly baby,jelly babies +jellybag,jellybags +jelly bean,jelly beans +jellybean,jellybeans +jellybelly,jellybellies +jelly bracelet,jelly bracelets +jellycopter,jellycopters +jelly donut,jelly donuts +jelly doughnut,jelly doughnuts +jellyfish baby,jellyfish babies +jelly fish,jelly fish +jelly-fish,jelly-fish +jellyfish,jellyfish,jellyfishes +jellyfish tree,jellyfish trees +jelly fungus,jelly fungi +jellygraph,jellygraphs +jelly plant,jelly plants +jelly roll,jelly rolls +jellyroll,jellyrolls +jelly roll pan,jelly roll pans +jelly shoe,jelly shoes +jelutong,jelutongs +Jelveti,Jelvetis +jemadar,jemadars +jembe,jembes +jemidar,jemidars +Jemlah goat,Jemlah goats +jemmy,jemmies +Jenkins,Jenkinses +jenneting,jennetings +jennet,jennets +jenny-ass,jenny-asses +jenny,jennies +Jenny,Jennies +jenny wren,jenny wrens +jentling,jentlings +jeofail,jeofails +jeon,jeon +jeopardizer,jeopardizers +jeopardy,jeopardies +JeOS,JeOSes +jequirity bean,jequirity beans +jerboa,jerboas +jerboa kangaroo,jerboa kangaroos +jereed,jereeds +jeremiad,jeremiads +Jeremiah,Jeremiahs +jerepigo,jerepigos +jerfalcon,jerfalcons +jerib,jeribs +Jerichoan,Jerichoans +Jerichoite,Jerichoites +Jericho,Jerichos +jerid,jerids +jer,jers +jerk ass,jerk asses +jerk-ass,jerk-asses +jerkass,jerkasses +jerker,jerkers +jerkess,jerkesses +jerkface,jerkfaces +jerking,jerkings +jerkinhead,jerkinheads +jerkin,jerkins +jerk,jerks +jerk off,jerk offs +jerk-off,jerk-offs +jerkoff,jerkoffs +jerkwad,jerkwads +jerk-water,jerk-waters +jerkwater,jerkwaters +jerkwater town,jerkwater towns +jermoonal,jermoonals +jeroboam,jeroboams +Jeroboam,Jeroboams +Jeronymite,Jeronymites +jeropiga,jeropigas +jerquer,jerquers +jerreed,jerreeds +jerrican,jerricans +jerrid,jerrids +jerrybag,jerrybags +jerry can,jerry cans +jerrycan,jerrycans +jerrygibbsite,jerrygibbsites +jerry,jerries +Jersey cream,Jersey creams +Jersey girl,Jersey girls +jersey,jerseys +Jerseyman,Jerseymen +Jerusalem artichoke,Jerusalem artichokes +Jerusalem cricket,Jerusalem crickets +Jerusalem haddock,Jerusalem haddocks,Jerusalem haddock +Jerusalemite,Jerusalemites +Jerusalem oak,Jerusalem oaks +jessamine,jessamines +Jesse,Jesses +Jesse Tree,Jesse Trees +jess,jesses +jess,jesses +jester,jesters +jest,jests +jestress,jestresses +Jesuate,Jesuates +Jesuitess,Jesuitesses +Jesuit,Jesuits +Jesus boot,Jesus boots +Jesus Christ,Jesus Christs +Jesus fish,Jesus fish,Jesus fishes +Jesus freak,Jesus freaks +Jesus,Jesuses +Jesus phone,Jesus phones +Jesus piece,Jesus pieces +jet ant,jet ants +jetboater,jetboaters +jetboat,jetboats +jet bridge,jet bridges +jetcar,jetcars +jetcopter,jetcopters +jet d'eau,jets d'eau +jete,jetes +jetΓ©,jetΓ©s +jet engine,jet engines +jet fighter,jet fighters +jetfighter,jetfighters +jetfoil,jetfoils +jet injector,jet injectors +jet,jets +jet,jets +jet lag,jet lags +jetlag,jetlags +jet liner,jet liners +jet-liner,jet-liners +jetliner,jetliners +jetload,jetloads +jet machine,jet machines +jeton,jetons +jet pack,jet packs +jet-pack,jet-packs +jetpack,jetpacks +jet plane,jet planes +jetport,jetports +jet set,jet sets +jet setter,jet setters +jet-setter,jet-setters +jetsetter,jetsetters +jetskier,jetskiers +jet ski,jet skis +jet-ski,jet-skis +jetski,jetskis +jet stream,jet streams +jetstream,jetstreams +jettatura,jettaturas +jetteau,jetteaus +jettee,jettees +jetter,jetters +jettison,jettisons +jetton,jettons +jetty,jetties +jetway,jetways +jeu d'esprit,jeux d'esprit +jewbush,jewbushes +Jew by choice,Jews by choice +Jewdom,Jewdoms +jewel beetle,jewel beetles +jewel case,jewel cases +jeweler,jewelers +jewelfish,jewelfishes,jewelfish +jewel,jewels +jeweller,jewellers +jeweller's rouge,jeweller's rouges +jewellery armoire,jewellery armoires +jewel-neck,jewel-necks +jewelsmith,jewelsmiths +Jewess,Jewesses +jew-fish,jew-fish +jewfish,jewfish,jewfishes +jewfro,jewfros +Jewfro,Jewfros +jewie,jewies +Jewish piano,Jewish pianos +Jewish tax,Jewish taxes +Jew,Jews +Jewman,Jewmen +Jewry,Jewries +Jew's-ear,Jew's-ears +Jew's harp,Jew's harps +jewstone,jewstones +jezail,jezails +Jezebel,Jezebels +jezve,jezves +JFET,JFETs +JFIF,JFIFs +JGA,JGAs +jhampani,jhampanis +jheel,jheels +Jheri curl,Jheri curls +jhil,jhils +jiao,jiaos +jiaozi,jiaozi +jibarito,jibaritos +jibber,jibbers +jib boom,jib booms +jibe,jibes +jib,jibs +jicama,jicamas +Jicaque,Jicaques +jicara,jicaras +jidderbug,jidderbugs +jidder,jidders +jiff,jiffs +Jiffy bag,Jiffy bags +jiffy,jiffies +jigaboo,jigaboos +jigamaree,jigamarees +jigawatt,jigawatts +jig borer,jig borers +jiggambob,jiggambobs +jiggeh,jiggehs +jigger,jiggers +jigger mast,jigger masts +jigger-mast,jigger-masts +jiggermast,jiggermasts +jigget,jiggets +jiggle,jiggles +jiggler,jigglers +jiggling,jigglings +jighead,jigheads +jigida,jigidas +jig,jigs +jigo,jigos +jig saw,jig saws +jigsaw,jigsaws +jigsaw puzzle,jigsaw puzzles +jihadi,jihadis +jihadist,jihadists +jihad,jihads +jihobbyist,jihobbyists +jilbaab,jilbaabs +jilbab,jilbabs +jilgie,jilgies +jillaroo,jillaroos +jillflirt,jillflirts +jillion,jillions +jill,jills +jill of all trades,jills of all trades +jill-of-all-trades,jills-of-all-trades +Jill of all trades,Jills of all trades +Jill-of-all-trades,Jills-of-all-trades +jillstrap,jillstraps +jiltee,jiltees +jilter,jilters +jilting,jiltings +jilt,jilts +jimador,jimadors,jimadores +jimcrack,jimcracks +Jim Crower,Jim Crowers +Jim Crow law,Jim Crow laws +jim-dandy,jim-dandies +jimmy cap,jimmy caps +Jimmy Choo,Jimmy Choos +jimmy hat,jimmy hats +jimmy,jimmies +Jimmy Woodser,Jimmy Woodsers +jimson,jimsons +jingal,jingals +jingle bell,jingle bells +jingle,jingles +jingler,jinglers +jingling,jinglings +jingoist,jingoists +jingo,jingoes +jinja,jinjas +jin,jins +jinker,jinkers +jink,jinks +jinnee,jinnees +jinni,jinnis +jinn,jinns,jinn +jinny road,jinny roads +jinricksha,jinrickshas +jinrickshaw,jinrickshaws +jinrikisha,jinrikishas +jinriksha,jinrikshas +jin-seng,jin-sengs +jint,jints +jinx,jinxes +jippa jappa,jippa jappas +jird,jirds +jirga,jirgas +jirkinet,jirkinets +jism,jisms +jist,jists +jit,jits +jitney,jitneys +jitterbugger,jitterbuggers +jitterbug,jitterbugs +jitter,jitters +jitter,jitters +jitty,jitties +jivanmukta,jivanmuktas +jivanmukti,jivanmuktis +jive,jives +jiver,jivers +jive turkey,jive turkeys +jizyah,jizyahs +jizya,jizyas +jizz bucket,jizz buckets +jizzer,jizzers +jizz-mopper,jizz-moppers +jizzmopper,jizzmoppers +jizzrag,jizzrags +j,js +J,Js,J's +JLB,JLBs +JMX,JMXs +JNI,JNIs +JNOV,JNOVs +joanna,joannas +job action,job actions +job aid,job aids +jobation,jobations +jobbe,jobbes +jobber,jobbers +jobbernowl,jobbernowls +jobbery,jobberies +jobbie,jobbies +jobbing house,jobbing houses +job center,job centers +job centre,job centres +jobcentre,jobcentres +Jobcentre,Jobcentres +job creator,job creators +job description,job descriptions +job fair,job fairs +jobfish,jobfishes,jobfish +jobholder,jobholders +job-hopper,job-hoppers +jobhunter,jobhunters +job,jobs +job lot,job lots +jobmaker,jobmakers +jobname,jobnames +job of work,jobs of work +job op,job ops +job queue,job queues +job scheduler,job schedulers +Job's comforter,Job's comforters +jobseeker,jobseekers +jobshare,jobshares +job shop,job shops +jobster,jobsters +jobsworth,jobsworths +job title,job titles +jockette,jockettes +jockey,jockeys +jockey strap,jockey straps +jock,jocks +jock,jocks +Jock,Jocks +Jockney,Jockneys +jockocracy,jockocracies +jock strap,jock straps +jockstrap,jockstraps +jocolatte,jocolattes +jocote,jocotes +jocularity,jocularities +joculator,joculators +jodeler,jodelers +jodeller,jodellers +Jodrell,Jodrells +jody cadence,jody cadences +Jody cadence,Jody cadences +jody call,jody calls +Jody call,Jody calls +Jody chant,Jody chants +jody,jodies +Jody,Jodies +joe blake,joe blakes +Joe Blake,Joe Blakes +Joe Frogger,Joe Froggers +joe job,joe jobs +Joe job,Joe jobs +joe,joes +Joe,Joes +Joe Miller,Joe Millers +joe-pye weed,joe-pye weeds +Joe's Diner,Joe's Diners +joewood,joewoods +joey,joeys +joey word,joey words +jogathon,jogathons +jogger,joggers +jogging bra,jogging bras +joggle,joggles +jog,jogs +jogtrot,jogtrots +johannes,johanneses +Johannisberger,Johannisbergers +Johannison block,Johannison blocks +Johansson block,Johansson blocks +Johansson gauge,Johansson gauges +John-apple,John-apples +johnboater,johnboaters +johnboat,johnboats +John Doe,John Does +John Doree,John Dorees +John Dory,John Dories +John Hancock,John Hancocks +John Henry,John Henrys +john,johns +johnny bag,johnny bags +johnny cake,johnny cakes +johnnycake,johnnycakes +Johnny-come-lately,Johnny-come-latelies +Johnny Crapaud,Johnny Crapauds +johnny,johnnies +Johnny,Johnnys +Johnny-jump-up,Johnny-jump-ups +Johnny-one-note,Johnny-one-notes +john school,john schools +Johnson bar,Johnson bars +johnsongrass,johnsongrasses +Johnson grass,Johnson grasses +Johnsonianism,Johnsonianisms +johnson,johnsons +Johnson solid,Johnson solids +Johnston's organ,Johnston's organs +joinder,joinders +joiner,joiners +joinery,joineries +joining,joinings +join,joins +join point,join points +joinpoint,joinpoints +joint account,joint accounts +joint committee,joint committees +joint entropy,joint entropies +jointer,jointers +jointer plane,jointer planes +jointfir,jointfirs +jointing,jointings +jointist,jointists +joint,joints +joint lock,joint locks +joint probability,joint probabilities +jointress,jointresses +joint snake,joint snakes +joint space,joint spaces +joint-stock bank,joint-stock banks +joint-stock company,joint-stock companies +jointure,jointures +jointuress,jointuresses +joint venture,joint ventures +joint will,joint wills +jointworm,jointworms +joist,joists +jojoba ester,jojoba esters +jojoba,jojobas +jo,jos +jō,jōs +joke book,joke books +jokebook,jokebooks +jokefest,jokefests +joke,jokes +joker,jokers +joke shop,joke shops +jokesmith,jokesmiths +jokester,jokesters +jΓΆkulhlaup,jΓΆkulhlaups +jole,joles +jol,jols +jollification,jollifications +jollop,jollops +jolly boat,jolly boats +jollyboat,jollyboats +jolly,jollies +Jolly Roger,Jolly Rogers +jolter,jolters +jolthead,joltheads +jolt,jolts +jomo,jomo,jomos +Jonah crab,Jonah crabs +Jonathan,Jonathans +Joneser,Jonesers +jones,joneses +jong,jongs +jongleur,jongleurs +jonnycake,jonnycakes +jonquil,jonquils +jook joint,jook joints +jook-sing,jook-sings +Jopadhola,Jopadhola +joram,jorams +Jordanian,Jordanians +jordanite,jordanites +jordan,jordans +jorden,jordens +jor,jors +joseki,josekis +joseph,josephs +Joseph's flower,Joseph's flowers +Josephson junction,Josephson junctions +josher,joshers +josh,joshes +Joshua tree,Joshua trees +joskin,joskins +joso,josos +josser,jossers +joss,josses +joss paper,joss papers +joss stick,joss sticks +jostaberry,jostaberries +jostle,jostles +jostler,jostlers +jostling,jostlings +jota,jotas +jot,jots +jotterbook,jotterbooks +jotter,jotters +jotting,jottings +jotun,jotuns +Jotun,Jotuns +jΓΆtun,jΓΆtuns +JΓΆtun,JΓΆtuns +jotunn,jotunns +Jotunn,Jotunns +jΓΆtunn,jΓΆtunns +JΓΆtunn,JΓΆtunns +joule,joules +joulemeter,joulemeters +jounce,jounces +jour fixe,jour fixes +journaler,journalers +journalist,journalists +journal,journals +journall,journalls +journeyer,journeyers +journeying,journeyings +journey,journeys +journeyman,journeymen +journeyperson,journeypersons,journeypeople +journeywoman,journeywomen +journo,journos +jour printer,jour printers +jouster,jousters +joust,jousts +jovialist,jovialists +Jovian,Jovians +Jovian planet,Jovian planets +Jovinianist,Jovinianists +jow,jows +jowler,jowlers +jowl,jowls +jowl,jowls +jowter,jowters +joy buzzer,joy buzzers +joygasm,joygasms +joy house,joy houses +joypad,joypads +joypopper,joypoppers +joy ride,joy rides +joyride,joyrides +joyrider,joyriders +joystick,joysticks +joystick waggler,joystick wagglers +JPDA,JPDAs +jpeg,jpegs +JPEG,JPEGs +J.P.,J.P.s +J/psi particle,J/psi particles +JRE,JREs +JSDK,JSDKs +JSR,JSRs +J stroke,J strokes +JSWDK,JSWDKs +JTWI,JTWIs +Juba dance,Juba dances +juba,jubae +jubarb,jubarbs +jubbe,jubbes +jubbly,jubblies +jube,jubes +jube,jubes +jube,jubes +jubΓ©,jubΓ©s +jubilance,jubilances +jubilancy,jubilancies +jubilarian,jubilarians +Jubilate Sunday,Jubilate Sundays +jubilation,jubilations +jubilee,jubilees +Jubilee,Jubilees +jubile,jubiles +Juchist,Juchists +Judaean,Judaeans +JudΓ¦an,JudΓ¦ans +Judaeophobe,Judaeophobes +Judahite,Judahites +Judaist,Judaists +Judaization,Judaizations +Judaizer,Judaizers +Judas chair,Judas chairs +Judas cradle,Judas cradles +Judas goat,Judas goats +Judas Iscariot,Judas Iscariots +judas,judases +Judas,Judases +Judas tree,Judas trees +Judas window,Judas windows +judcock,judcocks +judder bar,judder bars +judder,judders +juddock,juddocks +Judeophile,Judeophiles +judge advocate,judge advocates +judge,judges +judgement call,judgement calls +judgement day,judgement days +judgement,judgements +judge of fact,judges of fact +judger,judgers +judgeship,judgeships +judg,judges +judgment call,judgment calls +judgment,judgments +judgment of Solomon,judgments of Solomon +judgy-pants,judgy-pantses +judication,judications +judicator,judicators +judicatory,judicatories +judicature,judicatures +judicial day,judicial days +judicial review,judicial reviews +judiciary,judiciaries +judogi,judogis +judoist,judoists +judoka,judoka,judokas +jugale,jugales +jugal,jugals +jug band,jug bands +juger,jugers +jugerum,jugerums +jugfish,jugfish +jugful,jugfuls,jugsful +Juggalette,Juggalettes +Juggalo,Juggalos +jugger,juggers +juggernaut,juggernauts +juggins,jugginses +jugg,juggs +juggle,juggles +juggleress,juggleresses +juggler,jugglers +juggling,jugglings +jughandle,jughandles +jughead,jugheads +jug hold,jug holds +jug,jugs +juglet,juglets +jugline,juglines +Jugoslavian,Jugoslavians +Jugoslavijan,Jugoslavijans +jugular,jugulars +jugular vein,jugular veins +jugulum,jugula +jugum,juga +juice box,juice boxes +juice collector,juice collectors +juice head,juice heads +juice-head,juice-heads +juicehead,juiceheads +juice joint,juice joints +juice loan,juice loans +juice monkey,juice monkeys +juicer,juicers +juicy girl,juicy girls +jujitsuka,jujitsukas +jujube,jujubes +ju-ju,ju-jus +juju,jujus +juju,jujus +JU,JUs +jukebox,jukeboxes +juke joint,juke joints +juke,jukes +juke,jukes +jukskei,jukskeis +jukujikun,jukujikun +julep,juleps +Julian date,Julian dates +Julian year,Julian years +Julia set,Julia sets +julid,julids +julienne,juliennes +Juliet cap,Juliet caps +juliid,juliids +Julio-Claudian,Julio-Claudians +julio,julios +julus,juluses +July-flower,July-flowers +jumar,jumars +jumart,jumarts +jumball,jumballs +jumblement,jumblements +jumbler,jumblers +jumble sale,jumble sales +jumbo jet,jumbo jets +jumbo,jumbos +jumbotron,jumbotrons +jumbrella,jumbrellas +jumbuck,jumbucks +jument,juments +jumpathon,jumpathons +jump ball,jump balls +jump boot,jump boots +jump cut,jump cuts +jumpcut,jumpcuts +jump drive,jump drives +jumpdrive,jumpdrives +jumper cable,jumper cables +jumper,jumpers +jumper,jumpers +jumping bean,jumping beans +jumping jack,jumping jacks +jumping-jack,jumping-jacks +jumping mouse,jumping mice +jumping plant louse,jumping plant lice +jump jet,jump jets +jump,jumps +jump,jumps +jump lead,jump leads +jump list,jump lists +jumplist,jumplists +jumpmaster,jumpmasters +jumpoff,jumpoffs +jumpout,jumpouts +jump page,jump pages +jump rope,jump ropes +jump scare,jump scares +jump-scare,jump-scares +jumpscare,jumpscares +jump seat,jump seats +jumpseat,jumpseats +jumpseed,jumpseeds +jump shot,jump shots +jumpstarter,jumpstarters +jump-start,jump-starts +jumpstart,jumpstarts +jumpstation,jumpstations +jumpsuit,jumpsuits +jumpup,jumpups +juncate,juncates +juncite,juncites +junco,juncos,juncoes +junction detector,junction detectors +junction diode,junction diodes +junction,junctions +junction point,junction points +junction transistor,junction transistors +junctura,juncturae +juncture,junctures +juneating,juneatings +juneberry,juneberries +Juneberry,Juneberries +jungermannia,jungermannias +Jungian,Jungians +jungle boot,jungle boots +jungle bunny,jungle bunnies +jungle cat,jungle cats +junglefowl,junglefowl +jungle gym,jungle gyms +jungle,jungles +jungle nymph,jungle nymphs +jungle telegraph,jungle telegraphs +junglist,junglists +junior bridesmaid,junior bridesmaids +junior college,junior colleges +junior high,junior highs +junior high school,junior high schools +junior,juniors +junior minister,junior ministers +junior school,junior schools +junior synonym,junior synonyms +junior varsity,junior varsities +juniour,juniours +juniper berry,juniper berries +juniper bush,juniper bushes +juniperite,juniperites +juniper,junipers +juniper worm,juniper worms +jun,jun +junkanoo,junkanoos +junkballer,junkballers +junkball,junkballs +junk bond,junk bonds +junk conference,junk conferences +junk drawer,junk drawers +junkdrawer,junkdrawers +junker,junkers +junker,junkers +Junker,Junkers +junketeer,junketeers +junketer,junketers +junket,junkets +junkhead,junkheads +junkie,junkies +junk,junks +junkman,junkmen +junkpile,junkpiles +junkroom,junkrooms +junk shot,junk shots +junkyard dog,junkyard dogs +junkyard-dog,junkyard-dogs +junkyard,junkyards +junky,junkies +junta,juntas +junto,juntos,juntoes +jupati,jupatis +Jupati palm,Jupati palms +jupe,jupes +jupe,jupes +Jupiter mass,Jupiter masses +jupon,jupons +juppon,juppons +juraphyllitid,juraphyllitids +jurat,jurats +jurbanite,jurbanites +Jurchen,Jurchens +jurel,jurels +jurisconsult,jurisconsults +jurisdiction,jurisdictions +Juris Doctor,Juris Doctors +jurispendence,jurispendences +jurisprudent,jurisprudents +jurist,jurists +Jurkat cell,Jurkat cells +juror,jurors +jurour,jurours +jury box,jury boxes +jury,juries +juryman,jurymen +jurymast,jurymasts +jury panel,jury panels +juryperson,jurypersons,jurypeople +jury pool,jury pools +jury rig,jury rigs +jury-rig,jury-rigs +jury trial,jury trials +jurywoman,jurywomen +just compensation,just compensations +Justice of the Peace,Justices of the Peace +justicer,justicers +justiceship,justiceships +justiciability,justiciabilities +justiciable case,justiciable cases +justiciar,justiciars +justiciary,justiciaries +justification,justifications +justificator,justificators +justifier,justifiers +justifying space,justifying spaces +just,justs +just-so story,just-so stories +Jute,Jutes +jut,juts +Jutlander,Jutlanders +jutty,jutties +juvenal,juvenals +juvenile delinquent,juvenile delinquents +juvenile detention centre,juvenile detention centres +juvenile hall,juvenile halls +juvenile hormone,juvenile hormones +juvenile,juveniles +juvenoid,juvenoids +juvia,juvias +juwansa,juwansas +juxtaglomerular apparatus,juxtaglomerular apparatuses +juxta,juxtae +juxtallocortex,juxtallocortexes,juxtallocortices +juxta-position,juxta-positions +juxtaposition,juxtapositions +JVM,JVMs +jyng,jynges +jynx,jynges +jyotirlinga,jyotirlingas +K9,K9s +K-9 unit,K-9 units +kaaf,kaafs +kaama,kaamas +kabaddi,kabaddis +kabaka,kabakas +kabaragoya,kabaragoyas +kabassou,kabassous +kabaya,kabayas +Kabbalah,Kabbalahs +kabbalist,kabbalists +kabillion,kabillions +kabitka,kabitkas +kab,kabs +kabloona,kabloonas,kabloona,kabloonat +kabob,kabobs +kaboodle,kaboodles +kaboom,kabooms +kabouter,kabouters +Kabulese,Kabulese +Kabyle,Kabyles +kachauri,kachauris +kachina,kachinas +kachori,kachoris +kadder,kadders +kaddish,kaddishes +kade,kades +k-adic notation,k-adic notations +kadi,kadis +kadkhoda,kadkhodas +kady,kadies +kafeneio,kafeneios +kafenio,kafenios +kafenion,kafenions +kaffeeklatch,kaffeeklatches +kaffeeklatsch,kaffeeklatsches,kaffeeklatschen +kaffir,kaffirs +kaffir lime,kaffir limes +kaffiya,kaffiyas +kaffiyeh,kaffiyehs +kaffle,kaffles +kafilah,kafilahs +kafila,kafilas +kafirin,kafirins +kafir,kuffar,kafirs +kaf,kafs +kafta kebab,kafta kebabs +kaftan,kaftans +kaganate,kaganates +kaganat,kaganats +kage,kages +kagome,kagomes +kagool,kagools +kagoul,kagouls +kaguan,kaguans +kagu,kagus +kahal,kahals +kahau,kahaus +kahikatea,kahikateas +kahuna,kahunas,kahuna +kaiak,kaiaks +kaibun,kaibun +kaid,kaids +kaiju,kaiju +kaiki,kaikis +kaik,kaiks +kailyard,kailyards +kaimacam,kaimacams +kaimakam,kaimakams +Kaimanawa horse,Kaimanawa horses +kainate,kainates +kainga,kaingas +Kaingang,Kaingangs,Kaingang +kaique,kaiques +kairine,kairines +kairomone,kairomones +kaiseki,kaisekis +kaiser,kaisers +Kaiser,Kaisers +Kaiser roll,Kaiser rolls +kaizen,kaizens +kajigger,kajiggers +kaji,kajis +kajik,kajiks +kajillion,kajillions +kaj,kajs +kaka,kakas +kakapo,kakapos +kakariki,kakarikis +kakemono,kakemono,kakemonos +kakie,kakies +kaki,kakis +kakistocracy,kakistocracies +kakistocrat,kakistocrats +kakizome,kakizomes +kak,kaks +kakuro,kakuros +kalach,kalaches,kalachi +kala juggah,kala juggahs +Kala Kato,Kala Katos +kalamata olive,kalamata olives +Kalamazooan,Kalamazooans +Kalamazoo,Kalamazoos +kalamdan,kalamdans +kalamkari,kalamkaris +kalanchoe,kalanchoes +kalanda,kalandas +kalan,kalans +kalasie,kalasies +kaleege,kaleeges +kaleidophone,kaleidophones +kaleidoscope,kaleidoscopes +Kalenjin,Kalenjin,Kalenjins +kalif,kalifs +kalimba,kalimbas +kalimotxo,kalimotxos +kaliophilite,kaliophilites +kaliph,kaliphs +kaliuresis,kaliureses +kallikrein,kallikreins +kalmia,kalmias +kalmuck,kalmucks +Kalmuck,Kalmucks +Kalmyk,Kalmyks +kalong,kalongs +kalotermitid,kalotermitids +kaloyer,kaloyers +kalsilite,kalsilites +kaluresis,kalureses +kamaaina,kamaainas +kamaboko,kamaboko +kamacite,kamacites +kamado,kamados +kama,kama,kamas +kamal,kamals +kamancha,kamanchas +kamāncha,kamānchas +kamancheh,kamanchehs +kamānche,kamānches +Kamboh,Kambohs +Kamboja,Kambojas +Kamboj,Kambojs +Kambo,Kambos +Kamchadal,Kamchadals +Kamchatkan,Kamchatkans +kamees,kameez,kameezes +kame,kames +kamencheh,kamenchehs +kamichi,kamichis +kami,kami +kamikaze,kamikazes +kamik,kamiks +kamora,kamoras +kampang,kampangs +kampong,kampongs +Kampuchean,Kampucheans +kampung,kampungs +kamseen,kamseens +kamsin,kamsins +Kamtschadale,Kamtschadales +kanaka,kanakas +kana,kana +Kanak,Kanaks +kanat,kanats +kanban,kanbans +kanchil,kanchils +kandake,kandakes +kandite,kandites +kanga,kangas +kanga,kangas +kangaroo apple,kangaroo apples +kangaroo bar,kangaroo bars +kangaroo court,kangaroo courts +kangaroo,kangaroos +kangaroo mouse,kangaroo mice +kangaroo paw,kangaroo paws +kangaroo rat,kangaroo rats +kangaroo-rat,kangaroo-rats +kangaroo route,kangaroo routes +kangaroo word,kangaroo words +kango,kango +Kango,Kangos +kangri,kangris +kanji,kanji +kan,kans +kannakin,kannakins +kannemeyerid,kannemeyerids +kannemeyeriid,kannemeyeriids +kanone,kanones +kanoon,kanoons +Kansan,Kansans +kantar,kantars +Kantean,Kanteans +kantele,kanteles +Kantianist,Kantianists +Kantian,Kantians +Kantist,Kantists +kanton,kantons +kanun,kanuns +kanuu,kanuus +kaolinosis,kaolinoses +kaonium,kaoniums +kaon,kaons +kapala,kapalas +Kapampangan,Kapampangans +kapellmeister,kapellmeisters +kaph,kaphs +Kapingamarangian,Kapingamarangians +Kapitza resistance,Kapitza resistances +kapo,kapos +kapok,kapoks +kapok tree,kapok trees +kappa,kappas +kappa,kappas +Kaprekar number,Kaprekar numbers +kapu,kapu +karabiner,karabiners +karahi,karahis +Karaim,Karaims +Karaite,Karaites +karait,karaits +kara,karas +karakul,karakuls +karanji,karanjis +karanteen,karanteen +karaoke machine,karaoke machines +karass,karasses +karate chop,karate chops +karateist,karateists +karateka,karatekas +karat,karats +karaurid,karaurids +Kardex,Kardexes +kardiya,kardiya +karela,karelas +Karelian Bear Dog,Karelian Bear Dogs +Karelian,Karelians +Karelian pasty,Karelian pasties +Kareli,Karelis +kar,kars +KΓ‘rmΓ‘n vortex street,KΓ‘rmΓ‘n vortex streets +Karmathian,Karmathians +Karmatian,Karmatians +Karnaugh map,Karnaugh maps +karnay,karnays +karob,karobs +Karok,Karok +karoo,karoos +kaross,karosses +karree,karrees +karri,karris +karroo,karroos +karstification,karstifications +karst,karsts +karstologist,karstologists +kart,karts +Kartvelian,Kartvelians +Kartvel,Kartvels +Karuk,Karuks +karvel,karvels +karwinaphthol,karwinaphthols +karyochrome,karyochromes +karyocyte,karyocytes +karyogram,karyograms +karyokinesis,karyokineses +karyology,karyologies +karyolysis,karyolyses +karyomere,karyomeres +karyomorph,karyomorphs +karyon,karyons +karyopherin,karyopherins +karyoplast,karyoplasts +karyotype,karyotypes +kasbah,kasbahs +kashim,kashims +Kashmiri,Kashmiris +Kashubian,Kashubians +kasrah,kasrahs +kasra,kasras +Kassite,Kassites +kastanozem,kastanozems +kast,kasten +katabasis,katabases +katabatic wind,katabatic winds +katabolism,katabolisms +kata factor,kata factors +Katahdin,Katahdins +katakana,katakana +kata,katas +kata,katas +katal,katals +katamorphism,katamorphisms +katana,katana,katanas +Katangese,Katangeses +katanosin,katanosins +katara,kataras +katastate,katastates +kata thermometer,kata thermometers +katchina,katchinas +kate,kates +kathakali,kathakalis +katharobe,katharobes +katharometer,katharometers +kathetometer,kathetometers +kathlaniid,kathlaniids +kathoey,kathoeys +kati,katis +katipo,katipos +katkop,katkops +katoey,katoeys +katrillionaire,katrillionaires +katsap,katsaps +katsina,katsinas +katsura,katsuras +katsuwonid,katsuwonids +katydid,katydids +Katy,Katies +katyusha,katyushas +Katyusha,Katyushas +katzenjammer,katzenjammers +Kauaian,Kauaians +kauri,kauris +kauri,kauris +Kautskyite,Kautskyites +kavalactone,kavalactones +kaval,kavals +kavass,kavasses +kawaka,kawakas +Kaw,Kaws +kawn,kawns +kayaker,kayakers +kayak,kayaks +kay,kays +kayko,kaykos +kayle,kayles +kaymakam,kaymakams +kayo,kayos,kayoes +kaypoh,kaypohs +kayser,kaysers +kazachok,kazachoks +Kazakh,Kazakhs +Kazakhstani,Kazakhstanis +Kazak,Kazaks +kazatsky,kazatskies +Kazi,Kazis +kazillionaire,kazillionaires +kazillion,kazillions +kazoo,kazoos +kbp,kbp +kB/s,kB/s +kcalorie,kcalories +k-cell,k-cells +K-complex,K-complexes +kea,keas +keat,keats +kebab,kebabs +kebap,kebaps +kebaya,kebayas +kebbuck,kebbucks +Kebecois,Kebecois +keblah,keblahs +kebob,kebobs +kecks,kecks +kecksy,kecksies +KED board,KED boards +keddah,keddahs +kedge,kedges +kedger,kedgers +ked,keds +keech,keeches +keeill,keeills +keek,keeks +keelback,keelbacks +keelboater,keelboaters +keelboat,keelboats +keeler,keelers +keelie,keelies +keeling,keelings +keel,keels +keelman,keelmen +keelson,keelsons +keener,keeners +keen,keens +keeno,keenos +keepalive,keepalives +keeper,keepers +keepership,keeperships +keep fit,keep fits +keep,keeps +keepnet,keepnets +keepsake,keepsakes +keercheef,keercheefs +Keeshond,Keeshonden,Keeshonds +kees,kees +keet,keets +keeve,keeves +keffiyeh,keffiyehs +Kegel,Kegels +kegerator,kegerators +kegful,kegfuls,kegsful +kegger,keggers +keg,kegs +keg party,keg parties +keg stand,keg stands +kehillah,kehillot +kehua,kehua +keiretsu,keiretsus,keiretsu +keir,keirs +keister,keisters +keitai,keitais +Keith number,Keith numbers +keitloa,keitloas +keks,keks +KekulΓ© formula,KekulΓ© formulas,KekulΓ© formulae +Kelabit,Kelabits,Kelabit +kelep,keleps +kelim,kelims +kell,kells +kell,kells +keloid,keloids +kelotomy,kelotomies +kelper,kelpers +Kelper,Kelpers +kelpfish,kelpfishes,kelpfish +kelpie,kelpies +kelpy,kelpies +kelson,kelsons +kelt,kelts +kelt,kelts +Kelvin bridge,Kelvin bridges +Kelvin function,Kelvin functions +kelvin,kelvins +Kelvin,Kelvins +Kelvin scale,Kelvin scales +Kelvin wave,Kelvin waves +kelyphite,kelyphites +Kemalist,Kemalists +kemancha,kemanchas +kemb,kembs +kemelin,kemelins +kemenche,kemenches +kemo sabe,kemo sabes +kemosabe,kemosabes +kemosabi,kemosabis +ke-mo sah-bee,ke-mo sah-bees +kemp,kemps +Kendal green,Kendal greens +kendi,kendis,kendi +Kendrick Extrication Device,Kendrick Extrication Devices +ken,kens +kenkiid,kenkiids +kennel,kennels +kennel,kennels +kenning,kennings +kenning,kennings +kenning,kennings +kenophobia,kenophobias +Kensingtonian,Kensingtonians +kentake,kentakes +Kent bugle,Kent bugles +kentia,kentias +kentle,kentles +kentriodontid,kentriodontids +Kentuckian,Kentuckians +Kentucky coffeetree,Kentucky coffeetrees +Kentucky rifle,Kentucky rifles +Kentucky windage,Kentucky windages +Kenyan,Kenyans +kephalin,kephalins +kepi,kepis +kepik,kepiks +Keplerate,Keplerates +Kepler solid,Kepler solids +kept man,kept men +kept woman,kept women +Keralan,Keralans +kerana,keranas +keratectomy,keratectomies +keraterpetontid,keraterpetontids +keratinisation,keratinisations +keratinization,keratinizations +keratinocyte,keratinocytes +keratitis,keratitises,keratitides +keratoacanthoma,keratoacanthomas,keratoacanthomata +keratoangioma,keratoangiomas,keratoangiomata +keratocele,keratoceles +keratocyst,keratocysts +keratocyte,keratocytes +keratoelastoidosis,keratoelastoidoses +keratohyalin,keratohyalins +keratoma,keratomas,keratomata +keratome,keratomes +keratometer,keratometers +keratomileusis,keratomileuses +keratophyte,keratophytes +keratoplasty,keratoplasties +keratoprosthesis,keratoprostheses +keratoscope,keratoscopes +keratosis,keratoses +keratotomy,keratotomies +keraunograph,keraunographs +kerb crawler,kerb crawlers +kerb,kerbs +kerboom,kerbooms +kerbside,kerbsides +kerbstone,kerbstones +kercher,kerchers +kerchief,kerchiefs +kerchunk,kerchunks +Keresan,Keresans +kerfing,kerfings +kerf,kerfs +kerfluffle,kerfluffles +kerfuffle,kerfuffles +Kerguelen cabbage,Kerguelen cabbages +keris,keris +kerl,kerls +Kermadec petrel,Kermadec petrels +kerma,kermas +kermesid,kermesids +kermes oak,kermes oaks +kermesse,kermesses +kermis,kermises +Kermode bear,Kermode bears +kermode,kermodes +kerne,kernes +kernel hacker,kernel hackers +kernelization,kernelizations +kernel,kernels +kernel of truth,kernels of truth +kernel panic,kernel panics +kern,kerns +kern,kerns +kern,kerns +kern,kerns +kerogen,kerogens +kero,keros +keroplatid,keroplatids +kerplop,kerplops +kerplunk,kerplunks +Kerr black hole,Kerr black holes +kerria,kerrias +kerriid,kerriids +Kerr-Newman black hole,Kerr-Newman black holes +kersey,kerseys +kersie,kersies +kerslap,kerslaps +kerslop,kerslops +kerugma,kerugmata +kerver,kervers +kerwallop,kerwallops +kerygma,kerygmata +kesa,kesa +kesar,kesars +kes,kess +keslop,keslops +kΓ«sterite,kΓ«sterites +Kesternich test,Kesternich tests +kestral,kestrals +kestrel,kestrels +ketal,ketals +ketamination,ketaminations +ketazine,ketazines +ketch,ketches +ketch,ketches +ketene,ketenes +ketenide,ketenides +ketenimine,ketenimines +ketide,ketides +ketimine,ketimines +ket,kets +ket,kets +ketmia,ketmias +ketmie,ketmies +keto acid,keto acids +ketoacid,ketoacids +ketoacyl,ketoacyls +ketoacylsynthase,ketoacylsynthases +ketoadipate,ketoadipates +ketoadipic acid,ketoadipic acids +ketoaldehyde,ketoaldehydes +ketoaldonic acid,ketoaldonic acids +ketoaldose,ketoaldoses +ketoalkene,ketoalkenes +ketoamide,ketoamides +ketoarginine,ketoarginines +ketobutyrate,ketobutyrates +ketocarboxylate,ketocarboxylates +ketocarboxylic acid,ketocarboxylic acids +ketocarotenoid,ketocarotenoids +ketocholesterol,ketocholesterols +ketoester,ketoesters +ketofuranose,ketofuranoses +ketoglutarate,ketoglutarates +ketoglutaric acid,ketoglutaric acids +ketoheptose,ketoheptoses +ketohexose,ketohexoses +ketoisocaproate,ketoisocaproates +ketoisovalerate,ketoisovalerates +keto,ketos +ketole,ketoles +ketolide,ketolides +ketol,ketols +ketone body,ketone bodies +ketone,ketones +ketonimine,ketonimines +ketonization,ketonizations +ketopentose,ketopentoses +ketophosphonate,ketophosphonates +ketopimelate,ketopimelates +ketopyranose,ketopyranoses +ketoreductase,ketoreductases +ketose,ketoses +ketosteroid,ketosteroids +ketotetrose,ketotetroses +ketotriose,ketotrioses +ketovalerate,ketovalerates +ketoxime,ketoximes +kettlebell,kettlebells +kettle chip,kettle chips +kettle drum,kettle drums +kettledrum,kettledrums +kettledrummer,kettledrummers +kettleful,kettlefuls,kettlesful +kettle fur collector,kettle fur collectors +kettle hole,kettle holes +kettle,kettles +kettle lake,kettle lakes +kettle of fish,kettles of fish +ketubah,ketubahs,ketubot +ketubbah,ketubbahs,ketubbot +ketyl,ketyls +keurboom,keurbooms +kevel,kevels +kevel,kevels +keverchief,keverchiefs +keV,keVs +kewpie doll,kewpie dolls +kewpie,kewpies +kex,kexes +keyaki,keyakis +key binding,key bindings +keybinding,keybindings +key bit,key bits +keyblet,keyblets +keyboard bass,keyboard basses +keyboarder,keyboarders +keyboarding,keyboardings +keyboardist,keyboardists +keyboard,keyboards +keyboard shortcut,keyboard shortcuts +keyboard smash,keyboard smashes +keyboy,keyboys +keycap,keycaps +key card,key cards +keycard,keycards +keycard lock,keycard locks +key chain,key chains +keychain,keychains +keyclick,keyclicks +keycode,keycodes +keyer,keyers +key evidence,key evidences +key exchange,key exchanges +key fob,key fobs +keyfob,keyfobs +keyframe,keyframes +keyframer,keyframers +keygen,keygens +key grip,key grips +keyguard,keyguards +keyholder,keyholders +keyhole,keyholes +keyhole limpet hemocyanin,keyhole limpet hemocyanins +keyhole surgery,keyhole surgeries +keying,keyings +keykeeper,keykeepers +key,keys +key,keys +key,keys +key lime,key limes +Key lime pie,Key lime pies +keylock,keylocks +key logger,key loggers +keylogger,keyloggers +key log,key logs +keyman,keymen +keymapping,keymappings +keymask,keymasks +Keynesianism,Keynesianisms +Keynesian,Keynesians +keynote,keynotes +keynoter,keynoters +keypad,keypads +keypair,keypairs +keypal,keypals +keypath,keypaths +key performance indicator,key performance indicators +keyphone,keyphones +keyphrase,keyphrases +keyplate,keyplates +key press,key presses +keypress,keypresses +keypuncher,keypunchers +keypunch,keypunches +keyring,keyrings +keyseat,keyseats +keysender,keysenders +key server,key servers +keyserver,keyservers +key set identifier,key set identifiers +keyset,keysets +key signature,key signatures +keysmith,keysmiths +Key Stage,Key Stages +keystone corner,keystone corners +keystone,keystones +keystream,keystreams +keystroke,keystrokes +keytarist,keytarists +keytar,keytars +key to the midway,keys to the midway +keyway,keyways +keyword,keywords +kezboard,kezboards +kgal,kgal,kgals +KGB,KGBs +kgosi,kgosis,dikgosi +kgotla,kgotlas +khachapuri,khachapuris +khachkar,khachkars +khachqar,khachqars +khaf,khafs +khaganate,khaganates +khagan,khagans +khakanate,khakanates +Khakass,Khakasss +khakhra,khakhras +khaki-green,khaki-greens +khaki,khakis +khakkhara,khakkharas +khalam,khalams +khalasi,khalasis +khalat,khalats +khaliff,khaliffs +khamaseen,khamaseens +khamseen,khamseens +khamsin,khamsins +khana,khanas +khanate,khanates +khanda,khandas +khanga,khangas +khanjar,khanjars +khan,khans +khan,khans +khansamah,khansamahs +kha-nyou,kha-nyous +Kharijite,Kharijites +kharja,kharjas +kharza,kharzas +Khasi,Khasis,Khasi +khatchkar,khatchkars +khateeb,khateebs +khatib,khatibs +Khatri,Khatris +khaya,khayas +Khazarian,Khazarians +Khazar,Khazars +khazi,khazis +khedive,khedives +K-hed,K-heds +kheer,kheers +khene,khenes +khepesh,khepeshes +khi,khis +khimar,khimars +khipu,khipus +khitmatgar,khitmatgars +khitmutgar,khitmutgars +Khivan,Khivans +Khmer numeral,Khmer numerals +Khoekhoe,Khoekhoes,Khoekhoe +Khoikhoi,Khoikhois,Khoikhoi +Khoisan,Khoisans,Khoisan +Khoja,Khojas +Khond,Khonds +khopesh,khopeshes +Khoresmian,Khoresmians +Khorezmian,Khorezmians +khotbah,khotbahs +khotbeh,khotbehs +khoums,khoums +Khozar,Khozars +khud,khuds +khu,khus +khulan,khulans +khurma,khurmas +Khurrite,Khurrites +khurta,khurtas +khutbah,khutbahs +khutbeh,khutbehs +khutor,khutors +Khwarazmian,Khwarazmians +Khwarezmian,Khwarezmians +Khwarizmian,Khwarizmians +khyber,khybers +kiack,kiacks +KIA,KIAs +kiang,kiangs +kibbeh,kibbehs +kibbe,kibbes +kibbitzer,kibbitzers +kibble,kibbles +kibbutz,kibbutzim,kibbutzes +kibbutznik,kibbutzniks +kibei,kibeis +kibe,kibes +kibibyte,kibibytes +kibitka,kibitkas +kibitzer,kibitzers +kiblah,kiblahs +kibla,kiblas +Kibologist,Kibologists +kibozer,kibozers +Kickapoo,Kickapoos +kick around,kick arounds +kickaround,kickarounds +kickback,kickbacks +kickballer,kickballers +kick-board,kick-boards +kickboard,kickboards +kick bollocks scramble,kick bollocks scrambles +kickboxer,kickboxers +kickdrum,kickdrums +kickee,kickees +kicker,kickers +kickflip,kickflips +kicking,kickings +kicking strap,kicking straps +kick in the balls,kicks in the balls +kick in the pants,kicks in the pants +kick in the teeth,kicks in the teeth +kick,kicks +kickline,kicklines +kick-off,kick-offs +kickoff,kickoffs +kickoff returner,kickoff returners +kick plate,kick plates +kickplate,kickplates +kick pleat,kick pleats +kick scooter,kick scooters +kickscooter,kickscooters +kickshaw,kickshaws +kickshoe,kickshoes +kicksled,kicksleds +kickstand,kickstands +kick start,kick starts +kick-start,kick-starts +kickstart,kickstarts +kickstool,kickstools +kick up the arse,kicks up the arse +kick wheel,kick wheels +kicky-wicky,kicky-wickies +kid brother,kid brothers +kidder,kidders +kidder,kidders +kidderminster,kidderminsters +kiddhoge,kiddhoges +kiddie car,kiddie cars +kiddie cocktail,kiddie cocktails +kiddie fiddler,kiddie fiddlers +kiddie flick,kiddie flicks +kiddie,kiddies +kiddier,kiddiers +kiddle,kiddles +kiddo,kiddos +kiddow,kiddows +kiddush,kiddushes,kiddushim +kiddy fiddler,kiddy fiddlers +kiddy,kiddies +kiddy widdy,kiddy widdies +kiddywink,kiddywinks +kid glove,kid gloves +kid,kids +kid,kids +kidling,kidlings +kidnapee,kidnapees +kidnaper,kidnapers +kidnaping,kidnapings +kidnap,kidnaps +kidnappee,kidnappees +kidnapper,kidnappers +kidnapping,kidnappings +kidney bean,kidney beans +kidney belt,kidney belts +kidney corpuscle,kidney corpuscles +kidney,kidneys +kidney punch,kidney punches +kidney-punch,kidney-punches +kidney stone,kidney stones +kidney vetch,kidney vetches +kidpic,kidpics +kid sister,kid sisters +kidskin,kidskins +kidsman,kidsmen +kidult,kidults +kielbasa,kielbasas,kielbasy +kielbasi,kielbasis +kierie,kieries +kier,kiers +Kievan,Kievans +kieve,kieves +Kievite,Kievites +kiev,kievs +kigo,kigo,kigos +kike,kikes +kikimora,kikimoras +kikoi,kikois +kiladar,kiladars +kilderkin,kilderkins +kile,kiles +kilij,kilijs +kilim,kilims +kilk,kilks +killbot,killbots +killdee,killdees +kill-deer,kill-deers +killdeer,killdeers,killdeer +killer app,killer apps +killer application,killer applications +killer bee,killer bees +killer cancel,killer cancels +killer game,killer games +killer,killers +killer language,killer languages +killer poke,killer pokes +killer T cell,killer T cells +killer whale,killer whales +killesse,killesses +kill file,kill files +killfile,killfiles +killfilter,killfilters +killick,killicks +killifish,killifishes,killifish +killigrew,killigrews +killing field,killing fields +killing floor,killing floors +killing,killings +killing spree,killing sprees +kill-joy,kill-joys +killjoy,killjoys +kill,kills +kill,kills +kill,kills +killock,killocks +killow,killows +kill screen,kill screens +kill stealer,kill stealers +kill switch,kill switches +killswitch,killswitches +Kilner jar,Kilner jars +kiln,kilns +kiloampere,kiloamperes +kilo-amp,kilo-amps +kiloamp,kiloamps +kilobar,kilobars +kilobase,kilobases +kilobase pair,kilobase pairs +kilobit,kilobits +kilobyte,kilobytes +kilocal,kilocals,kilocal +kilocalorie,kilocalories +kilocurie,kilocuries +kilocycle,kilocycles +kilodalton,kilodaltons +kiloelectronvolt,kiloelectronvolts +kiloflop,kiloflops +kilogallon,kilogallons +kilogram calorie,kilogram calories +kilogram,kilograms +kilogramme,kilogrammes +kilogram-meter,kilogram-meters +kilogrammeter,kilogrammeters +kilogram-metre,kilogram-metres +kilogrammetre,kilogrammetres +kilogray,kilograys +kilohertz,kilohertz,kilohertzes +kilohm,kilohms +kilo-joule,kilo-joules +kilojoule,kilojoules +kilokatal,kilokatals +kilo,kilos +kiloliter,kiloliters +kilolitre,kilolitres +kilolumen,kilolumens +kilomaser,kilomasers +kilomegacycle,kilomegacycles +kilometer,kilometers +kilometrage,kilometrages +kilometre,kilometres +kilonewton,kilonewtons +kilonova,kilonovas +kilo-ohm,kilo-ohms +kiloohm,kiloohms +kiloparsec,kiloparsecs +kilopascal,kilopascals +kilopond,kiloponds +kilopound,kilopounds +kilorayleigh,kilorayleighs +kiloroentgen,kiloroentgens +kilosecond,kiloseconds +kilostere,kilosteres +kiloton,kilotons +kilounit,kilounits +kilovoltage,kilovoltages +kilo-volt,kilo-volts +kilovolt,kilovolts +kilovoltmeter,kilovoltmeters +kilowatt-hour,kilowatt-hours +kilo-watt,kilo-watts +kilowatt,kilowatts +kiloyear,kiloyears +kilted sausage,kilted sausages +kiltie,kilties +kilting,kiltings +kilt,kilts +kiltmaker,kiltmakers +kilt pin,kilt pins +kimberline,kimberlines +kimberlite,kimberlites +kimberlite pipe,kimberlite pipes +kimberwick,kimberwicks +kimblewick,kimblewicks +Kimjongilia,Kimjongilias +Kimmerian,Kimmerians +kimnel,kimnels +kimona,kimonas +kimono,kimono,kimonos +kimura,kimuras +kina,kinas +kinamycin,kinamycins +kinara,kinaras +kinase,kinases +kinate,kinates +kination,kinations +kincajou,kincajous +kincob,kincobs +kinda,kindas +kinde,kindes +kindergartener,kindergarteners +kindergarten,kindergartens +kindergartner,kindergartners +kindergraph,kindergraphs +kinderwhore,kinderwhores +kindjal,kindjals +kind,kinds +kindle,kindles +kindler,kindlers +kindlin,kindlins +kindnesse,kindnesses +kindred,kindreds +kindred,kindreds +kindred soul,kindred souls +kindred spirit,kindred spirits +kinedom,kinedoms +kinematic envelope,kinematic envelopes +kineme,kinemes +kinemerk,kinemerks +kineriche,kineriches +kineric,kinerics +kinescope,kinescopes +kinesin,kinesins +kinesiologist,kinesiologists +kinestasis,kinestases +kinesthesiologist,kinesthesiologists +kinetic energy,kinetic energies +kinetic novel,kinetic novels +kinetic temperature,kinetic temperatures +kinetin,kinetins +kinetoplastid,kinetoplastids +kinetoplast,kinetoplasts +kinetoscope,kinetoscopes +kinetosome,kinetosomes +kineyerd,kineyerds +kinfolk,kinfolks +kingbird,kingbirds +king bishop pawn,king bishop pawns +kingbolt,kingbolts +king brown,king browns +king cake,king cakes +kingcake,kingcakes +King Charles' head,King Charles' heads +King Charles's head,King Charles's heads +King Charles spaniel,King Charles spaniels +king cobra,king cobras +king-count,king-counts +king crab,king crabs +kingcraft,kingcrafts +kingcup,kingcups +kingdome,kingdomes +Kingdom Hall,Kingdom Halls +kingdom,kingdoms +kingdom of glory,kingdoms of glory +king eider,king eiders +kingfisher,kingfishers +kingfish,kingfishes,kingfish +king hit,king hits +king-hit,king-hits +kinghood,kinghoods +king,kings +king,kings +kingklip,kingklips +king knight pawn,king knight pawns +kinglet,kinglets +kingling,kinglings +kingmaker,kingmakers +king-of-arms,kings-of-arms +king of clubs,kings of clubs +king of diamonds,kings of diamonds +king of hearts,kings of hearts +king of herrings,kings of herrings +king of six,kings of six +king of spades,kings of spades +king of the doos,kings of the doos +king of the hill,kings of the hill +king oyster mushroom,king oyster mushrooms +king pair,king pairs +king parrot,king parrots +king pawn,king pawns +king penguin,king penguins +kingpin,kingpins +king post,king posts +kingpost,kingposts +kingric,kingrics +king rook pawn,king rook pawns +king's cake,king's cakes +kings' cake,kings' cakes +King's Counsel,King's Counsels +kingship,kingships +king skin,king skins +kingslayer,kingslayers +kingsman,kingsmen +kingsnake,kingsnakes +king's pawn,king's pawns +king's ransom,king's ransoms,kings' ransoms +King's shilling,King's shillings +Kingston valve,Kingston valves +king tide,king tides +kingy,kingies +kininase,kininases +kinin,kinins +kininogen,kininogens +kinjite,kinjites +kinkajou,kinkajous +kinker,kinkers +kin,kins +kink,kinks +kink,kinks +kinkle,kinkles +kink meme,kink memes +kinkster,kinksters +kinocilium,kinocilia +kinome,kinomes +kinone,kinones +kinoo,kinoos +kinoplasm,kinoplasms +kinorhynch,kinorhynchs +kinosternid,kinosternids +kinsfolk,kinsfolk +Kinshasan,Kinshasans +kinship,kinships +kinslayer,kinslayers +kinsman,kinsmen +kinsperson,kinspersons,kinspeople +kinswoman,kinswomen +kionoceratid,kionoceratids +kiosk,kiosks +kiosque,kiosques +Kioway,Kioways +Kipchak,Kipchaks +Kipczak,Kipczaks +kipe,kipes +kipfel,kipfels +kip,kip +kip,kips +kip,kips +kip,kips +kip,kips +kippah,kippot,kippahs +kippen,kippens +kipper,kippers +kippernut,kippernuts +kipper tie,kipper ties +kipsie,kipsies +kipskin,kipskins +kipsy,kipsies +kipuka,kipukas,kipuka +kipunji,kipunjis +Kiribatian,Kiribatians +kirin,kirins +Kiriwinan,Kiriwinans +kirkbuzzer,kirkbuzzers +kirkgarth,kirkgarths +kir,kirs +Kirkist,Kirkists +kirk,kirks +kirkmaister,kirkmaisters +kirkman,kirkmen +kirkton,kirktons +kirk-town,kirk-towns +kirkyard,kirkyards +kirmess,kirmesses +kirpan,kirpans +kir royal,kir royals +Kirschner wire,Kirschner wires +kirschsteinite,kirschsteinites +kirtankar,kirtankars +kirtan,kirtans +Kirtland's warbler,Kirtland's warblers +kirtle,kirtles +kirtu,kirtus +kirumbo,kirumbos +kisaeng,kisaengs,kisaeng +kisel,kisels +kishka,kishkas +kishke,kishkes +kish,kishes +kishon,kishons +kissagram,kissagrams +kissar,kissars +kiss-ass,kiss-asses +kissass,kissasses +kissathon,kissathons +kiss curl,kiss curls +kiss-curl,kiss-curls +kissee,kissees +kisser,kissers +kissfest,kissfests +kissing booth,kissing booths +kissing bug,kissing bugs +kissing-bunch,kissing-bunches +kissing comfit,kissing comfits +kissing cousin,kissing cousins +kissing gate,kissing gates +kissing gourami,kissing gourami,kissing gouramis +kiss,kisses +kiss-off,kiss-offs +kissoff,kissoffs +kissogram,kissograms +kisspeptin,kisspeptins +kiss-up,kiss-ups +kissy,kissies +kist,kists +kistvaen,kistvaens +kitbag,kitbags +kitcat,kitcats +kitchen cabinet,kitchen cabinets +kitchen cabinet,kitchen cabinets +kitchen cake,kitchen cakes +kitchen dresser,kitchen dressers +kitchener,kitcheners +Kitchener stitch,Kitchener stitches +kitchenette,kitchenettes +kitchenful,kitchenfuls +kitchen garden,kitchen gardens +kitchen hood,kitchen hoods +kitchen,kitchens +kitchen knife,kitchen knives +kitchenmaid,kitchenmaids +kitchen sink,kitchen sinks +kitchen supper,kitchen suppers +kitchen supper,kitchen suppers +kitchen timer,kitchen timers +kitchen towel,kitchen towels +kitchin,kitchins +kiteboarder,kiteboarders +kiteboard,kiteboards +kitefin,kitefins +kitefin shark,kitefin sharks +kite,kites +kite,kites +kitemaker,kitemakers +kitemark,kitemarks +kitenge,kitenges +kitesurfer,kitesurfers +kit fox,kit foxes +kithara,kitharas,kitharai +kitharode,kitharodes +kit,kits +kit,kits +kit,kits +kit,kits +kitling,kitlings +kitskonstabel,kitskonstabels +kitsune,kitsune,kitsunes +kitteh,kittehs +kitten heel,kitten heels +kitten,kittens +kittereen,kittereens +kittie,kitties +Kittitian,Kittitians +kittiwake,kittiwake,kittiwakes +kitt,kitts +Kittsian,Kittsians +kitty-cat,kitty-cats +kitty corner,kitty corners +kitty cruise,kitty cruises +kitty,kitties +kittysol,kittysols +kitty witty,kitty witties +kiva,kivas +kive,kives +kiver,kivers +kiverlid,kiverlids +kiwaid,kiwaids +kiwi fruit,kiwi fruit +kiwifruit,kiwifruits +kiwi,kiwis +Kiwi,Kiwis +kix,kixes +ki-yi,ki-yis +Kjarposko,Kjarposkos +Kjeldahl flask,Kjeldahl flasks +KKKer,KKKers +K,Ks +k,ks,k's +Klabee,Klabees +Kladd,Kladds +Klaliff,Klaliffs +Klallam,Klallams,Klallam +Klamath,Klamath,Klamaths +klan,klans +klansman,klansmen +Klansman,Klansmen +Klanswoman,Klanswomen +Klarogo,Klarogos +klatch,klatches,klatchs +klatsch,klatsches +klavalier,klavaliers +klavern,klaverns +klaxon,klaxons +Kleagle,Kleagles +klebsiella,klebsiellas +klecktoken,klecktokens +klectoken,klectokens +Kleene algebra,Kleene algebras +Kleene star,Kleene stars +kleenex,kleenexes +Klein bottle,Klein bottles +klepht,klephts +klepsudra,klepsudras +klepsydra,klepsydras +kleptarchy,kleptarchies +kleptocracy,kleptocracies +kleptocrat,kleptocrats +klepto,kleptos +kleptomaniac,kleptomaniacs +kleptoparasite,kleptoparasites +kleptoplastidy,kleptoplastidies +kleptoplasty,kleptoplasties +kleroterion,kleroteria +kleroterium,kleroteria +klesha,kleshas +Klexter,Klexters +klick,klicks +klick,klicks +klieg,kliegs +klieg light,klieg lights +kligrapp,kligrapps +klimp,klimps +k-line,k-lines +Klingonist,Klingonists +Klingon,Klingons +klinki pine,klinki pines +klinometer,klinometers +klinostat,klinostats +klipfish,klipfishes +klipspringer,klipspringers +klismaphile,klismaphiles +klismaphiliac,klismaphiliacs +klismos,klismoi +KLOC,KLOCs +Klokan,Klokans,Klokann +Klokard,Klokards +kloncilium,klonciliums +klondike,klondikes +Klondike,Klondikes +klonklave,klonklaves +klonvocation,klonvocations +kloof,kloofs +kludd,kludds +kludge,kludges +kludgie,kludgies +kluge,kluges +klutz,klutzes +klystron,klystrons +kmet,kmets,kmetovi +knacker,knackers +knackery,knackeries +knack,knacks +knackwurst,knackwursts +knaggie,knaggies +knag,knags +knaidel,knaidels,knaidlach +knap,knaps +knap,knaps +knapper,knappers +knapsack,knapsacks +knapweed,knapweeds +knar,knars +knarl,knarls +knaur,knaurs +knave,knaves +knave of clubs,knaves of clubs +knave of diamonds,knaves of diamonds +knave of hearts,knaves of hearts +knave of spades,knaves of spades +knavery,knaveries +knavess,knavesses +knawel,knawels +kneader,kneaders +kneading trough,kneading troughs +kneck,knecks +knee baby,knee babies +kneebar,kneebars +kneeboarder,kneeboarders +kneeboard,kneeboards +knee cap,knee caps +knee-cap,knee-caps +kneecap,kneecaps +kneecapper,kneecappers +kneecapping,kneecappings +knee-high,knee-highs +kneehole desk,kneehole desks +kneehole,kneeholes +kneeing,kneeings +knee jerk,knee jerks +knee-jerk,knee-jerks +kneejerk,kneejerks +kneejoint,kneejoints +knee,knees,kneen +kneeler,kneelers +kneeling chair,kneeling chairs +kneeling,kneelings +knee pad,knee pads +kneepad,kneepads +kneepan,kneepans +kneepiece,kneepieces +kneeprint,kneeprints +knee roll,knee rolls +knee scooter,knee scooters +knee slapper,knee slappers +knee-slapper,knee-slappers +knee sock,knee socks +knee splitter,knee splitters +knees-up,knees-ups +kneetop,kneetops +knee-trembler,knee-tremblers +knell,knells +kneriid,kneriids +knickerbocker glory,knickerbocker glories +knicker,knickers +knick-knack,knick-knacks +knickknack,knickknacks +knife and fork,knives and forks +knife block,knife blocks +knifeboard,knifeboards +knife-edge,knife-edges +knifegrinder,knifegrinders +knifejaw,knifejaws +knife,knives +knifemaker,knifemakers +knifeman,knifemen +knife pleat,knife pleats +knifepoint,knifepoints +knife rest,knife rests +knife roll,knife rolls +knifesman,knifesmen +knife switch,knife switches +knifetooth sawfish,knifetooth sawfishes +knifing,knifings +Knight Bachelor,Knights Bachelor +knight banneret,knights bannerets +Knight Batchelor,Knights Batchelor +knight errant,knights errant +knight-errant,knights-errant +knight-erratic,knights-erratic +knighthead,knightheads +knighthood,knighthoods +knight in shining armor,knights in shining armor +knight in shining armour,knights in shining armour +knight,knights +knight marshal,knights marshal +knight of the post,knights of the post +knight pawn,knight pawns +knightship,knightships +knight's tour,knight's tours +Knight Templar,Knight Templars,Knights Templar +kniphofia,kniphofias +knish,knishes +knitaholic,knitaholics +knitalong,knitalongs +knitathon,knitathons +knit cap,knit caps +knitchet,knitchets +knitster,knitsters +knitter,knitters +knitting chart,knitting charts +knitting,knittings +knitting needle,knitting needles +knittle,knittles +knobber,knobbers +knobble,knobbles +knobbler,knobblers +knob cheese,knob cheeses +knob-gobbler,knob-gobblers +knobhead,knobheads +knob jockey,knob jockeys +knobkerry,knobkerries +knobkierie,knobkieries +knob,knobs +knobstick,knobsticks +knob-thatcher,knob-thatchers +knobtwat,knobtwats +knock about,knock abouts +knockabout,knockabouts +knockback,knockbacks +knock box,knock boxes +knockdown,knockdowns +knocker,knockers +knocker up,knockers up,knocker ups +knocker-up,knocker-ups +knocker-upper,knocker-uppers +knock-for-knock agreement,knock-for-knock agreements +knocking,knockings +knocking shop,knocking shops +knockit,knockits +knock knee,knock knees +knock-knee,knock-knees +knock knock joke,knock knock jokes +knock-knock joke,knock-knock jokes +knock knock,knock knocks +knock,knocks +knocknobbler,knocknobblers +knock off,knock offs +knock-off,knock-offs +knockoff,knockoffs +knock-on effect,knock-on effects +knock-on,knock-ons +knock-out,knock-outs +knockout,knockouts +knockout mouse,knockout mice +knockstone,knockstones +knock-up,knock-ups +knockwurst,knockwursts +knollenorgan,knollenorgans +Knollenorgan,Knollenorgans +knoll,knolls +knoll,knolls +knop,knops +knoppern,knopperns +knork,knorks +knor,knors +knorringite,knorringites +knorr,knorrs +knosp,knosps +knotberry,knotberries +knot diagram,knot diagrams +knotgrass,knotgrasses +knothole,knotholes +knot,knots +knot,knots +knot,knots,knot +knot span,knot spans +knottiness,knottinesses +knotting,knottings +knottle,knottles +knotweed,knotweeds +knouting,knoutings +knout,knouts +know-all,know-alls +knowbie,knowbies +knowbot,knowbots +knowe,knowes +knower,knowers +know-it-all,know-it-alls +know,knows +knowledge base,knowledge bases +knowledgebase,knowledgebases +knowledge map,knowledge maps +knowledge worker,knowledge workers +known,knowns +Know-Nothing,Know-Nothings +known universe,known universes +knucker hole,knucker holes +knuckerhole,knuckerholes +knucker,knuckers +knuckleballer,knuckleballers +knuckleball,knuckleballs +knucklebone,knucklebones +knucklecurve,knucklecurves +knuckle dragger,knuckle draggers +knuckle-dragger,knuckle-draggers +knuckledragger,knuckledraggers +knuckle duster,knuckle dusters +knuckle-duster,knuckle-dusters +knuckleduster,knuckledusters +knucklehead,knuckleheads +knuckle,knuckles +knuckler,knucklers +knuckle sandwich,knuckle sandwiches +knucklewalker,knucklewalkers +Knudsen flow,Knudsen flows +knuff,knuffs +knur,knurs +knurler,knurlers +knurling,knurlings +knurl,knurls +knut,knuts +knyfe,knyfes,knyves +knyght,knyghts +koala bear,koala bears +koala,koalas +koan,koans +kōan,kōans +koban,kobans +koban,kobans +kob,kobs,kob +kobo,kobos,kobo +kobold,kobolds +kobza,kobzas +kobzar,kobzars,kobzari +kochari,kocharis +kodachi,kodachis +kodak,kodaks +Kodak moment,Kodak +Kodava,Kodavas +Kodiak bear,Kodiak bears +Kodiak,Kodiaks +koeksister,koeksisters +koel,koels +Koepanger,Koepangers +koff,koffs +kofta,koftas +kofte,koftes +kofun,kofuns,kofun +kogaionid,kogaionids +kogiid,kogiids +kohai,kohais +kohanga reo,kohanga reo +Kohathite,Kohathites +kohen,kohens,kohanim +kohlrabi,kohlrabis,kohlrabies +koi,koi +koilocyte,koilocytes +koine,koines +koinonia,koinonias +kokanee,kokanees +koken,kokens +kokeshi,kokeshi,kokeshis +koki,kokis +kokoon,kokoons +kokoretsi,kokoretsis +KO,KO's +kokuji,kokuji +koku,kokus +kolace,kolaces +kolache,kolaches +kolach,kolachs +kolacky,kolackies +kola,kolas +kola nut,kola nuts +Kolarian,Kolarians +kolbeckite,kolbeckites +kolea,koleas +kolinsky,kolinskies +Kolkatan,Kolkatans +kolkhoz,kolkhozes,kolkhozy +kolk,kolks +Kol,Kols +kolkoz,kolkozes,kolkozy +Kolmogorov complexity,Kolmogorov complexities +Kolmogorov space,Kolmogorov spaces +kolo,kolos +komast,komasts +komatiite,komatiites +komatik,komatiks +komatsuna,komatsunas +kombi,kombis +kombucha,kombuchas +Komi,Komis +komitadji,komitadjis +komitaji,komitajis +komku,komkus +kommunalka,kommunalkas +Komodo dragon,Komodo dragons +Komodo,Komodos +Komondor,Komondors,Komondorok +konak,konaks +kong,kongs +kongoni,kongonis +kongsi,kongsi +Konkani,Konkanis +kontakion,kontakia +koodoo,koodoos +kookaburra,kookaburras +kook cord,kook cords +kook,kooks +koolokamba,koolokambas +koomkie,koomkies +Koord,Koords +Koori,Kooris,Koories +Koorilian,Koorilians +koozie,koozies +kopeck,kopecks +kopek,kopeks +kopeyka,kopeykas +koph,kophs +kopis,kopis +kopiyka,kopiykas +kopje,kopjes +Kop,Kops +koppa,koppas +koppie,koppies +kora,koras +Koran basher,Koran bashers +Koran,Korans +Koran thumper,Koran thumpers +Korat,Korats +korban,korbans +Korean,Koreans +Koreanologist,Koreanologists +Koreatown,Koreatowns +kore,korai,kores +korhaan,korhaans,korhaan +korin,korins +kor,kors +korlan,korlans +kornerupine,kornerupines +koromiko,koromikos +Korotkoff method,Korotkoff methods +Korowai,Korowai +korrigan,korrigans +korrigum,korrigums +korroboree,korroborees +koruna,korun,korunas,koruny +Korybant,Korybantes +Koschei,Koscheis +kosha,koshas +kosher tax,kosher taxes +kosmos,kosmoses +Kosovan,Kosovans +Kosovar,Kosovars +Kossack,Kossacks +koss,koss +kotatsu,kotatsu +kotoite,kotoites +koto,kotos +kotow,kotows +kotwal,kotwals +koulan,koulans +koulibiaca,koulibiacas +koulibiac,koulibiacs +koulouri,koulouria +kouprey,koupreys +kourbash,kourbashes +kouros,kouroi +kourotrophos,kourotrophoi +kovsh,kovshes,kovshi +kowan,kowans +kowari,kowaris +kowhai,kowhais +kowtower,kowtowers +kowtowing,kowtowings +kowtow,kowtows +Koyukon,Koyukons,Koyukon +kozachok,kozachoks +KPC,KPCs +kraalhead,kraalheads +kraal,kraals +kraar,kraars +krab,krabs +kraemeriid,kraemeriids +krai,krais +k-rail,k-rails +krait,kraits +krakowiak,krakowiaks +krameria,kramerias +krang,krangs +Kransky,Kranskies +krantz,krantzes +krapfen,krapfens +krar,krars +krater,kraters +K ration,K rations +kratochvilite,kratochvilites +kratom,kratoms +Kraut,Krauts +kreatine,kreatines +kreel,kreels +krees,kreeses +kremlin,kremlins +Kremlinologist,Kremlinologists +kreng,krengs +kretek,kreteks +kreutzer,kreutzers +kreuzer,kreuzers +krewe,krewes +kri-kri,kri-kris +krill,krill +kringle,kringles +Kriol,Kriols +Kripke frame,Kripke frames +Kripke model,Kripke models +Kris Kindle,Kris Kindles +kris,krises,krisses +kriya,kriyas +kroepoek,kroepoeks,kroepoek +krona,kronor +krΓ³na,krΓ³nur +Kronecker product,Kronecker products +krone,kroner +kronenthaler,kronenthalers +kronosaurus,kronosauruses +kronur,kronurs +krooman,kroomen +kroon,krooni,kroons +Kropotkinist,Kropotkinists +krotovina,krotovinas,krotovina +krouΕΎek,krouΕΎky +krugerrand,krugerrands +Krugerrand,Krugerrands +Krukenberg procedure,Krukenberg procedures +kruller,krullers +krumhorn,krumhorns +krum kake,krum kakes +krumkake,krumkakes +krummhorn,krummhorns +krumper,krumpers +Krupp gun,Krupp guns +kryolite,kryolites +ksar,ksars +KSer,KSers +kshatriya,kshatriyas +kubba,kubbas +Kubrickologist,Kubrickologists +kuda,kudas +kudlik,kudliks +kudo,kudos +kudu,kudus +kuehneosaurid,kuehneosaurids +kuehneotheriid,kuehneotheriids +kufi,kufis +kufiya,kufiyas +kufr,kufrs +kuhliid,kuhliids +Kuiper belt object,Kuiper belt objects +kuiperoid,kuiperoids +kujawah,kujawahs +Kuki,Kukis +kukri,kukris +kukui,kukuis +kukumakranka,kukumakrankas +kukuri,kukuris +kulak,kulaks,kulaki +kula,kulas +kulan,kulans +kulcha,kulchas +Kulinkovich reaction,Kulinkovich reactions +kulturkampf,kulturkampfs +KulturtrΓ€ger,KulturtrΓ€gers +Kulturwort,Kulturworts +Kuman,Kumans +kumara,kumara +kumari,kumaris +kumazemi,kumazemis +kummel,kummels +kumquat,kumquats +kunai,kunai +kuna,kunas +Kuna,Kunas +kundela,kundelas +kunsthalle,kunsthalles +KΓΌnstlerroman,KΓΌnstlerromane,KΓΌnstlerromans +kunya,kunyas +kunzite,kunzites +kupuna,kupunas,kupuna +kurbash,kurbashes +kurdaitcha,kurdaitchas +Kurdistani,Kurdistanis +Kurd,Kurds +Kurdophone,Kurdophones +Kurepa tree,Kurepa trees +kurfuffle,kurfuffles +kurgan,kurgans +Kurilian,Kurilians +kurkul,kurkuls,kurkuli +kurnakovite,kurnakovites +kurrajong,kurrajongs +Kurrichane thrush,Kurrichane thrushes +kursaal,kursaals +kurta,kurtas +kurtid,kurtids +kurtosis,kurtoses +kurus,kurus +Kushan,Kushans +Kushite,Kushites +kusimanse,kusimanses +kuspuk,kuspuks +kutch,kutches +kutjera,kutjeras +kutnohorite,kutnohorites +kutum,kutums +Kuvasz,Kuvasz,Kuvaszok +Kuwaiti,Kuwaitis +k-value,k-values +Kven,Kvens +kvetcher,kvetchers +kvetching,kvetchings +kvetch,kvetches +kvitch,kvitches +KVM,KVMs +kwacha,kwacha +kwagga,kwaggas +kwanza,kwanzas +kwedini,kwedinis +kwerekwere,amakwerekwere +KWIC,KWICs +K-wire,K-wires +kyack,kyacks +kyak,kyaks +kyamancha,kyamanchas +kyat,kyats +kyaw,kyaws +kybo,kybos +kydell,kydells +kye,kyes +Kyivan,Kyivans +kyle,kyles +kyley,kyleys +kylie,kylies +kylix,kylikes,kylixes +kyloe,kyloes +kymnel,kymnels +kymogram,kymograms +kymograph,kymographs +kynde,kyndes +kynge,kynges +kyng,kyngs +kynrede,kynredes +kyodai,kyodai +kyoodle,kyoodles +Kypchak,Kypchaks +kype,kypes +kyphoplasty,kyphoplasties +kyphosid,kyphosids +kyphosis,kyphoses +Kyrgyz,Kyrgyz +kyrie,kyries +kyrielle,kyrielles +kyr,kyrs +kytle,kytles +kytoon,kytoons +kyu,kyus +L10n,L10ns +L1,L1s +L2TP,L2TPs +laager,laagers +laaitie,laaities +laam,laams +laanie,laanies +laari,laaris +Labadist,Labadists +labarum,labara +lab coat,lab coats +labcoat,labcoats +label cloud,label clouds +labeler,labelers +labeling,labelings +label,labels +labeller,labellers +labell,labells +labellum,labella,labellums +labelmate,labelmates +laberinth,laberinths +laberynth,laberynths +labetalol,labetalols +labialisation,labialisations +labiality,labialities +labialization,labializations +labial,labials +labial pipe,labial pipes +labiaplasty,labiaplasties +labiate,labiates +labidometer,labidometers +labidurid,labidurids +labiid,labiids +labile verb,labile verbs +labimeter,labimeters +labiodental,labiodentals +labio-velar,labio-velars +labiovelar,labiovelars +labium,labia +lablab,lablabs +lab,labs +lab,labs +LAB,LABs +labmate,labmates +lab on a chip,labs on a chip,labs on chips +laborant,laborants +laboratory,laboratories +labor camp,labor camps +Labor Day,Labor Days +laborer,laborers +laborforce,laborforces +laborist,laborists +laborite,laborites +labor market,labor markets +labor of love,labors of love +laborshed,laborsheds +labor union,labor unions +labour camp,labour camps +labourer,labourers +Labourite,Labourites +labour market,labour markets +labour of love,labours of love +labourshed,laboursheds +labour union,labour unions +Labradoodle,Labradoodles +Labrador duck,Labrador ducks +Labradorian,Labradorians +labrador,labradors +Labrador retriever,Labrador retrievers +labret,labrets +labrid,labrids +labrisomid,labrisomids +labrum,labra +labrum,labra +labrys,labryses +laburnum,laburnums +labyrinth fish,labyrinth fish,labyrinth fishes +labyrinth,labyrinths +labyrinthodon,labyrinthodons +labyrinthodont,labyrinthodonts +labyrinth organ,labyrinth organs +labyrinth seal,labyrinth seals +laccase,laccases +laccolite,laccolites +laccolith,laccoliths +laceback,lacebacks +lacebark,lacebarks +lace curtain,lace curtains +Lacedaemonian,Lacedaemonians +LacedΓ¦monian,LacedΓ¦monians +Lacedemonian,Lacedemonians +lace-leaf,lace-leafs,lace-leaves +laceleaf,laceleafs,laceleaves +lacemaker,lacemakers +laceman,lacemen +lace monitor,lace monitors +lacerater,laceraters +laceration,lacerations +lacer,lacers +lacertid,lacertids +lacertid,lacertids +lacertilian,lacertilians +lacert,lacerts +lacertus,lacerti +lacery,laceries +lacewing,lacewings +lacework,laceworks +lachenalia,lachenalias +lachesillid,lachesillids +lachrymal,lachrymals +lachrymator,lachrymators +lachrymatory,lachrymatories +lacing,lacings +lacinia,laciniae +lacinula,lacinulae +lackbrain,lackbrains +lacker,lackers +lacker,lackers +lackey,lackeys +lack,lacks +lac,lacs +Laconian,Laconians +laconicum,laconica +laconism,laconisms +lacquerer,lacquerers +lacquey,lacqueys +lacrimal apparatus,lacrimal apparatuses +lacrimal bone,lacrimal bones +lacrimal duct,lacrimal ducts +lacrimal gland,lacrimal glands +lacrimal,lacrimals +lacrimal lake,lacrimal lakes +lacrimal sac,lacrimal sacs +lacrimator,lacrimators +lacrosse stick,lacrosse sticks +lacrosstitute,lacrosstitutes +lacrymatory,lacrymatories +lactage,lactages +lactagogue,lactagogues +lactalbumin,lactalbumins +lactamase,lactamases +lactamide,lactamides +lactam,lactams +lactard,lactards +lactarene,lactarenes +lactarian,lactarians +lactariid,lactariids +lactary,lactaries +lactate,lactates +lactation,lactations +lacteal,lacteals +lactescence,lactescences +lacticaemia,lacticaemias +lactide,lactides +lactifuge,lactifuges +lactimide,lactimides +lactim,lactims +lactivist,lactivists +lactivore,lactivores +lactoalbumin,lactoalbumins +lactobacillus,lactobacilli +lactobutyrometer,lactobutyrometers +lactococcus,lactococci +lactocyte,lactocytes +lactodensimeter,lactodensimeters +lactoferricin,lactoferricins +lactoglobulin,lactoglobulins +lactol,lactols +lactometer,lactometers +lactonazi,lactonazis +lactone,lactones +lactonisation,lactonisations +lactonization,lactonizations +lacto-ovo-vegetarian,lacto-ovo-vegetarians +lactoovovegetarian,lactoovovegetarians +lactophilia,lactophilias +lactoprotein,lactoproteins +lactoscope,lactoscopes +lactosylceramide,lactosylceramides +lactosyl,lactosyls +lactotroph,lactotrophs +lactovegetarian,lactovegetarians +lactylate,lactylates +lacuna,lacunae,lacunas +lacunar,lacunars +lacune,lacunes +ladderane,ladderanes +ladderback,ladderbacks +laddergram,laddergrams +laddering,ladderings +ladder,ladders +ladder polyether,ladder polyethers +ladder snake,ladder snakes +laddertron,laddertrons +laddie,laddies +laddoo,laddoos +laddu,laddus +laddy,laddies +lade,lades +lademan,lademen +ladette,ladettes +ladie,ladies +ladies auxiliary,ladies auxiliaries +ladies' eardrops,ladies' eardrops +ladies,ladies +ladies' lounge,ladies' lounges +ladies man,ladies men +ladies' man,ladies' men +ladies room,ladies rooms +ladies' room,ladies' rooms +lading-can,lading-cans +ladino,ladinos +Ladino,Ladinos +ladkin,ladkins +lad,lads +ladleful,ladlefuls,ladlesful +ladle,ladles +ladler,ladlers +ladrone,ladrones +lady abbess,lady abbesses +Lady Amherst's pheasant,Lady Amherst's pheasants +lady beetle,lady beetles +ladybeetle,ladybeetles +lady-bird,lady-birds +ladybird,ladybirds +ladybird spider,ladybird spiders +lady boner,lady boners +lady-boner,lady-boners +ladyboner,ladyboners +Lady Bountiful,Ladies Bountiful +lady boy,lady boys +ladyboy,ladyboys +ladybro,ladybros +lady-bug,lady-bugs +ladybug,ladybugs +Lady Campbell,Lady Campbells +ladyclock,ladyclocks +lady crab,lady crabs +Lady Day,Lady Days +ladye,ladyes +ladyfinger,ladyfingers +ladyfish,ladyfish,ladyfishes +lady friend,lady friends +ladyfriend,ladyfriends +lady garden,lady gardens +lady-in-waiting,ladies-in-waiting +lady killer,lady killers +lady-killer,lady-killers +ladykiller,ladykillers +ladykin,ladykins +lady,ladies +ladyling,ladylings +ladylove,ladyloves +Lady McLeod,Lady McLeods +lady of leisure,ladies of leisure +lady of light virtue,ladies of light virtue +lady of the night,ladies of the night +lady palm,lady palms +lady's cushion,ladies' cushions +lady's finger,ladies' fingers +ladysfinger,ladysfingers +ladyship,ladyships +lady's man,lady's men,ladies' men +lady's mantle,lady's mantles +lady smock,lady smocks +lady's slipper,lady's slippers +lady's smock,ladies' smocks +lady's thimble,ladies' thimbles +lady's thumb,lady's thumbs +lady who lunches,ladies who lunch +LAE,LAEs +laelapid,laelapids +laelia,laelias +laeliocattleya,laeliocattleyas +laemmergeyer,laemmergeyers +laemodipod,laemodipods +laemophloeid,laemophloeids +lΓ¦sion,lΓ¦sions +Laestadian,Laestadians +Laestrygonian,Laestrygonians +Laetare Sunday,Laetare Sundays +laetmogonid,laetmogonids +laevocardia,laevocardias +laevorotation,laevorotations +lΓ¦vorotation,lΓ¦vorotations +laevulose,laevuloses +lafayette,lafayettes +laffer,laffers +laff,laffs +lagena,lagenas,lagenΓ¦ +lager,lagers +lager,lagers +lager lout,lager louts +lagerphone,lagerphones +lagerstΓ€tte,lagerstΓ€tten +laggard,laggards +lagger,laggers +lagger,laggers +lagging jacket,lagging jackets +lagging strand,lagging strands +lagniappe,lagniappes +lagobolon,lagobolons +lagomorph,lagomorphs +lagoon,lagoons +lagoon triggerfish,lagoon triggerfish +lagopus,lagopodes +lagosuchid,lagosuchids +Lagrange point,Lagrange points +Lagrangian function,Lagrangian functions +lagrangian,lagrangians +Lagrangian,Lagrangians +Lagrangian point,Lagrangian points +lagtime,lagtimes +lagune,lagunes +lahar,lahars +lahmacun,lahmacuns +lahmajo,lahmajos +lahmajou,lahmajous +lahmajoun,lahmajouns +Lahori,Lahoris +laicist,laicists +laicization,laicizations +laic,laics +laid rope,laid ropes +laihunite,laihunites +lai,lais +laine,laines +lairage,lairages +laird,lairds +lairdship,lairdships +lairiser,lairisers +lair,lairs +laisse,laisses +laissez-passer,laissez-passers +laitance,laitances +lait,laits +laity,laities +lakebed,lakebeds +lake dwelling,lake dwellings +lake effect,lake effects +lakefront,lakefronts +lakehouse,lakehouses +lake,lakes +lake,lakes +lake,lakes +lake,lakes +lakelet,lakelets +lake poet,lake poets +lake quillwort,lake quillworts +lakering,lakerings +laker,lakers +laker,lakers +Laker,Lakers +lakeshore,lakeshores +lake trout,lake trouts +lakeweed,lakeweeds +Lakher,Lakhers +lakh,lakhs +lakin,lakins +Lakist,Lakists +Lakota,Lakotas +lalapalooza,lalapaloozas +la,las +lallapaloosa,lallapaloosas +lallapalootza,lallapalootzas +lallapalooza,lallapaloozas +lallation,lallations +lamaist,lamaists +lama,lamas +lama,lamas +Lamanite,Lamanites +lamantin,lamantins +Lamarckian,Lamarckians +Lamarckist,Lamarckists +lamasery,lamaseries +lambada,lambadas +lambaster,lambasters +lambative,lambatives +lambchop,lambchops +lambda baryon,lambda baryons +lambda calculus,lambda calculi +lambda hyperon,lambda hyperons +lambda,lambdas +lambda particle,lambda particles +lambda point,lambda points +lambda probe,lambda probes +lambdoid suture,lambdoid sutures +lambel,lambels +lambeosaurid,lambeosaurids +lambeosaurine,lambeosaurines +lambeosaur,lambeosaurs +lambert,lamberts +Lambert pine,Lambert pines +lambfold,lambfolds +lambic,lambics +lambing,lambings +lambkin,lambkins +lamb,lambs,lambren +lamblia,lamblias +lambliasis,lambliases +lambling,lamblings +Lambo,Lambos +Lamborghini,Lamborghinis +Lambrusco,Lambruscos +Lamb shift,Lamb shifts +lambskin,lambskins +lambswool,lambswools +lamburger,lamburgers +lamda,lamdas +lame brain,lame brains +lame-brain,lame-brains +lamebrain,lamebrains +lame duck,lame ducks +lame-duck,lame-ducks +lame joke,lame jokes +lame,lames +lamΓ©,lamΓ©s +lamella,lamellas,lamellae +lamel,lamels +lamellar face,lamellar faces +lamellariid,lamellariids +lamellar trama,lamellar tramas +lamellibranchiate,lamellibranchiates +lamellibranch,lamellibranchs +lamellicorn,lamellicorns +lamellipedian,lamellipedians +lamellipodium,lamellipodia +lamellophone,lamellophones +lamellorthoceratid,lamellorthoceratids +lamellula,lamellulae +lamentation,lamentations +lamenter,lamenters +lamentin,lamentins +lament,laments +lame-o,lame-os +lameo,lameos +lamer,lamers +lameter,lameters +lamia,lamias +lamiid,lamiids +laminak,laminaks +lamina,laminas,laminae +laminarialean,laminarialeans +laminarin,laminarins +laminarite,laminarites +laminarization,laminarizations +laminate,laminates +lamination,laminations +laminator,laminators +laminectomy,laminectomies +lamington drive,lamington drives +lamington,lamingtons +lamington,lamingtons +laminin,laminins +laminite,laminites +lamin,lamins +laminopathy,laminopathies +laminotomy,laminotomies +lam,lams +lammergeier,lammergeiers +lammergeyer,lammergeyers +lamnid,lamnids +lamoid,lamoids +Lampadist,Lampadists +lampad,lampads +lampate,lampates +lampboard,lampboards +lampbrush chromosome,lampbrush chromosomes +lampbrush,lampbrushes +lamp bulb,lamp bulbs +lamper eel,lamper eels +lamper,lampers +lamper,lampers +lampern,lamperns +lampion,lampions +lamp,lamps +lamplighter,lamplighters +lamponid,lamponids +lampooner,lampooners +lampoon,lampoons +lampost,lamposts +lamp-post,lamp-posts +lamppost,lampposts +lamprel,lamprels +lamprey,lampreys +lampricide,lampricides +lampridid,lampridids +lamprid,lamprids +lampriform,lampriforms +lamproite,lamproites +lampron,lamprons +lamproom,lamprooms +lamprophyre,lamprophyres +lampropid,lampropids +lamp-shade,lamp-shades +lampshade,lampshades +lamp shell,lamp shells +lampshell,lampshells +lampstand,lampstands +lampworker,lampworkers +lampyrid,lampyrids +lampyrine,lampyrines +lamster,lamsters +lanai,lanais +lanary,lanaries +lanatoside,lanatosides +Lancashire boiler,Lancashire boilers +Lancashire peeler,Lancashire peelers +Lancastrian,Lancastrians +lance corporal,lance corporals +lance-corporal,lance-corporals +lancefish,lancefishes,lancefish +lancegay,lancegays +lancehead,lanceheads +lance-jack,lance-jacks +lance,lances +lancelet,lancelets +lancepesade,lancepesades +lancer,lancers +lancetfish,lancetfish,lancetfishes +lancet,lancets +landamman,landammans +Landammann,Landammanns,LanammΓ€nner +land artist,land artists +landau,landaus +landaulet,landaulets +land-beaver,land-beavers +land breeze,land breezes +land bridge,land bridges +land crab,land crabs +landdrost,landdrosts +landed cost,landed costs +landed immigrant,landed immigrants +lander,landers +landfall,landfalls +landfill,landfills +landflood,landfloods +landform,landforms +landfyrd,landfyrds +land girl,land girls +landgirl,landgirls +landgrabber,landgrabbers +landgrab,landgrabs +land grant,land grants +landgrave,landgraves +landgraviate,landgraviates +landgravine,landgravines +land gull,land gulls +landholder,landholders +landholding,landholdings +landing craft,landing crafts +landing craft tank,landing craft tank +landing field,landing fields +landing gear,landing gears +landing,landings +landing net,landing nets +landing page,landing pages +landing ship,landing ships +landing strip,landing strips +landing vehicle tracked,landing vehicles tracked +landlady,landladies +landleaper,landleapers +land line,land lines +landline,landlines +landloper,landlopers +landlord,landlords +landlouper,landloupers +landlubber,landlubbers +landman,landmen +land mark,land marks +landmark,landmarks +land mass,land masses +landmass,landmasses +land mine,land mines +landmine,landmines +landomycin,landomycins +landomycinone,landomycinones +landowner,landowners +landphoon,landphoons +landplane,landplanes +landrace,landraces +landrail,landrails +landreeve,landreeves +land rush,land rushes +landrush,landrushes +Landsat,Landsats +landscape,landscapes +landscaper,landscapers +landscapist,landscapists +landscraper,landscrapers +landscraper,landscrapers +landscraper,landscrapers +landskip,landskips +landslide,landslides +landslide victory,landslide victories +landslip,landslips +landsman,landsmen +land snail,land snails +landspout,landspouts +Landtag,Landtags +landwaiter,landwaiters +Landwehr,Landwehrs +land yacht,land yachts +lane,lanes +lane violation,lane violations +laneway,laneways +langar,langars +langasite,langasites +langate,langates +langer,langers +langet,langets +lang,langs +langlauf,langlaufs +langley,langleys +Langobard,Langobards +langouste,langoustes +langoustine,langoustines +langret,langrets +langsat,langsats +language barrier,language barriers +language code,language codes +language continuum,language continua +language exchange,language exchanges +language family,language families +language isolate,language isolates +language lab,language labs +language swap,language swaps +languet,languets +languisher,languishers +languishment,languishments +langur,langurs +langwidge,langwidges +laniard,laniards +laniary,laniaries +lanier,laniers +lanifice,lanifices +laniid,laniids +La NiΓ±a,La NiΓ±as +lankacidin,lankacidins +lank sleeve,lank sleeves +LAN,LANs +lanneret,lannerets +lanner falcon,lanner falcons +lanner,lanners +lannet,lannets +lanostane,lanostanes +lanosterol,lanosterols +LAN party,LAN parties +lanseh,lansehs +lansquenet,lansquenets +lantana,lantanas +lanterloo,lanterloos +lantern beetle,lantern beetles +lantern fish,lantern fish +lanternfish,lanternfish,lanternfishes +lantern,lanterns +lanthanide,lanthanides +lanthanoid,lanthanoids +lanthanotid,lanthanotids +lanthorn-fly,lanthorn-flies +lanthorn,lanthorns +lantibiotic,lantibiotics +lant,lants +lantzman,lantzmen +lanyard,lanyards +lanyer,lanyers +Laodicean,Laodiceans +Lao,Lao,Laos +Laotian,Laotians +Laotian rock rat,Laotian rock rats +laparocele,laparoceles +laparoscope,laparoscopes +laparoscopy,laparoscopies +laparotomy,laparotomies +lap belt,lap belts +lapboard,lapboards +lap cat,lap cats +lapcat,lapcats +lap dance,lap dances +lap-dance,lap-dances +lapdance,lapdances +lap dancer,lap dancers +lap-dancer,lap-dancers +lap dog,lap dogs +lap-dog,lap-dogs +lapdog,lapdogs +lapel,lapels +LaPerm,LaPerms +lapful,lapfuls,lapsful +Laphroaig,Laphroaigs +lapicide,lapicides +lapidarian,lapidarians +lapidary,lapidaries +lapidation,lapidations +lapidist,lapidists +lapin,lapins +Lapith,Lapiths +Laplace operator,Laplace operators +Laplace plane,Laplace planes +Laplace transform,Laplace transforms +laplacian,laplacians +Laplander,Laplanders +Lapland owl,Lapland owls +lap,laps +lap,laps +lapling,laplings +lapmark,lapmarks +lap of honor,laps of honor +lappa,lappas +lappel,lappels +lapper,lappers +lappet,lappets +lappet moth,lappet moths +lappie,lappies +lapping,lappings +lap pool,lap pools +lap-pool,lap-pools +lappy,lappies +lap record,lap records +laprobe,laprobes +lapsarian,lapsarians +lap sash seatbelt,lap sash seatbelts +lapse,lapses +lapse rate,lapse rates +lapser,lapsers +lapstone,lapstones +lapstreak,lapstreaks +lapsus digiti,lapsus digiti +lapsus digitorum,lapsus digitorum +lapsus,lapsus +lapsus linguae,lapsus linguae,lapsΕ«s linguae +lapsus muris,lapsus muris +lapsus plumae,lapsus plumae +lapsus plumΓ¦,lapsus plumΓ¦ +laptop computer,laptop computers +laptop hobo,laptop hobos +laptop,laptops +lapunyah,lapunyahs +Laputan,Laputans +lapwing,lapwings +laquay,laquays +laquear,laquears +larb,larbs +larcener,larceners +larcenist,larcenists +larch,larches +lardarse,lardarses +lard-ass,lard-asses +lardass,lardasses +lardball,lardballs +lardboy,lardboys +lardbutt,lardbutts +larderer,larderers +larder,larders +lardery,larderies +lardo,lardos +lardon,lardons +lardoon,lardoons +lardry,lardries +lardy cake,lardy cakes +lardy,lardies +lare,lares +lare,lares +larf,larfs,larves +large blue,large blues +large bonito,large bonitos +large bowel,large bowels +large cap,large caps +large group awareness training,large group awareness trainings +large-group awareness training,large-group awareness trainings +large-headed water snake,large-headed water snakes +large heath,large heaths +large intestine,large intestines +largemouth bass,largemouth bass,largemouth basses +largemouth,largemouths +Large MΓΌnsterlΓ€nder,Large MΓΌnsterlΓ€nder,Large MΓΌnsterlΓ€nders +larger bindweed,larger bindweeds +large skipper,large skippers +large-tailed antshrike,large-tailed antshrikes +larget,largets +large tortoiseshell,large tortoiseshells +large white,large whites +lar gibbon,lar gibbons +largid,largids +largo,largos +lariat ether,lariat ethers +lariat,lariats +lariciresinol,lariciresinols +larid,larids +lari,lari +larimar,larimars +larker,larkers +larking,larkings +lark,larks +lark,larks +lark's-heel,lark's-heels +lar,lares,lars +larmier,larmiers +larnite,larnites +larper,larpers +LARPer,LARPers +LARP,LARPs +larrikin,larrikins +larry,larries +LART,LARTs +larum-bell,larum-bells +larum,larums +larvacean,larvaceans +larvacide,larvacides +larva,larvas,larvae,larvΓ¦ +larve,larves +larvicide,larvicides +larvivore,larvivores +laryngeal,laryngeals +laryngeal prominence,laryngeal prominences +laryngectomee,laryngectomees +laryngectomy,laryngectomies +laryngofissure,laryngofissures +laryngograph,laryngographs +laryngologist,laryngologists +laryngopharynx,laryngopharynges +laryngophone,laryngophones +laryngoscope,laryngoscopes +laryngoscopist,laryngoscopists +laryngoscopy,laryngoscopies +laryngospasm,laryngospasms +laryngotome,laryngotomes +laryngotomy,laryngotomies +laryngotracheotomy,laryngotracheotomies +larynx,larynges,larynxes +lasagna,lasagnas,lasagne +Lasallian,Lasallians +lascar,lascars +lascivity,lascivities +laser beam,laser beams +laserbeam,laserbeams +laser diode,laser diodes +laser disc,laser discs +laserdisc,laserdiscs +Laserdisc,Laserdiscs +laser gun,laser guns +laser-gun,laser-guns +lasergun,laserguns +laserjet,laserjets +laser,lasers +laser,lasers +laser pen,laser pens +laser-plasma accelerator,laser-plasma accelerators +laser pointer,laser pointers +laser printer,laser printers +laser surgery,laser surgeries +laserwort,laserworts +lash curler,lash curlers +lasher,lashers +lashing,lashings +lash,lashes +lash line,lash lines +lashline,lashlines +lash-up,lash-ups +lashup,lashups +lasiocampid,lasiocampids +lasket,laskets +lask,lasks +Lassa virus,Lassa viruses +lassie,lassies +lassi,lassis +lassitude,lassitudes +lass,lasses +lasso cell,lasso cells +lassoing,lassoings +lasso,lassos,lassoes +lassoo,lassoos +lassy,lassies +lastage,lastages +last-born,last-borns +lastborn,lastborns +last burst of fire,last bursts of fire +last eight,last eights +laster,lasters +last four,last fours +last hurrah,last hurrahs +lasting,lastings +last,lasts +last,lasts +last meal,last meals +last name,last names +last of the big spenders,last of the big spenders +last post,last posts +last quarter,last quarters +last resort,last resorts +last sixteen,last sixteens +Last Supper,Last Suppers +last trump,last trumps +last word,last words +Las Vegan,Las Vegans +Las Vegas algorithm,Las Vegas algorithms +latah,latahs +latakia,latakias +Latakian,Latakians +latchet,latchets +latching,latchings +latch-key child,latch-key children +latchkey child,latchkey children +latchkey kid,latchkey kids +latch key,latch keys +latch-key,latch-keys +latchkey,latchkeys +latch,latches +latchstring,latchstrings +late bloomer,late bloomers +latecomer,latecomers +lateener,lateeners +lateen,lateens +late,lates +latency,latencies +lateral aberration,lateral aberrations +lateral area,lateral areas +lateral cuneiform bone,lateral cuneiform bones +lateralisation,lateralisations +lateralization,lateralizations +lateral,laterals +lateral line,lateral lines +lateral meristem,lateral meristems +lateral pass,lateral passes +lateral pectoral nerve,lateral pectoral nerves +lateral raise,lateral raises +lateral stratum,lateral stratums +lateral sulcus,lateral sulci +lateral transfer,lateral transfers +laterite,laterites +laternulid,laternulids +laterosphenoid,laterosphenoids +latest,latests +late tackle,late tackles +late-type star,late-type stars +late unpleasantness,late unpleasantnesses +late-wake,late-wakes +latex,latices,latexes +Latgalian,Latgalians +lath brick,lath bricks +lathe carrier,lathe carriers +lathe,lathes +lathe,lathes +lathering,latherings +lathi,lathis +lathing,lathings +lath,laths +lath nail,lath nails +latibulum,latibula +laticifer,laticifers +Latic,Latics +laticlave,laticlaves +latid,latids +latifundium,latifundia +latigo,latigos,latigoes +latiid,latiids +latimerid,latimerids +latimer,latimers +latina,latinas +Latina,Latinas +Latin American,Latin Americans +Latin cross,Latin crosses +Latine,Latines +Latinisation,Latinisations +Latinism,Latinisms +Latinist,Latinists +Latinization,Latinizations +Latin,Latins +Latin name,Latin names +latino,latinos +Latino,Latinos +Latinophone,Latinophones +Latin rite,Latin rites +Latin square,Latin squares +lation,lations +latiscopid,latiscopids +latissimus dorsi,latissimi dorsi +latitat,latitats +latitude,latitudes +latitudinarian,latitudinarians +latka,latkas +latke,latkes +lat,lats,lati +latrant,latrants +latration,latrations +latreilliid,latreilliids +latridiid,latridiids +latrid,latrids +latrine,latrines +latrophilin,latrophilins +latrotoxin,latrotoxins +lats,lati +latte,lattes +latte,lattes +Latter-day Saint,Latter-day Saints +Latter Day Saint,Latter Day Saints +lattermath,lattermaths +lattice constant,lattice constants +lattice energy,lattice energies +lattice,lattices +lattice point,lattice points +latticinio,latticinios +latus,latera +latus rectum,latera recta,latus rectums +lauan,lauans +laubierinid,laubierinids +laudation,laudations +laudative,laudatives +laudator,laudators +lauder,lauders +laud,lauds +laugh a minute,laugh a minutes +laughathon,laughathons +laugher,laughers +laughing dove,laughing doves +laughing falcon,laughing falcons +laughing goose,laughing geese +laughing gull,laughing gulls +laughing heir,laughing heirs +laughing heir statute,laughing heir statutes +laughing hyaena,laughing hyaenas +laughing hyena,laughing hyenas +laughing jackass,laughing jackasses +laughing kookaburra,laughing kookaburras +laughing,laughings +laughing owl,laughing owls +laughing stock,laughing stocks +laughing-stock,laughing-stocks +laughingstock,laughingstocks +laugh,laughs +laugh machine,laugh machines +laughometer,laughometers +laughster,laughsters +laugh track,laugh tracks +lauhala,lauhalas +launcegaye,launcegayes +launce,launces +launce,launces +launce,launces +launcet,launcets +launcher,launchers +launch game,launch games +launching,launchings +launch,launches +launch,launches +launch pad,launch pads +launchpad,launchpads +launch party,launch parties +launch vehicle,launch vehicles +launch window,launch windows +launderer,launderers +launderette,launderettes +laundering,launderings +launder,launders +laund,launds +laundress,laundresses +laundrette,laundrettes +laundromat,laundromats +laundry basket,laundry baskets +laundry,laundries +laundry list,laundry lists +laundrymaid,laundrymaids +laundryman,laundrymen +laundry mark,laundry marks +laundry-mark,laundry-marks +laundrymat,laundrymats +laundrywoman,laundrywomen +laura,lauras +laureate,laureates +laurel,laurels +Laurel,Laurels +laurel wreath,laural wreaths +Laurent series,Laurent series +laurestine,laurestines +lauriid,lauriids +lauristinus,lauristinuses +lauroyl,lauroyls +laurustinus,laurustinuses,laurustini +lauxaniid,lauxaniids +lavabo,lavabos,lavaboes +lava cake,lava cakes +lavacicle,lavacicles +lava dome,lava domes +lavador,lavadors +lavafall,lavafalls +lavage,lavages +lava lake,lava lakes +lava lamp,lava lamps +lavalava,lavalavas +lavaliere,lavaliere +lavalier,lavaliers +lavant,lavants +lavascape,lavascapes +lavash,lavashes +lavatera,lavateras +lavatory,lavatories +lavature,lavatures +lavement,lavements +lavender marriage,lavender marriages +laver,lavers +laverock,laverocks +LaVeyanism,LaVeyanisms +Laveyan Satanist,Laveyan Satanists +LaVeyan Satanist,LaVeyan Satanists +lavisher,lavishers +lav,lavs +lavolta,lavoltas +lavolt,lavolts +lavrock,lavrocks +lavy,lavies +lawbook,lawbooks +lawbreaker,lawbreakers +lawbreaking,lawbreakings +law clerk,law clerks +lawcourt,lawcourts +lawe,lawes +lawer,lawers +law firm,law firms +lawful interception,lawful interceptions +lawgiver,lawgivers +lawing,lawings +law,laws +lawmaker,lawmakers +lawman,lawmen +lawmonger,lawmongers +lawn chair,lawn chairs +lawnchair,lawnchairs +lawn dart,lawn darts +lawnd,lawnds +lawn jockey,lawn jockeys +lawn mower,lawn mowers +lawn-mower,lawn-mowers +lawnmower,lawnmowers +law of diminishing marginal utility,laws of diminishing marginal utility +law of nature,law of natures +law of the tongue,laws of the tongue +law review,law reviews +law school,law schools +lawson,lawsons +law student,law students +law suit,law suits +lawsuit,lawsuits +lawyer,lawyers +lawyer's wig,lawyer's wigs +laxative,laxatives +laxator,laxators +laxer,laxers +laxist,laxists +laxity,laxities +lax,laxes +layabout,layabouts +layaway,layaways +layback,laybacks +lay brother,lay brothers,lay brethren +lay by,lay bys +lay-by,lay-bys +layby,laybys +lay day,lay days +lay-down,lay-downs +laydown,laydowns +layered intrusion,layered intrusions +layering,layerings +layer,layers +layette,layettes +lay figure,lay figures +laying on of hands,layings on of hands +laying-on of hands,layings-on of hands +lay-in,lay-ins +layin,layins +lay investiture,lay investitures +lay judge,lay judges +lay,lays +lay,lays +lay,lays +lay,lays +lay,lays +layman,laymen +lay-off,lay-offs +layoff,layoffs +layout,layouts +layover,layovers +layperson,laypeople,laypersons +lay person,lay persons,lay people +lay preacher,lay preachers +lay reader,lay readers +Laysan duck,Laysan ducks +layshaft,layshafts +lay speaker,lay speakers +laystall,laystalls +lay-up,lay-ups +layup,layups +laywoman,laywomen +lazaret,lazarets +lazarette,lazarettes +lazaretto,lazarettos,lazarettoes +lazar house,lazar houses +Lazarist,Lazarists +Lazarite,Lazarites +lazar,lazars +lazulite,lazulites +lazy 8,lazy 8s +lazy ass,lazy asses +lazy-ass,lazy-asses +lazyass,lazyasses +lazyback,lazybacks +lazybones,lazybones +lazy daisy,lazy daisies +lazy eight,lazy eights +lazy evaluation,lazy evaluations +lazy eye,lazy eyes +lazy initialisation,lazy initialisations +lazy initialisation pattern,lazy initialisation patterns +lazy initialization,lazy initializations +lazy Kate,lazy Kates +lazy Susan,lazy Susans +lazzarone,lazzarones +LBD,LBDs +LBL,LBLs +LBO,LBOs +L-bomb,L-bombs +LBV,LBVs +lbw,lbws +LBW,LBWs +LCC,LCCs +LCD,LCDs +LCT,LCTs +LDIF,LDIFs +LD,LDs +L-driver,L-drivers +LDS church,LDS churches +leachate,leachates +leach,leaches +lead character,lead characters +lead dog,lead dogs +leaded type,leaded types +leader board,leader boards +leaderboard,leaderboards +leaderene,leaderenes +leaderette,leaderettes +leader,leaders +leader of the opposition,leaders of the opposition +Leader of the Opposition,Leaders of the Opposition +leader sequence,leader sequences +leadership,leaderships +leadfoot,leadfeet +lead guitar,lead guitars +leadhillite,leadhillites +leading axle,leading axles +leading diagonal,leading diagonals +leading edge,leading edges +leading indicator,leading indicators +leading,leadings +leading light,leading lights +leading question,leading questions +leading seaman,leading seamen +leading strand,leading strands +leading-string,leading-strings +leading tone,leading tones +leading truck,leading trucks +leading wheel,leading wheels +lead-in,lead-ins +leadlight,leadlights +leadline,leadlines +leadline,leadlines +leadman,leadmen +leadoff hitter,leadoff hitters +lead out,lead outs +lead-out,lead-outs +lead-pipe cinch,lead-pipe cinches +lead poisoning,lead poisonings +leadscrew,leadscrews +lead single,lead singles +leadsman,leadsmen +leadsman,leadsmen +lead time,lead times +leadup,leadups +lead vocalist,lead vocalists +leadwort,leadworts +leaf beetle,leaf beetles +leaf-beetle,leaf-beetles +leafbird,leafbirds +leaf blower,leaf blowers +leafblower,leafblowers +leaf cactus,leaf cacti +leaf casting,leaf castings +leafcup,leafcups +leaf-cutter ant,leaf-cutter ants +leafcutter ant,leafcutter ants +leaf-cutter bee,leaf-cutter bees +leafcutter bee,leafcutter bees +leaf cutter,leaf cutters +leaf-cutter,leaf-cutters +leafcutter,leafcutters +leaf-cutting ant,leaf-cutting ants +leaf-cutting bee,leaf-cutting bees +leafet,leafets +leaffish,leaffishes,leaffish +leaf frog,leaf frogs +leaf gap,leaf gaps +leaf hopper,leaf hoppers +leaf-hopper,leaf-hoppers +leafhopper,leafhoppers +leaf insertion,leaf insertions +leaf,leaves +leafleteer,leafleteers +leafleter,leafleters +leaflet,leaflets +leaflove,leafloves +leaf miner,leaf miners +leaf-miner,leaf-miners +leafminer,leafminers +leaf mold,leaf molds +leafmold,leafmolds +leafmould,leafmoulds +leaf node,leaf nodes +leaf-nosed bat,leaf-nosed bats +leaf peeper,leaf peepers +leaf-peeper,leaf-peepers +leaf protein,leaf proteins +leaf roller,leaf rollers +leaf-roller,leaf-rollers +leafroller,leafrollers +leaf-scale,leaf-scales +leaf sheath,leaf sheaths +leafspace,leafspaces +leaf spring,leaf springs +leaf-spring,leaf-springs +leafstalk,leafstalks +leaf storm,leaf storms +leaf-storm,leaf-storms +leafstorm,leafstorms +leaf trace,leaf traces +leaf turtle,leaf turtles +leaf warbler,leaf warblers +leaf-warbler,leaf-warblers +leaf-worm,leaf-worms +leafworm,leafworms +leafy liverwort,leafy liverworts +leag,leags +league cup,league cups +league,leagues +league,leagues +leaguerer,leaguerers +leaguer,leaguers +leaguer,leaguers +league table,league tables +leaguist,leaguists +leakage,leakages +leakee,leakees +leaker,leakers +leak,leaks +lea,leas +lea,leas +lealty,lealties +leaman,leamans +leamer,leamers +leam,leams +leam,leams +lean client,lean clients +leaning board,leaning boards +leaning,leanings +lean-to,lean-tos +leap day,leap days +leaper,leapers +leapfrogger,leapfroggers +leap frog,leap frogs +leapfrog,leapfrogs +leapful,leapfuls +leaping house,leaping houses +leaping-house,leaping-houses +leap,leaps +LEAP,LEAPs +leapling,leaplings +leap month,leap months +leap of faith,leaps of faith +leap second,leap seconds +leap week,leap weeks +leap year,leap years +lear,lears +learned society,learned societies +learned treatise,learned treatises +learner,learners +learning content management system,learning content management systems +learning curve,learning curves +learning diffculty,learning difficulties +learning disability,learning disabilities +learning objective,learning objectives +learning season,learning seasons +leaseability,leaseabilities +leaseback,leasebacks +leasee,leasees +leaseholder,leaseholders +leasehold,leaseholds +lease,leases +lease,leases +lease,leases +lease line,lease lines +leaser,leasers +leash,leashes +leasing,leasings +leasow,leasows +least common multiple,least common multiples +least significant bit,least significant bits +least significant byte,least significant bytes +least weasel,least weasels +leatherback,leatherbacks +leatherboy,leatherboys +leather cheerio,leather cheerios +leathercrafter,leathercrafters +leatherdyke,leatherdykes +leathergirl,leathergirls +leatherhead,leatherheads +leathering,leatherings +leatherjacket,leatherjackets +leather leaf,leather leafs +leatherleaf,leatherleafs +leathermaker,leathermakers +leatherman,leathermen +leatherneck,leathernecks +leather queen,leather queens +leatherwing,leatherwings +leatherwoman,leatherwomen +leatherwood,leatherwoods +leatherworker,leatherworkers +leathery jacket,leathery jackets +leat,leats +leatwright,leatwrights +leave,leaves +leavening agent,leavening agents +leavening,leavenings +leaven,leavens +leave of absence,leaves of absence +leaver,leavers +leaving do,leaving dos +leaving group,leaving groups +Lebanese,Lebanese +Lebanese loop,Lebanese loops +lebensraum,lebensrΓ€ume +lebenswecker,lebensweckers +Lebesgue integral,Lebesgue integrals +Lebesgue measure,Henri Lebesgue,Lebesgue +lebiasinid,lebiasinids +lebkuchen,lebkuchen,lebkuchens +leblebi,leblebis +lecanodiaspidid,lecanodiaspidids +lecanorate,lecanorates +leche,leches +lecherer,lecherers +lecher,lechers +lechfest,lechfests +lech,leches +lech,lechs +lechonera,lechoneras +lechwe,lechwes,lechwe +lecithinase,lecithinases +lecithin,lecithins +lecithocerid,lecithocerids +LeclanchΓ© cell,LeclanchΓ© cells +LEC,LECs +lectern,lecterns +lectica,lecticae +lectin,lectins +lectionary,lectionaries +lection,lections +lect,lects +lector,lectors +lectotype,lectotypes +lectour,lectours +lecture hall,lecture halls +lecture,lectures +lecturer,lecturers +lecturership,lecturerships +lectureship,lectureships +lecture theatre,lecture theatres +LED analyser,LED analysers +leddy,leddies +lede,lede +lede,ledes +ledΓ«s-man,ledΓ«s-men +ledge,ledges +ledgement,ledgements +ledger board,ledger boards +ledger,ledgers +ledger line,ledger lines +ledgment,ledgments +led horse,led horses +LED,LEDs +leeangle,leeangles +leeboard,leeboards +leechcraft,leechcrafts +leechdom,leechdoms +leechee,leechees +leecher,leechers +leech-finger,leech-fingers +leechfinger,leechfingers +leech,leeches +leech,leeches +leech,leeches +leech line,leech lines +leed,leeds +leefkyn,leefkyns +leek,leeks +leek moth,leek moths +lee,lees +leerer,leerers +leering,leerings +leer,leers +leer,leers +leer,leers +lee shore,lee shores +leet,leets +leet,leets +leet,leets +leet,leets +leetman,leetmen +Leeward Islander,Leeward Islanders +leeway,leeways +Lefebvrist,Lefebvrists +Lefebvrite,Lefebvrites +Lefkosian,Lefkosians +left-about,left-abouts +leftard,leftards +left atrium,left atriums +left back,left backs +left bank,left banks +left brace,left braces +left bracket,left brackets +left coast,left coasts +left coset,left cosets +left eigenvalue,left eigenvalues +left eigenvector,left eigenvectors +leftenant,leftenants +left fielder,left fielders +left field,left fields +left-footer,left-footers +left-handed cigarette,left-handed cigarettes +left-handed compliment,left-handed compliments +left-handed specialist,left-handed specialists +left-hander,left-handers +lefthander,lefthanders +left hooker,left hookers +left ideal,left ideals +left identity,left identities +leftie,lefties +left inverse,left inverses +leftist,leftists +left,lefts +left-luggage office,left-luggage offices +leftover,leftovers +Leftpondian,Leftpondians +left ventricle,left ventricles +left-winger,left-wingers +leftwinger,leftwingers +lefty,lefties +legacy,legacies +legacy student,legacy students +legacy system,legacy systems +legal age,legal ages +legal beagle,legal beagles +legal code,legal codes +legal duty,legal duties +legal eagle,legal eagles +Lega,Legas,Lega +legal entity,legal entities +legal fiction,legal fictions +legalisation,legalisations +legalism,legalisms +legalist,legalists +legalization,legalizations +legalizer,legalizers +legal name,legal names +legal pad,legal pads +legal person,legal persons +legal tender,legal tenders +legal term,legal terms +legatary,legataries +legatee,legatees +legate,legates +legation,legations +legato,legatos +legator,legators +legatura,legaturas +leg before wicket,leg before wickets +legbone,legbones +leg breaker,leg breakers +leg-breaker,leg-breakers +legbreaker,legbreakers +leg break,leg breaks +leg bye,leg byes +legcuff,legcuffs +leg curl,leg curls +leg cutter,leg cutters +leg drop,leg drops +legement,legements +legendarium,legendaria +legendary,legendaries +legend,legends +legerdemainist,legerdemainists +leger,legers +leger line,leger lines +leg extension,leg extensions +legger,leggers +leggie,leggies +legging,leggings +leggin,leggins +leg glance,leg glances +leghole,legholes +leghorn,leghorns +Leghorn,Leghorns +legionary,legionaries +legionella,legionellae +legion,legions +legionnaire hat,legionnaire hats +legionnaire,legionnaires +Legionnaire,Legionnaires +legisign,legisigns +legislative body,legislative bodies +legislative building,legislative buildings +legislative session,legislative sessions +legislator,legislators +legislatour,legislatours +legislatress,legislatresses +legislature,legislatures +legist,legists +legitimatist,legitimatists +legitimatization,legitimatizations +legitimiser,legitimisers +legitimist,legitimists +legitimity,legitimities +legitimizer,legitimizers +leg,legs +legless lizard,legless lizards +leglock,leglocks +leg man,leg men +legman,legmen +leg-of-mutton sleeve,leg-of-mutton sleeves +Legoland,Legolands +lego,legos +legplate,legplates +leg press,leg presses +leg-pull,leg-pulls +leg rope,leg ropes +legrope,legropes +legshow,legshows +leg slip,leg slips +leg spinner,leg spinners +leg-spinner,leg-spinners +legspinner,legspinners +leg stump,leg stumps +leguaan,leguaans +leguleian,leguleians +legume,legumes +legumen,legumens,legumina +legumin,legumins +leg warmer,leg warmers +leg-warmer,leg-warmers +legwarmer,legwarmers +lehendakari,lehendakaris +lehenga,lehengas +lehnga,lehngas +lehr,lehrs +leigh,leighs +lei,leis +leinamycin,leinamycins +leiodid,leiodids +leiognathid,leiognathids +leiomyoma,leiomyomas,leiomyomata +leiomyomatosis,leiomyomatoses +leiomyosarcoma,leiomyosarcomas,leiomyosarcomata +leiopelmatid,leiopelmatids +leishmania,leishmanias +leishmaniasis,leishmaniases +leister,leisters +leisure center,leisure centers +leisure suit,leisure suits +leisurist,leisurists +leitmotif,leitmotifs +leitmotiv,leitmotivs +lekgotla,lekgotlas +lek,leks +lek,leks,lekΓ« +lekvar,lekvars +lekythos,lekythoses +lemandarin,lemandarins +leman,lemans +Lemko,Lemkos +L.E.M.,L.E.M.s +LEM,LEMs +lemma,lemmas,lemmata +lemman,lemmans +lemmatiser,lemmatisers +lemmatizer,lemmatizers +lemming,lemmings +Lemnian,Lemnians +lemniscata,lemniscatas +lemniscate,lemniscates +lemniscate of Bernoulli,lemniscates of Bernoulli +lemniscus,lemnisci +Lemoine hexagon,Lemoine hexagons +lemonary,lemonaries +lemon balm,lemon balms +lemon basil,lemon basils +lemon chiffon,lemon chiffons +lemon drop,lemon drops +lemoniid,lemoniids +lemon juice,lemon juices +lemon law,lemon laws +lemon,lemons +lemon meringue pie,lemon meringue pies +lemon shark,lemon sharks +lemon soda,lemon sodas +lemon sole,lemon soles +lemon squeezer,lemon squeezers +lemon verbena,lemon verbenas +lemonwood,lemonwoods +lempira,lempiras +Lemurian,Lemurians +lemurid,lemurids +lemuriform,lemuriforms +lemur,lemurs +lemuroid,lemuroids +Lenape,Lenapes,Lenape +lendee,lendees +lende,lendes,lenden +lender,lenders +lending hand,lending hands +lending,lendings +lending library,lending libraries +lend,lends,linder +lene,lenes +lenga,lengas +lengthener,lengtheners +lengthening,lengthenings +length,lengths +lengthman,lengthmen +length overall,lengths overall +length scale,length scales +lengthscale,lengthscales +lengthsman,lengthsmen +lenient,lenients +leniment,leniments +Leninist,Leninists +lenition,lenitions +lenitive,lenitives +lenity,lenities +lens blank,lens blanks +lens board,lens boards +lensboard,lensboards +lens cap,lens caps +lense,lenses +lens,lenses +lenslet,lenslets +lensmaker,lensmakers +Lenten Moon,Lenten Moons +lenticelle,lenticelles +lenticel,lenticels +lenticula,lenticulas,lenticulae +lenticular cloud,lenticular clouds +lenticular galaxy,lenticular galaxies +lenticular image,lenticular images +lenticularis,lenticularis +lenticular,lenticulars +lentigo,lentigos,lentigines +lentil,lentils +lentil shell,lentil shells +lentinan,lentinans +lentisk,lentisks +lentivector,lentivectors +lentivirus,lentiviruses +Lent lily,Lent lilies +leod,leod,leods +Leo,Leos +leonardite,leonardites +Leonardo number,Leonardo numbers +leone,leones +Leonian,Leonians +Leonid,Leonids +leontiniid,leontiniids +leopard cat,leopard cats +leopardess,leopardesses +leopard frog,leopard frogs +leopard gecko,leopard geckos +leopard,leopards +leopardsbane,leopardsbanes +leopard seal,leopard seals +leopard shark,leopard sharks +leopardskin,leopardskins +leotard,leotards +lepadid,lepadids +lepadite,lepadites +lepadoid,lepadoids +lepal,lepals +lepas,lepases +leper,lepers +lepetellid,lepetellids +lepetid,lepetids +lepetodrilid,lepetodrilids +lepicerid,lepicerids +lepidine,lepidines +lepidocrocite,lepidocrocites +lepidodendrid,lepidodendrids +lepidodendroid,lepidodendroids +lepidomelane,lepidomelanes +lepidopteran,lepidopterans +lepidopterist,lepidopterists +lepidopter,lepidopters +lepidosaur,lepidosaurs +lepidosauromorph,lepidosauromorphs +lepidosirenid,lepidosirenids +lepidosiren,lepidosirens +lepidoteuthid,lepidoteuthids +lepilemurid,lepilemurids +lepismatid,lepismatids +lepisosteid,lepisosteids +lep,leps +lepodactylid,lepodactylids +leporid,leporids +leporiphobia,leporiphobias +lepospondyl,lepospondyls +lepper,leppers +leppy,leppies +leprechaun,leprechauns +leprosarium,leprosariums,leprosaria +leprosy,leprosies +lepry,lepries +leptinemia,leptinemias +leptocardian,leptocardians +leptocephalus,leptocephali +leptoceratopsid,leptoceratopsids +leptocerid,leptocerids +leptochariid,leptochariids +leptochitonid,leptochitonids +leptoclase,leptoclases +leptocurare,leptocurares +leptocystidium,leptocystidia +leptodactylid,leptodactylids +leptodorid,leptodorids +leptogluon,leptogluons +leptohyphid,leptohyphids +leptolepid,leptolepids +leptoma,leptomata +leptomycin,leptomycins +leptonema,leptonemas +leptonetid,leptonetids +lepton,lepta,leptons +lepton,leptons +lepton number,lepton numbers +leptophlebiid,leptophlebiids +leptoquark,leptoquarks +leptoscopid,leptoscopids +leptosol,leptosols +leptosomatid,leptosomatids +leptospire,leptospires +leptotene,leptotenes +leptotyphlopid,leptotyphlopids +leptynite,leptynites +lere,leres +lerky,lerkys +lernaeodiscid,lernaeodiscids +lernaeopodid,lernaeopodids +Lernean,Lerneans +lerp,lerps +lerret,lerrets +lesbian,lesbians +Lesbian,Lesbians +lesbie,lesbies +lesbigay,lesbigays +lesbo,lesbos +lesbophile,lesbophiles +lesbophobe,lesbophobes +lesby,lesbies +lese-majesty,lese-majesty +lesene,lesenes +Lesghian,Lesghians +leshy,leshies +lesion,lesions +lesk,lesks +les,leses +Lesothan,Lesothans +lespedeza,lespedezas +lessee,lessees +lessener,lesseners +lessening,lessenings +lesser anteater,lesser anteaters +Lesser Antillean,Lesser Antilleans +lesser bilby,lesser bilbies +lesser celandine,lesser celandines +lesser flamingo,lesser flamingos +lesser included offence,lesser included offences +lesser included offense,lesser included offenses +lesser,lessers +lesser nothura,lesser nothuras +lesser panda,lesser pandas +lesser saphenous vein,lesser saphenous veins +lesser scaup,lesser scaups +lesser spotted woodpecker,lesser spotted woodpeckers +lesser yellowlegs,lesser yellowlegs +lessie,lessies +lesson,lessons +lesson plan,lesson plans +lessor,lessors +lessour,lessours +lessperson,lesspersons,lesspeople +lestid,lestids +L-estimator,L-estimators +Lestrygonian,Lestrygonians +lesula,lesulas +Lesviot,Lesviots +Lesvonian,Lesvonians +letch,letches +letch,letches +letch,letches +let-down,let-downs +letdown,letdowns +lethal injection,lethal injections +lethality,lethalities +lethrinid,lethrinids +let,lets +let-off,let-offs +letrozole,letrozoles +letter agreement,letter agreements +letteral,letterals +letterboard,letterboards +letter bomb,letter bombs +letterbomb,letterbombs +letterboxer,letterboxers +letter box,letter boxes +letterbox,letterboxes +letter carrier,letter carriers +letter corporal,letter corporals +letterer,letterers +letterform,letterforms +letter grade,letter grades +letterheading,letterheadings +letterhead,letterheads +lettering,letterings +Letterist,Letterists +letter,letters +letter,letters +letterman,lettermen +lettern,letterns +letter of attorney,letters of attorney +letter of comfort,letters of comfort +letter of credit,letters of credit +letter of marque,letters of marque +letter of recommendation,letters of recommendation +letter opener,letter openers +letter patent,letters patent +letterpress,letterpresses +letters close,letters close +letter to the editor,letters to the editor +let-through,let-throughs +letting,lettings +Lett,Letts +lettre de cachet,lettres de cachet +lettre,lettres +Lettrist,Lettrists +lettsomite,lettsomites +lettuce-bird,lettuce-birds +lettuce leaf,lettuce leafs +letuary,letuaries +let-up,let-ups +letup,letups +leucadendron,leucadendrons +leucine zipper,leucine zippers +leucitoid,leucitoids +leucoanthocyanidin,leucoanthocyanidins +leucoaraiosis,leucoaraioses +leucocidin,leucocidins +leucocyanide,leucocyanides +leucocyte,leucocytes +leucocythaemia,leucocythaemias +leucocytosis,leucocytoses +leucoderma,leucodermas,leucodermata +leuco dye,leuco dyes +leucodye,leucodyes +leucogranite,leucogranites +leucoma,leucomas,leucomata +leuconid,leuconids +leucon,leucons +leucopathy,leucopathies +leucophanite,leucophanites +leucopheresis,leucophereses +leucophore,leucophores +leucoplastid,leucoplastids +leucoplast,leucoplasts +leucopyrite,leucopyrites +leucoscope,leucoscopes +leucosiid,leucosiids +leucospid,leucospids +leucothoe,leucothoes +leucothoid,leucothoids +leucotome,leucotomes +leucotomy,leucotomies +leucrocotta,leucrocottas +leucrota,leucrotas +leuctrid,leuctrids +leucyl,leucyls +leud,leuds,leudes +leukaemia,leukaemias +leukaemiavirus,leukaemiaviruses +leukapheresis,leukapheresises +leukemogenesis,leukemogeneses +leukoaraiosis,leukoaraioses +leukocidin,leukocidins +leukocyte,leukocytes +leukocytosis,leukocytoses +leukoencephalopathy,leukoencephalopathies +leukoma,leukomas,leukomata +leukopathy,leukopathies +leukosialin,leukosialins +leukosis,leukoses +leukostasis,leukostases +leukotomy,leukotomies +leukotoxin,leukotoxins +leukotriene,leukotrienes +leukovirus,leukoviruses +leu,lei +levansucrase,levansucrases +levanter,levanters +levant,levants +levator ani,levator anis +levator,levators +levee,levees +levee,levees +level cap,level caps +level crossing,level crossings +leveler,levelers +level junction,level junctions +leveller,levellers +level,levels +level set,level sets +level set,level sets +level staff,level staff +Levenshtein distance,Levenshtein distances +leveraged buy-out,leveraged buy-outs +leveraged buyout,leveraged buyouts +leverager,leveragers +lever arm,lever arms +levered firm,levered firms +leveret,leverets +lever,levers +lever,levers +leverman,levermen +leverock,leverocks +levet,levets +leviathan,leviathans +levier,leviers +levigation,levigations +levin brand,levin brands +leviner,leviners +levin,levins +levirate,levirates +levirate marriage,levirate marriages +levir,levirs +levitation,levitations +levitator,levitators +Levite,Levites +lev,leva,levs +levocardia,levocardias +levorotation,levorotations +levulinate,levulinates +levulose,levuloses +LΓ©vy flight,LΓ©vy flights +LΓ©vy glass,LΓ©vy glasses +levy in mass,levies in mass +levy,levies +levy,levies +lewdster,lewdsters +Lewesian,Lewesians +Lewinsky,Lewinskys +Lewis acid,Lewis acids +Lewis base,Lewis bases +Lewis gun,Lewis guns +lewisia,lewisias +lewis,lewises +Lewis structure,Lewis structures +Lewy body,Lewy bodies +lexeme,lexemes +lexer,lexers +lexical analyzer,lexical analyzers +lexical category,lexical categories +lexical correspondence,lexical correspondences +lexical definition,lexical definitions +lexical item,lexical items +lexical unit,lexical units +lexicode,lexicodes +lexicographer,lexicographers +lexicographic order,lexicographic orders +lexicographist,lexicographists +lexicologist,lexicologists +lexiconist,lexiconists +lexicon,lexica,lexicons +lexiconophilist,lexiconophilists +lexicosemantics,lexicosemantics +lexicosyntactic pattern,lexicosyntactic patterns +lexie,lexies +lexigram,lexigrams +lexigraph,lexigraphs +Lexingtonian,Lexingtonians +lexiphane,lexiphanes +lexiphanicism,lexiphanicisms +lexis,lexises,lexeis +lexitropsin,lexitropsins +lexophile,lexophiles +Leyden jar,Leyden jars +Leydig cell,Leydig cells +Leyland cypress,Leyland cypresses +leylandii,leylandiis +ley,leys +ley line,ley lines +leyline,leylines +lezbo,lezbos +lezbro,lezbros +Lezghi,Lezghis +lezghinka,lezghinkas +Lezghin,Lezghins +Lezgian,Lezgians +Lezgi,Lezgis +lezginka,lezginkas +Lezgin,Lezgins +lez,lezzes +lezza,lezzas +lezzer,lezzers +lezzie,lezzies +lezzo,lezzos +lezzy,lezzies +LGAT,LGATs +LGBT,LGBTs +Lhasa apso,Lhasa apsos +liability insurance,liability insurances +liability,liabilities +liaison,liaisons +liana,lianas +liane,lianes +liangle,liangles +liard,liards +liar,liars +liar loan,liar loans +libament,libaments +libation,libations +libbard,libbards +libber,libbers +libecchio,libecchios +libeccio,libeccios +libelant,libelants +libelee,libelees +libeler,libelers +libelist,libelists +libella,libellas +libellee,libellees +libeller,libellers +libel,libels +libellist,libellists +libellulid,libellulids +Liberal Democrat,Liberal Democrats +liberalisation,liberalisations +liberaliser,liberalisers +liberalist,liberalists +liberalization,liberalizations +liberalizer,liberalizers +liberal,liberals +Liberal,Liberals +liberationist,liberationists +liberation,liberations +liberator,liberators +liberatress,liberatresses +Liberian,Liberians +liberin,liberins +libero,liberos +libertard,libertards +libertarianism,libertarianisms +libertarian,libertarians +liberticide,liberticides +libertie,liberties +libertine,libertines +libertinism,libertinisms +liberty cap,liberty caps +liberty spike,liberty spikes +liberty taker,liberty takers +libidinist,libidinists +libido,libidos +libken,libkens +libkin,libkins +lib,libs +libra,librae +Libra,Libras +lib'ral,lib'rals +Libran,Librans +librarian,librarians +library assistant,library assistants +library catalog,library catalogs +library catalogue,library catalogues +library,libraries +library science,library sciences +library sort,library sorts +librate,librates +libration,librations +librettist,librettists +libretto,librettos,libretti +librigena,librigenae +librocubicularist,librocubicularists +librul,libruls +libtard,libtards +libtard,libtards +Liburnian,Liburnians +Libyan,Libyans +libytheid,libytheids +licecide,licecides +licenced victualler,licenced victuallers +licence plate,licence plates +licence to print money,licences to print money +licensed game,licensed games +licensed victualler,licensed victuallers +licensee,licensees +license plate,license plates +licenser,licensers +license to print money,licenses to print money +licensor,licensors +licensure,licensures +licentiate,licentiates +lichee,lichees +lichenan,lichenans +lichenase,lichenases +lichenification,lichenifications +lichenin,lichenins +lichen,lichens +lichenographist,lichenographists +lichenologist,lichenologists +lichgate,lichgates +lichi,lichis +lich,liches +Lichtenberg figure,Lichtenberg figures +lich-wake,lich-wakes +lichwale,lichwales +lichyard,lichyards +licitation,licitations +licker,lickers +licking,lickings +lick,licks +lickpenny,lickpennies +lickpot,lickpots +lick-spigot,lick-spigots +lick-spittle,lick-spittles +lickspittle,lickspittles +licorice stick,licorice sticks +lictor,lictors +lictour,lictours +licuala,licualas +lidar,lidars +lidge,lidges +lid,lids +lid-lifter,lid-lifters +lidlock,lidlocks +lido,lidos +Lie algebra,Lie algebras +Liebercrat,Liebercrats +Liebestod,Liebestode +Liechtensteiner,Liechtensteiners +liedertafel,liedertafels +lie detector,lie detectors +lied,lieder +lie-down,lie-downs +liefling,lieflings +liegance,liegances +liege,lieges +liegeman,liegemen +lieger,liegers +liegewoman,liegewomen +Lie group,Lie groups +lie-in,lie-ins +lie,lies +lie,lies +liement,liements +lienculus,lienculi +lienee,lienees +lienholder,lienholders +lien,liens +lienor,lienors +lienteric,lienterics +lier,liers +lierne rib,lierne ribs +lieutenancy,lieutenancies +lieutenant-colonelcy,lieutenant-colonelcies +lieutenant-colonel,lieutenant-colonels +lieutenant colonel,lieutenant colonels,lieutenants colonel +lieutenant commander,lieutenant commanders +lieutenant general,lieutenant generals,lieutenants general +Lieutenant General,Lieutenant Generals,Lieutenants General +lieutenant governor,lieutenant governors +lieutenant junior grade,lieutenants junior grade +lieutenant,lieutenants +lieutenaunt,lieutenaunts +life belt,life belts +lifebelt,lifebelts +lifeboat,lifeboats +lifeboatman,lifeboatmen +life-buoy,life-buoys +lifebuoy,lifebuoys +lifecast,lifecasts +life class,life classes +life coach,life coaches +life cot,life cots +life cycle,life cycles +lifecycle,lifecycles +life estate,life estates +life estate pur autre vie,life estates pur autre vie +life expectancy,life expectancies +life form,life forms +lifeform,lifeforms +lifeguard,lifeguards +lifehack,lifehacks +life history,life histories +lifehold,lifeholds +life jacket,life jackets +lifejacket,lifejackets +life-lease,life-leases +lifeline,lifelines +lifelogger,lifeloggers +life lore,life lores +lifemate,lifemates +life partner,life partners +lifepath,lifepaths +life peer,life peers +life preserver,life preservers +lifepreserver,lifepreservers +life raft,life rafts +liferaft,liferafts +liferenter,liferenters +liferentrix,liferentrixes +life ring,life rings +lifer,lifers +lifesaver,lifesavers +life science,life sciences +Life Scout,Life Scouts +life sentence,life sentences +lifeskill,lifeskills +life span,life spans +lifespan,lifespans +lifespring,lifesprings +life stance,life stances +life story,life stories +lifestream,lifestreams +lifestring,lifestrings +life style,life styles +life-style,life-styles +lifestyle,lifestyles +lifestyler,lifestylers +lifetaker,lifetakers +life tenant,life tenants +lifetime job,lifetime jobs +life-time,life-times +lifetime,lifetimes +life vest,life vests +lifevest,lifevests +lifeway,lifeways +lifework,lifeworks +lifeworld,lifeworlds +lifie,lifies +liftback,liftbacks +lifter,lifters +liftgate,liftgates +lifting,liftings +lift,lifts +liftman,liftmen +lift-off,lift-offs +liftoff,liftoffs +liftover,liftovers +lift scheme,lift schemes +lift shaft,lift shafts +liftshaft,liftshafts +lift-to-drag ratio,lift-to-drag ratios +ligament,ligaments +ligand,ligands +ligandome,ligandomes +ligase,ligases +ligation,ligations +ligator,ligators +ligature point,ligature points +ligeance,ligeances +ligement,ligements +liger,ligers +ligger,liggers +ligger,liggers +ligger,liggers +light air,light airs +lightbar,lightbars +lightboard,lightboards +lightboat,lightboats +lightbox,lightboxes +light bucket,light buckets +light bulb joke,light bulb jokes +light bulb,light bulbs +light-bulb,light-bulbs +lightbulb,lightbulbs +light clock,light clocks +lightclock,lightclocks +light cone,light cones +lightcone,lightcones +light curve,light curves +lightcurve,lightcurves +light day,light days +light dependent resistor,light dependent resistors +light-duty vehicle,light-duty vehicles +light echo,light echos,light echoes +light elf,light elves +light-emitting diode,light-emitting diodes +lightener,lighteners +light engine,light engines +lightening,lightenings +lighter fluid,lighter fluids +lighter,lighters +lighter,lighters +lighterman,lightermans +lighter screw,lighter screws +lightface,lightfaces +lightfield camera,lightfield cameras +light fixture,light fixtures +lightfront,lightfronts +light gel,light gels +light globe,light globes +light gun,light guns +lightgun,lightguns +lightheartedness,lightheartednesses +light-horseman,light-horsemen +lighthouse keeper,lighthouse keepers +lighthousekeeper,lighthousekeepers +lighthouse,lighthouses +lighthouseman,lighthousemen +lighting,lightings +light,lights +light,lights +lightman,lightmen +lightmap,lightmaps +light meter,light meters +lightmeter,lightmeters +light mill,light mills +lightning bug,lightning bugs +lightning conductor,lightning conductors +lightning detector,lightning detectors +lightning mapper,lightning mappers +lightning rod,lightning rods +lightning round,lightning rounds +light novel,light novels +light-off temperature,light-off temperatures +light panel,light panels +lightpath,lightpaths +light pen,light pens +lightpen,lightpens +lightplane,lightplanes +light porter,light porters +light rail,light rails +light railway,light railways +lightray,lightrays +light roller,light rollers +lightroom,lightrooms +lightsaber,lightsabers +lightsabre,lightsabres +light sail,light sails +lightscape,lightscapes +light-scattering photometry,light-scattering photometries +light second,light seconds +lightshift,lightshifts +lightship,lightships +light show,light shows +light source,light sources +lightspeed lag,lightspeed lags +lightspeed,lightspeeds +lightstick,lightsticks +light switch,light switches +lightswitch,lightswitches +light table,light tables +light verb,light verbs +lightvessel,lightvessels +lightwave,lightwaves +lightweight,lightweights +lightwell,lightwells +lightwood,lightwoods +lightworker,lightworkers +light year,light years +light-year,light-years +lightyear,lightyears +ligiid,ligiids +lignane,lignanes +lignan,lignans +lignel,lignels +lignicide,lignicides +lignification,lignifications +ligninase,ligninases +lignite,lignites +lignone,lignones +lignotuber,lignotubers +ligress,ligresses +ligula,ligulas,ligulae +ligularia,ligularias +ligule,ligules +ligure,ligures +Ligurian,Ligurians +ligustrum,ligustrums +likability,likabilities +likam,likams +likeability,likeabilities +likeableness,likeablenesses +likelemba,likelembas +like,likes +like,likes +likely,likelies +likely story,likely stories +likeness,likenesses +liker,likers +liking,likings +likuta,makuta +lilac,lilacs +lilangeni,emalangeni +li,li +li,li +li,li +li,li +liliger,liligers +liliid,liliids +liliopsid,liliopsids +liljeborgiid,liljeborgiids +lillianite,lillianites +lilliputian,lilliputians +Lilliputian,Lilliputians +Lillooet,Lillooets,Lillooet +lilly-pilly,lilly-pillies +lilo,lilos +lilt,lilts +lily,lilies +lily of the Nile,lilies of the Nile +lily of the valley,lilies of the valley +lily-of-the-valley,lilies-of-the-valley +Lily of the Valley,Lilies of the Valley +lily pad,lily pads +lilypad,lilypads +lilypond,lilyponds +lilywort,lilyworts +lima bean,lima beans +Lima bean,Lima beans +limacide,limacides +limacid,limacids +limacinid,limacinids +limacodid,limacodids +limacon,limacons +limaΓ§on,limaΓ§ons +limaΓ§on of Pascal,limaΓ§ons of Pascal +Liman,Limans +limapontiid,limapontiids +limature,limatures +limbeck,limbecks +limbec,limbecs +limberjack,limberjacks +limber,limbers +limbic system,limbic systems +limb,limbs +limb,limbs +limb of Satan,limbs of Satan +limbus,limbi +limeade,limeades +limehound,limehounds +lime juice,lime juices +limekiln,limekilns +lime,limes +lime,limes +lime,limes +lime mortar,lime mortars +Limenean,Limeneans +limequat,limequats +limerance,limerances +limerence,limerences +limericist,limericists +lime rickey,lime rickeys +limerick,limericks +Limerickman,Limerickmen +limer,limers +limer,limers +limer,limers +limes,limites +limestone,limestones +limestone pavement,limestone pavements +lime-twig,lime-twigs +lime water,lime waters +limey,limeys +limid,limids +liminal,liminals +lim inf,lim infs +limitation,limitations +limit cycle,limit cycles +limited liability company,limited liability companies +limited liability,limited liabilities +limited monarchy,limited monarchies +limitedness,limitednesses +limited partnership,limited partnerships +limited-slip differential,limited-slip differentials +limiter,limiters +limit inferior,limits inferior +limiting adjective,limiting adjectives +limit,limits +limitour,limitours +limit point,limit points +limit superior,limits superior +limma,limmas +limmer,limmers +limnephilid,limnephilids +limner,limners +limnivore,limnivores +limnocytherid,limnocytherids +limnodophyte,limnodophytes +limnodynastid,limnodynastids +limnologist,limnologists +limnophyte,limnophytes +limnoriid,limnoriids +limnoscelid,limnoscelids +limo,limos +limoncello,limoncellos +limoniad,limoniads +limoniid,limoniids +limonoid,limonoids +limopsid,limopsids +limousine liberal,limousine liberals +limousine,limousines +limousin,limousins +limpard,limpards +limp dick,limp dicks +limp-dick,limp-dicks +limpdick,limpdicks +limper,limpers +limpet,limpets +limpet mine,limpet mines +limpidity,limpidities +limpidness,limpidnesses +limping iamb,limping iambs +limpin,limpins +limpkin,limpkins +limp,limps +limp,limps +limpness,limpnesses +lim sup,lim sups +limulid,limulids +linac,linacs +linage,linages +linament,linaments +linaria,linarias +linchi,linchis +linch,linches +linchpin,linchpins +Lincoln green,Lincoln greens +Lincolnshire sausage,Lincolnshire sausages +Lincolnshire spinach,Lincolnshire spinaches +lincosamide,lincosamides +lincture,linctures +linctus,linctuses +LindelΓΆf space,LindelΓΆf spaces +lindera,linderas +lind,linds +lindorm,lindorms +lindworm,lindworms +lindy,lindys +Lindy,Lindys +lineage,lineages +linea,lineae +lineament,lineaments +linear combination,linear combinations +linear dependence,linear dependences +linear equation,linear equations +linear form,linear forms +linear functional,linear functionals +linear function,linear functions +linearity,linearities +linearization,linearizations +linearizer,linearizers +linear motor,linear motors +linear operator,linear operators +linear pair,linear pairs +linear system,linear systems +linear transformation,linear transformations +lineation,lineations +lineature,lineatures +linebacker,linebackers +line break,line breaks +linebreak,linebreaks +line code,line codes +line conch,line conches +linecut,linecuts +line dance,line dances +lined antshrike,lined antshrikes +line drive,line drives +line engraving,line engravings +line feed,line feeds +linefeed,linefeeds +line function,line functions +line graph,line graphs +lineid,lineids +line integral,line integrals +line in the sand,lines in the sand +line item,line items +line-item veto,line-item vetos +line judge,line judges +line,lines +line manager,line managers +lineman,linemen +linemate,linemates +linen basket,linen baskets +linen closet,linen closets +linendraper,linendrapers +linener,lineners +linen tester,linen testers +line of battle,lines of battle +line of beauty,lines of beauty +line of best fit,lines of best fit +line of centers,lines of centers +line of credit,lines of credit +line of dip,line of dips +line of fire,lines of fire +line of force,line of forces +line of life,lines of life +line of march,lines of march +line of nodes,lines of nodes +line of operations,lines of operations +line of scrimmage,lines of scrimmage +line of sight,lines of sight +line of striction,lines of striction +line of succession,lines of succession +line out,line outs +line-out,line-outs +lineout,lineouts +line plot,line plots +line printer,line printers +liner,liners +liner,liners +LINER,LINERs +linescore,linescores +line segment,line segments +line shaft,line shafts +lineshaft,lineshafts +lineshape,lineshapes +linesider,linesiders +linesman,linesmen +line spectrum,line spectra +linesperson,linespeople,linespersons +linestrength,linestrengths +lineswoman,lineswomen +line tub,line tubs +line-up,line-ups +lineup,lineups +line weight,line weights +linewidth,linewidths +lineworker,lineworkers +linga,lingas +lingam,lingams +lingberry,lingberries +lingel,lingels +lingenberry,lingenberries +lingence,lingences +lingerer,lingerers +linget,lingets +lingle,lingles +lingling-o,lingling-os +ling,lings +lingo,lingos,lingoes +lingonberry,lingonberries +lingot,lingots +linguadental,linguadentals +lingua franca,lingua francas +lingua,linguae +lingual,linguals +lingual tonsil,lingual tonsils +linguanaut,linguanauts +linguaphile,linguaphiles +linguica,linguicas +linguiΓ§a,linguiΓ§as +linguidental,linguidentals +linguistician,linguisticians +linguist,linguists +lingula,lingulae +linhay,linhays +liniment,liniments +lining,linings +linkage,linkages +linkage section,linkage sections +linkback,linkbacks +linkboy,linkboys +link editor,link editors +linked list,linked lists +linker,linkers +link exchange,link exchanges +link farm,link farms +linking verb,linking verbs +link,links +link,links +linkman,linkmen +link motion,link motions +links,links +linksman,linksmen +link spam,link spams +linkspan,linkspans +link time,link times +link topology,link topologies +linkup,linkups +linkway,linkways +link whore,link whores +lin,lins +Linnaeus's two-toed sloth,Linnaeus's two-toed sloths +linnet,linnets +linnorm,linnorms +linocut,linocuts +linognathid,linognathids +linoleate,linoleates +linolenoyl,linolenoyls +linoleoyl,linoleoyls +linophrynid,linophrynids +linotype,linotypes +linotypist,linotypists +linsang,linsangs +linseed,linseeds +linseed oil,linseed oils +linstock,linstocks +lintel,lintels +lintie,linties +lintonite,lintonites +lintwhite,lintwhites +linyphiid,linyphiids +liochelid,liochelids +liocranid,liocranids +liocranid sac spider,liocranid sac spiders +liolaemid,liolaemids +lioncelle,lioncelles +lioncel,lioncels +lion cub,lion cubs +lionel,lionels +lioness,lionesses +lionet,lionets +lionfish,lionfish,lionfishes +lionhead cichlid,lionhead cichlids +lionhead rabbit,lionhead rabbits +lionheart,lionhearts +lionism,lionisms +lionization,lionizations +lion,lions,lion +lion's den,lion's dens +lion's ear,lions' ears +lion's foot,lions' feet +lion's share,lion's shares,lions' shares +liotiid,liotiids +lipaemia,lipaemias +lipa,lipas +Lipan,Lipans +liparid,liparids +liparoceratid,liparoceratids +lipase,lipases +lip bear,lip bears +lip clap,lip claps +lip dub,lip dubs +lip duo,lip duos +lipectomy,lipectomies +lipemia,lipemias +lip gloss,lip glosses +liphistiid,liphistiids +lipidaemia,lipidaemias +lipidation,lipidations +lipid,lipids +lipidoid,lipidoids +lipidologist,lipidologists +lipidome,lipidomes +lipidosis,lipidoses +liplet,liplets +lipline,liplines +lip liner,lip liners +lipliner,lipliners +lip lock,lip locks +lip-lock,lip-locks +liplock,liplocks +lipoadenoma,lipoadenomas +lipoamino acid,lipoamino acids +lipoaspirate,lipoaspirates +lipoate,lipoates +lipocalin,lipocalins +lipochitin,lipochitins +lipochrome,lipochromes +lipocortin,lipocortins +lipocyte,lipocytes +lipofection,lipofections +lipofuscin,lipofuscins +lipofuscinosis,lipofuscinoses +lipoglycan,lipoglycans +lipoglycopeptide,lipoglycopeptides +lipogram,lipograms +lipogrammatist,lipogrammatists +lipoid,lipoids +lipolysis,lipolyses +lipoma,lipomas,lipomata +lipomeria,lipomerias +lipometer,lipometers +liponym,liponyms +lipooligosaccharide,lipooligosaccharides +lipooxygenase,lipooxygenases +lipopeptide,lipopeptides +lipophile,lipophiles +lipophore,lipophores +lipophosphoglycan,lipophosphoglycans +lipoplex,lipoplexes +lipopolymer,lipopolymers +lipopolysaccharide,lipopolysaccharides +lipoprotein lipase,lipoprotein lipases +lipoprotein,lipoproteins +liposarcoma,liposarcomas,liposarcomata +liposcelidid,liposcelidids +liposome,liposomes +liposuction,liposuctions +lipoteichoic acid,lipoteichoic acids +lipothymy,lipothymies +lipotid,lipotids +lipotomy,lipotomies +lipotropin,lipotropins +lipoxin,lipoxins +lipoxygenase,lipoxygenases +lipoylation,lipoylations +lipoyl,lipoyls +lip piercing,lip piercings +lippitude,lippitudes +lip plug,lip plugs +lipreader,lipreaders +lipslide,lipslides +lipstick lesbian,lipstick lesbians +lipstick tree,lipstick trees +lip-strap,lip-straps +lip sync,lip syncs +lipyl,lipyls +liquation,liquations +liquefacient,liquefacients +liquefied petroleum gas,liquefied petroleum gases +liquefier,liquefiers +liqueur,liqueurs +liquid asset,liquid assets +liquidationist,liquidationists +liquidation,liquidations +liquidator,liquidators +liquid bomb,liquid bombs +liquid crystal display,liquid crystal displays +liquid crystal,liquid crystals +liquid document,liquid documents +liquid gas,liquid gases +liquidiser,liquidisers +liquidizer,liquidizers +liquid laugh,liquid laughs +liquid lunch,liquid lunches +liquid mirror,liquid mirrors +liquid mirror telescope,liquid mirror telescopes +liquid phase,liquid phases +liquid rocket,liquid rockets +liquid scintillation counter,liquid scintillation counters +liquidus,liquidi,liquiduses +liquitab,liquitabs +liquor lounge,liquor lounges +liquor store,liquor stores +lira,lire,liras +lire,lires +lire,lires +lire,lires +lirella,lirellae +LIRG,LIRGs +liriodendron,liriodendrons +liriope,liriope +liripipe,liripipes +liripoop,liripoops +lirk,lirks +liroceratid,liroceratids +lirt,lirts +Lisboner,Lisboners +Lisbonite,Lisbonites +Lisfranc fracture,Lisfranc fractures +Lisfranc joint,Lisfranc joints +Lisfranc ligament,Lisfranc ligaments +lisianthus,lisianthuses +lisne,lisnes +lis pendens,lis pendens +lisper,lispers +Lisper,Lispers +lisp,lisps +Lissajous curve,Lissajous curves +Lissajous figure,Lissajous figures +lissamphibian,lissamphibians +list box,list boxes +listed company,listed companies +listel,listels +listello,listellos +listeme,listemes +listener,listeners +listening,listenings +listening post,listening posts +listening station,listening stations +listeria,listerias +listeriolysin,listeriolysins +lister,listers +listicle,listicles +listing,listings +list,lists +list,lists +listmaker,listmakers +list price,list prices +listrophorid,listrophorids +listserve,listserves +listserver,listservers +listserv,listservs +listview,listviews +litany,litanies +litas,litai,litΕ³ +litchee,litchees +litchi,litchis +lit de justice,lits de justice +lite,lites +literacy,literacies +literal belief,literal beliefs +literalist,literalists +literalizer,literalizers +literal,literals +literarist,literarists +literary agent,literary agents +literary device,literary devices +literary technique,literary techniques +literate,literates +literateur,literateurs +literateuse,literateuses +literator,literators +literatus,literati +literbike,literbikes +liter,liters +lithagogue,lithagogues +lithate,lithates +lithe,lithes +litheness,lithenesses +lithiasis,lithiases +lithiate,lithiates +lithiation,lithiations +lithia water,lithia waters +lithic,lithics +lithium battery,lithium batteries +lithium-drifted silicon detector,lithium-drifted silicon detectors +lithium soap,lithium soaps +lith,liths +lith,liths +lithoautotroph,lithoautotrophs +lithobiomorph,lithobiomorphs +lithocarp,lithocarps +lithoclast,lithoclasts +lithocyst,lithocysts +lithodid,lithodids +lithodome,lithodomes +lithofacies,lithofacies +lithoglyph,lithoglyphs +lithographer,lithographers +lithographist,lithographists +lithograph,lithographs +lithologist,lithologists +lithology,lithologies +lithometeor,lithometeors +lithontriptic,lithontriptics +lithontriptist,lithontriptists +lithontriptor,lithontriptors +lithopedion,lithopedions +lithophane,lithophanes +lithophile,lithophiles +lithophyse,lithophyses +lithophyte,lithophytes +lithophyton,lithophyta +lithops,lithops +lithornithid,lithornithids +lithosere,lithoseres +Lithosian,Lithosians +lithosol,lithosols +lithosome,lithosomes +lithospermate,lithospermates +lithospermic acid,lithospermic acids +lithospermum,lithospermums +lithosphere,lithospheres +lithotherapy,lithotherapies +lithotint,lithotints +lithotome,lithotomes +lithotomist,lithotomists +lithotomy,lithotomies +lithotripsy,lithotripsies +lithotripter,lithotripters +lithotriptic,lithotriptics +lithotriptist,lithotriptists +lithotriptor,lithotriptors +lithotrite,lithotrites +lithotritist,lithotritists +lithotritor,lithotritors +lithotrity,lithotrities +lithotroph,lithotrophs +lithotype,lithotypes +lit-house,lit-houses +lithouse,lithouses +lithozone,lithozones +lithp,lithpth +Lithuanian Hound,Lithuanian Hounds +Lithuanian,Lithuanians +litigant in person,litigants in person +litigant,litigants +litigarchy,litigarchies +litigator,litigators +litiopid,litiopids +Lit,Lits +litmus test,litmus tests +litogen,litogens +litoptern,litopterns +litoral,litorals +litote,litotes +litra,litras +litrameter,litrameters +litrebike,litrebikes +litre,litres +litster,litsters +littΓ©rateur,littΓ©rateurs +litter box,litter boxes +litterbox,litterboxes +litterbug,litterbugs +litterer,litterers +litter frog,litter frogs +littering,litterings +litter lout,litter louts +littermate,littermates +litter tray,litter trays +little auk,little auks +little bittern,little bitterns +little black book,little black books +little black dress,little black dresses +little bluestem,little bluestems +little boy,little boys +little boy's room,little boy's rooms +little boys' room,little boys' rooms +little brother,little brothers +little brown fucking machine,little brown fucking machines +little brown job,little brown jobs +little bustard,little bustards +little corella,little corellas +little-ease,little-eases +little Eichmann,little Eichmanns +little emperor,little emperors +Little Englander,Little Englanders +little finger,little fingers +little girl,little girls +little girl's room,little girl's rooms +little girls' room,little girls' rooms +little-go,little-goes +little grebe,little grebes +little green man,little green men +little gull,little gulls +little head,little heads +littlein,littleins +little lady,little ladies +little monster,little monsters +Little Monster,Little Monsters +littleneck,littlenecks +little one,little ones +little owl,little owls +little penguin,little penguins +little person,little people +little pitcher,little pitchers +Little Russian,Little Russians +little sister,little sisters +little spotted kiwi,little spotted kiwis +little swimmer,little swimmers +little tinamou,little tinamous +little toe,little toes +little wife,little wives +little woman,little women +littlun,littluns +littoral,littorals +littoral zone,littoral zones +littorinid,littorinids +lituite,lituites +lituitid,lituitids +liturgiologist,liturgiologists +liturgist,liturgists +liturgy,liturgies +lituus,litui +Litvak,Litvaks +liuli,liulis +livability,livabilities +liveability,liveabilities +liveaboard,liveaboards +live album,live albums +livebearer,livebearers +live blog,live blogs +liveblog,liveblogs +live drop,live drops +liveforever,liveforevers +live-in boyfriend,live-in boyfriends +livelihood,livelihoods +livelong,livelongs +lively,livelies +livener,liveners +live oak,live oaks +live one,live ones +live pair,live pairs +liver bird,liver birds +liver function test,liver function tests +livering,liverings +liverleaf,liverleafs +liver,livers +Liverpool kiss,Liverpool kisses +Liverpool sound,Liverpool sounds +Liverpudlian,Liverpudlians +liver sausage,liver sausages +liversidgeite,liversidgeites +liver spot,liver spots +liverwort,liverworts +livery,liveries +liveryman,liverymen +livescan,livescans +live wire,live wires +live-wire,live-wires +livewire,livewires +living bandage,living bandages +living fossil,living fossils +living language,living languages +living room,living rooms +living-room,living rooms +livingroom,livingrooms +living standard,living standards +living thing,living things +living tissue,living tissues +living will,living wills +Liv,Livs +Livonian,Livonians +livor,livors +Livornian,Livornians +livraison,livraisons +livre,livres +livre tournois,livres tournois +liwiid,liwiids +lixisol,lixisols +lixiviant,lixiviants +lixivium,lixiviums,lixivia +liza,lizas +lizardfish,lizardfishes,lizardfish +lizardite,lizardites +Lizard King,Lizard Kings +lizardling,lizardlings +lizard,lizards +lizardman,lizardmen +lizardskin,lizardskins +lizard's tail,lizard's tails +LJer,LJers +Ljubljanan,Ljubljanans +L-kick,L-kicks +llamah,llamahs +llama,llamas +llamoid,llamoids +llanero,llaneros +Llanito,Llanitos,Llanis +llano,llanos +LLC,LLCs +l.,ll. +LLM,LLMs +LLP,LLPs +LM,LMs +LMS filter,LMS filters +LMWD,LMWDs +LMXB,LMXBs +LNA,LNAs +lncRNA,lncRNAs +loach,loaches +load cast,load casts +loadcast,loadcasts +loaded word,loaded words +loader,loaders +load fund,load funds +loading,loadings +loading screen,loading screens +loading space,loading spaces +loading zone,loading zones +load line,load lines +load,loads +loadmaster,loadmasters +loadout,loadouts +loadsman,loadsmen +loadspace,loadspaces +loadstar,loadstars +loadstone,loadstones +load time,load times +load water line,load water lines +loafer,loafers +loaf,loaves +loa,loas,loa +loanee,loanees +loaner,loaners +loaning,loanings +loanin,loanins +loan,loans +loan,loans +loanmonger,loanmongers +loan shark,loan sharks +loanshark,loansharks +loan term,loan terms +loan translation,loan translations +loan word,loan words +loanword,loanwords +loather,loathers +loave,loaves +lobation,lobations +lobber,lobbers +lobbier,lobbiers +lobby card,lobby cards +lobby group,lobby groups +lobbyist,lobbyists +lobby,lobbies +lobcock,lobcocks +lobectomy,lobectomies +lobefin,lobefins +lobefoot,lobefoots,lobefeet +lobelet,lobelets +lobeliad,lobeliads +lobelia,lobelias +lobe,lobes +lob jam,lob jams +lob,lobs +lob,lobs +lob,lobs +loblolly bay,loblolly bays +loblolly boy,loblolly boys +lobopod,lobopods +lobotid,lobotids +lobotomy,lobotomies +lobscouser,lobscousers +lobsterback,lobsterbacks +lobsterer,lobsterers +lobsterling,lobsterlings +lobsterman,lobstermen +lobster pot,lobster pots +lobster pound,lobster pounds +lobster shift,lobster shifts +lobster trap,lobster traps +lobsterwoman,lobsterwomen +lobstery,lobsteries +lobulation,lobulations +lobule,lobules +lobulette,lobulettes +lob wedge,lob wedges +lob worm,lob worms +lob-worm,lob-worms +lobworm,lobworms +local administrative unit,local administrative units +local anaesthetic,local anaesthetics +local anesthetic,local anesthetics +local area network,local area networks +local battery,local batteries +local celebrity,local celebreties +local cell,local cells +local class,local classes +local derby,local derbies +locale,locales +local exchange carrier,local exchange carriers +local gigantism,local gigantisms +localhost,localhosts +localisation,localisations +localist,localists +locality,localities +localization,localizations +localizer,localizers +localizor,localizors +local lane,local lanes +local,locals +local maximum,local maximums +local minimum,local minimums +LOCA,LOCAs +local preacher,local preachers +local ring,local rings +local variable,local variables +localvore,localvores +locant,locants +locater,locaters +location,locations +locative case,locative cases +locative,locatives +locator,locators +locator map,locator maps +locavore,locavores +Lochaber axe,Lochaber axes +lochage,lochages +lochan,lochans +loche,loches +loch,lochs +lockbox,lockboxes +lockdown,lockdowns +Lockean,Lockeans +locked fault,locked faults +locked nucleic acid,locked nucleic acids +locke,lockes +Lockerbie,Lockerbies +locker,lockers +locker room,locker rooms +locker-room,locker-rooms +lockerroom,lockerrooms +locket,lockets +lock hospital,lock hospitals +locking,lockings +lock in,lock ins +lock-in,lock-ins +lockin,lockins +lockkeeper,lockkeepers +lock key,lock keys +lock,locks +lock,locks +lockman,lockmen +lockmaster,lockmasters +locknote,locknotes +locknut,locknuts +lock out,lock outs +lock-out,lock-outs +lockout,lockouts +lockpicker,lockpickers +lock pick,lock picks +lock-pick,lock-picks +lockpick,lockpicks +lockram,lockrams +lockring,lockrings +lockside,locksides +locksmith,locksmiths +lock stitch,lock stitches +lockstitch,lockstitches +lockup,lockups +lock-weir,lock-weirs +loco,locos +loco,locos +locoman,locomen +locoman,locomen +locomotive,locomotives +locomotor,locomotors +locoum,locoums +locoweed,locoweeds +locsiton,locsitons +loculament,loculaments +locule,locules +loculus,loculi +locum,locums +locum tenens,locum tenentes,locos tenentes +locus classicus,loci classici +locus,loci +locusta,locustae +locust bean,locust beans +locust borer,locust borers +locustella,locustellas +locustid,locustids +locust,locusts +locust tree,locust trees +locution,locutions +locutory,locutories +lode,lodes +loden,lodens +lodeship,lodeships +lodesman,lodesmen +lodestar,lodestars +lodestone,lodestones +lodge,lodges +lodgement,lodgements +lodge pole,lodge poles +lodgepole,lodgepoles +lodger,lodgers +lodging,lodgings +lodgment,lodgments +lodicule,lodicules +lodranite,lodranites +loellingite,loellingites +loess,loesses +lofe,lofes +loff,loffs +lof,lofs +lofted drive,lofted drives +lofter,lofters +lofthead,loftheads +lofting,loftings +loft,lofts +LOFT,LOFTs +loganberry,loganberries +logan,logans +logan,logans +logaΕ“dic,logaΕ“dics +logarithmic function,logarithmic functions +logarithmic trigonometric function,logarithmic trigonometric functions +logarithm,logarithms +log boat,log boats +logboat,logboats +logbook,logbooks +log cabin,log cabins +logcock,logcocks +log dog,log dogs +log drive,log drives +loge,loges +logfile,logfiles +log flume,log flumes +loggan,loggans +loggat,loggats +loggerhead,loggerheads +loggerhead turtle,loggerhead turtles +logger,loggers +loggia,loggias +logging,loggings +logical calculus,logical calculi +logical complement,logical complements +logical connective,logical connectives +logical constant,logical constants +logical fallacy,logical fallacies +logical positivist,logical positivists +logical system,logical systems +logic board,logic boards +logicboard,logicboards +logic bomb,logic bombs +logic chopper,logic choppers +logic-chopper,logic-choppers +logic diagram,logic diagrams +logic fallacy,logic fallacies +logic gate,logic gates +logician,logicians +logicist,logicists +logicker,logickers +logification,logifications +login,logins +logion,logia +logistical nightmare,logistical nightmares +logistic curve,logistic curves +logistic function,logistic functions +logistician,logisticians +logistic,logistics +logistics,logistics +logitian,logitians +logit,logits +logjam,logjams +logko,logkos +logline,loglines +log,logs +log,logs +log,logs +logmaker,logmakers +logman,logmen +logocentrism,logocentrisms +logocyclic curve,logocyclic curves +logodaedalist,logodaedalists +logodΓ¦dalist,logodΓ¦dalists +logoff,logoffs +logogram,logograms +logographer,logographers +logograph,logographs +logogriph,logogriphs +logolepsy,logolepsies +logolept,logolepts +logo,logos +logology,logologies +logomachist,logomachists +logomach,logomaches +logomachy,logomachies +logomancy,logomancies +logomaniac,logomaniacs +logomark,logomarks +logon,logons +logopedist,logopedists +logophile,logophiles +logophor,logophors +logotherapist,logotherapists +logothete,logothetes +logotype,logotypes +logout,logouts +logroller,logrollers +logrolling,logrollings +logroll,logrolls +logrunner,logrunners +logsheet,logsheets +logsualization,logsualizations +logwood,logwoods +logy,logies +lohock,lohocks +loialty,loialties +loincloth,loincloths +loiner,loiners +loineye,loineyes +loin,loins +loinskin,loinskins +loipe,loipes +loir,loirs +loiterer,loiterers +Lojbanist,Lojbanists +Lokean,Lokeans +loke,lokes +lokma,lokmas +lolapaloosa,lolapaloosas +lolapalooza,lolapaloozas +lolcat,lolcats +LOLcat,LOLcats +lolcow,lolcows +LOLer,LOLers +loliginid,loliginids +loligo,loligos +loli,lolis +lolita,lolitas +Lolita,Lolitas +lollapalooza,lollapaloozas +Lollard,Lollards +loller,lollers +lollingite,lollingites +lollipop lady,lollipop ladies +lolli pop,lolli pops +lolli-pop,lolli-pops +lollipop,lollipops +lollipop man,lollipop men +lollygagger,lollygaggers +lolly ice,lolly ices +lolly,lollies +lollypaloozer,lollypaloozers +lolly pop,lolly pops +lolly-pop,lolly-pops +lollypop,lollypops +lolly scramble,lolly scrambles +Lombard house,Lombard houses +Lombard,Lombards +Lombard rate,Lombard rates +lomcevak,lomcevaks +loment,loments +lomentum,lomenta +lomid,lomids +lonchaeid,lonchaeids +lonchopterid,lonchopterids +lonco,loncos +Londoner,Londoners +Londonian,Londonians +Londonism,Londonisms +London moment,London moments +Londonphile,Londonphiles +London pride,London prides +lone gunman,lone gunmen +lonely-heart,lonely-hearts +lonelyheart,lonelyhearts +lone pair,lone pairs +loner,loners +lonesome,lonesomes +lone wolf,lone wolves +longa,longas +longan,longans +long arm,long arms +long arm statute,long arm statutes +long-arm statute,long-arm statutes +long ball,long balls +long ballot,long ballots +longbeak,longbeaks +longbeard,longbeards +longboarder,longboarders +longboard,longboards +longboater,longboaters +longboat,longboats +long bone,long bones +longbow,longbows +longbowman,longbowmen +longcase clock,longcase clocks +longcase,longcases +longclaw,longclaws +long corner,long corners +longcut,longcuts +longdog,longdogs +long dozen,long dozens +long drink,long drinks +long drink of water,long drinks of water +long drop,long drops +long-eared owl,long-eared owls +longear,longears +longeing cavesson,longeing cavessons +longe line,longe lines +longe,longes +longer,longers +longeron,longerons +longevity,longevities +long exact sequence,exact,sequence +long face,long faces +long-fingered frog,long-fingered frogs +long finger,long fingers +longfin,longfins +long gun,long guns +long hair,long hairs +longhair,longhairs +long hop,long hops +longhorn beetle,longhorn beetles +longhorn,longhorns +longhouse,longhouses +long hundred,long hundreds +longicorn,longicorns +longie,longies +longing,longings +longiroster,longirosters +longissimus,longissimi +longitude,longitudes +longitudinal aberration,longitudinal aberrations +longitudinal,longitudinals +longitudinal recording,longitudinal recordings +long jumper,long jumpers +long-jumper,long-jumpers +longkang,longkangs +longleaf,longleafs +long-legged buzzard,long-legged buzzards +long lens,long lenses +longline,longlines +longliner,longliners +longlist,longlists +long,longs +long meter,long meters +longneck eel,longneck eels +long-neck,long-necks +longneck,longnecks +longness,longnesses +longnose gar,longnose gars +long-nose,long-noses +long off,long offs +long on,long ons +long pepper,long peppers +long profile,long profiles +long ranger,long rangers +long-ranger,long-rangers +long screwdriver,long screwdrivers +longshanks,longshanks +longship,longships +longshoreman,longshoremen +longshorewoman,longshorewomen +long shot,long shots +longshot,longshots +long s,long s's +long spine board,long spine boards +long-spined bullhead,long-spined bullheads +longspine snipefish,longspine snipefishes +longspur,longspurs +long stop,long stops +longstop,longstops +long sword,long swords +longsword,longswords +long-tail boat,long-tail boats +longtail boat,longtail boats +long-tailed pangolin,long-tailed pangolins +long-tailed tit,long-tailed tits +long tail,long tails +longtail,longtails +long thousand,long thousands +long throw,long throws +longtimer,longtimers +longtitude,longtitudes +long Tom,long Toms +long ton,long tons +longueur,longueurs +longulite,longulites +long vowel,long vowels +long-vowel mark,long-vowel marks +long weekend,long weekends +longwool,longwools +longyi,longyis +lonicera,loniceras +lonko,lonkos +lonnen,lonnens +lonnin,lonnins +looby,loobies +looch,looches +looderamawn,looderamawns +loodheramaun,loodheramauns +loofah,loofahs +loof,loofs +loof,loofs +loogan,loogans +loogaroo,loogaroos +loogie,loogies +looie,looies +look a like,look a likes +look-a-like,look-a-likes +look-alike,look-alikes +lookalike,lookalikes +look and feel,looks and feel,looks and feels +look back,look backs +look-back,look-backs +lookback,lookbacks +look book,look books +lookbook,lookbooks +lookdown,lookdowns +lookee-likee,lookee-likees +looker,lookers +looker-on,lookers-on +looker-upper,looker-uppers +looking glass,looking glasses +looking-glass,looking-glasses +looking,lookings +look-in,look-ins +look,looks +lookoff,lookoffs +look-out,look-outs +lookout,lookouts +lookout tower,lookout towers +lookover,lookovers +look-see,look-sees +looksist,looksists +look-up,look-ups +lookup,lookups +lookup table,lookup tables +lool,lools +loo,loos +loom,looms +loom,looms +looner,looners +looney-tunes,looney-tunes +loonie,loonies +loon,loons +loon,loons +loony bin,loony bins +loony lefty,loony lefties +loony,loonies +loony tune,loony tunes +loony van,loonyvans +loop antenna,loop antennas,loop antennae +looper,loopers +loophole,loopholes +looping,loopings +loop invariant,loop invariants +looplight,looplights +loop,loops +loop of Henle,loops of Henle +loop ratio,loop ratios +looptop,looptops +loop transfer function,loop transfer functions +loord,loords +loo roll,loo rolls +loose ablative,loose ablatives +loose box,loose boxes +loose-box,loose-boxes +loosebox,looseboxes +loose cannon,loose cannons +loose coupling,loose couplings +loose end,loose ends +loosehead,looseheads +loose lip,loose lips +loose,looses +loose-meat sandwich,loose-meat sandwiches +loosener,looseners +looseness,loosenesses +loose scrum,loose scrums +loosestrife borer,loosestrife borers +loosestrife,loosestrifes +loose woman,loose women +loosey,loosies +loosie,loosies +loo table,loo tables +looter,looters +looting,lootings +loot,loots +loover,loovers +lope,lopes +lopeman,lopemen +loper,lopers +lophiid,lophiids +lophobranch,lophobranchs +lophocoronid,lophocoronids +lophophore,lophophores +lophospirid,lophospirids +lophosteon,lophostea +lophotid,lophotids +lophotrochozoan,lophotrochozoans +lop,lops +lop,lops +lop,lops +lopolith,lopoliths +lopper,loppers +lopping,loppings +lopseed,lopseeds +loquacity,loquacities +loquat,loquats +loquot,loquots +lorcha,lorchas +lording,lordings +lordkin,lordkins +Lord-Lieutenant,Lord-Lieutenants +lordling,lordlings +lord,lords +Lord,Lords +Lord Mayor,Lord Mayors +Lord of Misrule,Lords of Misrule +Lord of the Manor,Lord of the Manors +lordosis,lordoses +lord protector,lords protector +lordship,lordships +loreal,loreals +lorelei,loreleis +lorel,lorels +lore,lores +loremaster,loremasters +lorem ipsum,lorem ipsums +Lorentz-Fitzgerald contraction,Lorentz-Fitzgerald contractions +Lorentz invariant,Lorentz invariants +loresman,loresmen +lorette,lorettes +Lorettine,Lorettines +lorgnette,lorgnettes +lorgnon,lorgnons +lorica,loricae +loricariid,loricariids +loricate,loricates +loriciferan,loriciferans +lorid,lorids +loriid,loriids +lorikeet,lorikeets +lorimer,lorimers +loriner,loriners +lorisid,lorisids +loris,lorises +lorrie,lorries +lorryful,lorryfuls +lorryload,lorryloads +lorry,lorries +lory,lories +Los Angeleno,Los Angelenos +Los Angelization,Los Angelizations +losange,losanges +losell,losells +losel,losels +losenger,losengers +loser,losers +loser sign,loser signs +losing hazard,losing hazards +losing,losings +losing streak,losing streaks +loss function,loss functions +loss leader,loss leaders +loss,losses +lossmaker,lossmakers +loss of face,losses of face +lost and found,lost and founds +lost cause,lost causes +lost errand,lost errands +lost property,lost properties +lost sheep,lost sheep +lost soul,lost souls +lotacracy,lotacracies +lotah,lotahs +lota,lotas +lote,lotes +lothario,lotharios +Lothario,Lotharios +lotid,lotids +loti,maloti,lotis +lot lizard,lot lizards +lot,lots +lotologist,lotologists +lotong,lotongs +lotte,lottes +lottery,lotteries +lottery ticket,lottery tickets +lottiid,lottiids +lotto,lottos +loture,lotures +lotus eater,lotus eaters +lotus effect,lotus effects +lotus,lotuses,loti +loude,loudes +loud hailer,loud hailers +loudhailer,loudhailers +loudmouth,loudmouths +loudness war,loudness wars +loudspeaker,loudspeakers +loue,loues +louer,louers +lough,loughs +louis d'or,louis d'ors +louis-d'or,louis-d'ors +Louisianan,Louisianans +Louisianian,Louisianians +louk,louks +loukoumas,loukoumades +loukoum,loukoums +lounge lizard,lounge lizards +lounge-lizard,lounge-lizards +lounge,lounges +lounger,loungers +loungeroom,loungerooms +lounge suit,lounge suits +loun,louns +loup-cervier,loup-cerviers +loupegarth,loupegarths +loupe,loupes +loup-garou,loup-garous +loup,loups +lourie,louries +louri,louris +louse,lice,louses +lousewort,louseworts +lousicide,lousicides +lout,louts +louvar,louvars +louver,louvers +louvre,louvres +lovability,lovabilities +lovableness,lovablenesses +lovastatin,lovastatins +lovat,lovats +love affair,love affairs +love apple,love apples +loveapple,loveapples +love bird,love birds +lovebird,lovebirds +love bite,love bites +love-bite,love-bites +lovebite,lovebites +love bomb,love bombs +love-bomb,love-bombs +lovebomb,lovebombs +love box,love boxes +lovebud,lovebuds +lovebug,lovebugs +love child,love children +love-child,love-children +lovechild,lovechildren +love doll,love dolls +loved one,loved ones +love drug,love drugs +lovedrug,lovedrugs +love egg,love eggs +lovee,lovees +love feast,love feasts +lovefest,lovefests +love game,love games +love glove,love gloves +love grass,love grasses +lovegrass,lovegrasses +love handle,love handles +love hold,love holds +love hotel,love hotels +love-in,love-ins +love interest,love interests +love letter,love letters +love life,love lives +loveling,lovelings +love-lock,love-locks +lovelock,lovelocks +lovely,lovelies +love machine,love machines +lovemaker,lovemakers +lovemap,lovemaps +lovemate,lovemates +lovemobile,lovemobiles +lovemonger,lovemongers +love muscle,love muscles +lovenellid,lovenellids +love nest,love nests +loveniid,loveniids +love potion,love potions +love rat,love rats +lover boy,lover boys +loverboy,loverboys +loverhood,loverhoods +lover,lovers +lovers' tiff,lovers' tiffs +lovertine,lovertines +love seat,love seats +loveseat,loveseats +loveship,loveships +love slave,love slaves +love song,love songs +lovesong,lovesongs +love spoon,love spoons +lovespoon,lovespoons +love tap,love taps +lovetap,lovetaps +love toy,love toys +love triangle,love triangles +love truncheon,love truncheons +Love wave,Love waves +lovey,loveys +loving cup,loving cups +lovozerite,lovozerites +lovyer,lovyers +lowballer,lowballers +lowball,lowballs +lowbell,lowbells +lowbie,lowbies +low blow,low blows +lowboy,lowboys +lowbrow,lowbrows +lowbush blueberry,lowbush blueberries +LΓΆwchen,LΓΆwchen,LΓΆwchens +low cost carrier,low cost carriers +low-density lipoprotein,low-density lipoproteins +low-doc loan,low-doc loans +low Earth orbit,low Earth orbits +lowe,lowes +lower airway,lower airways +lowerarchy,lowerarchies +lower chamber,lower chambers +lower class,lower classes +lower esophageal sphincter,lower esophageal sphincters +lower extreme,lower extremes +lower house,lower houses +lowering,lowerings +lower jaw,lower jaws +lower limit,lower limits +lower middle class,lower middle classes +lower quartile,lower quartiles +lower respiratory tract,lower respiratory tracts +lower set,lower sets +lowest common denominator,lowest common denominators +lowest common multiple,lowest common multiples +low five,low fives +low gear,low gears +low-grade fever,low-grade fevers +low hanging fruit,low hanging fruits +low-hanging fruit,low-hanging fruits +low island,low islands +lowk,lowks +lowlander,lowlanders +lowland,lowlands +low-level language,low-level languages +lowlife,lowlifes,lowlives +low-life,low-lives +lowlight,lowlights +low line,low lines +low loader,low loaders +low,lows +low,lows +low,lows +lown,lowns +low-pass,low-passes +lowpass,lowpasses +lowrider bicycle,lowrider bicycles +lowrider,lowriders +low-rise,low-rises +lowrise,lowrises +low road,low roads +lowroad,lowroads +lowry,lowries +low season,low seasons +low side,low sides +low-slope roof,low-slope roofs,low-slope rooves +low tide,low tides +loxodont,loxodonts +loxodrome,loxodromes +loxommatid,loxommatids +loxonematid,loxonematids +loxoscelid,loxoscelids +loyalist,loyalists +loyal toast,loyal toasts +loyalty card,loyalty cards +loy,loys +lozel,lozels +lozenge,lozenges +L-plate,L-plates +LRBM,LRBMs +LRN,LRNe +LSL,LSLs +L-system,L-systems +LtCol,LtCols +LTM,LTMs +LTO,LTOs +luan,luans +luau,luaus +lubber line,lubber lines +lubber,lubbers +lubber's hole,lubber's holes +lube job,lube jobs +lubok,luboks,lubki +lubra,lubras +lubricant,lubricants +lubrication,lubrications +lubrication payment,lubrication payments +lubricator,lubricators +lubricin,lubricins +lubricity,lubricities +lubritorium,lubritoriums +Lucanian,Lucanians +lucanid,lucanids +lucarne,lucarnes +Lucayan,Lucayans +Lucchese,Lucchese +luce,luces +lucenin,lucenins +lucentamycin,lucentamycins +lucernarian,lucernarians +Lucerne hammer,Lucerne hammers +lucern,lucerns +lucern,lucerns +luchador,luchadores +lucid dream,lucid dreams +lucid,lucids +luciferase,luciferases +Luciferian,Luciferians +luciferid,luciferids +luciferin,luciferins +lucifer,lucifers +lucimeter,lucimeters +lucinid,lucinids +luciocephalid,luciocephalids +luckdragon,luckdragons +luckling,lucklings +luck penny,luck pennies +lucky break,lucky breaks +lucky charm,lucky charms +lucky dip,lucky dips +lucky loser,lucky losers +lucky streak,lucky streaks +lucmo,lucmos +lucubration,lucubrations +lucubrator,lucubrators +lucule,lucules +lucuma,lucumas +lΓΊcuma,lΓΊcumas +lucumo,lucumos +lucy,lucies +Luddite,Luddites +lude,luden +lude,ludes +lude,ludes +luderick,ludericks +ludicrousy,ludicrousies +ludification,ludifications +ludography,ludographies +ludologist,ludologists +ludo,ludos +ludophile,ludophiles +luffa,luffas +luffer,luffers +luff,luffs +luff tackle,luff tackles +luftmensch,luftmenschen,luftmensches +lug bolt,lug bolts +luge,luges +lugeon,lugeons +luger,lugers +Luger,Lugers +luggable,luggables +luggage cart,luggage carts +luggage hold,luggage holds +luggage rack,luggage racks +lugger,luggers +lughole,lugholes +lug,lugs +lugmark,lugmarks +lug nut,lug nuts +lugnut,lugnuts +lugsail,lugsails +lugworm,lugworms +luidiid,luidiids +lujvo,lujvo +lulav,lulavs +lullaby,lullabies +luller,lullers +lull,lulls +lulu,lulus +Lulworth skipper,Lulworth skippers +lumachella,lumachellas +lumachel,lumachels +luma,lumas,luma +lumbar puncture,lumbar punctures +lumbar vertebra,lumbar vertebrae +Lumbee,Lumbees,Lumbee +lumberer,lumberers +lumberjack breakfast,lumberjack breakfasts +lumberjacket,lumberjackets +lumberjack,lumberjacks +lumberjack shirt,lumberjack shirts +lumberjill,lumberjills +lumberman,lumbermen +lumbermill,lumbermills +lumber room,lumber rooms +lumber yard,lumber yards +lumberyard,lumberyards +lumbricid,lumbricids +lumbricine,lumbricines +lumbric,lumbrics +lumbriculid,lumbriculids +lumen,lumens,lumina +lumen second,lumen seconds +lumen-second,lumen-seconds +luminaire,luminaires +luminaria,luminarias +luminary,luminaries +lumination,luminations +luminescence,luminescences +luminometer,luminometers +luminophore,luminophores +luminosity distance,luminosity distances +luminosity,luminosities +luminous energy,luminous energies +luminous intensity,luminous intensities +lumiphore,lumiphores +lum,lums +lummox,lummoxes +lumpectomy,lumpectomies +lumpenproletariat,lumpenproletariats +lumper,lumpers +lumper,lumpers +lumpfish,lumpfish,lumpfishes +lump,lumps +lumpsucker,lumpsuckers +lump sum,lump sums +Lumumbist,Lumumbists +luna,lunas +luna,lunas +luna moth,luna moths +lunar calendar,lunar calendars +lunar distance,lunar distances +lunar eclipse,lunar eclipses +Lunarian,Lunarians +lunar,lunars +lunar mansion,lunar mansions +lunar module,lunar modules +lunar month,lunar months +lunarnaut,lunarnauts +lunar occultation,lunar occultations +lunar orbit,lunar orbits +lunar phase,lunar phases +lunarscape,lunarscapes +lunar year,lunar years +lunate bone,lunate bones +lunate,lunates +lunate sigma,lunate sigmas +lunatic asylum,lunatic asylums +lunatic,lunatics +lunation,lunations +lunch box,lunch boxes +lunchbox,lunchboxes +lunch bucket,lunch buckets +lunchbucket,lunchbuckets +luncheonette,luncheonettes +luncheon,luncheons +luncher,lunchers +lunch kettle,lunch kettles +lunch lady,lunch ladies +lunch,lunches +lunchmate,lunchmates +lunch meat,lunch meats +lunch pail,lunch pails +lunchpail,lunchpails +lunchroom,lunchrooms +lunch-time,lunch-times +lunchtime,lunchtimes +lune,lunes +lune,lunes +lune,lunes +lunet,lunets +lunette,lunettes +lung buster,lung busters +lung capacity,lung capacities +lungeing cavesson,lungeing cavessons +lungeing rein,lungeing reins +lunge line,lunge lines +lunge,lunges +lunger,lungers +lunger,lungers +lungfish,lungfish,lungfishes +lungful,lungfuls,lungsful +lungie,lungies +lungi,lungis +lung,lungs +lungo,lungos +lungoor,lungoors +lung volume,lung volumes +lungworm,lungworms +lungwort,lungworts +lunisolar calendar,lunisolar calendars +lunistice,lunistices +lunker,lunkers +lunkhead,lunkheads +lunk,lunks +lunner,lunners +lunokhod,lunokhods +lunt,lunts +lunula,lunulae +lunule,lunules +lunulet,lunulets +lupanar,lupanars +lupine,lupines +lupinine,lupinines +lupin,lupins +luppie,luppies +lupulin,lupulins +lurcher,lurchers +lurcher,lurchers +lurching,lurchings +lurch,lurches +lurdane,lurdanes +lurdan,lurdans +lurden,lurdens +lure,lures +lurgee,lurgees +lurgi,lurgies +lurgy,lurgies +lurker,lurkers +lurk,lurks +lurry,lurries +lurt,lurts +Lusatian,Lusatians +luser,lusers +lusern,luserns +lushburg,lushburgs +lush,lushes +Lusitanian,Lusitanians +lusk,lusks +Lusophile,Lusophiles +lusophone,lusophones +Lusophone,Lusophones +lussheburgh,lussheburghs +luster,lusters +luster,lusters +luster,lusters +lustiness,lustinesses +lust murder,lust murders +lustre,lustres +lustre,lustres +lustring,lustrings +lustrum,lustra +lusus naturae,lusus naturae,lusΓ»s naturae +lusus naturΓ¦,lusus naturΓ¦,lusΓ»s naturΓ¦ +lutanist,lutanists +luteal phase,luteal phases +luteinisation,luteinisations +luteinization,luteinizations +lute,lutes +lute,lutes +lutenist,lutenists +luteoma,luteomas,luteomata +luteovirid,luteovirids +luter,luters +lutestring,lutestrings +lutetium oxide,lutetium oxides +lute turtle,lute turtles +Lutheranist,Lutheranists +Lutheran,Lutherans +Lutherist,Lutherists +luthern,lutherns +luthier,luthiers +luth,luths +luticole,luticoles +lutist,lutists +lutjanid,lutjanids +Lutonian,Lutonians +Luton,Lutons +lutung,lutungs +lutz,lutzes +luvarid,luvarids +luvar,luvars +Luvian,Luvians +luvisol,luvisols +luv,luvs +luvvie,luvvies +luvvy,luvvies +Luwian,Luwians +luxation,luxations +Luxembourger,Luxembourgers +Luxembourgian,Luxembourgians +Luxemburger,Luxemburgers +lux,lux +luxon,luxons +luxuriance,luxuriances +luxuriant flower,luxuriant flowers +luxurist,luxurists +luxury good,luxury goods +luxury,luxuries +luxury tax,luxury taxes +lvalue,lvalues +LVL,LVLs +LVL,LVLs +lwei,lweis +l-word,l-words +lyam-hound,lyam-hounds +lyam,lyams +lyase,lyases +lyate,lyates +lycaenid,lycaenids +lycanthrope,lycanthropes +lycanthropist,lycanthropists +lycΓ©e,lycΓ©es +lyceum,lyceums +lychee,lychees +lych-gate,lych-gates +lychgate,lychgates +lychnoscope,lychnoscopes +Lycian,Lycians +lycid,lycids +lycodine,lycodines +lycopenoate,lycopenoates +lycophyte,lycophytes +lycopodiophyte,lycopodiophytes +lycopodite,lycopodites +lycopodium,lycopodiums,lycopodia +lycopod,lycopods +lycopsid,lycopsids +lycosid,lycosids +lycosuchid,lycosuchids +lycoteuthid,lycoteuthids +Lycra lout,Lycra louts +lyctid,lyctids +lydekkerinid,lydekkerinids +Lydian,Lydians +lyege,lyeges +lye,lyes +lyfe,lyves +lygaeid,lygaeids +lyghte,lyghtes +lying-in,lying-ins,lyings-in +lying panel,lying panels +lyke,lykes +ly,lys +lymantrid,lymantrids +lymantriid,lymantriids +Lyme disease,Lyme diseases +lymer,lymers +lymexylid,lymexylids +lymnaeid,lymnaeids +lymnocardiid,lymnocardiids +lymphadenitis,lymphadenites,lymphadenitides +lymphadenopathy,lymphadenopathies +lymphangiectasia,lymphangiectasias +lymphangiography,lymphangiographies +lymphangioleiomyomatosis,lymphangioleiomyomatoses +lymphangioma,lymphangiomas,lymphangiomata +lymphangiopathy,lymphangiopathies +lymphatic,lymphatics +lymphatic node,lymphatic nodes +lymphedema,lymphedemas +lymphe,lymphes,lymphΓ¦ +lymph gland,lymph glands +lymph node,lymph nodes +lymphoblastic leukemia,lymphoblastic leukemias +lymphoblast,lymphoblasts +lymphocryptovirus,lymphocryptoviruses +lymphocyte,lymphocytes +lymphocytopenia,lymphocytopenias +lymphodema,lymphodemas +lymphoedema,lymphoedemas +lymphΕ“dema,lymphΕ“demas,lymphΕ“demata +lymphoepithelioma,lymphoepitheliomas,lymphoepitheliomata +lymphoglandula,lymphoglandulas +lymphohistiocytosis,lymphohistiocytoses +lymphokine,lymphokines +lymphomagenesis,lymphomageneses +lymphoma,lymphomata,lymphomas +lymphonodus,lymphonodi +lymphopenia,lymphopenias +lymphopoiesis,lymphopoieses +lymphopoietin,lymphopoietins +lymphosarcoma,lymphosarcomas +lymphotoxin,lymphotoxins +lymph vessel,lymph vessels +lyncher,lynchers +lynchet,lynchets +lynching,lynchings +lynch mob,lynch mobs +lynchpin,lynchpins +lyn,lyns +lynx,lynxes +lynx spider,lynx spiders +lyonetiid,lyonetiids +lyonia,lyonias +lyonium,lyoniums +lyonization,lyonizations +lyon,lyons +lyonsiid,lyonsiids +lyophilizer,lyophilizers +lypusid,lypusids +Lyraid,Lyraids +lyrebird,lyrebirds +lyre,lyres +lyretail,lyretails +lyricist,lyricists +lyrick,lyricks +lyric,lyrics +Lyrid,Lyrids +lyrie,lyries +lyrist,lyrists +lyrist,lyrists +lysate,lysates +lysenin,lysenins +Lysenkoist,Lysenkoists +Lysenkoite,Lysenkoites +lysergamide,lysergamides +lysergic acid amide,lysergic acid amides +lysianassid,lysianassids +lysianassoid,lysianassoids +lysimeter,lysimeters +lysin,lysins +lysiosquillid,lysiosquillids +lysobactin,lysobactins +lysocline,lysoclines +lysogenic cycle,lysogenic cycles +lysogenization,lysogenizations +lysogen,lysogens +lysogeny,lysogenies +lysoglycosphingolipid,lysoglycosphingolipids +lysolecithin,lysolecithins +lysophosphatidate,lysophosphatidates +lysophosphatidylcholine,lysophosphatidylcholines +lysophosphatidylethanolamide,lysophosphatidylethanolamides +lysophosphatidylethanolamine,lysophosphatidylethanolamines +lysophosphatidylinositol,lysophosphatidylinositols +lysophosphatidylserine,lysophosphatidylserines +lysophospholipase,lysophospholipases +lysophospholipid,lysophospholipids +lysoplate,lysoplates +lysorophid,lysorophids +lysosome,lysosomes +lysosphingomyelin,lysosphingomyelins +lysozyme,lysozymes +lyssavirus,lyssaviruses +lystrosaurid,lystrosaurids +lythe,lythes +lyticase,lyticases +lytic cycle,lytic cycles +lytic infection,lytic infections +lytoceratid,lytoceratids +lyxitol,lyxitols +lyxofuranose,lyxofuranoses +lyxopyranose,lyxopyranoses +lyxopyranoside,lyxopyranosides +lyxose,lyxoses +LΞ±B,LΞ±Bs +LΞ±E,LΞ±Es +M-16,M-16s +M16,M16s +M-1,M-1s +M2F,M2Fs +m8,m8s,m8's +ma'abara,ma'abaras,ma'abarot +maalin,maalins +ma'am,ma'ams +maar,maars,maare +maasbanker,maasbankers +maasha,maashas +Maastrichtian,Maastrichtians +maatje,maatjes +maat,maats +Mabey bridge,Mabey bridges +mab,mabs +MAb,MAbs +mabolo,mabolos +macaco,macacos +macaco,macacos +macadamia nut,macadamia nuts +macadamization,macadamizations +Macaddict,Macaddicts +MAC address,MAC addresses +macaque,macaques +macaranga,macarangas +macarena,macarenas +Macarena,Macarenas +macarid,macarids +macaronick,macaronicks +macaronic,macaronics +macaroni,macaronis +macaroni penguin,macaroni penguins +macaron,macarons +macaroon,macaroons +macauco,macaucos +macaw,macaws +MacBook,MacBooks +Maccabee,Maccabees +Macca,Maccas +maccaron,maccarons +macchiato,macchiatos +Macdonald polynomial,Macdonald polynomials +mace-bearer,mace-bearers +macebearer,macebearers +macedoine,macedoines +macΓ©doine,macΓ©doines +Macedonian,Macedonians +Macedonist,Macedonists +mace head,mace heads +macehead,maceheads +mace,maces +mace,maces +mace,maces +maceral,macerals +macerate,macerates +macerater,maceraters +maceration,macerations +macerator,macerators +macer,macers +macerozyme,macerozymes +MacGillivray's warbler,MacGillivray's warblers +MacGuffin,MacGuffins +machaca,machacas +machaca,machacas +machaeridian,machaeridians +machaerotid,machaerotids +machaira,machairas +machair,machairs +machairodont,machairodonts +machan,machans +Machead,Macheads +macheer,macheers +macher,machers +machete,machetes +Machiavellian,Machiavellians +Machiavelli,Machiavellis +Machiavel,Machiavels +machicolation,machicolations +machicote,machicotes +machicoulis,machicoulises +machilid,machilids +machination,machinations +machinator,machinators +machine gun,machine guns +machinegun,machineguns +machine-gunner,machine-gunners +machine instruction,machine instructions +machine language,machine languages +machine,machines +machine of government,machines of government +machine pistol,machine pistols +machine politician,machine politicians +machiner,machiners +machine room,machine rooms +machine screw,machine screws +machine shop,machine shops +machine tool,machine tools +machine translation,machine translations +machinima,machinimas,machinima +machinimist,machinimists +machining,machinings +machinist,machinists +Machin,Machins +machinule,machinules +Machist,Machists +Machmeter,Machmeters +macho,machos +MACHO,MACHOs +machosexual,machosexuals +machzor,machzors,machzorim +MacIntel,MacIntels +macintosh,macintoshes +mackayite,mackayites +mack daddy,mack daddies +Mackem,Mackems +mackerel bird,mackerel birds +mackereler,mackerelers +mackerel,mackerel,mackerels +mackerel,mackerels +mackerel shark,mackerel sharks +mackinaw boat,mackinaw boats +mackinaw coat,mackinaw coats +mackinawite,mackinawites +mackinaw jacket,mackinaw jackets +mackinaw,mackinaws +mackinaw skiff,mackinaw skiffs +mackinaw trout,mackinaw trouts +mackintosh,mackintoshes +mackle,mackles +mack,macks +Mack truck,Mack trucks +macle,macles +maclureite,maclureites +macluritid,macluritids +mac,macs +Mac,Macs +Mac,Macs +macock,macocks +Macolyte,Macolytes +Maconite,Maconites +Macon,Macons +macraner,macraners +macraucheniid,macraucheniids +macrergate,macrergates +macrinite,macrinites +macristiid,macristiids +macroadenoma,macroadenomas +macroaggregate,macroaggregates +macroalga,macroalgae +macroamylasaemia,macroamylasaemias +macroamylase,macroamylases +macroanalysis,macroanalyses +macroangiopathy,macroangiopathies +macroaperture,macroapertures +macroarray,macroarrays +macroassembler,macroassemblers +macrobacterium,macrobacteria +macrobiologist,macrobiologists +macroblock,macroblocks +macroburst,macrobursts +macrocarpa,macrocarpas +macrocell,macrocells +macrochaeta,macrochaetae +macrochannel,macrochannels +macrocheilia,macrocheilias +macrochelid,macrochelids +macroclimate,macroclimates +macrocomputer,macrocomputers +macrocondition,macroconditions +macrocosm,macrocosms +macrocrack,macrocracks +macrocrystal,macrocrystals +macrocryst,macrocrysts +macrocycle,macrocycles +macrocyclic compound,macrocyclic compounds +macrocyclization,macrocyclizations +macrocyst,macrocysts +macrocyte,macrocytes +macrocytosis,macrocytoses +macrodactyl,macrodactyls +macrodiagonal,macrodiagonals +macrodiolide,macrodiolides +macrodipole,macrodipoles +macrodispersion,macrodispersions +macrodissection,macrodissections +macrodomain,macrodomains +macrodome,macrodomes +macrodontia,macrodontias +macroeconomist,macroeconomists +macroelement,macroelements +macroenvironment,macroenvironments +macroesthesia,macroesthesias +macrofamily,macrofamilies +macrofauna,macrofaunae,macrofaunas +macrofibre,macrofibres +macrofossil,macrofossils +macrogamete,macrogametes +macroglial cell,macroglial cells +macroglobulin,macroglobulins +macroglomerulus,macroglomeruli +macrogol,macrogols +macrograph,macrographs +macroherbivore,macroherbivores +macrohistorian,macrohistorians +macroinitiator,macroinitiators +macroinstruction,macroinstructions +macroinvertebrate,macroinvertebrates +macroion,macroions +macrolactone,macrolactones +macrolanguage,macrolanguages +macrolanguage,macrolanguages +macro lens,macro lenses +macrolevel,macrolevels +macrolide,macrolides +macro,macros +macro,macros +macro,macros +macromelanophore,macromelanophores +macromere,macromeres +macromer,macromers +macrometastasis,macrometastases +macrometer,macrometers +macromiid,macromiids +macromixing,macromixings +macromolecule,macromolecules +macromonomer,macromonomers +macromorphology,macromorphologies +macronarian,macronarians +macron below,macrons below +macron,macrons +macronucleus,macronuclei +macronutrient,macronutrients +macronyssid,macronyssids +macroorganism,macroorganisms +macroΓΆrganism,macroΓΆrganisms +macroparasite,macroparasites +macroparticle,macroparticles +macropetalichthyid,macropetalichthyids +macrophage,macrophages +macrophanerophyte,macrophanerophytes +macrophase,macrophases +macrophenomenon,macrophenomena +macrophile,macrophiles +macrophthalmid,macrophthalmids +macrophyte,macrophytes +macropinacoid,macropinacoids +macropinosome,macropinosomes +macroplant,macroplants +macropodian,macropodians +macropodid,macropodids +macropod,macropods +macropolymer,macropolymers +macropore,macropores +macroprism,macroprisms +macropyramid,macropyramids +macroradical,macroradicals +macroramphosid,macroramphosids +macrorealist,macrorealists +macroregion,macroregions +macroscale,macroscales +macroscelidid,macroscelidids +macroseism,macroseisms +macrosemiid,macrosemiids +macrosphere,macrospheres +macrospicule,macrospicules +macrosporangium,macrosporangia +macrospore,macrospores +macrostate,macrostates +macrostep,macrosteps +macrostomid,macrostomids +macrostructure,macrostructures +macrosystem,macrosystems +macrotetrolide,macrotetrolides +macrotrend,macrotrends +macroura,macrouras +macrourid,macrourids +macrovirus,macroviruses +macroworld,macroworlds +macrozoospore,macrozoospores +macruran,macrurans +Mactard,Mactards +mactra,mactras +mactrid,mactrids +macuahuitl,macuahuitls +macula lutea,maculae luteae +macula,maculae +maculation,maculations +macule,macules +maculopathy,maculopathies +Madagascan,Madagascans +Madagascar buzzard,Madagascar buzzards +Madagascarian,Madagascarians +Madagascar wood rail,Madagascar wood rails +Madame Bishop,Madame Bishops +madame,madams,mesdames +madam,madams,mesdames +mad-apple,mad-apples +madbrain,madbrains +madcap,madcaps +maddah,maddahs +madder,madders +madder,madders +madderwort,madderworts +maddock,maddocks +maddoctor,maddoctors +Madecassee,Madecassees +made hand,made hands +Madeira cake,Madeira cakes +Madeira,Madeiras +Madeiran,Madeirans +Madeira nut,Madeira nuts +madeleine,madeleines +made,mades +made man,made men +mademoiselle,mademoiselles,mesdemoiselles +madge,madges +madhab,madhabs +mad hatter,mad hatters +madhhab,madhhabs +madhouse,madhouses +Madidi titi monkey,Madidi titi monkeys +madindoline,madindolines +madison,madisons +Madison,Madisons +madisterium,madisteriums +madling,madlings +mad man,mad men +madman,madmen +madnep,madneps +madonna,madonnas +madoqua,madoquas +madperson,madpersons,madpeople +madrague,madragues +madrasah,madrasahs +madrasa,madrasas +madrassah,madrassahs +madrassa,madrassas +madrepore,madrepores +madreporier,madreporiers +madreporite,madreporites +Madridista,Madridistas +madrier,madriers +madrigaler,madrigalers +madrigalist,madrigalists +madrigal,madrigals +Madrilenian,Madrilenians +MadrileΓ±o,MadrileΓ±os +madrina,madrinas +madrona,madrona +madroΓ±a,madroΓ±as +madrone,madrones,madrone +madrono,madronos +madroΓ±o,madroΓ±os,madroΓ±o +mad scientist,mad scientists +madtom,madtoms +madtsoiid,madtsoiids +Maduran,Madurans +madwoman,madwomen +madwort,madworts +mΓ¦ander,mΓ¦anders +Maecenas,Maecenases +Maedi,Maedi +maegbote,maegbotes,maegboten +maegbot,maegbots,maegboten +maegth,maegthe +maelstrom,maelstroms +maelstrΓΆm,maelstrΓΆms +maenad,maenads +mΓ¦nad,mΓ¦nads +maenid,maenids +maenor,maenors +maestro,maestros +Mae West,Mae Wests +maffler,mafflers +mafia,mafias +mafic,mafics +mafioso,mafiosos,mafiosi +Mafioso,Mafiosos,Mafiosi +MAF,MAFs +mafoo,mafoos +magadiite,magadiites +magainin,magainins +magalog,magalogs +magalogue,magalogues +Magar,Magars +magatama,magatamas +magazine,magazines +magaziner,magaziners +magazinist,magazinists +magbote,magbotes,magboten +Magdalene,Magdalenes +Magdeburgian,Magdeburgians +Magellanic Cloud,Magellanic Clouds +Magellanic penguin,Magellanic penguins +mage,magi,mages +magenta,magentas +magery,mageries +maggid,maggids,maggidim +maggie,maggies +maggot cheese,maggot cheeses +maggot,maggots +maggotorium,maggotoriums,maggotoria +maggotry,maggotries +maggoty-pie,maggoty-pies +maghet,maghets +Magian,Magians +magical girl,magical girls +magical realist,magical realists +magic bullet,magic bullets +magic carpet,magic carpets +magic circle,magic circles +magic cookie,magic cookies +magic cube,magic cubes +magic cube,magic cubes +magic eye,magic eyes +magician,magicians +magicker,magickers +magic king,magic kings +magic lamp,magic lamps +magic lantern,magic lanterns +magic lantern show,magic lantern shows +magic marker,magic markers +Magic Marker,Magic Markers +magic mushroom,magic mushrooms +magic number,magic numbers +magic point,magic points +magic pudding,magic puddings +magic realist,magic realists +magic square,magic squares +magic sword,magic swords +magic trick,magic tricks +magic user,magic users +magic wand,magic wands +magic word,magic words +magilid,magilids +magilph,magilphs +magilp,magilps +magisterium,magisteriums,magisteria +magister,magisters +magistery,magisteries +magistracy,magistracies +magistral line,magistral lines +magistral,magistrals +magistrand,magistrands +magistrate,magistrates +magistrature,magistratures +magistricide,magistricides +magitian,magitians +maglev,maglevs +Maglite,Maglites +magma chamber,magma chambers +mag,mags +magma,magmas +magmasphere,magmaspheres +magnality,magnalities +magnanerie,magnaneries +magnanery,magnaneries +magnascope,magnascopes +magnate,magnates +magnecule,magnecules +Magnesian,Magnesians +magnesiohornblende,magnesiohornblendes +magnesiothermic reduction,magnesiothermic reductions +magnesium sulfate,magnesium sulfates +magnetar,magnetars +magnetencephalography,magnetencephalographies +magnetic bearing,magnetic bearings +magnetic circuit,magnetic circuits +magnetic compass,magnetic compasses +magnetic declination,magnetic declinations +magnetic dip,magnetic dips +magnetic energy,magnetic energies +magnetic field,magnetic fields +magnetic flux density,magnetic flux densities +magnetician,magneticians +magnetic lens,magnetic lenses +magnetic levitation train,magnetic levitation trains +magnetic mine,magnetic mines +magnetic moment,magnetic moments +magnetic monopole,magnetic monopoles +magnetic permeability,magnetic permeabilities +magnetic polarity,magnetic polarities +magnetic pole,magnetic poles +magnetic quantum number,magnetic quantum numbers +magnetic recording,magnetic recordings +magnetic stirrer,magnetic stirrers +magnetic stripe,magnetic stripes +magnetic susceptibility,magnetic susceptibilities +magnetic tape,magnetic tapes +magnetic thermometer,magnetic thermometers +magnetic variation,magnetic variations +magnetimeter,magnetimeters +magnetisation,magnetisations +magnetist,magnetists +magnetite,magnetites +magnetization,magnetizations +magnetizee,magnetizees +magnetizer,magnetizers +magnet,magnets +magnetoabsorption,magnetoabsorptions +magnetoasymmetry,magnetoasymmetries +magnetocaloric effect,magnetocaloric effects +magnetochemist,magnetochemists +magnetochronology,magnetochronologies +magnetoconductance,magnetoconductances +magnetoconductivity,magnetoconductivities +magnetodisc,magnetodiscs +magnetodisk,magnetodisks +magnetoencephalogram,magnetoencephalograms +magnetoencephalography,magnetoencephalographies +magnetoexciton,magnetoexcitons +magnetofluid,magnetofluids +magnetogram,magnetograms +magnetogranulation,magnetogranulations +magnetograph,magnetographs +magnetoid,magnetoids +magnetoimpedance,magnetoimpedances +magneto,magnetos +magnetometer,magnetometers +magnetomotive force,magnetomotive forces +magnetomotor,magnetomotors +magneton,magnetons +magnetooscillation,magnetooscillations +magnetopause,magnetopauses +magnetophonon,magnetophonons +magnetophosphene,magnetophosphenes +magnetoplasma,magnetoplasmas +magnetoplasmaron,magnetoplasmarons +magnetoplasmon,magnetoplasmons +magnetopolariton,magnetopolaritons +magnetopolaron,magnetopolarons +magnetoreceptor,magnetoreceptors +magnetoresistance,magnetoresistances +magnetoresistivity,magnetoresistivities +magnetoresonance,magnetoresonances +magnetoroton,magnetorotons +magnetoscillation,magnetoscillations +magnetosensation,magnetosensations +magnetosheath,magnetosheaths +magnetosome,magnetosomes +magnetosphere,magnetospheres +magnetostriction,magnetostrictions +magnetotail,magnetotails +magnetotelephone,magnetotelephones +magnetotherapist,magnetotherapists +magnetozone,magnetozones +magnetron,magnetrons +magnet school,magnet schools +magnicide,magnicides +magnificent frigatebird,magnificent frigatebirds +magnifico,magnificoes +magnifier,magnifiers +magnifying glass,magnifying glasses +magnino,magninos +magnolia,magnolias +magnolia warbler,magnolia warblers +magnolid,magnolids +magnoliid,magnoliids +magnoliopsid,magnoliopsids +magnolite,magnolites +magnon,magnons +magnotherapy,magnotherapies +Magnox,Magnoxes +magnum,magnums,magna +magnum opus,magna opera,magnum opuses,magnum opi +magot,magots +magpie-goose,magpie-geese +magpie-lark,magpie-larks +magpie,magpies +Magpie,Magpies +magret,magrets +magsman,magsmen +magstripe,magstripes +maguari,maguaris +maguari stork,maguari storks +maguey,magueys +magus,magi +mag wheel,mag wheels +Magyar,Magyars +mahaila,mahailas +mahal,mahals +mahant,mahants +maharajadhiraja,maharajadhirajas +maharajah,maharajahs +maharaja,maharajas +maharana,maharanas +maharanee,maharanees +maharani,maharanis +Maharashtrian,Maharashtrians +maharishi,maharishis +mahasattva,mahasattvas +mahatma,mahatmas +Mahdavia,Mahdavias +Mahdavi,Mahdavis +Mahdavism,Mahdavisms +mahfil,mahfils +Mahican,Mahicans +mahlstick,mahlsticks +mahmudi,mahmudis +mahoe,mahoes +mahogany gaspipe,mahogany gaspipes +Mahomedan,Mahomedans +Mahometan,Mahometans +Mahometist,Mahometists +Mahommedan,Mahommedans +Mahommetan,Mahommetans +mahone,mahones +mahonia,mahonias +Mahori,Mahoris,Mahori +Mahound,Mahounds +mahout,mahouts +Mahratta,Mahrattas +mahseer,mahseers +mahua tree,mahua trees +Mahumetan,Mahumetans +mahurat,mahurats +mahwa tree,mahwa trees +mahzor,mahzors,mahzorim +maiasaur,maiasaurs +maidan,maidans +maidan,Maidans,maidans +maid cafΓ©,maid cafΓ©s +maid child,maid children +maid-child,maid-children +maidchild,maidchildren +maide,maides +maiden flight,maiden flights +maidenhair fern,maidenhair ferns +maidenhair,maidenhairs +maidenhair tree,maidenhair trees +maiden,maidens +Maiden,Maidens +maiden name,maiden names +maiden of honor,maidens of honor +maiden over,maiden overs +maiden voyage,maiden voyages +maidkin,maidkins +maid,maids +maidmarian,maidmarians +maid of honor,maids of honor +maid of honour,maids of honour +maid-servant,maid-servants +maidservant,maidservants +maigre,maigres +maiko,maikos,maiko +maikong,maikongs +mailbag,mailbags +mailboat,mailboats +mail bomb,mail bombs +mailbomb,mailbombs +mail-box,mail-boxes +mailbox,mailboxes +mail carrier,mail carriers +mailcart,mailcarts +maildrop,maildrops +maile,mailes +mailer,mailers +mailfile,mailfiles +mail fraud,mail frauds +mailing list,mailing lists +mailing,mailings +Maillard reaction,Maillard reactions +maillechort,maillechorts +maillot,maillots +mail,mails +mail,mails +mailman,mailmen +mail merge,mail merges +mailmerge,mailmerges +mailo,mailos +mail-order bride,mail-order brides +mailout,mailouts +mailpack,mailpacks +mailperson,mailpersons,mailpeople +mailpiece,mailpieces +mail relay,mail relays +mailroom,mailrooms +mailshot,mailshots +mail slot,mail slots +mailslot,mailslots +mail stop,mail stops +mailstore,mailstores +mail train,mail trains +mail truck,mail trucks +mailwoman,mailwomen +maimer,maimers +main battle tank,main battle tanks +mainboard,mainboards +mainbrace,mainbraces +main building,main buildings +main clause,main clauses +main course,main courses +maincrop,maincrops +main diagonal,main diagonals +main drag,main drags +maindrag,maindrags +Maine Coon,Maine Coons +Maine law,Maine laws +mainer,mainers +Mainer,Mainers +mainframe,mainframes +mainframer,mainframers +main group element,main group elements +main house,main houses +mainland Chinese,mainland Chinese +mainlander,mainlanders +mainland,mainlands +main line,main lines +mainliner,mainliners +main,mains +main,mains +main man,main men +main-mast,main-masts +mainmast,mainmasts +mainor,mainors +mainour,mainours +mainpernor,mainpernors +mainpin,mainpins +mainplane,mainplanes +mainprise,mainprises +main road,main roads +mainsail,mainsails +main sheet,main sheets +mainsheet,mainsheets +mainshock,mainshocks +mainspan,mainspans +mainspring,mainsprings +main stage,main stages +mainstage,mainstages +mainstay,mainstays +mainstreamer,mainstreamers +mainstreet,mainstreets +maintainability,maintainabilities +maintainer,maintainers +maintainor,maintainors +maintenance,maintenances +maintenance window,maintenance windows +maintenaunce,maintenaunces +maintop,maintops +maintopman,maintopmans +maintopmast,maintopmasts +main-truck,main-trucks +main verb,main verbs +mainyard,mainyards +maison de passe,maisons de passe +maison de tolΓ©rance,maisons de tolΓ©rance +maisonette,maisonettes +maistre,maistres +maistress,maistresses +mai tai,mai tais +maΓtre d',maΓtre d's +maizaniid,maizaniids +maizefield,maizefields +maize weevil,maize weevils +majestie,majesties +majesty,majesties +majid,majids +Majorana particle,Majorana particles +majorant,majorants +majorate,majorates +majorat,majorats +major axis,major axes +major chord,major chords +major diameter,major diameters +major-domo,major-domos +majordomo,majordomos +major element,major elements +majorette,majorettes +major general,major generals +major-general,major-generals +major interval,major intervals +majoritarian democracy,majoritarian democracies +majorite,majorites +majority decision,majority decisions +majority draw,majority draws +majority,majorities +majority owner,majority owners +majority rule,majority rules +majorization,majorizations +majorizer,majorizers +major key,major keys +major league,major leagues +major-leaguer,major-leaguers +major,majors +major,majors +Major Mitchell,Major Mitchells +Major Mitchell's cockatoo,Major Mitchell's cockatoos +major ninth,major ninths +majoron,majorons +major party,major parties +major planet,major planets +major premise,major premises +major prophet,major prophets +major second,major seconds +major seventh chord,major seventh chords +major seventh,major sevenths +majorship,majorships +major sixth,major sixths +major suit,major suits +major third,major thirds +major triad,major triads +majour,majours +majuscule,majuscules +makar,makars +makatea,makateas +makebate,makebates +make-do,make-dos +makedom,makedoms +make file,make files +makefile,makefiles +makegame,makegames +makegood,makegoods +make-hawk,make-hawks +make-king,make-kings +makeline,makelines +make,makes +make,makes +make,makes +Makem,Makems +make-out,make-outs +make-over,make-overs +makeover,makeovers +makepeace,makepeaces +make-ready,make-readies +makeready,makereadies +makeress,makeresses +maker,makers +maker-outer,maker-outers +maker-upper,maker-uppers +makeshift,makeshifts +makespan,makespans +make-sport,make-sports +makestrife,makestrifes +makeunder,makeunders +make-up artist,make-up artists +makeup artist,makeup artists +makeweight,makeweights +makhaira,makhairas +makhana,makhanas +maki,maki +maki,makis +makimono,makimono +making-iron,making-irons +making,makings +makiwara,makiwaras +mako,makos +makoro,makoros +mako shark,mako sharks +Maksutov telescope,Maksutov telescopes +makunouchi,makunouchis +Malabar chestnut,Malabar chestnuts +Malabar flying frog,Malabar flying frogs +Malabarian,Malabarians +malacanthid,malacanthids +malacatune,malacatunes +Malaccan,Malaccans +malachiid,malachiids +malachite,malachites +malacia,malacias +malacoderm,malacoderms +malacologist,malacologists +malaconotid,malaconotids +malacopterygian,malacopterygians +malacostracan,malacostracans +malacozoologist,malacozoologists +maladjustment,maladjustments +maladministration,maladministrations +maladroit,maladroits +malady,maladies +malagan,malagans +Malagan,Malagans +Malagash,Malagashes +Malagasy,Malagasy,Malagasies +malagueta,malaguetas +Malaitan,Malaitans +mala,malae +mala,malas,mala +malamute,malamutes +malandro,malandros +malanga,malangas +malangan,malangans +malanggan,malanggans +malapert,malaperts +malaphor,malaphors +malapropism,malapropisms +malaprop,malaprops +malapterurid,malapterurids +malar bone,malar bones +malaria mosquito,malaria mosquitos +malariologist,malariologists +malar,malars +malate,malates +Malawian,Malawians +malaxation,malaxations +malaxator,malaxators +Malayalee,Malayalees +Malayali,Malayalis +Malayan,Malayans +Malay apple,Malay apples +Malayisation,Malayisations +Malayization,Malayizations +Malay,Malays +Malaysian,Malaysians +malbec,malbecs +malbrouck,malbroucks +malconformation,malconformations +malcontent,malcontents +maldevelopment,maldevelopments +maldistribution,maldistributions +Maldivian,Maldivians +maleadministration,maleadministrations +Malean,Maleans +maleate,maleates +male chauvinist,male chauvinists +maleconformation,maleconformations +maledicta balloon,maledicta balloons +malediction,maledictions +maledight,maledights +malefaction,malefactions +malefactor,malefactors +malefactour,malefactours +malefactress,malefactresses +malefeasance,malefeasances +male fern,male ferns +malefice,malefices +maleformation,maleformations +male genital mutilation,male genital mutilations +maleimide,maleimides +maleimidyl,maleimidyls +male,males +male member,male members +malemute,malemutes +maleo,maleos +malepractice,malepractices +malesub,malesubs +malfeasance,malfeasances +malfeasant,malfeasants +malfeasor,malfeasors +malfeature,malfeatures +malformation,malformations +malformity,malformities +malfunction,malfunctions +malfunction routine,malfunction routines +malglico,malglico +malhamensilipin,malhamensilipins +Malian,Malians +malibu,malibus +malignance,malignances +malignancy,malignancies +maligner,maligners +malignin,malignins +malihini,malihinis +malimbe,malimbes +malingerer,malingerers +malingeror,malingerors +malinois,malinoises +malinvestment,malinvestments +malison,malisons +malist,malists +malkarid,malkarids +malkin,malkins +malkoha,malkohas +malky,malkies +mallam,mallams +mallard,mallards +malleation,malleations +mallee bird,mallee birds +mallee fowl,mallee fowls,mallee fowl +mallee,mallees +malleid,malleids +malle,malles +mallemuck,mallemucks +Mallen streak,Mallen streaks +malleolus,malleoli +malletiid,malletiids +mallet,mallets +Mallet,Mallets +malleus,mallei +mallgoth,mallgoths +mall,malls +mall ninja,mall ninjas +malloc,mallocs +mallomar,mallomars +mallophagan,mallophagans +Mallorcan,Mallorcans +Mallorquin,Mallorquins +mallow,mallows +mallowwort,mallowworts +mall rat,mall rats +mallrat,mallrats +mallu,mallus +malmag,malmags +mal,mals +mal,mals +malmignatte,malmignattes +malmsey,malmseys +malobservation,malobservations +maloca,malocas +malocclusion,malocclusions +malodor,malodors +malodour,malodours +malodours,malodourss +maloik,maloiks +malonate,malonates +malonyl,malonyls +maloperation,maloperations +malpais,malpaises +malpaΓ­s,malpaΓ­ses +malparkage,malparkages +mal-parry,mal-parries +malparry,malparries +malphemism,malphemisms +malpighia,malpighias +Malpighian corpuscle,Malpighian corpuscles +malpighian tubule,malpighian tubules +malposition,malpositions +malpractitioner,malpractitioners +malted,malteds +malted milk,malted milks +maltene,maltenes +malter,malters +malternative,malternatives +maltery,malteries +Maltese cat,Maltese cats +Maltese cross,Maltese crosses +Maltese,Maltese +Maltesian cross,Maltesian crosses +malt floor,malt floors +maltha,malthas +maltheist,maltheists +malthouse,malthouses +Malthusianism,Malthusianisms +malting,maltings +maltitude,maltitudes +malt,malts +maltman,maltmen +maltodextrin,maltodextrins +maltoheptaose,maltoheptaoses +maltohexaose,maltohexaoses +maltolate,maltolates +maltooligosaccharide,maltooligosaccharides +maltopentaose,maltopentaoses +maltopyranoside,maltopyranosides +maltoside,maltosides +maltotetraose,maltotetraoses +maltotriose,maltotrioses +malt shop,malt shops +maltster,maltsters +malt whiskey,malt whiskeys +maltworm,maltworms +Malukan,Malukans +malum in se,mala in se +malum,malums +malum prohibitum,mala prohibita +malurid,malurids +malus,maluses +malvalate,malvalates +malva pudding,malva puddings +malvasia,malvasias +malversation,malversations +malvid,malvids +Malvinian,Malvinians +malvoisie,malvoisies +mama bear,mama bears +mama grizzly,mama grizzlies +mamaluke,mamalukes +Mamaluke,Mamalukes +ma ma,ma mas +mama,mamas +mamarazzi,mamarazzi +ma,mas +ma,mas +mama-san,mama-sans +mama's boy,mama's boys +mamateek,mamateeks +mamavirus,mamaviruses +mamaw,mamaws +mamba,mambas +Mambila,Mambilas,Mambila +mambo,mambos +mamelon,mamelons +mameluco,mamelucos +mameluke,mamelukes +Mameluke,Mamelukes +mameluk,mameluks +mamenchisaurid,mamenchisaurids +mamenchisaur,mamenchisaurs +Mamertine,Mamertines +mamey,mameys,mameyes +mamilla,mamillae +MAMIL,MAMILs +mamluke,mamlukes +mamluk,mamluks +Mamluk,Mamluks +mamma bear,mamma bears +mammaliaform,mammaliaforms +mammalian,mammalians +mammal-like reptile,mammal-like reptiles +mammal,mammals +mammalogist,mammalogists +mammaloid,mammaloids +mammaluke,mammalukes +mamma,mammae,mammas +mamma,mammas +mam,mams +mammaplasty,mammaplasties +mammary gland,mammary glands +mammary,mammaries +mammasan,mammasans +Mammatus cloud,Mammatus clouds +mammaw,mammaws +mammectomy,mammectomies +mammee apple,mammee apples +mammee,mammees +mammet,mammets +mammifer,mammifers +mammilla,mammillae +mammillaria,mammillarias +mammillary body,mammillary bodies +mammillary,mammillaries +mammitis,mammitides +mammock,mammocks +mammogram,mammograms +mammogramme,mammogrammes +mammograph,mammographs +mammography,mammographies +mammologist,mammologists +Mammonist,Mammonists +Mammonite,Mammonites +mammoplasty,mammoplasties +mammosity,mammosities +mammosphere,mammospheres +mammoth,mammoths +mammothrept,mammothrepts +mammotomy,mammotomies +mammotroph,mammotrophs +mammutid,mammutids +mammy,mammies +mammy market,mammy markets +mamogram,mamograms +mamo,mamos +mamoncillo,mamoncillos +mamoty,mamoties +mampalon,mampalons +mampara,mamparas +M&M,M&M's +mampoer,mampoer +mamsie,mamsies +mamsy,mamsies +mamudi,mamudis,mamudi +mamuque,mamuques +mamzer,mamzers +man about town,men about town +man-about-town,men-about-town +manace,manaces +manacle,manacles +manageability,manageabilities +managed house,managed houses +managee,managees +management summary,management summaries +manageress,manageresses +managerialism,managerialisms +manager,managers +managership,managerships +managing director,managing directors +manakin,manakins +mananosay,mananosays +mana point,mana points +manarchist,manarchists +man-at-arms,men-at-arms +manatee,manatees,manatee +manat,manats,manat +man bag,man bags +man-bag,man-bags +manbag,manbags +man boob,man boobs +man-boob,man-boobs +manboob,manboobs +manbote,manbotes,manboten +mancala,mancalas +manca,mancas +man catcher,man catchers +mancatcher,mancatchers +mancation,mancations +man cave,man caves +mancession,mancessions +manche,manches +mancheron,mancherons +Manchester tart,Manchester tarts +manchette,manchettes +man-child,man-children +man child,man children,men children +manchild,manchildren,menchildren +manchineel,manchineels +Manchu,Manchus +Manchurian candidate,Manchurian candidates +Manchurian,Manchurians +mancipation,mancipations +mancipee,mancipees +manciple,manciples +Manc,Mancs +man crush,man crushes +mancude-ring system,mancude-ring systems +Mancunian,Mancunians +mancus,mancuses +Mandaean,Mandaeans +Mandaite,Mandaites +mandala,mandalas +maṇḍala,maṇḍalas +mandamus,mandamuses +mandapa,mandapas +mandap,mandaps +mandarah,mandarahs +mandarinate,mandarinates +mandarin collar,mandarin collars +mandarin duck,mandarin ducks +mandarine,mandarines +mandarin fish,mandarin fishes,mandarin fish +mandarin,mandarins +mandarin,mandarins +mandarin orange,mandarin oranges +mandatary,mandataries +man date,man dates +mandate,mandates +Mandate of Heaven,Mandates of Heaven +mandator,mandators +mandatory,mandatories +mandatory sentence,mandatory sentences +man day,man days +man-day,man-days +Mandean,Mandeans +mandelate,mandelates +mandelbug,mandelbugs +mandelbulb,mandelbulbs +mandella,mandellas +mandelstein,mandelsteins +mandement,mandements +mandement van spolie,mandementen van spolie +manderil,manderils +mandible,mandibles +mandibula,mandibulae +mandibulate,mandibulates +mandibulectomy,mandibulectomies +mandibulotomy,mandibulotomies +mandilion,mandilions +mandil,mandils +Mandingo,Mandingos,Mandingoes +Mandinka,Mandinkas +mandir,mandirs +mandlestone,mandlestones +mand,mands +mandment,mandments +mandocello,mandocellos +mandola,mandolas +mandolin-banjo,mandolin-banjos +mandoline,mandolines +mandolinist,mandolinists +mandolin,mandolins +mandore,mandores +mandor,mandors +mandragorite,mandragorites +mandrake,mandrakes +mandrel,mandrels +mandrill,mandrills +mandril,mandrils +mandrin,mandrins +mandritta,mandrittas +manducation,manducations +mandylion,mandylions +maneaba,maneabas +man-eater,man-eaters +maneater,maneaters +maned wolf,maned wolves +maneen,maneens +maneh,manehs +mane,manes +Manet,Manets +maneuverer,maneuverers +maneuvering,maneuverings +maneuver,maneuvers +maneuvre,maneuvres +maneuvring,maneuvrings +manface,manfaces +man Friday,men Friday +manfriend,manfriends,menfriends +manfulness,manfulnesses +mangabey,mangabeys +Mangaian,Mangaians +mangaka,mangaka +mangal,mangals +Mangalorean,Mangaloreans +manganapatite,manganapatites +manganate,manganates +manganesate,manganesates +manganese nodule,manganese nodules +manganite,manganites +manganocene,manganocenes +manganocolumbite,manganocolumbites +mangar,mangars +mangeao,mangeaos +mangel beet,mangel beets +mangelin,mangelins +mangel,mangels +mangel-wurzel,mangel-wurzels +mangelwurzel,mangelwurzels +mangenue,mangenues +manger,mangers +mangery,mangeries +mange-tout,mange-touts +mangetout,mangetouts +manghir,manghirs +mangia cake,mangia cakes +mangina,manginas +mangle,mangles +mangler,manglers +mangling,manglings +mango juice,mango juices +mangold,mangolds +mangoldwurzel,mangoldwurzels +Mango,Mangoes +mango,mangoes,mangos +mangonel,mangonels +mangonist,mangonists +mangostan,mangostans +mangosteen,mangosteens +mangrove,mangroves +mangue,mangues +manhaden,manhadens +manhater,manhaters +Manhattan clam chowder,Manhattan clam chowders +Manhattan distance,Manhattan distances +Manhattanhenge,Manhattanhenges +Manhattanite,Manhattanites +manhattan,manhattans +Manhattan,Manhattans +manhole,manholes +man ho,man hos +man-hour,man-hours +manhua,manhuas +manhunter,manhunters +manhunt,manhunts +manhwa,manhwas +maniack,maniacks +maniac,maniacs +mania,manias +maniaphobe,maniaphobes +Manichaean,Manichaeans +ManichΓ¦an,ManichΓ¦ans +Manichaeist,Manichaeists +Manichean,Manicheans +Manichee,Manichees +Manicheist,Manicheists +manichord,manichords +manicou,manicous +manicule,manicules +manicure,manicures +manicurist,manicurists +manid,manids +manifestation,manifestations +manifest,manifests +manifesto,manifestos,manifestoes,manifesti +-manifold,-manifolds +manifold,manifolds +manikin,manikins +ManileΓ±o,ManileΓ±os +manilio,manilios +manilla,manillas +manille,manilles +manimal,manimals +mani,manis +maninose,maninoses +man-in-the-middle,men-in-the-middle +man in the street,men in the street +Maniot,Maniots +mani-pedi,mani-pedis +maniped,manipeds +maniple,maniples +manip,manips +manipulandum,manipulanda +manipulated variable,manipulated variables +manipulatee,manipulatees +manipulation,manipulations +manipulative,manipulatives +manipulator,manipulators +manipulee,manipulees +maniraptoran,maniraptorans +maniraptoriform,maniraptoriforms +manist,manists +manita,manitas +Manitoba maple,Manitoba maples +Manitoban,Manitobans +manito,manitos +manitou,manitous +manitu,manitus +maniverse,maniverses +maniverter,maniverters +manjack,manjacks +manjee,manjees +manji,manjis +manjo,manjos +Mankad,Mankads +man-killer,man-killers +mankini,mankinis +mankin,mankins +manling,manlings +manlock,manlocks +man magnet,man magnets +MAN,MANs +man,men +man-midwife,man-midwives +man-month,man-months +Mannaean,Mannaeans +mannagrass,mannagrasses +manna gum,manna gums +mannanase,mannanases +mannan,mannans +mannequin,mannequins +mannerism,mannerisms +mannerism,mannerisms +mannerist,mannerists +Mannerist,Mannerists +manner,manners +manner of articulation,manners of articulation +mannie,mannies +mannikin,mannikins +mannitate,mannitates +Mannlicher stock,Mannlicher stocks +mannobiose,mannobioses +mannohexaose,mannohexaoses +mannonate,mannonates +mannopentaose,mannopentaoses +mannopeptimycin,mannopeptimycins +mannoprotein,mannoproteins +mannopyranose,mannopyranoses +mannopyranoside,mannopyranosides +mannopyranosyl,mannopyranosyls +mannosan,mannosans +mannosidase,mannosidases +mannosylation,mannosylations +mannosylglycoprotein,mannosylglycoproteins +mannosyl,mannosyls +mannosyltransferase,mannosyltransferases +mannotetraose,mannotetraoses +mannotriose,mannotrioses +manny,mannies +manoao,manoaos +manoeuver,manoeuvers +manΕ“uver,manΕ“uvers +manoeuvre,manoeuvres +manΕ“uvre,manΕ“uvres +manoeuvrer,manoeuvrers +manoeuvring,manoeuvrings +man of few words,men of few words +man of God,men of God +man of letters,men of letters +man of means,men of means +man of one's word,men of one's word +man of parts,men of parts +man of size,men of size +man of straw,men of straw +man of the cloth,men of the cloth +man of the hour,men of the hour +Man of the Match,Men of the Match +man of the people,men of the people +man of the world,men of the world +man of war,men of war +man-of-war,men-of-war +manoir,manoirs +manoletina,manoletinas +mano,manos +manometer,manometers +manometre,manometres +man on the street,men on the street +man orchid,man orchids +manor house,manor houses +manorial court,manorial courts +manorial roll,manorial rolls +manor,manors +manorway,manorways +manoscope,manoscopes +manour,manours +man-o-war,men-o-war +man page,man pages +manpage,manpages +manpanzee,manpanzees +manpurse,manpurses +man-pussy,man-pussies +manqueller,manquellers +manroot,manroots +manrope,manropes +mansard,mansards +mansard roof,mansard roofs +manscape,manscapes +manse,manses +manservant,menservants +Mansi,Mansis +mansionette,mansionettes +mansion,mansions +mansioun,mansiouns +manslaughterer,manslaughterers +manslaughter,manslaughters +manslaught,manslaughts +manslayer,manslayers +manslot,manslots +manslut,mansluts +man's man,men's men +Mansonite,Mansonites +mansplainer,mansplainers +man-stealer,man-stealers +manstealer,manstealers +manstress,manstresses +manta,mantas +manta ray,manta rays +Mantchoo,Mantchoos +manteau,manteaus,manteaux +mantegar,mantegars +mantelboard,mantelboards +mantelet,mantelets +mantelletta,mantellettas +mantellid,mantellids +mantel,mantels +mantelpiece,mantelpieces +mantelshelf,mantelshelves +manteltree,manteltrees +manther,manthers +manticore,manticores +mantid,mantids +man-tiger,man-tigers +mantilla,mantillas +manti,manti +mantinada,mantinades +Mantinean,Mantineans +mantis crab,mantis crabs +mantis,mantises,mantes +mantispid,mantispids +mantissa,mantissae +mantis shrimp,mantis shrimps +man tit,man tits +mantit,mantits +mantled guereza,mantled guerezas +mantle,mantles +mantlepiece,mantlepieces +mantle plume,mantle plumes +mantlet,mantlets +mantle-tree,mantle-trees +mantletree,mantletrees +mantling,mantlings +mantologist,mantologists +man-to-man defense,man-to-man defenses +Mantoux test,Mantoux tests +mantra,mantras +mantrap,mantraps +mantuamaker,mantuamakers +mantua,mantuas +Mantuan,Mantuans +mantuary,mantuaries +manual alphabet,manual alphabets +manualette,manualettes +manualist,manualists +manual laborer,manual laborers +manuall,manualls +manual,manuals +manual transmission,manual transmissions +manuary,manuaries +manubrium,manubria,manubriums +manucaptor,manucaptors +manucode,manucodes +manucodiata,manucodiatas +manuduction,manuductions +manuductor,manuductors +manufactory,manufactories +manufactroversy,manufactroversies +manufacturage,manufacturages +manufacture,manufactures +manufacturer,manufacturers +manufacturer's rep,manufacturer's reps +manufacturers rep,manufacturers reps +manufacturer's representative,manufacturer's representatives +manufacturers representative,manufacturers representatives +manufacturess,manufacturesses +manufactury,manufacturies +manul,manuls +manumation,manumations +manumission,manumissions +manumitter,manumitters +manumittor,manumittors +manumotor,manumotors +manuport,manuports +manurer,manurers +manure spreader,manure spreaders +manuscript,manuscripts +manus,manus +manutention,manutentions +manuterge,manuterges +manway,manways +man-whore,man-whores +manwhore,manwhores +Manwich,Manwiches +man-witch,man-witches +manwoman,manwomen +Manx cat,Manx cats +Manxman,Manxmen +Manx,Manxes +Manx shearwater,Manx shearwaters +manyatta,manyattas +man-year,man-years +many,manies +man'yōgana,man'yōgana +many-sorted logic,many-sorted logics +manzamine,manzamines +manzanilla,manzanillas +manzanita,manzanitas +manzello,manzellos +manzilian,manzilians +manzil,manzils +Manzonian,Manzonians +Maohi,Maohis +Maoist,Maoists +Mao jacket,Mao jackets +maomao,maomao +Maorilander,Maorilanders +Mao suit,Mao suits +Maouri,Maouri +mapantsula,mapantsulas +mapau,mapaus +mapepire,mapepires +maphack,maphacks +mapinguari,mapinguaris +map key,map keys +maple leaf,maple leaves +maple-leaf,maple-leaves +maple,maples +maple syrup,maple syrups +maplet,maplets +maplet,maplets +mapmaker,mapmakers +map,maps +map of Tasmania,maps of Tasmania +mappemonde,mappemondes +mapper,mappers +Mappila,Mappilas +mapping class group,mapping class groups +mapping,mappings +mappist,mappists +Mapuche,Mapuche +maqaf,maqafs +maqam,maqams,maqamat +maquette,maquettes +maquiladora,maquiladoras +maquila,maquilas +maquisard,maquisards +marabou,marabous +marabout,marabouts +marabunta,marabuntas +maraca,maracas +maracock,maracocks +maracuja,maracujas +marae,maraes +mara,maras +mara,maras +mara,maras +Mara,Maras +maramie,maramies +marasca,marascas +maraschino cherry,maraschino cherries +maraschino,maraschinos +marasquino,marasquinos +Maratha,Marathas +marathoner,marathoners +marathonitid,marathonitids +marathon,marathons +marattialean,marattialeans +marauder,marauders +maravedi,maravedis +marble cake,marble cakes +marble cheese,marble cheeses +marbled cat,marbled cats +marbled polecat,marbled polecats +marbled white,marbled whites +marblefish,marblefishes +marble,marbles +marble orchard,marble orchards +marbler,marblers +marburgvirus,marburgviruses +marcassin,marcassins +marcel,marcels +marchand de vin sauce,marchand de vin sauces +marchantiid,marchantiids +marcher,marchers +marcher,marchers +marchet,marchets +march fly,march flies +March fly,March flies +March hare,March hares +marching band,marching bands +marching,marchings +marchioness,marchionesses +marchland,marchlands +marchman,marchmen +march,marches +march,marches +march,marches +march-past,march-pasts +march-ward,march-wards +Marcionite,Marcionites +marc,marcs +marconigram,marconigrams +Marconi rig,Marconi rigs +Marcosian,Marcosians +marcot,marcots +Marcus Bains line,Marcus Bains lines +Marcus Gunn phenomenon,Marcus Gunn phenomena +mardana,mardanas +mardle,mardles +mareblob,mareblobs +marΓ©chal,marΓ©chals +Marechal's test,Marechal's tests +marΓ©chaussΓ©e,marΓ©chaussΓ©es +mare,mares +mare,mares +mare,maria +marena,marenas +mareogram,mareograms +mareograph,mareographs +mareschal,mareschals +maresin,maresins +mare's nest,mare's nests +mare's-nest,mare's-nests +mare's-tail,mare's-tails,mares'-tails +Mareva injunction,Mareva injunctions +Marfan syndrome,Marfan syndromes +marga,margas +margarate,margarates +margarita,margaritas +margaritiferid,margaritiferids +margarodid,margarodids +margarodite,margarodites +Margate fish,Margate fishes +margate,margates +margay,margays +marge,marges +margent,margents +marginal benefit,marginal benefits +marginal cost,marginal costs +marginal distribution,marginal distributions +marginal farmer,marginal farmers +marginalisation,marginalizations +marginalism,marginalisms +marginalist,marginalists +marginalization,marginalizations +marginal,marginals +marginal sea,marginal seas +marginal utility,marginal utilities +margination,marginations +margin call,margin calls +marginellid,marginellids +margin,margins +margin of error,margins of error +margo,margines +margosa,margosas +margravate,margravates +margrave,margraves +margraviate,margraviates +margravine,margravines +marguerite,marguerites +mariachi,mariachis +Marian,Marians +Mariavite,Mariavites +mari complaisant,maris complaisants +maricon,maricons,maricones +Maricopa,Maricopas,Maricopa +Marie Antoinette,Marie Antoinettes +Marie Jeanne,Marie Jeannes +Marielito,Marielitos +mariengrosche,mariengroschen +mariet,mariets +marigold,marigolds +marigold window,marigold windows +marigot,marigots +marigram,marigrams +marigraph,marigraphs +marikina,marikinas +Marilyn,Marilyns +Marilyn Monroe,Marilyn Monroes +marimba,marimbas +marimbist,marimbists +marimonda,marimondas +marinade,marinades +marina,marinas +marinara,marinaras +marination,marinations +marine biologist,marine biologists +marine corps,marine corps +marine engine,marine engines +marine infantry,marine infantries +marine,marines +mariner,mariners +Mariner,Mariners +mariner's compass,mariner's compasses +marinescape,marinescapes +marine stinger,marine stingers +marine toad,marine toads +Marinid,Marinids +marinorama,marinoramas +Mario Andretti,Mario Andrettis +Mariolater,Mariolaters +Mariologist,Mariologists +marionberry,marionberries +marionette,marionettes +marionettist,marionettists +mariposa lily,mariposa lilies +mariput,mariputs +marish,marishes +Marist,Marists +marital aid,marital aids +mariticide,mariticides +maritime loan,maritime loans +maritime pine,maritime pines +maritime republic,maritime republics +Maritimer,Maritimers +marjoram,marjorams +Markarian galaxy,Markarian galaxies +Markarian,Markarians +markdown,markdowns +markee,markees +marke,markes +marker bed,marker beds +markerboard,markerboards +marker gene,marker genes +marker interface,marker interfaces +marker interface pattern,marker interface patterns +marker,markers +marker pen,marker pens +market basket,market baskets +market bell,market bells +market bubble,market bubbles +market capitalization,market capitalizations +market economy,market economies +marketeer,marketeers +marketer,marketers +market garden,market gardens +market-garden,market-gardens +market-house,market-houses +marketisation,marketisations +marketist,marketists +marketization,marketizations +marketizer,marketizers +market maker,market makers +market,markets +market opening,market openings +market order,market orders +market place,market places +marketplace,marketplaces +market price,market prices +marketroid,marketroids +marketspace,marketspaces +market square,market squares +marketstead,marketsteads +market value,market values +markhoor,markhoors +markhor,markhors +markka,markkas,markkaa +markland,marklands +markman,markmen +mark,marks +mark,marks +mark of Cain,marks of Cain +Markov chain,Markov chains +Markov jump process,Markov jump processes +Markov process,Markov processes +marksman,marksmen +marksperson,markspersons,markspeople +markswoman,markswomen +mark to market,mark to markets +mark-to-market,mark-to-markets +markup language,markup languages +mark-up,mark-ups +markup,markups +markup rate,markup rates +mark-white,mark-whites +marla,marlas +Marlburian,Marlburians +marler,marlers +marline,marlines +marline spike,marline spikes +marlinespike,marlinespikes +marling spike,marling spikes +marlingspike,marlingspikes +marlin,marlin,marlins +marlin spike,marlin spikes +marlinspike,marlinspikes +Marlovian,Marlovians +marlpit,marlpits +marmalade dropper,marmalade droppers +marmalade,marmalades +marmalade tree,marmalade trees +marmalet,marmalets +marma,marmas +mar,mars +Mar,Mars +MAR,MARs +marmatite,marmatites +marmennill,marmennills +marmite,marmites +Marmite,Marmites +marmiton,marmitons +marm,marms +marmolite,marmolites +marmoration,marmorations +marmorization,marmorizations +marmose,marmoses +marmoset,marmosets +marmot,marmots +marmozet,marmozets +MarΓ³czy bind,MarΓ³czy binds +Maronite Christian,Maronite Christians +Maronite,Maronites +marooner,marooners +marooning party,marooning parties +maroon,maroons +maroon,maroons +maroon,maroons +maroon,maroons +maroquin,maroquins +MARPAT,MARPATs +marplot,marplots +marquee,marquees +marque,marques +Marquesan,Marquesans +marquessate,marquessates +marquess,marquesses +marquisate,marquisates +marquisdom,marquisdoms +marquise,marquises +marquisette,marquisettes +marquis,marquises,marquis +marra,marras +marram,marrams +Marranist,Marranists +Marrano,Marranos +marrer,marrers +marriageable,marriageables +marriage agency,marriage agencies +marriage bed,marriage beds +marriage certificate,marriage certificates +marriage counsellor,marriage counsellors +marriage,marriages +marriage of convenience,marriages of convenience +married couple,married couples +married,marrieds +marrier,marriers +marron glacΓ©,marrons glacΓ©s +marron,marrons +marron,marrons +marroon,marroons +marrot,marrots +marrowbone,marrowbones +marrowfat,marrowfats +marrow,marrows +marrow,marrows +marrowsky,marrowskies +marrubium,marrubiums +marry-in,marry-ins +Marsala,Marsalas +Mars bar party,Mars bar parties +marsdenia,marsdenias +Marseillais,Marseillais +marse,marses +marshaler,marshalers +marshaller,marshallers +Marshallese,Marshallese +marshalling,marshallings +Marshall Islander,Marshall Islanders +marshall,marshalls +marshal,marshals +marshalsea,marshalseas +marshalship,marshalships +marsh buck,marsh bucks +marshbuck,marshbucks +marsh deer,marsh deer +marsh fritillary,marsh fritillaries +marsh harrier,marsh harriers +marsh horsetail,marsh horsetails +marshmallow,marshmallows +marsh marigold,marsh marigolds +marsh,marshes +marshrutka,marshrutkas +marsh thistle,marsh thistles +marsh tit,marsh tits +marsh warbler,marsh warblers +marshwort,marshworts +marsilea,marsileas +marsipobranch,marsipobranchs +marsquake,marsquakes +Marsquake,Marsquakes +Mars Rover,Mars Rovers +marsupial bone,marsupial bones +marsupial frog,marsupial frogs +marsupialian,marsupialians +marsupial lion,marsupial lions +marsupial,marsupials +marsupian,marsupians +marsupiate,marsupiates +marsupite,marsupites +marsupium,marsupia +martagon,martagons +martel de fer,martels de fer +marteline,martelines +martello,martellos +Martello,Martellos +Martello tower,Martello towers +martel,martels +marten,martens +marten,martens +martensite,martensites +martern,marterns +martext,martexts +martial artist,martial artists +martial art,martial arts +martialist,martialists +martiality,martialities +Martian blueberry,Martian blueberries +Martian,Martians +Martian spherule,Martian spherules +martineta,martinetas +martinet,martinets +martinet,martinets +martingale,martingales +martingal,martingals +Martinican,Martinicans +martini,martinis +Martini,Martinis +Martini,Martinis +Martiniquan,Martiniquans +Martinist,Martinists +martin,martins +martin,martins +Martinmas,Martinmases +Martinmas summer,Martinmas summers +martite,martites +martlet,martlets +mart,marts +mart,marts +martyrdom,martyrdoms +martyrdom video,martyrdom videos +martyress,martyresses +martyrion,martyria +martyrium,martyriums,martyria +martyrization,martyrizations +martyrizer,martyrizers +martyr,martyrs +martyrologe,martyrologes +martyrologie,martyrologies +martyrologist,martyrologists +martyrologue,martyrologues +martyrology,martyrologies +martyry,martyries +Marty Stu,Marty Stus +marula,marulas +marveler,marvelers +marveller,marvellers +marvel,marvels +marver,marvers +MARV,MARVs +Marwari,Marwaris,Marwari +marxism,marxisms +Marxist,Marxists +Mary Bell order,Mary Bell orders +Mary-bud,Mary-buds +Mary Jane,Mary Janes +Maryknoller,Maryknollers +Maryland bridge,Maryland bridges +Marylander,Marylanders +mary,marys +Marysole,Marysoles +Mary Sue,Mary Sues +marzipan layer,marzipan layers +marzipan,marzipans +masala chai,masala chais +masala,masalas +masarid,masarids +Mascarene,Mascarenes +mascle,mascles +mascon,mascons +mascot,mascots +mascotte,mascottes +masculine,masculines +masculine rhyme,masculine rhymes +masculinist,masculinists +masculinization,masculinizations +masculism,masculisms +masculist,masculists +masdar,masdars +masdevallia,masdevallias +maselyn,maselyn +maser,masers +maser,masers +masheen,masheens +masher,mashers +masher,mashers +mash-fat,mash-fats +mashgiach,mashgiachs,mashgichim +mashgiah,mashgiahs +mashie,mashies +mashie niblick,mashie niblicks +mashie-niblick,mashie-niblicks +mashing,mashings +mashlin,mashlin +mash,mashes +mash,mashes +mash note,mash notes +mashrabiyya,mashrabiyyas +mash tun,mash tuns +mashua,mashuas +mashua,mashuas +mashugana,mashuganas +mashup,mashups +mashwa,mashwas +masjid-goer,masjid-goers +masjid,masjids +masked ball,masked balls +masker,maskers +maskery,maskeries +maskette,maskettes +masking tape,masking tapes +maskin,maskins +maskinonge,maskinonge,maskinonges +mask,masks +mask,masks +mask,masks +mask shell,mask shells +maslin,maslins +mas,mas +masochist,masochists +mason bee,mason bees +Mason jar,Mason jars +mason,masons +Mason,Masons +mason shell,mason shells +mason wasp,mason wasps +masoor,masoors +masora,masoras +masoret,masorets +masorite,masorites +Masovian,Masovians +masque,masques +masquerade,masquerades +masquerader,masqueraders +massacer,massacers +Massachusettsian,Massachusettsians +massacre chaser,massacre chasers +massacre,massacres +massacrer,massacrers +massacring,massacrings +massacrist,massacrists +massage,massages +massage parlorist,massage parlorists +massage parlor,massage parlors +massage parlour,massage parlours +massager,massagers +massage therapist,massage therapists +massagist,massagists +massa,massas +massasauga,massasaugas +Mass bell,Mass bells +mass burial,mass burials +Mass card,Mass cards +mass defect,mass defects +mass difference,mass differences +massebah,masseboth,massebahs +massecuite,massecuites +massΓ©,massΓ©s +mass energy,mass energies +mass-energy,mass-energies +masser,massers +masseter,masseters +masseur,masseurs +masseuse,masseuses +mass extinction,mass extinctions +mass fraction,mass fractions +mass funeral,mass funerals +mass grave,mass graves +Masshole,Massholes +massif,massifs +massing,massings +massive astrophysical compact halo object,massive astrophysical compact halo objects +massive compact halo object,massive compact halo objects +massively multiplayer online game,massively multiplayer online games +massively multiplayer online role-playing game,massively multiplayer online role-playing games +massive,massives +massive palindrome,massive palindromes +mass,masses +Mass,Masses +mass medium,mass media +mass murderer,mass murderers +mass murder,mass murders +mass noun,mass nouns +mass number,mass numbers +Massoola boat,Massoola boats +massora,massoras +massor dahl,massor dahls +massoret,massorets +massospondylid,massospondylids +massotherapist,massotherapists +mass shift,mass shifts +mass spectrograph,mass spectrographs +mass spectrometer,mass spectrometers +mass spectrum,mass spectra +mass transit,mass transits +mass transportation,mass transportations +massula,massulae +mastaba,mastabas +mastacembelid,mastacembelids +mastalgia,mastalgias +mastax,mastaxes +mast cell,mast cells +mastectomee,mastectomees +mastectomy,mastectomies +master-at-arms,masters-at-arms +masterbatch,masterbatches +master bedroom,master bedrooms +master chief petty officer,master chief petty officers +master class,master classes +masterclass,masterclasses +mastercraftsman,mastercraftsmen +Master Cube,Master Cubes +masterer,masterers +master gland,master glands +master gunnery sergeant,master gunnery sergeants +mastering,masterings +master key,master keys +masterling,masterlings +masterman,mastermen +master mariner,master mariners +master,masters +master,masters +Master,Masters +masterminder,masterminders +mastermind,masterminds +Master of Arts,Masters of Arts +master of ceremonies,masters of ceremonies +Master of Science,Masters of Science +Master of the Universe,Masters of the Universe +masterpiece,masterpieces +master plan,master plans +masterplan,masterplans +masterpoint,masterpoints +master race,master races +master's degree,master's degrees +master seaman,master seamen +master sergeant,master sergeants +mastership,masterships +mastersinger,mastersingers +master's,master's +master spirit,master spirits +master status,master statuses +master's thesis,master's theses +masterstroke,masterstrokes +mastertone,mastertones +master tradesman,master tradesmen +masterwork,masterworks +masterwort,masterworts +masthead,mastheads +masthouse,masthouses +masticater,masticaters +mastication,mastications +masticator,masticators +masticatory,masticatories +mastich,mastichs +mastic,mastics +mastiff bat,mastiff bats +mastiff,mastiffs +mastigoneme,mastigonemes +mastigopod,mastigopods +mastigoteuthid,mastigoteuthids +mastigure,mastigures +masting,mastings +mastitis,mastitides +mastman,mastmen +mast,masts +mast,masts +mastocarcinoma,mastocarcinomas +mastocyte,mastocytes +mastocytoma,mastocytomas +mastodon,mastodons +Mastodon,Mastodons +mastodonsaurid,mastodonsaurids +mastodont,mastodonts +mastodonton,mastodontons +mastoid bone,mastoid bones +mastoidectomy,mastoidectomies +mastoiditis,mastoiditides +mastoid,mastoids +mastoid process,mastoid processes +mastoparan,mastoparans +mastopathy,mastopathies +mastopexy,mastopexies +mastoplasty,mastoplasties +mastotermitid,mastotermitids +mastotomy,mastotomies +mastre,mastres +mastress,mastresses +mastrope,mastropes +mast seeding,mast seedings +mastupration,mastuprations +masturbater,masturbaters +masturbator,masturbators +masturbatrix,masturbatrices,masturbatrixes +masulah,masulahs +masula,masulas +masu,masus +Masurian,Masurians +matachin,matachins +Mataco,Matacos,Mataco +matadora,matadoras +matadore,matadores +matai,matais +mata mata,mata matas +matamata,matamatas +mata mata turtle,mata mata turtles +matamata turtle,matamata turtles +matanza,matanzas +matapee,matapees +matatu,matatus +matchbook,matchbooks +matchbox,matchboxes +matchcoat,matchcoats +matchday,matchdays +matcher,matchers +matchet,matchets +matchflare,matchflares +matchgate,matchgates +matchgirl,matchgirls +matching,matchings +matchlock,matchlocks +match made in heaven,matches made in heaven +match made in hell,matches made in hell +match-maker,match-makers +matchmaker,matchmakers +match-making,match-makings +match,matches +match,matches +match play,match plays +match point,match points +matchpoint,matchpoints +match referee,match referees +match stick,match sticks +matchstick,matchsticks +match-up,match-ups +matchup,matchups +matchwinner,matchwinners +matelote,matelotes +matelot,matelots +mate,mates +mate,mates +mate,mates +materfamilias,materfamiliases,matresfamilias +material breach,material breaches +material cause,material causes +material conditional,material conditionals +material fact,material facts +material implication,material implications +materialisation,materialisations +materialist,materialists +materiality,materialities +materialization,materializations +materializer,materializers +material,materials +material science,material sciences +materials recovery facility,materials recovery facilities +materials science,materials sciences +material witness,material witnesses +materiarian,materiarians +materiel,materiels +mater lectionis,matres lectionis +mater,maters +mater,maters,matres +maternal aunt,maternal aunts +maternal cousin,maternal cousins +maternal death,maternal deaths +maternal filicide,maternal filicides +maternal grandchild,maternal grandchildren +maternal grandfather,maternal grandfathers +maternal grandmother,maternal grandmothers +maternalist,maternalists +maternal uncle,maternal uncles +maternity bra,maternity bras +maternity leave,maternity leaves +maternity ward,maternity wards +matess,matesses +matey,mateys +mathemagician,mathemagicians +mathematical function program,mathematical function programs +mathematical game,mathematical games +mathematical model,mathematical models +mathematical realism,mathematical realisms +mathematical structure,mathematical structures +mathematician,mathematicians +mathematitian,mathematitians +mathildid,mathildids +mathlete,mathletes +mathmagician,mathmagicians +math,maths +math,maths +mathmo,mathmos +mathom,mathoms +Mathurin,Mathurins +matie,maties +matilda,matildas +Matilda,Matildas +matinΓ©e idol,matinΓ©e idols +matinee,matinees +matinΓ©e,matinΓ©es +mating,matings +mating season,mating seasons +matin,matins +matjes herring,matjes herrings +mat,mats +matnakash,matnakashes +matorral,matorrals +matraca,matracas +matra,matras +matranee,matranees +matrass,matrasses +matress,matresses +matriarchate,matriarchates +matriarch,matriarchs +matriarchy,matriarchies +matrice,matrices +matricide,matricides +matriclan,matriclans +matric,matrics +matriculability,matriculabilities +matriculand,matriculands +matriculant,matriculants +matriculation,matriculations +matriculator,matriculators +matrigel,matrigels +Matrigel,Matrigels +matriline,matrilines +matrimoiety,matrimoieties +matrimonial,matrimonials +matrimony,matrimonies +matrist,matrists +matrix decomposition,matrix decompositions +matrix,matrices,matrixes +matroid,matroids +matronage,matronages +matrona,matronas +matron,matrons +matron of honor,matrons of honor +matronship,matronships +matronymic,matronymics +matronym,matronyms +matross,matrosses +matryoshka,matryoshkas,matryoshki +matsuri,matsuris +matsutake,matsutakes +mattamore,mattamores +matte,mattes +matternet,matternets +matter of fact,matters of fact +matter of record,matters of record +matterwave,matterwaves +mattifier,mattifiers +mattock,mattocks +mattoid,mattoids +mattrass,mattrasses +mattress,mattresses +mattress pad,mattress pads +mattress protector,mattress protectors +mattress topper,mattress toppers +matura,maturas +maturant,maturants +maturative,maturatives +maturer,maturers +maturity date,maturity dates +matutid,matutids +matweed,matweeds +maty,maties +matzah,matzahs +matza,matzas +matzo ball,matzo balls +maucaco,maucacos +maudlin,maudlins +maudlinwort,maudlinworts +maud,mauds +mauka,maukas +maukin,maukins +maulana,maulanas +mauler,maulers +mauling,maulings +maul,mauls +maulstick,maulsticks +mauma,maumas +maumet,maumets +maunch,maunches +Maunday coin,Maunday coins +maunderer,maunderers +maundering,maunderings +maunder,maunders +Maunder minimum,Maunder minimums,Maunder minima +maund,maunds +maund,maunds +maundril,maundrils +Maundy coin,Maundy coins +maundy,maundies +Maurician,Mauricians +Maurist,Maurists +Mauritanian,Mauritanians +Mauritian,Mauritians +mausoleum,mausoleums,mausolea +mauther,mauthers +mauveine,mauveines +mauvelous,mauvelouses +mauve,mauves +maven,mavens +maverick,mavericks +mavin,mavins +mavis,mavises +mavis skate,mavis skates +mavourneen,mavourneens +maw-gut,maw-guts +mawkin,mawkins +mawkin,mawkins +mawk,mawks +mawks,mawkses +mawle,mawles +mawlid,mawlids +maw,maws +maw,maws +maw,maws +mawmet,mawmets +mawning,mawnings +mawn,mawns +mawseed,mawseeds +mawsoniid,mawsoniids +mawther,mawthers +mawwormism,mawwormisms +maw worm,maw worms +maw-worm,maw-worms +mawworm,mawworms +Mawworm,Mawworms +maxheap,maxheaps +maxi boat,maxi boats +maxicircle,maxicircles +maxicoat,maxicoats +maxidress,maxidresses +maxilla,maxillas,maxillae,maxillΓ¦ +maxillary,maxillaries +maxillary palp,maxillary palpi +maxillary sinus,maxillary sinuses +maxilliped,maxillipeds +maxillopalatine,maxillopalatines +maxilloturbinal,maxilloturbinals +maximalist,maximalists +maximal,maximals +maximand,maximands +maxi,maxis +maximin,maximins +maximisation,maximisations +maximiser,maximisers +maximization,maximizations +maximizer,maximizers +maxim,maxims +maximum break,maximum breaks +maximum,maxima,maximums +maximum permitted mileage,maximum permitted mileages +maximum wage,maximum wages +maxiscooter,maxiscooters +maxiskirt,maxiskirts +maxixe,maxixes +maxi yacht,maxi yachts +max,maxes +Maxonian,Maxonians +maxterm,maxterms +Maxwellian,Maxwellians +maxwell,maxwells +Maxwell's demon,Maxwell's demons +mayanist,mayanists +Mayanist,Mayanists +Mayan,Mayans +Mayan pyramid,Mayan pyramids +mayapple,mayapples +May apple,May apples +maybe,maybes +Mayberry Machiavelli,Mayberry Machiavellis +maybird,maybirds +maybloom,mayblooms +mayblossom,mayblossoms +May blossom,May blossoms +May bug,May bugs +maybush,maybushes +mayday,maydays +May Day,May Days +May-day sweep,May-day sweeps +May Day sweep,May Day sweeps +Mayduke,Maydukes +mayfish,mayfish,mayfishes +mayflower,mayflowers +mayfly,mayflies +May game,May games +May-lady,May-ladies +may,mays +mayoralty,mayoralties +mayordom,mayordoms +mayoress,mayoresses +mayor,mayors +mayorship,mayorships +mayory,mayories +mayour,mayours +maypole,maypoles +maypop,maypops +May Queen,May Queens +May-September romance,May-September romances +maytansinoid,maytansinoids +maythorn,maythorns +Maytide,Maytides +Maytime,Maytimes +mayweed,mayweeds +mazama,mazamas +Mazandarani,Mazandaranis +Mazanderani,Mazanderanis +mazard,mazards +mazard,mazards +mazarinade,mazarinades +mazarine,mazarines +Mazatecan,Mazatecans +Mazatec,Mazatecs,Mazatec +Mazdakite,Mazdakites +Mazda,Mazdas +Mazdean,Mazdeans +Mazdian,Mazdians +mazdoor,mazdoors +maze,mazes +mazer bowl,mazer bowls +mazer,mazers +mazocraeid,mazocraeids +Mazola party,Mazola parties +mazologist,mazologists +mazourka,mazourkas +Mazur game,Mazur games +mazurka,mazurkas +mazzard,mazzards +mazzebah,mazzeboth,mazzebahs +mbari,mbaris,mbari +mbila,mbilas +mbira,mbiras +MB,MBs +MBT,MBTs +mbuga,mbugas +MCAT,MCATs +McBurney's point,McBurney's points +McCainiac,McCainiacs +McCarthyist,McCarthyists +McCarthyite,McCarthyites +McGuffin,McGuffins +McIntosh,McIntoshes +McJob,McJobs +McLeod gauge,McLeod gauges +McMansion,McMansions +M-day,M-days +M.D.,M.D.s +MD,MDs +mDNA,mDNAs +MDNA,MDNAs +meacock,meacocks +mead bench,mead benches +mead-bench,mead-benches +meader,meaders +meader,meaders +meadery,meaderies +mead hall,mead halls +mead,meads +meadow brown,meadow browns +meadowhawk,meadowhawks +meadow horsetail,meadow horsetails +meadowland,meadowlands +meadowlark,meadowlarks +meadow,meadows +meadow muffin,meadow muffins +meadow pipit,meadow pipits +meadowsweet,meadowsweets +meadow vole,meadow voles +meadsweet,meadsweets +meagerness,meagernesses +meagre,meagres +meagreness,meagrenesses +meaking iron,meaking irons +meak,meaks +mealie land,mealie lands +mealie,mealies +mealman,mealmen +meal,meals +meal,meals +meal ticket,meal tickets +meal-tide,meal-tides +mealtide,mealtides +mealtime,mealtimes +mealworm beetle,mealworm beetles +mealworm,mealworms +mealy bug,mealy bugs +mealybug,mealybugs +mean anomaly,mean anomalies +meanderer,meanderers +meandering,meanderings +meander,meanders +meanderthal,meanderthals +mean distance between failure,mean distance between failures +meandric number,meandric numbers +meandrina,meandrinas +meandrinid,meandrinids +meane,meanes +mean free path,mean free paths +meanie,meanies +meaning,meanings +meanling,meanlings +mean,means +mean motion,mean motions +meanness,meannesses +mean planet,mean planets +mean proportional,mean proportionals,means proportional +means of production,means of productions +means test,means tests +meanwhile,meanwhiles +meany,meanies +meare,meares +mear,mears +mease,meases +measle,measles +measter,measters +measurable function,measurable functions +measurable,measurables +measurable set,measurable sets +measurable space,measurable spaces +measurand,measurands +measured mile,measured miles +measure,measures +measurement,measurements +measurement ton,measurement tons +measure of central tendency,measures of central tendency +measure of location,measures of location +measurer,measurers +measure space,measure spaces +measure stick,measure sticks +measure theory,measure theories +measure word,measure words +measuring cup,measuring cups +measuring jug,measuring jugs +measuring rod,measuring rods +measuring tape,measuring tapes +measuring worm,measuring worms +meatarian,meatarians +meatatarian,meatatarians +meatball,meatballs +meat draw,meat draws +meateater,meateaters +meatgrinder,meatgrinders +meathead,meatheads +meather,meathers +meat hook,meat hooks +meathook,meathooks +meat house,meat houses +meathouse,meathouses +meat jelly,meat jellies +meatloaf,meatloaves +meatman,meatmen +meat market,meat markets +meatometer,meatometers +meatoscope,meatoscopes +meatotome,meatotomes +meatotomy,meatotomies +meatpacker,meatpackers +meat pie,meat pies +meatpole,meatpoles +meat puppet,meat puppets +meatpuppet,meatpuppets +meat rack,meat racks +meat raffle,meat raffles +meat safe,meat safes +meat shield,meat shields +meatshield,meatshields +meatshot,meatshots +meat stick,meat sticks +meatstick,meatsticks +meat ticket,meat tickets +meat tray,meat trays +meatus,meatus,meatuses +meat wagon,meat wagons +meatworker,meatworkers +meaw,meaws +meazel,meazels +mebibyte,mebibytes +mecate,mecates +mecca,meccas +Mecca,Meccas +Meccan,Meccans +Meccawee,Meccawees +mecha,mechas,mecha +mechanical advantage,mechanical advantages +mechanical energy,mechanical energies +mechanical larynx,mechanical larynxes +mechanical lithosphere,mechanical lithospheres +mechanical pencil,mechanical pencils +mechanician,mechanicians +mechanick,mechanicks,mechanickes +mechanic,mechanics +mechanism,mechanisms +mechanist,mechanists +mechanization,mechanizations +mechanized infantry,mechanized infantries +mechanizer,mechanizers +mechanoenzyme,mechanoenzymes +mechanograph,mechanographs +mechanoid,mechanoids +mechanome,mechanomes +mechanomyogram,mechanomyograms +mechanophore,mechanophores +mechanoreceptor,mechanoreceptors +mechanosensation,mechanosensations +mechanosensor,mechanosensors +mechanotherapist,mechanotherapists +mechanotransducer,mechanotransducers +Mechitarist,Mechitarists +mechitza,mechitzas +mech,mechs +mech.,mechs. +mecicobothriid,mecicobothriids +Meckel's ganglion,Meckel's ganglia +meck,mecks +mecochirid,mecochirids +mecomtronics,mecomtronics +meconate,meconates +meconidium,meconidia +meconophagist,meconophagists +mecopteran,mecopterans +mecysmaucheniid,mecysmaucheniids +medaka,medakas +medalet,medalets +medalist,medalists +medallionist,medallionists +medallion,medallions +medallist,medallists +medal,medals +medal table,medal tables +medar,medars +meddler,meddlers +MedDRA,MedDRAs +meddy,meddies +Mede,Medes +med-evac,med-evacs +medevac,medevacs +MEDEVAC,MEDEVACs +medfly,medflies +media bridge,media bridges +media circus,media circuses +mediacrat,mediacrats +media darling,media darlings +media democracy,media democracies +mediaevalist,mediaevalists +mediΓ¦valist,mediΓ¦valists +media kit,media kits +medial capital,medial capitals +medial collateral ligament,medial collateral ligaments +medial cuneiform bone,medial cuneiform bones +medial geniculate nucleus,medial geniculate nucleuss +medial,medials +medial s,medial s's +medialuna,medialunas +media maven,media mavens +media,mediae +median,medians +Median,Medians +median nerve,median nerves +mediant,mediants +media outlet,media outlets +media player,media players +mediascape,mediascapes +mediasphere,mediaspheres +mediastine,mediastines +mediastinoscope,mediastinoscopes +mediastinoscopy,mediastinoscopies +mediastinotomy,mediastinotomies +mediastinum,mediastina +mediation,mediations +mediatization,mediatizations +mediator,mediators +mediatour,mediatours +mediatress,mediatresses +mediatrix,mediatrices,mediatrixes +media wasp,media wasps +media whore,media whores +medical certificate,medical certificates +medical doctor,medical doctors +medical ethics,medical ethics +medical examiner,medical examiners +medical history,medical histories +medical isotope,medical isotopes +medical,medicals +medical record,medical records +medical report,medical reports +medical school,medical schools +medical student,medical students +medicament,medicaments +medicaster,medicasters +medication,medications +medician,medicians +Medici collar,Medici collars +medicide,medicides +medicine ball,medicine balls +medicine cabinet,medicine cabinets +medicine dance,medicine dances +medicine man,medicine men +medicine,medicines +medicine shield,medicine shields +medicine show,medicine shows +medicine wheel,medicine wheels +medicine woman,medicine women +medicin,medicins +medick,medicks +medic,medics +medico,medicos +medicommissure,medicommissures +medicornu,medicornua +medievalist,medievalists +medieval,medievals +medifossette,medifossettes +medifurca,medifurcae +medimnus,medimnes +medina,medinas +Medinan,Medinans +mediocrist,mediocrists +mediopassive,mediopassives +mediostratum,mediostrata +medispa,medispas +meditater,meditaters +meditatist,meditatists +meditator,meditators +Mediterranean flour moth,Mediterranean flour moths +Mediterranean fruit fly,Mediterranean fruit flies +Mediterranean Irishman,Mediterranean Irishmen +Mediterranean Irish,Mediterranean Irish +mediterranean sea,mediterranean seas +medium-chain triglyceride,medium-chain triglycerides +medium,media,mediums +medium of exchange,media of exchange +medium pacer,medium pacers +medius,medii +medivac,medivacs +medjidie,medjidies +Medjool,Medjools +medlar,medlars +medley,medleys +medlicottiid,medlicottiids +med,meds +MΓ©doc,MΓ©docs +medoid,medoids +medregal,medregals +medrick,medricks +medscanner,medscanners +med school,med schools +medspa,medspas +medulla,medullas,medullae,medullΓ¦ +medulloblast,medulloblasts +medulloblastoma,medulloblastomas,medulloblastomata +medulloepithelioma,medulloepitheliomas +medusafish,medusafishes,medusafish +medusa,medusas,medusae,medusΓ¦ +medusian,medusians +medusoid,medusoids +meecrob,meecrobs +meed,meeds +meekness,meeknesses +meemaw,meemaws +meem,meems +meeple,meeples +meep,meeps +meerkat,meerkats +meerkitten,meerkittens +meer,meers +meet and greet,meet and greets +meet-and-greet,meet-and-greets +meet cute,meet cutes +meeter,meeters +meetinghouse,meetinghouses +meeting of minds,meetings of minds +meeting of the minds,meetings of the minds +meeting place,meeting places +meeting room,meeting rooms +meeting seed,meeting seeds +meetin' seed,meetin' seeds +meet market,meet markets +meet,meets +meet-up,meet-ups +meetup,meetups +meff,meffs +megaampere,megaamperes +mega amp,mega amps +mega-amp,mega-amps +mega-annum,mega-annums +megaband,megabands +megabank,megabanks +megabar,megabars +megabase,megabases +megabat,megabats +megabid,megabids +megabitch,megabitches +megabit,megabits +megablockbuster,megablockbusters +megabook,megabooks +megabrand,megabrands +megabreccia,megabreccias +mega-buck,mega-bucks +megabuck,megabucks +megabudget,megabudgets +megabuilding,megabuildings +megabusiness,megabusinesses +megabyte,megabytes +megacarrier,megacarriers +megacaryocyte,megacaryocytes +megacase,megacases +megacasino,megacasinos +megacenter,megacenters +megacentre,megacentres +megaceros,megaceroses +megachain,megachains +megacheiran,megacheirans +megachilid,megachilids +mega-church,mega-churches +megachurch,megachurches +megacity,megacities +megaclub,megaclubs +megacoaster,megacoasters +megacolony,megacolonies +megacompany,megacompanies +megacomplex,megacomplexes +megaconference,megaconferences +megacorp,megacorps +megacorporation,megacorporations +megacosm,megacosms +megacoulomb,megacoulombs +megacryometeor,megacryometeors +megacryst,megacrysts +megacurie,megacuries +megacycle,megacycles +megadairy,megadairies +megadalton,megadaltons +megadealer,megadealers +megadeal,megadeals +megadeath,megadeaths +megadecibel,megadecibels +megademo,megademos +megadermatid,megadermatids +megaderm,megaderms +megadeveloper,megadevelopers +megadevelopment,megadevelopments +megadisaster,megadisasters +megadollar,megadollars +megadose,megadoses +megadrought,megadroughts +megadump,megadumps +megadyne,megadynes +megaelectron volt,megaelectron volts +megaelectronvolt,megaelectronvolts +megaevent,megaevents +megafan,megafans +megafarad,megafarads +megafarm,megafarms +megafauna,megafaunas +megafight,megafights +megafirm,megafirms +megafish,megafishes,megafish +megaflare,megaflares +megaflood,megafloods +megaflop,megaflops +megafoot,megafeet +megafortune,megafortunes +megafossil,megafossils +megafund,megafunds +megagametophyte,megagametophytes +megagift,megagifts +megagon,megagons +megagram,megagrams +megagramme,megagrammes +megahenry,megahenrys +megaherbivore,megaherbivores +megahero,megaheroes +megahertz,megahertz +megahit,megahits +megahome,megahomes +megahotel,megahotels +megahurt,megahurts +megajerk,megajerks +mega-joule,mega-joules +megajoule,megajoules +megakaryoblast,megakaryoblasts +megakaryocyte,megakaryocytes +megakaryopoiesis,megakaryopoieses +megakatal,megakatals +megaladapid,megaladapids +megalerg,megalergs +megalethoscope,megalethoscopes +megalichthyid,megalichthyids +megaliter,megaliters +megalith,megaliths +megalitre,megalitres +megaloblast,megaloblasts +megalocardia,megalocardias +megalocornea,megalocorneas +megalocyte,megalocytes +megalodon,megalodons +megalodontid,megalodontids +megalokaryocyte,megalokaryocytes +megalomaniac,megalomaniacs +megalomania,megalomanias +megalomycterid,megalomycterids +megalonychid,megalonychids +megalonyx,megalonyxes +megaloolithid,megaloolithids +megalopa,megalopae +megalopid,megalopids +megalopolis,megalopolises,megalopoleis,megalopoli +megalopolitan,megalopolitans +megalops,megalopses +megalopsychos,megalopsychoi +megalopygid,megalopygids +megalosaurid,megalosaurids +megalosaur,megalosaurs +megaloscope,megaloscopes +megalurid,megalurids +megalyrid,megalyrids +megamall,megamalls +megamansion,megamansions +megamarket,megamarkets +megamaser,megamasers +megamerger,megamergers +megamerinid,megamerinids +megamer,megamers +megameter,megameters +megametre,megametres +megamillionaire,megamillionaires +megamillion,megamillions +megaministry,megaministries +megamix,megamixes +megamouth,megamouths +megamouth shark,megamouth sharks +megampere,megamperes +megamusical,megamusicals +meganewton,meganewtons +meganiche,meganiches +megannum,megannums +meganuclease,meganucleases +meganucleus,meganuclei +mega-ohm,mega-ohms +megaohm,megaohms +megapack,megapacks +megaparsec,megaparsecs +megapascal,megapascals +megapenny,megapennies +megaphone,megaphones +megaphonist,megaphonists +megaphyll,megaphylls +megaphyte,megaphytes +megapixel,megapixels +megaplan,megaplans +megaplasmid,megaplasmids +megaplex,megaplexes +megapodagrionid,megapodagrionids +megapode,megapodes +megapodid,megapodids +megapodiid,megapodiids +megapod,megapod +megapolis,megapolises,megapoleis +megapolitan,megapolitans +megaportal,megaportals +megaprimary,megaprimaries +megaprimer,megaprimers +megaproducer,megaproducers +megaprofit,megaprofits +megaproject,megaprojects +megaquake,megaquakes +megarad,megarads +megaresort,megaresorts +megaretailer,megaretailers +Megarian,Megarians +Megaric,Megarics +megaron,megara,megarons +megasample,megasamples +megascolecid,megascolecids +megascope,megascopes +megasecond,megaseconds +megaseism,megaseisms +megaseller,megasellers +megashear,megashears +megasiemens,megasiemens +megasmash,megasmashes +megasome,megasomes +megaspilid,megaspilids +megaspirid,megaspirids +megasporange,megasporanges +megasporangium,megasporangia +megaspore,megaspores +megaspore mother cell,megaspore mother cells +megasporocyte,megasporocytes +megasporogenesis,megasporogeneses +megasporophyll,megasporophylls +megastar,megastars +megastate,megastates +megastome,megastomes +megastore,megastores +megastrobilus,megastrobili +megastructure,megastructures +megastudio,megastudios +megathere,megatheres +megatheriid,megatheriids +megatheroid,megatheroids +megathrust,megathrusts +megathymid,megathymids +megatick,megaticks +megatog,megatogs +megaton,megatons +megatonnage,megatonnages +megatonne,megatonnes +megatower,megatowers +megatrend,megatrends +megatrial,megatrials +megatsunami,megatsunamis,megatsunami +megaunit,megaunits +megaureter,megaureters +megaverdict,megaverdicts +megavoltage,megavoltages +mega-volt,mega-volts +megavolt,megavolts +megawatt-hour,megawatt-hours +mega-watt,mega-watts +megawatt,megawatts +megayacht,megayachts +megayear,megayears +megazoo,megazoos +megazostrodontid,megazostrodontids +megerg,megergs +megger,meggers +megillah,megillahs +megillah,megillahs +megilla,megillas +megilph,megilphs +megilp,megilps +megisthanid,megisthanids +Megleno-Romanian,Megleno-Romanians +meglitinide,meglitinides +meg,megs +MEG,MEGs +megohm,megohms +megohmmeter,megohmmeters +megophryid,megophryids +Megrel,Megrels +megrim,megrims +megrim,megrims +mehalek,mehaleks +mehari,meharis +mehfil,mehfils +mehmandar,mehmandars +meidan,meidans +meid,meide +meido,meido,meidos +meinertellid,meinertellids +meinie,meinies +meiny,meinies +meiocyte,meiocytes +meiofauna,meiofaunae,meiofaunas +meiolaniid,meiolaniids +meiome,meiomes +meiospore,meiospores +me-ism,me-isms +Meissner effect,Meissner effects +meister,meisters +meistersinger,meistersingers +mejiro,mejiros +Mekhitarist,Mekhitarists +mekoro,mekoros +melainotype,melainotypes +melakarta,melakartas +melaleuca,melaleucas +melamine resin,melamine resins +melamphaid,melamphaids +melamphid,melamphids +melanagogue,melanagogues +Melanau,Melanaus,Melanau +melancholian,melancholians +melancholick,melancholicks +melancholic,melancholics +melancholie,melancholies +melancholist,melancholists +melancholy,melancholies +melandryid,melandryids +melange,melanges +mΓ©lange,mΓ©langes +melanian,melanians +melanic,melanics +melaniid,melaniids +melaninization,melaninizations +melanisation,melanisations +melanism,melanisms +melanization,melanizations +melanoacanthoma,melanoacanthomas +melanoblast,melanoblasts +melanocetid,melanocetids +melanochroite,melanochroites +melanocortin,melanocortins +melanocyte,melanocytes +melanocyte-stimulating hormone,melanocyte-stimulating hormones +melanocytosis,melanocytoses +melanoderma,melanodermas +melanogaster,melanogasters +melanogogue,melanogogues +melanoma,melanomas,melanomata +melanonid,melanonids +melanophore,melanophores +melanoprotein,melanoproteins +melanopsid,melanopsids +melanopsin,melanopsins +melanorosaurid,melanorosaurids +melanosis,melanoses +melanosome,melanosomes +melanosperm,melanosperms +melanotaeniid,melanotaeniids +melanotrope,melanotropes +melanotroph,melanotrophs +melanotype,melanotypes +melanure,melanures +melaphyre,melaphyres +melastatine,melastatines +melastoma,melastomas +melba finch,melba finches +melba,melbas +Melbournite,Melbournites +Melburnian,Melburnians +Melchior,Melchiors +Melchite,Melchites +Melchizedek,Melchizedeks +melding,meldings +meld,melds +meleagridid,meleagridids +melee,melees +mΓͺlΓ©e,mΓͺlΓ©es +mele,meles +Meletian,Meletians +melibiose,melibioses +melic,melics +melicotoon,melicotoons +melid,melids +melilot,melilots +melinite,melinites +meliorater,melioraters +meliorator,meliorators +meliorism,meliorisms +meliorist,meliorists +meliphagid,meliphagids +meliponid,meliponids +melisma,melismas,melismata +melissa,melissas +melissate,melissates +melissopalynologist,melissopalynologists +melithaeid,melithaeids +melitid,melitids +melittid,melittids +melittin,melittins +Melkite,Melkites +mellate,mellates +mellay,mellays +meller,mellers +mellitate,mellitates +mellite,mellites +mell,mells +mellonide,mellonides +mellophone,mellophones +mellotron,mellotrons +mellow,mellows +melocoton,melocotons +melodeon,melodeons +melodeon,melodeons +melodeum,melodeums +melodica,melodicas +melodic minor scale,melodic minor scales +melodiograph,melodiographs +melodion,melodions +melodious warbler,melodious warblers +melodist,melodists +melodramatist,melodramatists +melodrame,melodrames +melody,melodies +melograph,melographs +meloid,meloids +melomakarono,melomakaronos,melomakarona +melomaniac,melomaniacs +melon baller,melon ballers +melon ball scooper,melon ball scoopers +melongene,melongenes +melongenid,melongenids +melon head,melon heads +melonhead,melonheads +melophile,melophiles +meloplasty,meloplasties +melotype,melotypes +melphidippid,melphidippids +meltdown,meltdowns +melter,melters +melting,meltings +melting point,melting points +meltingpoint,meltingpoints +melting pot,melting pots +melton,meltons +melt sandwich,melt sandwiches +Melungeon,Melungeons +melvin,melvins +melyrid,melyrids +memadmittance,memadmittances +memapsin,memapsins +memaw,memaws +member field,member fields +member function,member functions +member,members +Member of Parliament,Members of Parliament +member of parliament’s legislative motion,member of parliament’s legislative motions +member of staff,members of staff +member's bill,member's bills +membership card,membership cards +membership function,membership functions +membership,memberships +member state,member states +member variable,member variables +membracid,membracids +membranella,membranellae +membranelle,membranelles +membrane,membranes +membrane potential,membrane potentials +membraniporid,membraniporids +membranophone,membranophones +membre,membres +membrification,membrifications +memcapacitance,memcapacitances +memcapacitor,memcapacitors +Memelian,Memelians +meme,memes +memento,mementos,mementoes +memeplex,memeplexes +meme pool,meme pools +ME,MEs +memex,memexes +memimpedance,memimpedances +meminductor,meminductors +meminna,meminnas +mem,mems +memocide,memocides +memoirist,memoirists +memoir,memoirs +memome,memomes +memo,memos +memorability,memorabilities +memorandum,memorandums,memoranda +memorandum of understanding,memoranda of understanding,memorandums of understanding +memorate,memorates +memorat,memorats +memorialist,memorialists +memorializer,memorializers +memorial,memorials +memorial park,memorial parks +memorial service,memorial services +memorisation,memorisations +memoriser,memorisers +memorist,memorists +memorization,memorizations +memorizer,memorizers +memory card,memory cards +memory chip,memory chips +memory lane,memory lanes +memory leak,memory leaks +memory span,memory spans +memory stick,memory sticks +Memphite,Memphites +memristance,memristances +memristor,memristors +memsahib,memsahibs +menace,menaces +menacer,menacers +mΓ©nage Γ  quatre,mΓ©nages Γ  quatre +mΓ©nage Γ  trois,mΓ©nages Γ  trois +menage,menages +mΓ©nage,mΓ©nages +menagerie,menageries +menagogue,menagogues +menaion,menaia +menaquinone,menaquinones +menarche,menarches +menatetrenone,menatetrenones +mendacity,mendacities +mender,menders +mendery,menderies +mendiant,mendiants +mendicancy squad,mendicancy squads +mendicant,mendicants +mendicant order,mendicant orders +mendinant,mendinants +mend,mends +mendole,mendoles +Menehune,Menehunes,Menehune +mengovirus,mengoviruses +menhadden,menhadden +menhaden,menhaden,menhadens +menhir,menhirs +menial,menials +menid,menids +menilite,menilites +meninge,meninges +meningioma,meningiomas +meningitis,meningitides +meningocele,meningoceles +meningococcus,meningococci +meningoencephalocele,meningoencephaloceles +meninx,meninges +menippid,menippids +meniscectomy,meniscectomies +meniscus,meniscuses,menisci +Menno,Mennos +Mennonist,Mennonists +Mennonite,Mennonites +menobranch,menobranchs +menologe,menologes +Menologium,Menologia +menology,menologies +menometrorrhagia,menometrorrhagias +Menominee,Menominees,Menominee +menopause,menopauses +menoponid,menoponids +menopot,menopots +menorah,menoroth,menorahs +menora,menoras +menorrhagia,menorrhagias +menow,menows +menoxenia,menoxenias +mensa,mensae +Mensan,Mensans +mensch,mensches,menschen +mense,menses +Menshevik,Mensheviks,Mensheviki +mensiversary,mensiversaries +mens rea,mentes reae +men's room,men's rooms +men-stealer,men-stealers +menstealer,menstealers +menstrual cup,menstrual cups +menstrual cycle,menstrual cycles +menstrual fluid,menstrual fluids +menstrual period,menstrual periods +menstruant,menstruants +menstruation period,menstruation periods +menstruum,menstruums,menstrua +mental aberration,mental aberrations +mental age,mental ages +mental asylum,mental asylums +mental block,mental blocks +mental breakdown,mental breakdowns +mental case,mental cases +mental disorder,mental disorders +mental hospital,mental hospitals +mental institution,mental institutions +mentalist,mentalists +mentalitΓ©,mentalitΓ©s +mentality,mentalities +mental,mentals +mental midget,mental midgets +mental object,mental objects +mentch,mentches +mentee,mentees +mentha,menthas +menthane,menthanes +menthene,menthenes +menthid,menthids +menthol cigarette,menthol cigarettes +menthol,menthols +menthyl,menthyls +mention,mentions +mentomeckelian,mentomeckelians +mento,mentos +mentoplasty,mentoplasties +mentoree,mentorees +mentor,mentors +mentorship,mentorships +mentsch,mentschen +mentsh,mentshen +mentula,mentulas,mentulae,mentulΓ¦ +mentulomaniac,mentulomaniacs +mentum,menta +menu bar,menu bars +menubar,menubars +menu cost,menu costs +menuetto,menuettos +menu,menus +menurid,menurids +meower,meowers +meowing,meowings +meow,meows +mephitid,mephitids +mephitis,mephitises +meprobamate,meprobamates +Merarite,Merarites +meraspis,meraspides +merbaby,merbabies +merbeast,merbeasts +merboy,merboys +mercantilist,mercantilists +mercaptal,mercaptals +mercaptan,mercaptans +mercaptide,mercaptides +mercaptoalkyl,mercaptoalkyls +mercaptobenzoic acid,mercaptobenzoic acids +mercaptoethanol,mercaptoethanols +mercaptole,mercaptoles +mercaptoundecanoic acid,mercaptoundecanoic acids +mercatante,mercatantes +Mercedarian,Mercedarians +Mercedes,Mercedes +mercenarian,mercenarians +mercenary,mercenaries +mercerisation,mercerisations +mercer,mercers +mercership,mercerships +merchandiser,merchandisers +merchandizer,merchandizers +merchant banker,merchant bankers +merchant bank,merchant banks +merchantess,merchantesses +merchantman,merchantmen +merchant marine,merchant marines +merchant,merchants +merchant navy,merchant navies +merchant prince,merchant princes +merchant ship,merchant ships +merchant venturer,merchant venturers +merchantwoman,merchantwomen +merchaunt,merchaunts +merchet,merchets +merchild,merchildren +Mercian,Mercians +mercie,mercies +mercifulness,mercifulnesses +merck,mercks +merc,mercs +Merc,Mercs +mercow,mercows +mer-creature,mer-creatures +mercreature,mercreatures +mercurial finger,mercurial fingers +mercurialist,mercurialists +mercurial,mercurials +Mercurian,Mercurians +mercuriation,mercuriations +mercuriocyclization,mercuriocyclizations +mercurism,mercurisms +mercurism,mercurisms +mercurochrome,mercurochromes +mercurocuprate,mercurocuprates +mercury barometer,mercury barometers +Mercury,Mercuries +mercury-vapor lamp,mercury-vapor lamps +mercury-vapour lamp,mercury-vapour lamps +mercy chair,mercy chairs +mercy killer,mercy killers +mercy killing,mercy killings +mercy-killing,mercy-killings +merdog,merdogs +mere,meres +mere,meres +mere,meres +mereotopology,mereotopologies +merese,mereses +meresman,meresmen +merestead,meresteads +merestone,merestones +mereswine,mereswines,mereswine +merfather,merfathers +merganser,mergansers +merge,merges +merger,mergers +merge sort,merge sorts +mergesort,mergesorts +merging,mergings +mergirl,mergirls +merguard,merguards +merhorse,merhorses +merhusband,merhusbands +mericarp,mericarps +mericlone,mericlones +meride,merides +meride,merides +meridian,meridians +meridional,meridionals +meridional ray,meridional rays +meridional wind,meridional winds +meridiungulate,meridiungulates +Merina,Merinas,Merina +meristem,meristems +meristemoid,meristemoids +meristic,meristics +merit good,merit goods +merithallus,merithalli +merithal,merithals +merit,merits +meritmonger,meritmongers +meritocracy,meritocracies +meritocrat,meritocrats +merkingdom,merkingdoms +merking,merkings +merkin,merkins +merkin,merkins +merk,merks +merknight,merknights +merlady,merladies +merland,merlands +merle,merles +merling,merlings +merlin,merlins +Merlin's grass,Merlin's grasses +merlion,merlions +merl,merls +merlon,merlons +merluccid,merluccids +merlucciid,merlucciids +merluce,merluces +mermaiden,mermaidens +mermaid,mermaids +mermaid's purse,mermaid's purses +merman,mermen +mermayde,mermaydes +mermin,mermins +mermithid,mermithids +merm,merms +mermonster,mermonsters +mermother,mermothers +meroblast,meroblasts +merocele,meroceles +merocerite,merocerites +meroclone,meroclones +merocyanine,merocyanines +merocyte,merocytes +merogamete,merogametes +merogon,merogons +meromictic lake,meromictic lakes +meromyosin,meromyosins +meron,merons +meront,meronts +meronym,meronyms +meropeid,meropeids +meropia,meropias +meropidan,meropidans +meropid,meropids +meropodite,meropodites +merosome,merosomes +merostome,merostomes +meroterpene,meroterpenes +Merovingian,Merovingians +Meroving,Merovings +merozoite,merozoites +merozygote,merozygotes +merperson,merpersons,merpeople +merqueen,merqueens +merrigan,merrigans +merrillite,merrillites +merrow,merrows +merry-andrew,merry-andrews +merryandrew,merryandrews +Merry Andrew,Merry Andrews +merry cocker,merry cockers +merry dance,merry dances +merry-go-round,merry-go-rounds +merrymake,merrymakes +merrymaker,merrymakers +merrymeeting,merrymeetings +merrythought,merrythoughts +merry widow,merry widows +Merry Widow,Merry Widows +Mersenne prime,Mersenne primes +Merseybeat,Merseybeats +Merseysider,Merseysiders +mersnake,mersnakes +merswine,merswine,merswines +merulid,merulids +mervaille,mervailles +Merveilleuse,Merveilleuses +merwife,merwives +merwoman,merwomen +merworld,merworlds +merycoidodontid,merycoidodontids +mesaconate,mesaconates +mΓ©salliance,mΓ©salliances +mesangium,mesangia +mesaxon,mesaxons +mescal bean,mescal beans +mescal,mescals +mesclun,mescluns +mesel,mesels +mesembryanthemum,mesembryanthemums +mesencephalon,mesencephalons +mesendoderm,mesendoderms +mesenterium,mesenteria +mesentery,mesenteries +mesentoblast,mesentoblasts +mesentry,mesentries +meseraic,meseraics +mesethmoid,mesethmoids +mesh,meshes +mesh network,mesh networks +mesh number,mesh numbers +mesh stick,mesh sticks +meshugenah,meshugenahs +meshugeneh,meshugenehs +meshuggener,meshuggeners +meshweb weaver,meshweb weavers +mesial plane,mesial planes +mesilect,mesilects +mesisol,mesisols +mesite,mesites +mesitoate,mesitoates +mesityl,mesityls +Meskhetian,Meskhetians +Meskwaki,Meskwakis,Meskwaki +meslin,meslins +mesmeree,mesmerees +mesmerisee,mesmerisees +mesmerist,mesmerists +mesmerizer,mesmerizers +Mesoamericanist,Mesoamericanists +Mesoamerican pyramid,Mesoamerican pyramids +mesoangioblast,mesoangioblasts +mesoappendix,mesoappendixes,mesoappendices +mesoband,mesobands +mesoblast,mesoblasts +mesobronchium,mesobronchia +mesocarp,mesocarps +mesocephalic,mesocephalics +mesoclitic,mesoclitics +mesocoele,mesocoeles +mesocolon,mesocolons +mesocone,mesocones +mesoconid,mesoconids +mesocoracoid,mesocoracoids +mesocosm,mesocosms +mesocuneiform,mesocuneiforms +mesocyclone,mesocyclones +mesoderm,mesoderms +mesodesmatid,mesodesmatids +mesoeucrocodylian,mesoeucrocodylians +mesofauna,mesofaunae,mesofaunas +mesofemur,mesofemora +mesoflexid,mesoflexids +mesofossil,mesofossils +mesofurca,mesofurcae +mesogaster,mesogasters +mesogastrium,mesogastria +mesogastropod,mesogastropods +mesogen,mesogens +mesogranule,mesogranules +mesograzer,mesograzers +mesohepar,mesohepars +mesoherbivore,mesoherbivores +mesohydrophyte,mesohydrophytes +mesohyl,mesohyls +mesoionic compound,mesoionic compounds +mesolabe,mesolabes +mesolect,mesolects +mesolevel,mesolevels +mesologarithm,mesologarithms +mesolophid,mesolophids +mesoloph,mesolophs +mesomerism,mesomerisms +mesometeorologist,mesometeorologists +mesometrium,mesometria +mesomorph,mesomorphs +mesomyodian,mesomyodians +mesonephros,mesonephroi +mesonet,mesonets +mesonium,mesoniums +meson,mesons +meson,mesons +mesonotum,mesonota +mesonychian,mesonychians +mesonychid,mesonychids +mesopallium,mesopallia +mesopause,mesopauses +mesophanerophyte,mesophanerophytes +mesophase,mesophases +mesophile,mesophiles +mesophil,mesophils +mesophryon,mesophyra +mesophyll,mesophylls +mesophyllum,mesophylla +mesophyte,mesophytes +mesoplanet,mesoplanets +mesoplast,mesoplasts +mesopodium,mesopodia +mesopore,mesopores +mesoporphyrin,mesoporphyrins +Mesopotamian,Mesopotamians +mesopredator,mesopredators +mesopterygium,mesopterygia +mesorchium,mesorchia +mesorectum,mesorectums +meso-region,meso-regions +mesoregion,mesoregions +mesosalpinx,mesosalpinges +mesosaurid,mesosaurids +mesoscale convective system,mesoscale convective systems +mesoscale,mesoscales +mesoscapula,mesoscapulae +mesoscutellum,mesoscutella +mesoscutum,mesoscuta +mesosiderite,mesosiderites +mesosome,mesosomes +mesosphere,mesospheres +mesostate,mesostates +mesosternum,mesosterna +mesostructure,mesostructures +mesostyle,mesostyles +mesostylid,mesostylids +mesotendon,mesotendons +mesotheca,mesothecae +mesothelioma,mesotheliomas,mesotheliomata +mesothelium,mesothelia +mesotheriid,mesotheriids +mesothermophile,mesothermophiles +mesothorax,mesothoraxes,mesothoraces +mesothorium,mesothoriums +mesotibia,mesotibiae +mesotron,mesotrons +mesovarium,mesovaria +mesovortex,mesovortices +mesoxalate,mesoxalates +mesoxerophyte,mesoxerophytes +mesozoan,mesozoans +Mesquakie,Mesquakies +mesquite,mesquites +mesquit,mesquits +message board,message boards +messageboard,messageboards +message broker,message brokers +message coupling,message couplings +message-driven architecture,message-driven architectures +message in a bottle,messages in a bottle,messages in bottles +message,messages +messager,messagers +message stick,message sticks +messaging pattern,messaging patterns +Messalian,Messalians +Messapian,Messapians +messdeck,messdecks +messenger bag,messenger bags +messenger,messengers +messenger pigeon,messenger pigeons +messenger RNA,messenger RNAs +Messenian,Messenians +messer,messers +Messerschmitt,Messerschmitts +messet,messets +mess hall,mess halls +messiah,messiahs +messiahship,messiahships +Messier number,Messier numbers +Messier object,Messier objects +mess jacket,mess jackets +mess kit,mess kits +messmate,messmates +mess,messes +mess of pottage,messes of pottage +messroom,messrooms +mess tent,mess tents +messuage,messuages +mestee,mestees +Mestee,Mestees +mester,mesters +mestino,mestinos +mestiza,mestizas +mestizo,mestizos,mestizoes +mesylate,mesylates +mesyl,mesyls +meta-analysis,meta-analyses +metaanalysis,metaanalyses +metaarsenite,metaarsenites +metaatom,metaatoms +metaball,metaballs +metabalome,metabalomes +metabasis,metabases +metabisulfite,metabisulfites +metabisulphite,metabisulphites +metablog,metablogs +metabola,metabolas +metabole,metaboles +metabolian,metabolians +metabolic pathway,metabolic pathways +metabolic rate,metabolic rates +metabolism,metabolisms +metabolite,metabolites +metabolizability,metabolizabilities +metabolization,metabolizations +metabolizer,metabolizers +metabolome,metabolomes +metabolon,metabolons +metabolosome,metabolosomes +metabonome,metabonomes +metaborate,metaborates +metaboreceptor,metaboreceptors +metaboric acid,metaboric acids +metacarpal bone,metacarpal bones +metacarpal,metacarpals +metacarpus,metacarpi +metacenter,metacenters +metacentre,metacentres +metacentric,metacentrics +metacercaria,metacercariae +metacestode,metacestodes +metacharacter,metacharacters +metachronism,metachronisms +metaclass,metaclasses +metacommand,metacommands +metacommentary,metacommentaries +meta-communication,meta-communications +metacommunication,metacommunications +metacommunity,metacommunities +metacone,metacones +metaconid,metaconids +metacontext,metacontexts +metaconule,metaconules +metacosm,metacosms +metacrawler,metacrawlers +metacriterion,metacriteria +metacriticism,metacriticisms +metacromion,metacromia +metacyclophane,metacyclophanes +metadatabase,metadatabases +metadata registry,metadata registries +metadatum,metadata +metadrama,metadramas +metafemale,metafemales +metafemur,metafemora +metafictionist,metafictionists +metafile,metafiles +metafilm,metafilms +metaflexid,metaflexids +metafunction,metafunctions +metagalaxy,metagalaxies +metagame,metagames +metage,metages +metagene,metagenes +metagenome,metagenomes +metagnomy,metagnomies +metagrammar,metagrammars +metaheuristic,metaheuristics +metahuman,metahumans +metajoke,metajokes +meta key,meta keys +Metal Age,Metal Ages +metalammonium,metalammonia +metal aquo complex,metal aquo complexes +metalate,metalates +metalation,metalations +metal carbonyl,metal carbonyls +metal cluster compound,metal cluster compounds +metal detectorist,metal detectorists +metal detector,metal detectors +metalens,metalenses +metalepsis,metalepses +metalexicographer,metalexicographers +metal halide lamp,metal halide lamps +metalhead,metalheads +metal hydride,metal hydrides +metalimnion,metalimnions,metalimnia +metalization,metalizations +metallacycle,metallacycles +metallacycloalkane,metallacycloalkanes +metallacyclobutane,metallacyclobutanes +metallacyclopentene,metallacyclopentenes +metallate,metallates +metallation,metallations +metaller,metallers +metallic bond,metallic bonds +metallicity,metallicities +metallic,metallics +metallic waterproofing,metallic waterproofings +metallide,metallides +metallist,metallists +metallization,metallizations +metalloactivation,metalloactivations +metalloblock,metalloblocks +metallocarbene,metallocarbenes +metallocarboxypeptidase,metallocarboxypeptidases +metallocene,metallocenes +metallocentre,metallocentres +metallochaperone,metallochaperones +metallochrome,metallochromes +metallocofactor,metallocofactors +metallocycle,metallocycles +metallodrug,metallodrugs +metalloenamine,metalloenamines +metalloendopeptidase,metalloendopeptidases +metalloenzyme,metalloenzymes +metalloexopeptidase,metalloexopeptidases +metallofullerene,metallofullerenes +metallographist,metallographists +metallograph,metallographs +metalloid,metalloids +metallome,metallomes +metallomesogen,metallomesogens +metallometallation,metallometallations +metallopeptidase,metallopeptidases +metallophone,metallophones +metallophosphatase,metallophosphatases +metallophyte,metallophytes +metallopolymer,metallopolymers +metalloporphyrin,metalloporphyrins +metalloprotease,metalloproteases +metalloproteinase,metalloproteinases +metalloprotein,metalloproteins +metalloregulator,metalloregulators +metallorganic,metallorganics +metallothionein,metallothioneins +metallothionine,metallothionines +metallotolerant,metallotolerants +metallurgist,metallurgists +metalman,metalmen +metalmark,metalmarks +metal master,metal masters +metalogician,metalogicians +metalophid,metalophids +metaloph,metalophs +metalophule,metalophules +metalophulid,metalophulids +metal-organic framework,metal-organic frameworks +metalorganic,metalorganics +metal shop,metal shops +metalsmith,metalsmiths +metalworker,metalworkers +metamagnetization,metamagnetizations +metamagnet,metamagnets +metamaterial,metamaterials +metamathematician,metamathematicians +metamere,metameres +metamer,metamers +metamessage,metamessages +metametalanguage,metametalanguages +meta,metas +metamethod,metamethods +metamict,metamicts +metamodel,metamodels +metamorphic,metamorphics +metamorphic rock,metamorphic rocks +metamorphism,metamorphisms +metamorphist,metamorphists +metamorphoser,metamorphosers +metamorphosis,metamorphoses +metamyelocyte,metamyelocytes +metanalysis,metanalyses +metanarrative,metanarratives +metanauplius,metanauplii +metanephridium,metanephridia +metanephros,metanephroi,metanephroses +metanetwork,metanetworks +metania,metanias +metanoia,metanoias +metanotum,metanota +metantimonate,metantimonates +metaobject,metaobjects +metaoperator,metaoperators +metaorder,metaorders +metapelite,metapelites +metaperiodate,metaperiodates +metaperspective,metaperspectives +metaphase,metaphases +metaphilosopher,metaphilosophers +metaphorical extension,metaphorical extensions +metaphorist,metaphorists +metaphosphate,metaphosphates +metaphosphoric acid,metaphosphoric acids +metaphrase,metaphrases +metaphrast,metaphrasts +metaphysician,metaphysicians +metaphysicist,metaphysicists +metaphysis,metaphyses +metaphysitian,metaphysitians +metaphyte,metaphytes +metaplasm,metaplasms +metaplasticity,metaplasticities +metaplast,metaplasts +metaplay,metaplays +metapleuron,metapleurons,metapleura +metaplot,metaplots +metapneumovirus,metapneumoviruses +metapode,metapodes +metapodiale,metapodialia +metapodial,metapodials +metapodium,metapodia +metapoem,metapoems +metapolicy,metapolicies +metapolitician,metapoliticians +metapophysis,metapophyses +metapopulation,metapopulations +metaprogramme,metaprogrammes +metaprogram,metaprograms +metaproperty,metaproperties +metaprotaspis,metaprotaspides +metaprotein,metaproteins +metaproteome,metaproteomes +metaprotocell,metaprotocells +metaprotocol,metaprotocols +metapterygium,metapterygia +metapurpose,metapurposes +metapuzzle,metapuzzles +metarbelid,metarbelids +metaregression,metaregressions +metarelation,metarelations +metarhodopsin,metarhodopsins +METAR,METARs +metarteriole,metarterioles +metarule,metarules +metascutellum,metascutella +metasearch engine,metasearch engines +metasediment,metasediments +metasequoia,metasequoias +metaservice,metaservices +metasilicate,metasilicates +metasoma,metasomas +metasomatism,metasomatisms +metasome,metasomes +metastability,metastabilities +metastable isomer,metastable isomers +metastannate,metastannates +metastasectomy,metastasectomies +metastasis,metastases +metastate,metastates +metastatogenesis,metastatogeneses +metasternum,metasterna +metastin,metastins +metastoma,metastomas,metastomata +metastome,metastomes +metastory,metastories +metastrategy,metastrategies +metastring,metastrings +metastrongylid,metastrongylids +metastructure,metastructures +metastudy,metastudies +metastyle,metastyles +metastylid,metastylids +metasubstitution,metasubstitutions +metasurface,metasurfaces +metasyntactic variable,metasyntactic variables +metasystem,metasystems +metatable,metatables +meta tag,meta tags +metatag,metatags +metatarsal,metatarsals +metatarse,metatarses +metatarsus,metatarsi +metatask,metatasks +metate,metates +metatemplate,metatemplates +metathalamus,metathalami +metatherian,metatherians +metathesis,metatheses +metathorax,metathoraxes,metathoraces +metatibia,metatibiae +metatranscriptome,metatranscriptomes +metatungstate,metatungstates +metavanadate,metavanadates +metaverse,metaverses +metayer,metayers +metazoan,metazoans +metazoon,metazoons,metazoa +mete,metes +metempsychosis,metempsychoses +metencephalin,metencephalins +metencephalon,metencephalons +meteoric water,meteoric waters +meteorism,meteorisms +meteorite,meteorites +meteoriticist,meteoriticists +meteor,meteors +meteorograph,meteorographs +meteoroid,meteoroids +meteorolite,meteorolites +meteorologist,meteorologists +meteorology,meteorologies +meteorometer,meteorometers +meteoroscope,meteoroscopes +meteor shower,meteor showers +metered-dose inhaler,metered-dose inhalers +metergoline,metergolines +metergram,metergrams +metering,meterings +meter maid,meter maids +meter,meters +meterologist,meterologists +meter stick,meter sticks +metewand,metewands +meteyard,meteyards +methacrylate,methacrylates +methamphetamine,methamphetamines +methanal,methanals +methanamide,methanamides +methanation,methanations +methane clathrate,methane clathrates +methane hydrate,methane hydrates +methanesulfonate,methanesulfonates +methanesulfonic acid,methanesulfonic acids +methanesulphonate,methanesulphonates +methanesulphonic acid,methanesulphonic acids +methanethiosulphonate,methanethiosulphonates +methanoate,methanoates +methanofuran,methanofurans +methanogen,methanogens +methanolate,methanolates +methanotroph,methanotrophs +methasone,methasones +metheglin,metheglins +methenyl,methenyls +mether,methers +methide,methides +methine,methines +methiodide,methiodides +methionate,methionates +methionyl,methionyls +meth,meths +meth,meths +meth mouth,meth mouths +method actor,method actors +methodist,methodists +Methodist,Methodists +methodizer,methodizers +method,methods +methodologist,methodologists +methodology,methodologies +method overloading,method overloadings +Methody,Methodies +methorphan,methorphans +methosulfate,methosulfates +methoxide,methoxides +methoxyamination,methoxyaminations +methoxybenzene,methoxybenzenes +methoxybenzyl,methoxybenzyls +methoxycarbonyl,methoxycarbonyls +methoxycinnamate,methoxycinnamates +methoxyeleutherin,methoxyeleutherins +methoxyethyl,methoxyethyls +methoxylation,methoxylations +methoxy,methoxys +methoxymethyl,methoxymethyls +methoxyphenyl,methoxyphenyls +methoxypyrazine,methoxypyrazines +me three,me threes +meths drinker,meths drinkers +methuselah,methuselahs +methyacrylate,methyacrylates +methyladenine,methyladenines +methylamino,methylaminos +methylammonium,methylammoniums +methylarginine,methylarginines +methylase,methylases +methylated spirit,methylated spirits +methylate,methylates +methylation,methylations +methylator,methylators +methylcellulose,methylcelluloses +methylcyclopentadiene,methylcyclopentadienes +methylcyclopentadienyl,methylcyclopentadienyls +methylcytosine,methylcytosines +methylenation,methylenations +methylenedioxyphenyl,methylenedioxyphenyls +methylenetetrahydrofolate,methylenetetrahydrofolates +methylesterase,methylesterases +methylhistidine,methylhistidines +methylhydrazine,methylhydrazines +methylidene,methylidenes +methylidyne,methylidynes +methylidynium,methylidyniums +methylimidazole,methylimidazoles +methylimidazolium,methylimidazoliums +methylindole,methylindoles +methylindolizidine,methylindolizidines +methylisoxazole,methylisoxazoles +methylketol,methylketols +methylmalonate,methylmalonates +methylmercury,methylmercuries +methyl,methyls +methylome,methylomes +methylotroph,methylotrophs +methylphenidate,methylphenidates +methylprednisolone,methylprednisolones +methylpropane,methylpropanes +methylpyridine,methylpyridines +methylserotonin,methylserotonins +methylsiloxane,methylsiloxanes +methylsulfenamide,methylsulfenamides +methylsulfonyl,methylsulfonyls +methyltetrahydrofolate,methyltetrahydrofolates +methyltransferase,methyltransferases +methyltryptophan,methyltryptophans +methylumbelliferone,methylumbelliferones +methylxanthine,methylxanthines +metical,meticals,meticais +metica,meticas +metic,metics +metier,metiers +mΓ©tier,mΓ©tiers +metif,metifs +Met,Mets +metΕ“cus,metΕ“ci +Metonic cycle,Metonic cycles +metonymic,metonymics +metonym,metonyms +metope,metopes +metoposaurid,metoposaurids +metoposcopist,metoposcopists +metosteon,metostea +metra,metrae +metre,metres +metre,metres +metre per second,metres per second +metrete,metretes,metretae +metrical foot,metrical feet +metrical structure,metrical structures +metrication,metrications +metric foot,metric feet +metrician,metricians +metricity,metricities +metricization,metricizations +metric level,metric levels +metric,metrics +metric mile,metric miles +metric ounce,metric ounces +metric pound,metric pounds +metric space,metric spaces +metric structure,metric structures +metric ton,metric tons +metridiid,metridiids +metridinid,metridinids +metriopatheia,metriopatheiai +metriorhynchid,metriorhynchids +metrist,metrists +metrizoate,metrizoates +MetroCard,MetroCards +metrochrome,metrochromes +metrograph,metrographs +metrologist,metrologists +metromaniac,metromaniacs +metromania,metromanias +metrometer,metrometers +metro,metros +metro,metros +metron,metrons +metronome,metronomes +metronymic,metronymics +metronym,metronyms +metroplasty,metroplasties +metroplex,metroplexes +metropole,metropoles +metropolis,metropolises,metropoleis +metropolitan area,metropolitan areas +metropolitanate,metropolitanates +metropolitan borough,metropolitan boroughs +metropolitan county,metropolitan counties +metropolitan,metropolitans +metropolite,metropolites +metroscope,metroscopes +metrosexual,metrosexuals +metrosideros,metrosideroses +metro station,metro stations +metrotome,metrotomes +mett,metts +metuloid,metuloids +meu,meus +meute,meutes +mevalonate,mevalonates +Mevlevi,Mevlevis +meV,meVs +mewler,mewlers +mewling,mewlings +mewl,mewls +mew,mews +mew,mews +mew,mews +mews,mews,mewses +Mexcrement,Mexcrements +Mexica,Mexicas,Mexica +Mexican breakfast,Mexican breakfasts +Mexican buttonbush,Mexican buttonbushs +Mexican duck,Mexican ducks +Mexican hand tree,Mexican hand trees +Mexican hat cell,Mexican hat cells +Mexicanism,Mexicanisms +Mexican jumping bean,Mexican jumping beans +Mexican marigold,Mexican marigolds +Mexican,Mexicans +Mexican overdrive,Mexican overdrives +Mexican standoff,Mexican standoffs +Mexican wave,Mexican waves +Mexican wolf,Mexican wolves +Mexicoke,Mexicokes +MexiCoke,MexiCokes +meyerhofferite,meyerhofferites +Meyer locomotive,Meyer locomotives +mezair,mezairs +mΓ©zair,mΓ©zairs +meze,mezes +mezereon,mezereons +mezquita,mezquitas +mezuzah,mezuzahs,mezuzot,mezuzoth +mezuza,mezuzas,mezuzot,mezuzoth +mezzaluna,mezzalunas +mezzanine,mezzanines +mezzobrow,mezzobrows +mezzo,mezzos +mezzo-relievo,mezzo-relievos +mezzo-rilievo,mezzo-rilievos +mezzo-soprano,mezzo-sopranos +mezzotinter,mezzotinters +mezzotint,mezzotints +mezzotinto,mezzotintos,mezzotintoes +MGF,MGFs +mg/kg,mg/kg +MGTOW,MGTOWs +MHA,MHAs +mho,mhos +mhorr,mhorrs +miacid,miacids +Mia Maid,Mia Maids +mia mia,mia mias +Miami,Miamis +miaou,miaous +miaower,miaowers +miaow,miaows +miasma,miasmas,miasmata +miasmatist,miasmatists +miasm,miasms +miaul,miauls +mib,mibs +mibuna,mibunas +Miccosukee,Miccosukees,Miccosukee +micella,micellae +micelle,micelles +micellization,micellizations +Michaelmas daisy,Michaelmas daisies +michelada,micheladas +michelinoceratid,michelinoceratids +micher,michers +michery,micheries +Michigan basement,Michigan basements +Michigander,Michiganders +Michigan,Michigans +MICH,MICHs +Mickey Finn,Mickey Finns +Mickey Flynn,Mickey Flynns +Mickey Mantle,Mickey Mantles +mickey,mickeys +Mickey,Mickeys +Mickey Mouse cap,Mickey Mouse caps +Mickey Mouse glove,Mickey Mouse gloves +Mickey Mouse hat,Mickey Mouse hats +mick,micks +Mick,Micks +Micmac,Micmacs,Micmac +mic,mics +mico,micos +micraner,micraners +micraster,micrasters +micrergate,micrergates +micrite,micrites +microabrasion,microabrasions +microabscess,microabscesses +microacceleration,microaccelerations +microactuator,microactuators +microadenoma,microadenomas +microaerophile,microaerophiles +microaggressor,microaggressors +microalga,microalgae +microammeter,microammeters +microampere,microamperes +micro-amp,micro-amps +microamp,microamps +microanalyser,microanalysers +microanalysis,microanalyses +microanalyzer,microanalyzers +microaneurism,microaneurisms +microaneurysm,microaneurysms +microangiopathy,microangiopathies +microapp,microapps +micro-architecture,micro-architectures +microarchitecture,microarchitectures +microarcsec,microarcsecs +microarcsecond,microarcseconds +microarrayer,microarrayers +microarray,microarrays +microassault,microassaults +microassay,microassays +microatoll,microatolls +microbalance,microbalances +microbank,microbanks +microbar,microbars +microbarn,microbarns +microbarom,microbaroms +microbat,microbats +microbead,microbeads +microbeam,microbeams +microbe,microbes +microbenchmark,microbenchmarks +microbial fuel cell,microbial fuel cells +microbicide,microbicides +microbiochemist,microbiochemists +microbiogeologist,microbiogeologists +microbiologist,microbiologists +microbiome,microbiomes +microbion,microbions +microbioreactor,microbioreactors +microbiota,microbiotas +microbiotheriid,microbiotheriids +microbleed,microbleeds +microblogger,microbloggers +microblog,microblogs +microbody,microbodies +microbolometer,microbolometers +microbomb,microbombs +microborrower,microborrowers +microbot,microbots +microbrachid,microbrachids +microbraid,microbraids +microbreak,microbreaks +microbrewer,microbrewers +micro-brewery,micro-breweries +microbrewery,microbreweries +microbrew,microbrews +microbridge,microbridges +microbroadcast,microbroadcasts +microbrowser,microbrowsers +microbubble,microbubbles +microbudget,microbudgets +microbunch,microbunches +microbundle,microbundles +microburst,microbursts +microbusiness,microbusinesses +microbus,microbuses +microcalcification,microcalcifications +microcalorimeter,microcalorimeters +microcamera,microcameras +microcantilever,microcantilevers +microcapillary,microcapillaries +microcap,microcaps +microcapsule,microcapsules +microcard,microcards +microcar,microcars +microcarrier,microcarriers +microcassette,microcassettes +microcavity,microcavities +microcell,microcells +microcentrifugation,microcentrifugations +microcentrifuge,microcentrifuges +microcentury,microcenturies +microcephalic,microcephalics +microcephalin,microcephalins +microcerberid,microcerberids +microchannel,microchannels +microchapter,microchapters +microcharcoal,microcharcoals +microcharge,microcharges +microchemist,microchemists +microchemostat,microchemostats +microchip,microchips +microchromosome,microchromosomes +microchronometer,microchronometers +microcin,microcins +microcionid,microcionids +microcircuit,microcircuits +microcircuitry,microcircuitries +microcitoma,microcitomas +microcity,microcities +microcivilization,microcivilizations +microclimate,microclimates +microcluster,microclusters +micrococcus,micrococci +microcolony,microcolonies +microcompartment,microcompartments +microcomponent,microcomponents +microcomputer,microcomputers +microcone,microcones +microconstituent,microconstituents +microcontact,microcontacts +microcontainer,microcontainers +microcontaminant,microcontaminants +microcontinent,microcontinents +microcontroller,microcontrollers +microcopy,microcopies +microcosm,microcosms +microcosmodontid,microcosmodontids +microcosmography,microcosmographies +microcosmos,microcosmoi,microcosmoses +microcosting,microcostings +microcotylid,microcotylids +microcoulomb,microcoulombs +microcrack,microcracks +microcrith,microcriths +microcrystallite,microcrystallites +microcrystal,microcrystals +microculture,microcultures +microcurie,microcuries +microcurrent,microcurrents +microcylinder,microcylinders +microcystin,microcystins +microcyte,microcytes +microdecision,microdecisions +microdeletion,microdeletions +microdensitometer,microdensitometers +microdesmid,microdesmids +microdevice,microdevices +microdialysate,microdialysates +microdialysis,microdialyses +microdiffraction,microdiffractions +microdilution,microdilutions +microdiode,microdiodes +microdiscectomy,microdiscectomies +micro-diskette,micro-diskettes +microdiskette,microdiskettes +microdisk,microdisks +microdispersion,microdispersions +microdisplacement,microdisplacements +microdisplay,microdisplays +microdissection,microdissections +microdistiller,microdistillers +microdistillery,microdistilleries +microdistributor,microdistributors +microdomain,microdomains +microdomatid,microdomatids +microdonation,microdonations +microdont,microdonts +microdose,microdoses +microdot,microdots +microdress,microdresses +microdrive,microdrives +microdrone,microdrones +microdroplet,microdroplets +microdropper,microdroppers +microdystrophin,microdystrophins +microearthquake,microearthquakes +microeconomy,microeconomies +microeinstein,microeinsteins +microelectrode,microelectrodes +microelectronic,microelectronics +microelectrophoresis,microelectrophoreses +microelement,microelements +microembolus,microemboli +microemulsion,microemulsions +microencapsulation,microencapsulations +microendoscope,microendoscopes +microenvironment,microenvironments +microeukaryote,microeukaryotes +microevolution,microevolutions +microexplosion,microexplosions +microexpression,microexpressions +microextraction,microextractions +microextrusion,microextrusions +microfabric,microfabrics +microfacet,microfacets +micro-farad,micro-farads +microfarad,microfarads +microfauna,microfaunae,microfaunas +microfeature,microfeatures +microfiber,microfibers +microfibre,microfibres +microfibril,microfibrils +microfiche,microfiches +micro-fiction,micro-fictions +microfilament,microfilaments +microfilaraemia,microfilaraemias +microfilaremia,microfilaremias +microfilaria,microfilariae +microfilaricide,microfilaricides +microfilm,microfilms +microfilter,microfilters +microfiltration,microfiltrations +microfinancier,microfinanciers +microfinish,microfinishes +microfissuration,microfissurations +microfissure,microfissures +microflare,microflares +micro-floppy,micro-floppies +microfloppy,microfloppies +microflora,microflorae +microflow,microflows +microfluidiser,microfluidisers +microfluidizer,microfluidizers +microfluid,microfluids +microfold,microfolds +microforce,microforces +microforceps,microforceps +microforge,microforges +microformat,microformats +microfortnight,microfortnights +microfossil,microfossils +microfracture,microfractures +microfragrance,microfragrances +microframework,microframeworks +microfuge,microfuges +microfungus,microfungi +microgame,microgames +microgamete,microgametes +microgametocyte,microgametocytes +microgametophyte,microgametophytes +microgastroid,microgastroids +microgauss,microgauss +microGauss,microGauss +microgel,microgels +microgenerator,microgenerators +microgenesis,microgeneses +microgenre,microgenres +microgeon,microgeons +microglioma,microgliomas +microglitch,microglitches +microglobulin,microglobulins +microgovernment,microgovernments +micrograft,micrografts +microgramme,microgrammes +microgram,micrograms +microgrant,microgrants +microgranuloma,microgranulomas +micrographia,micrographias +micrograph,micrographs +microgray,micrograys +microgreen,microgreens +microgrid,microgrids +microgripper,microgrippers +microgroove,microgrooves +microgyrus,microgyri +microhabitat,microhabitats +microhalo,microhalos +microhaplotype,microhaplotypes +microhardness,microhardnesses +microheater,microheaters +microhedylid,microhedylids +microhemisphere,microhemispheres +microhertz,microhertz +microhistorian,microhistorians +microhm,microhms +microhole,microholes +microhomology,microhomologies +microhylid,microhylids +microinch,microinches +microinclusion,microinclusions +microindustry,microindustries +microinequity,microinequities +microinfarct,microinfarcts +microinfusion,microinfusions +microinjection,microinjections +microinjector,microinjectors +microinstability,microinstabilities +microinstruction,microinstructions +microinsult,microinsults +microinsurer,microinsurers +microinvalidation,microinvalidations +microinvertebrate,microinvertebrates +microion,microions +microjansky,microjanskys,microjanskies +microjet,microjets +micro-joule,micro-joules +microjoule,microjoules +microJy,microJys +microkatal,microkatals +microkelvin,microkelvins +microKelvin,microKelvins +microkeratome,microkeratomes +microkernel,microkernels +microkini,microkinis +microlam,microlams +microlaser,microlasers +microleak,microleaks +microlender,microlenders +microlens,microlenses +microlevel,microlevels +microlichen,microlichens +microlight,microlights +microlite,microlites +microliter,microliters +microlith,microliths +microlitre,microlitres +microloan,microloans +micromachine,micromachines +micromachining,micromachinings +micromagnet,micromagnets +micromainframe,micromainframes +micromalthid,micromalthids +micro manager,micro managers +micromanager,micromanagers +micromanipulation,micromanipulations +micromanipulator,micromanipulators +micromanometer,micromanometers +micromaser,micromasers +micromaterial,micromaterials +micromechanism,micromechanisms +micromelaniid,micromelaniids +micromelanophore,micromelanophores +micromelerpetontid,micromelerpetontids +micromere,micromeres +micromesh,micromeshes +micrometeorite,micrometeorites +micrometeoroid,micrometeoroids +micrometer,micrometers +micrometer,micrometers +micrometre,micrometres +micro,micros +micromillimeter,micromillimeters +micromillimetre,micromillimetres +micromineral,microminerals +microminiature,microminiatures +micromini,microminis +micromirror,micromirrors +micromodule,micromodules +micromole,micromoles +micromol,micromols +micromort,micromorts +micromosaic,micromosaics +micromoth,micromoths +micromotion,micromotions +micromotor,micromotors +micromycete,micromycetes +micronation,micronations +microneedle,microneedles +microneighborhood,microneighborhoods +microneighbourhood,microneighbourhoods +microneme,micronemes +Micronesian,Micronesians +microneutralization,microneutralizations +microniche,microniches +micronism,micronisms +micron,microns +micronodule,micronodules +micronometer,micronometers +micronozzle,micronozzles +micronucleus,micronuclei +micronuke,micronukes +micronut,micronuts +micronutrient,micronutrients +micro-ohm,micro-ohms +microoperation,microoperations +micro-organism,micro-organisms +microorganism,microorganisms +microΓΆrganism,microΓΆrganisms +micropachycephalosaurus,micropachycephalosauruses +micropalaeontologist,micropalaeontologists +micropalΓ¦ontologist,micropalΓ¦ontologists +micropaleontologist,micropaleontologists +micropantograph,micropantographs +microparasite,microparasites +microparticle,microparticles +micropart,microparts +micropattern,micropatterns +micropayment,micropayments +micropegmatite,micropegmatites +micropenis,micropenises +micropestle,micropestles +micropezid,micropezids +microphage,microphages +microphanerophyte,microphanerophytes +microphase,microphases +microphenocryst,microphenocrysts +microphenomenon,microphenomena +microphone,microphones +microphotograph,microphotographs +microphotometer,microphotometers +microphyll,microphylls +microphysicist,microphysicists +microphysid,microphysids +microphyte,microphytes +micropig,micropigs +micropillar,micropillars +micropipe,micropipes +micropipette,micropipettes +micropixel,micropixels +microplasma,microplasmas +microplasmin,microplasmins +microplate,microplates +microplate reader,microplate readers +micropollutant,micropollutants +microporellid,microporellids +micropore,micropores +micropositioner,micropositioners +microprobe,microprobes +microprocessor,microprocessors +microprogramme,microprogrammes +microprogrammer,microprogrammers +microprogram,microprograms +microprojectile,microprojectiles +microproject,microprojects +microprojector,microprojectors +micropropagation,micropropagations +microprotein,microproteins +microprotrusion,microprotrusions +micropterigid,micropterigids +micropublication,micropublications +micropublisher,micropublishers +micropulsation,micropulsations +micropulse,micropulses +micropurchase,micropurchases +micropygid,micropygids +micropyle,micropyles +microquake,microquakes +microquantity,microquantities +microquasar,microquasars +microradian,microradians +microradiograph,microradiographs +microrad,microrads +microreactor,microreactors +microreader,microreaders +microrefrigerator,microrefrigerators +micro-region,micro-regions +microregion,microregions +microregulator,microregulators +microreproduction,microreproductions +microresistor,microresistors +microresonator,microresonators +microribbon,microribbons +microribonucleoprotein,microribonucleoproteins +microring,microrings +microRNA,microRNAs +microRNAome,microRNAomes +microrobot,microrobots +microrod,microrods +microsaccade,microsaccades +microsatellite,microsatellites +microsat,microsats +microscale,microscales +microschizont,microschizonts +microsclere,microscleres +microsclerodermin,microsclerodermins +microscope,microscopes +microscopist,microscopists +microscopy,microscopies +microsecond,microseconds +microseed,microseeds +microseepage,microseepages +microseism,microseisms +microsensor,microsensors +microseparator,microseparators +microsequencer,microsequencers +microserf,microserfs +microserver,microservers +microsession,microsessions +microshock,microshocks +microsieve,microsieves +microsievert,microsieverts +microsite,microsites +microskirt,microskirts +microslicer,microslicers +Microsoftie,Microsofties +Microsoft,Microsofts +Microsoft tax,Microsoft taxes +microsome,microsomes +microspecies,microspecies +microspectrophotometer,microspectrophotometers +microspectroscope,microspectroscopes +microspectroscopy,microspectroscopys +microsphere,microspheres +microspherule,microspherules +microspike,microspikes +microsponge,microsponges +microsporangium,microsporangia +microspore,microspores +microsporidian,microsporidians,microsporidia +microsporid,microsporids +microsporocyte,microsporocytes +microsporophyll,microsporophylls +microspot,microspots +microstamp,microstamps +microstate,microstates +microsthene,microsthenes +microstigmatid,microstigmatids +microstimulation,microstimulations +microstomatid,microstomatids +microstomid,microstomids +microstory,microstories +microstrain,microstrains +microstrip,microstrips +microsurface,microsurfaces +microsurge,microsurges +microsurgery,microsurgeries +microswimmer,microswimmers +microswitch,microswitches +microsyringe,microsyringes +microsystem,microsystems +microtape,microtapes +microtasimeter,microtasimeters +microtear,microtears +microtechnique,microtechniques +microtechnology,microtechnologies +microtektite,microtektites +microtentacle,microtentacles +microtesla,microteslas +microtexture,microtextures +microtile,microtiles +microtiter,microtiters +microtiter plate,microtiter plates +microtitration,microtitrations +microtitre,microtitres +microtome,microtomes +microtomist,microtomists +microtonalist,microtonalists +microtone,microtones +microtool,microtools +microtopographer,microtopographers +microtopography,microtopographies +microtoroid,microtoroids +microtransaction,microtransactions +microtrauma,microtraumas +microtremor,microtremors +microtrend,microtrends +microtron,microtrons +microtube,microtubes +microtubule,microtubules +microtubulin,microtubulins +microtumor,microtumors +microtuner,microtuners +microturbine,microturbines +microunit,microunits +micro-vacation,micro-vacations +microvacation,microvacations +microvalve,microvalves +microvan,microvans +microvariability,microvariabilities +microvariant,microvariants +microvariation,microvariations +microvaristor,microvaristors +microvesicle,microvesicles +microvessel,microvessels +microvillus,microvilli +microvoid,microvoids +microvoltmeter,microvoltmeters +micro-volt,micro-volts +microvolt,microvolts +microvolume,microvolumes +micro-watt,micro-watts +microwatt,microwatts +microwave meal,microwave meals +microwave,microwaves +microwave oven,microwave ovens +microweber,microwebers +microwell,microwells +microwire,microwires +microworld,microworlds +microzone,microzones +microzoospore,microzoospores +microzyma,microzymas,microzymata +microzyme,microzymes +micryphantid,micryphantids +mictyrid,mictyrids +midafternoon,midafternoons +midair,midairs +midarm,midarms +Midas's ear,Midas's ears +Mid-Autumn Festival,Mid-Autumn Festivals +mid-autumn,mid-autumns +midback,midbacks +midbie,midbies +midblastula,midblastulas +midbody,midbodies +midbowman,midbowmen +midbrain,midbrains +midcalf,midcalves +midcap,midcaps +midcareer,midcareers +midcourter,midcourters +middelmannetjie,middelmannetjies +midden crow,midden crows +midden,middens +middie,middies +midding,middings +middle body,middle bodies +middleborn,middleborns +middlebox,middleboxes +middlebrow,middlebrows +middle class,middle classes +middle C,middle Cs,middle C's +middle ear,middle ears +Middle Easterner,Middle Easterners +middle eight,middle eights +middle finger,middle fingers +middle game,middle games +middlegame,middlegames +middle infielder,middle infielders +middle infield,middle infields +middle manager,middle managers +middle man,middle men +middleman,middlemen +middle,middles +middle name,middle names +middle-of-the-roader,middle-of-the-roaders +middleoftheroader,middleoftheroaders +middle passage,middle passages +middler,middlers +middle school,middle schools +middle stump,middle stumps +middle tilde,middle tildes +middle way,middle ways +middlewoman,middlewomen +middling plantation,middling plantations +mid-drift,mid-drifts +middy,middies +midface,midfaces +mid-fall,mid-falls +midfeather,midfeathers +midfielder,midfielders +mid-finger,mid-fingers +midframe,midframes +midgame,midgames +midgap,midgaps +midgate,midgates +midge,midges +midgetism,midgetisms +midget,midgets +midgie,midgies +midground,midgrounds +midgut,midguts +midheaven,midheavens +midhinge,midhinges +midhusband,midhusbands +Midianite,Midianites +midibus,midibuses +midi,midis +midinette,midinettes +mid-iron,mid-irons +midiskirt,midiskirts +midkine,midkines +Midlander,Midlanders +Midlander,Midlanders +midland,midlands +midlatitude,midlatitudes +MIDlet,MIDlets +mid-life crisis,mid-life crises +midlife crisis,midlife crises +midlife,midlives +midlifer,midlifers +midline,midlines +midlung,midlungs +midmajor,midmajors +mid-mashie,mid-mashies +mid,mids +MID,MIDs +midmorning,midmornings +midnight blue,midnight blues +midnight feast,midnight feasts +midnight mass,midnight masses +midnight,midnights +midnight movie,midnight movies +midnight regulation,midnight regulations +midnight sun,midnight suns +midnite,midnites +mid-oceanic ridge,mid-oceanic ridges +mid off,mid offs +mid on,mid ons +midpiece,midpieces +midplane,midplanes +MIDP,MIDPs +midpoint,midpoints +midportion,midportions +midquel,midquels +midrange,midranges +midrapidity,midrapidities +Midrash,Midrashim +midrib,midribs +midriff,midriffs +midrise,midrises +midroll,midrolls +mid season form,mid season forms +mid-season form,mid-season forms +midseason form,midseason forms +mid season,mid seasons +mid-season,mid-seasons +midseason,midseasons +midsection,midsections +midsfinger,midsfingers +midshipman,midshipmen +midshipperson,midshippersons,midshippeople +midshipwoman,midshipwomen +midslope,midslopes +midsole,midsoles +midspan,midspans +midspread,midspreads +mid-spring,mid-springs +midstage,midstages +midsummer daisy,midsummer daisies +Midsummer Day,Midsummer Days +midsummer,midsummers +midsummer moon,midsummer moons +midtempo,midtempos +midterm election,midterm elections +midterm,midterms +midthigh,midthighs +midtime,midtimes +midwater,midwaters +Midway Islander,Midway Islanders +midway,midways +midweek,midweeks +midwesterner,midwesterners +Midwesterner,Midwesterners +midwife,midwives +midwifery,midwiferies +midwife toad,midwife toads +midwinter,midwinters +mielie,mielies +miff,miffs +Miggy,Miggies +mightand,mightands +might-be,might-bes +might-have-been,might-have-beens +mightlihood,mightlihoods +mighty,mighties +migid,migids +migmatite,migmatites +Mig,Migs +MiG,MiGs +MIG,MIGs +mignardise,mignardises +mignonette,mignonettes +mignon,mignons +migradollar,migradollars +migraine headache,migraine headaches +migraine,migraines +migraineur,migraineurs +migrant,migrants +migrant worker,migrant workers +migration,migrations +migrator,migrators +mihirung,mihirungs +mihrab,mihrabs +mikado,mikados +mikania,mikanias +mikan,mikans +mike,mikes +Mikmak,Mikmaks,Mikmak +mikoshi,mikoshis +mikvah,mikvahs +mikva,mikvas +mikveh,mikvehs,mikveot +milab,milabs +milacid,milacids +milady,miladies +milage,milages +milagro,milagros +Milankovitch cycle,Milankovitch cycles +milch cow,milch cows +mild ale,mild ales +mild and bitter,mild and bitters +mild,milds +mildot,mildots +mile-a-minute,mile-a-minutes +mile,miles +milepost,mileposts +miler,milers +miles gloriosus,milites gloriosi +Miles Gloriosus,Milites Gloriosi +Milesian,Milesians +Milesian,Milesians +milestone,milestones +milf,milfs +MILF,MILFs +miliarense,miliarenses +miliary,miliaries +milichiid,milichiids +milieu,milieux,milieus +miliolid,miliolids +militant,militants +militarian,militarians +militarisation,militarisations +militarist,militarists +militarization,militarizations +military abduction,military abductions +military academy,military academies +military attachΓ©,military attachΓ©s +military brat,military brats +military engine,military engines +military exercise,military exercises +military government,military governments +military,military,militaries +military order,military orders +military school,military schools +military spouse,military spouses +military tribunal,military tribunals +militation,militations +militerisation,militerisations +militiaman,militiamen +militia,militias +militiawoman,militiawomen +militician,militicians +militsia,militsias +milium,milia +milk abscess,milk abscesses +milkaholic,milkaholics +milk bar,milk bars +milkbar,milkbars +milk brother,milk brothers +milk-brother,milk-brothers +milk-cap,milk-caps +milk chocolate,milk chocolates +milk churn,milk churns +milk crate,milk crates +milkcrate,milkcrates +milk crust,milk crusts +milker,milkers +milkfish,milkfishes,milkfish +milk float,milk floats +milk-house,milk-houses +milkhouse,milkhouses +milkie,milkies +milking,milkings +milk jug,milk jugs +milk line,milk lines +milkmaiden,milkmaidens +milkmaid,milkmaids +milkman,milkmen +milko,milkos +milk pan,milk pans +milkpan,milkpans +milk powder,milk powders +milk pudding,milk puddings +milk replacer,milk replacers +milk round,milk rounds +milk run,milk runs +milk saucepan,milk saucepans +milkshake,milkshakes +milk sibling,milk siblings +milk-sibling,milk-siblings +milk sister,milk sisters +milk-sister,milk-sisters +milk snake,milk snakes +milksop,milksops +milkstain,milkstains +milk substitute,milk substitutes +milk thistle,milk thistles +milk tooth,milk teeth +milk-tooth,milk-teeth +milk-vetch,milk-vetches +milkvetch,milkvetches +milkweed bug,milkweed bugs +milkweed,milkweeds +milkwoman,milkwomen +milkwood,milkwoods +milkwort,milkworts +milky stork,milky storks +millage,millages +millage tax,millage taxes +millah,millahs +millarcsecond,millarcseconds +Millard Fillmore,Millard Fillmores +mill dam,mill dams +mill drill,mill drills +mille-feuille,mille-feuilles +millefeuille,millefeuilles +millefleur,millefleurs +millenarian,millenarians +millennialist,millennialists +millennial,millennials +millennist,millennists +millennium,millennia,millenniums +millepede,millepedes +milleped,millepeds +millepore,millepores +milleporid,milleporids +milleporite,milleporites +milleress,milleresses +millerettid,millerettids +millerite,millerites +Millerite,Millerites +miller,millers +miller moth,miller moths +Miller of Dee,Millers of Dee +Miller of the Dee,Millers of the Dee +miller's thumb,miller's thumbs +millet,millets +millful,millfuls +millhand,millhands +milliammeter,milliammeters +milliampere,milliamperes +milli-amp,milli-amps +milliamp,milliamps +Millian,Millians +milliarcsec,milliarcsecs +milliarcsecond,milliarcseconds +milliard,milliards +milliary,milliaries +millibar,millibars +millibarn,millibarns +millicandela,millicandelas +millicurie,millicuries +millidarcy,millidarcys,millidarcies +millielectronvolt,millielectronvolts +millie,millies +milliequivalent,milliequivalents +millier,milliers +milli-farad,milli-farads +millifarad,millifarads +milligramme,milligrammes +milligram,milligrams +milligray,milligrays +millihelen,millihelens +millihertz,millihertz +millijansky,millijanskys,millijanskies +milli-joule,milli-joules +millijoule,millijoules +millikatal,millikatals +millikelvin,millikelvins +milliKelvin,milliKelvins +millilambert,millilamberts +milliliter,milliliters +millilitre,millilitres +millimagnitude,millimagnitudes +millimeter,millimeters +millimetre,millimetres +millimΓ¨tre,millimΓ¨tres +millimicron,millimicrons +millimilligram,millimilligrams +millimole,millimoles +millineress,millineresses +milliner,milliners +millinery,millineries +millinewton,millinewtons +milling cutter,milling cutters +milling machine,milling machines +milling,millings +milli-ohm,milli-ohms +milliohm,milliohms +millionaire,millionaires +millionairess,millionairesses +millionerd,millionerds +millionnaire,millionnaires +millionth,millionths +milliosmole,milliosmoles +milliparsec,milliparsecs +millipascal,millipascals +millipede,millipedes +milliped,millipeds +millipore,millipores +milliradian,milliradians +millirem,millirems +milliroentgen,milliroentgens,milliroentgen +millisecond,milliseconds +millisiemens,millisiemens +millisievert,millisieverts +millistere,millisteres +millitorr,millitorrs +milliunit,milliunits +millivoltage,millivoltages +milli-volt,milli-volts +millivolt,millivolts +milli-watt,milli-watts +milliwatt,milliwatts +milliweber,milliwebers +mill,mills +mill,mills +millosevichite,millosevichites +millpond,millponds +mill race,mill races +mill-race,mill-races +millrace,millraces +mill rate,mill rates +millrea,millreas +millree,millrees +millreis,millreis +millrind,millrinds +millrynd,millrynds +Mills bomb,Mills bombs +mill-sixpence,mill-sixpences +millstone,millstones +mill stream,mill streams +millstream,millstreams +mill wheel,mill wheels +millwheel,millwheels +millworker,millworkers +millwright,millwrights +mil,mils +milometer,milometers +milonga,milongas +milord,milords +milquetoast,milquetoasts +milreis,milreis +miltefosine,miltefosines +milter,milters +milt,milts +Milwaukeean,Milwaukeeans +mimallonid,mimallonids +Mima mound,Mima mounds +Mimantean,Mimanteans +mimbar,mimbars +mime,mimes +mimeograph,mimeographs +mimeo,mimeos +mimer,mimers +mimetic,mimetics +mimetid,mimetids +mimiamb,mimiambs +mimic beetle,mimic beetles +mimicker,mimickers +mimick,mimicks +mimic,mimics +mimicry,mimicries +mimid,mimids +mimivirus,mimiviruses +mimmerkin,mimmerkins +mimmer,mimmers +mimographer,mimographers +mimophant,mimophants +mimosa,mimosas,mimosae +mimotope,mimotopes +mimsy,mimsies +minah,minahs +mina,minas +mina,minas,minae +minarchism,minarchisms +minarchist,minarchists +minaret,minarets +minarine,minarines +minaudiΓ¨re,minaudiΓ¨res +minaul,minauls +minbar,minbars +minced oath,minced oaths +mince pie,mince pies +mincepie,mincepies +mincer,mincers +minchen,minchens +minch,minches +mind boggler,mind bogglers +mind-boggler,mind-bogglers +mindedness,mindednesses +minde,mindes +minder,minders +mindflow,mindflows +mindfucking,mindfuckings +mind fuck,mind fucks +mindfuck,mindfucks +mind game,mind games +mind map,mind maps +mindmap,mindmaps +mind,minds +mind reader,mind readers +mind-reader,mind-readers +mindreader,mindreaders +mind rhyme,mind rhymes +mindscape,mindscapes +mindscrew,mindscrews +mind's ear,mind's ears +mindset,mindsets +mind's eye,mind's eyes +mindstate,mindstates +mindstream,mindstreams +mindtool,mindtools +mindwipe,mindwipes +minecart,minecarts +minefield,minefields +mineful,minefuls +minehunter,minehunters +minelayer,minelayers +mine,mines +mine,mines +minenwerfer,minenwerfers,minenwerfer +mineola,mineolas +mineral acid,mineral acids +mineralist,mineralists +mineralizer,mineralizers +mineral lick,mineral licks +minerall,mineralls +mineral,minerals +mineralocorticoid,mineralocorticoids +mineralogist,mineralogists +mineralogy,mineralogies +mineraloid,mineraloids +mineral oil,mineral oils +mineral right,mineral rights +miner,miners +miner's canary,miner's canaries +miners' canary,miners' canaries +miner's inch,miner's inches +mineshaft,mineshafts +minesweeper,minesweepers +minever,minevers +mineworker,mineworkers +minge,minges +minge,minges +minger,mingers +mingle-mangle,mingle-mangles +mingle,mingles +mingler,minglers +ming,mings +minheap,minheaps +miniagency,miniagencies +miniature,miniatures +Miniature Pinscher,Miniature Pinschers +miniature poodle,miniature poodles +miniaturisation,miniaturisations +miniaturist,miniaturists +miniaturization,miniaturizations +miniaturizer,miniaturizers +minibag,minibags +miniband,minibands +minibar,minibars +minibattle,minibattles +minibeast,minibeasts +minibike,minibikes +minibiography,minibiographies +miniblind,miniblinds +miniblog,miniblogs +minibond,minibonds +miniboom,minibooms +miniboss,minibosses +minibox,miniboxes +minibraai,minibraais +minibreak,minibreaks +minibrowser,minibrowsers +minibubble,minibubbles +miniburger,miniburgers +miniburst,minibursts +minibus,minibuses,minibusses +minicab,minicabs +minicamera,minicameras +minicam,minicams +minicamp,minicamps +minicanal,minicanals +minican,minicans +minicar,minicars +minicasino,minicasinos +minicassette,minicassettes +minicelebrity,minicelebrities +minicell,minicells +minicellulosome,minicellulosomes +minichain,minichains +minicheeseburger,minicheeseburgers +minichromosome,minichromosomes +minicircle,minicircles +minicity,minicities +miniclade,miniclades +miniclimax,miniclimaxes +minicoat,minicoats +minicollection,minicollections +minicolumn,minicolumns +minicom,minicoms +minicompound,minicompounds +minicomputer,minicomputers +miniconcert,miniconcerts +miniconglomerate,miniconglomerates +Miniconjou,Miniconjou,Miniconjous,Miniconjoux +miniconstitution,miniconstitutions +minicontig,minicontigs +minicorder,minicorders +minicourse,minicourses +Mini Cube,Mini Cubes +minidictionary,minidictionaries +minidisaster,minidisasters +minidisc,minidiscs +mini-diskette,mini-diskettes +minidiskette,minidiskettes +minidistrict,minidistricts +minidocumentary,minidocumentaries +minidome,minidomes +minidrama,minidramas +minidress,minidresses +minidump,minidumps +MiniΓ© ball,MiniΓ© balls +miniempire,miniempires +miniepic,miniepics +MiniΓ© rifle,MiniΓ© rifles +minifacial,minifacials +minifestival,minifestivals +minifig,minifigs +minifilm,minifilms +miniflag,miniflags +mini-floppy,mini-floppies +minifloppy,minifloppies +minifridge,minifridges +minifundium,minifundia +minigame,minigames +minigastrin,minigastrins +minigene,minigenes +minigenre,minigenres +minigolfer,minigolfers +miniguide,miniguides +minigun,miniguns +minigunner,minigunners +minihalo,minihalos,minihaloes +minihamburger,minihamburgers +minihelix,minihelixes,minihelices +minihistory,minihistories +minijack,minijacks +minijeep,minijeeps +minijoystick,minijoysticks +minikilt,minikilts +minikin,minikins +minikitchen,minikitchens +minilab,minilabs +minilamp,minilamps +minilecture,minilectures +miniloan,miniloans +minilocus,miniloci +minimainframe,minimainframes +minimajor,minimajors +minimalisation,minimalisations +minimalist,minimalists +minimalization,minimalizations +minimall,minimalls +minimal medium,minimal media +mini-mal,mini-mals +minimal pair,minimal pairs +minimal polynomial,minimal polynomials +minimal surface,minimal surfaces +minimand,minimands +minimansion,minimansions +minimarathon,minimarathons +minimarket,minimarkets +minimart,minimarts +minimax,minimaxes +mini-me,mini-mes +miniment,miniments +minimetropolis,minimetropolises +minimicrophone,minimicrophones +minimifidian,minimifidians +minimike,minimikes +minimill,minimills +mini,minis +minimisation,minimisations +minimiser,minimisers +minimization,minimizations +minimizer,minimizers +minim,minims +Minim,Minims,Minimi +minimodule,minimodules +Minimoog,Minimoogs +mini-moon,mini-moons +minimoon,minimoons +minimotif,minimotifs +mini-moto,mini-motos +minimoto,minimotos +minimovie,minimovies +minim rest,minim rests +minimuffin,minimuffins +minimum connecting time,minimum connecting times +minimum,minimums,minima +minimum wage,minimum wages +minimuseum,minimuseums +minimusical,minimusicals +minimus,minimi +mining bee,mining bees +minionette,minionettes +minion,minions +miniopterid,miniopterids +miniparade,miniparades +minipark,miniparks +minipig,minipigs +miniplasmid,miniplasmids +miniplay,miniplays +miniplug,miniplugs +miniportrait,miniportraits +miniprep,minipreps +minipretzel,minipretzels +miniprinter,miniprinters +minipump,minipumps +minirebellion,minirebellions +minirefrigerator,minirefrigerators +miniretrospective,miniretrospectives +minirevolt,minirevolts +mini-roundabout,mini-roundabouts +minisaga,minisagas +minisatellite,minisatellites +minisat,minisats +minischool,minischools +miniscreen,miniscreens +miniseason,miniseasons +miniserial,miniserials +miniseries,miniseries +minisession,minisessions +miniset,minisets +minishow,minishows +minisite,minisites +miniskirt,miniskirts +minislice,minislices +minislump,minislumps +minisode,minisodes +minispectacle,minispectacles +minisphere,minispheres +minispiral,minispirals +ministage,ministages +ministate,ministates +ministerialist,ministerialists +ministerium,ministeriums +minister,ministers +minister-president,ministers-president +ministership,ministerships +minister without portfolio,ministers without portfolio +ministery,ministeries +ministrant,ministrants +ministration,ministrations +ministre,ministres +ministress,ministresses +mini stroke,mini strokes +mini-stroke,mini-strokes +ministroke,ministrokes +ministry,ministries +ministry of education,ministries of education +ministudio,ministudios +minisubmarine,minisubmarines +minisub,minisubs +minisuite,minisuites +minisummit,minisummits +minisupercomputer,minisupercomputers +minisuper,minisupers +minisuperspace,minisuperspaces +minisurvey,minisurveys +minitheater,minitheaters +minitheme,minithemes +minitour,minitours +minitractor,minitractors +minitrampoline,minitrampolines +mini-trench,mini-trenchs +minitrend,minitrends +minitrial,minitrials +minitruck,minitrucks +minivacation,minivacations +minivan,minivans +miniver,minivers +miniversion,miniversions +minivesicle,minivesicles +minivet,minivets +minivoid,minivoids +miniwagon,miniwagons +miniwar,miniwars +miniyacht,miniyachts +minizone,minizones +mink coat,mink coats +minke,minkes +minke whale,minke whales +mink,mink,minks +Minkowski space,Minkowski spaces +Minkowski spacetime,Minkowski spacetimes +minmaxer,minmaxers +minmi,minmis +min,mins +min,mins +min.,mins. +minneola,minneolas +minnesinger,minnesingers +Minnesotan,Minnesotans +minnit,minnits +minnower,minnowers +minnow,minnows +minny,minnies +Minoan,Minoans +mino bird,mino birds +minorant,minorants +minoration,minorations +minorative,minoratives +minor axis,minor axes +Minorcan,Minorcans +minor celebrity,minor celebrities +minor chord,minor chords +Minoress,Minoresses +minor interval,minor intervals +Minorite,Minorites +minority cabinet,minority cabinets +minority council,minority councils +minority government,minority governments +minority leader,minority leaders +Minority Leader,Minority Leaders +minority,minorities +minority report,minority reports +minor key,minor keys +minor league,minor leagues +minor,minors +minor ninth,minor ninths +minor planet,minor planets +minor premise,minor premises +minor prophet,minor prophets +minor scale,minor scales +minor second,minor seconds +minor seventh chord,minor seventh chords +minor seventh,minor sevenths +minor sixth,minor sixths +minor suit,minor suits +minor third,minor thirds +minor triad,minor triads +minotaur,minotaurs +minour,minours +minow,minows +minshuku,minshukus +minster house,minster houses +minster,minsters +minstrel,minstrels +minstrelry,minstrelries +minstrel show,minstrel shows +minstrelsy,minstrelsies +mintaqah,manatiq +mint cream,mint creams +minter,minters +minterm,minterms +mint jelly,mint jellies +mintman,mintmen +mintmark,mintmarks +mintmaster,mintmasters +mint,mints +mint,mints +mint,mints +mint tea,mint teas +minuend,minuends +minuet,minuets +minuid,minuids +minuity,minuities +minum,minums +minuscule,minuscules +minus,mini,minuses +minus-plus sign,minus-plus signs +minus sign,minus signs +minute hand,minute hands +minute-jack,minute-jacks +minute man,minute men +minute-man,minute-men +minuteman,minutemen +minute,minutes +minute of angle,minutes of angle +minute of arc,minutes of arc +minute repeater,minute repeaters +minutia,minutiae,minutiΓ¦ +minx,minxes +minx,minxes +minxship,minxships +minyan,minyanim,minyans +miogeocline,miogeoclines +miosis,mioses +miotic,miotics +mipmap,mipmaps +MIPS,MIPSs +miquelet,miquelets +mirabelle plum,mirabelle plums +mirabelle prune,mirabelle prunes +mirabilary,mirabilaries +mirabilis,mirabilises +mirach,mirachs +miracidium,miracidia +miracle,miracles +miracle-monger,miracle-mongers +miracle play,miracle plays +miracle worker,miracle workers +mirador,miradors +mirage,mirages +Miranda right,Miranda rights +Miranda warning,Miranda warnings +Mirandese,Mirandese +mirapinnid,mirapinnids +mirasol,mirasols +mirative,miratives +mire,mires +mire,mires +mirid bug,mirid bugs +mirid,mirids +mirliton,mirlitons +mir,mirs +miRNAome,miRNAomes +mirrnyong,mirrnyongs +mirror ball,mirror balls +mirrorball,mirrorballs +mirror image,mirror images +mirroring,mirrorings +mirrorless,mirrorlesses +mirror,mirrors +mirror neuron,mirror neurons +mirror polisher,mirror polishers +mirror punishment,mirror punishments +mirror will,mirror wills +mirrour,mirrours +mirth,mirths +mirtron,mirtrons +MIRV,MIRVs +mirza,mirzas +Mirza,Mirzas +misactivation,misactivations +misadventurer,misadventurers +misaffection,misaffections +misalignment,misalignments +misallegation,misallegations +misalliance,misalliances +misallocation,misallocations +misanalysis,misanalyses +misandric,misandrics +misandrist,misandrists +misandronist,misandronists +misanga,misangas +misannotation,misannotations +misanthrope,misanthropes +misanthropist,misanthropists +misapplication,misapplications +misappreciation,misappreciations +misapprehension,misapprehensions +misappropriation,misappropriations +misassembly,misassemblies +misassignment,misassignments +misattribution,misattributions +misaventure,misaventures +misbeat,misbeats +misbehaver,misbehavers +misbehaviour,misbehaviours +misbelief,misbeliefs +misbeliever,misbelievers +misbelieving,misbelievings +misbid,misbids +misbirth,misbirths +misbrander,misbranders +miscalculation,miscalculations +miscalibration,miscalibrations +miscanthus,miscanthuses +miscarriage,miscarriages +miscarriage of justice,miscarriages of justice +miscast,miscasts +miscategorisation,miscategorisations +miscategorization,miscategorizations +miscellanarian,miscellanarians +miscellanea,miscellanea +miscellaneous charge order,miscellaneous charge orders +miscellaneum,miscellanea +miscellanist,miscellanists +miscellany,miscellanies +miscensure,miscensures +mischallenge,mischallenges +mischance,mischances +mischan,mischans +mischaracterisation,mischaracterisations +mischaracterization,mischaracterizations +mischief,mischiefs +mischieving,mischievings +mischievousness,mischievousnesses +Mischling,Mischlings,Mischlinge +mischmetal,mischmetals +mischoice,mischoices +misclaim,misclaims +misclassification,misclassifications +miscleavage,miscleavages +misclick,misclicks +miscoding,miscodings +miscollocation,miscollocations +miscome,miscomes +miscommunication,miscommunications +miscomprehension,miscomprehensions +miscomputation,miscomputations +misconceit,misconceits +misconceiver,misconceivers +misconception,misconceptions +misconclusion,misconclusions +misconfiguration,misconfigurations +misconjecture,misconjectures +misconjugate,misconjugates +misconnect,misconnects +misconsequence,misconsequences +misconstrual,misconstruals +misconstruation,misconstruations +misconstruction,misconstructions +misconstruer,misconstruers +miscopy,miscopies +miscorrection,miscorrections +miscreant,miscreants +miscreation,miscreations +miscreator,miscreators +miscreaunt,miscreaunts +miscredent,miscredents +miscrop,miscrops +miscue,miscues +miscure,miscures +misdate,misdates +mis-dealer,mis-dealers +misdealer,misdealers +misdeal,misdeals +misdeed,misdeeds +misdefinition,misdefinitions +misdemeanant,misdemeanants +misdemeanor,misdemeanors +misdemeanour,misdemeanours +misdesert,misdeserts +misdetection,misdetections +misdiagnosis,misdiagnoses +misdialing,misdialings +misdiet,misdiets +misdirection,misdirections +misdirector,misdirectors +misdivision,misdivisions +misdoer,misdoers +misdoing,misdoings +misease,miseases +misedition,miseditions +mise en espace,mises en espace +mise en scΓ¨ne,mises en scΓ¨ne +mise,mises +misentry,misentries +miserabilist,miserabilists +miserablist,miserablists +misΓ¨re,misΓ¨res +misericorde,misericordes +misericordia,misericordias +miser,misers +miseryguts,miseryguts +misery,miseries +misery whip,misery whips +Misesean,Miseseans +Misesian,Misesians +misexpression,misexpressions +misfall,misfalls +misfeasance,misfeasances +misfeature,misfeatures +misfield,misfields +misfiling,misfilings +misfire,misfires +misfiring,misfirings +misfit,misfits +misfriend,misfriends +misgiving,misgivings +misgovernaunce,misgovernaunces +misguggle,misguggles +misguidance,misguidances +misguider,misguiders +misguilt,misguilts +mishandler,mishandlers +mishap,mishaps +Mishar,Mishars +misheed,misheeds +mishit,mishits +mish-mash,mish-mashes +mishmash,mishmashes +mish,mishes +mishold,misholds +mishope,mishopes +mishpocha,mishpochas +mishyphenation,mishyphenations +mishy-phen,mishy-phens +misidentification,misidentifications +misimpression,misimpressions +misimprovement,misimprovements +misincentive,misincentives +misincorporation,misincorporations +misinformant,misinformants +misinformer,misinformers +misinsertion,misinsertions +misintention,misintentions +misinterpretation,misinterpretations +misinterpreter,misinterpreters +misinvestment,misinvestments +misjoinder,misjoinders +misjudgement,misjudgements +misjudger,misjudgers +misjudgment,misjudgments +miskal,miskals +miskenning,miskennings +miskeying,miskeyings +miskick,miskicks +miskin,miskins +Miskito,Miskitos +misknowledge,misknowledges +mislaid property,mislaid properties +mislayer,mislayers +misleader,misleaders +misliker,mislikers +mislin,mislins +mislocalization,mislocalizations +mislocation,mislocations +mislook,mislooks +mislore,mislores +mismanager,mismanagers +mismapping,mismappings +mismarking,mismarkings +mismatcher,mismatchers +mismatching,mismatchings +mismatch,mismatches +misname,misnames +misnaming,misnamings +misnomer,misnomers +misocapnist,misocapnists +misogamist,misogamists +misogyne,misogynes +misogynist,misogynists +misologist,misologists +misomaniac,misomaniacs +misomusist,misomusists +misoneist,misoneists +misopinion,misopinions +misorder,misorders +misorientation,misorientations +misotheist,misotheists +mispairing,mispairings +misparse,misparses +misparsing,misparsings +mispayment,mispayments +misperceiver,misperceivers +misperception,misperceptions +misper,mispers +mispersuasion,mispersuasions +misplacement,misplacements +misplant,misplants +misplay,misplays +mispleading,mispleadings +misprediction,mispredictions +mispricing,mispricings +misprint,misprints +misprision,misprisions +misprison,misprisons +misproceeding,misproceedings +mispronouncer,mispronouncers +mispronouncing,mispronouncings +misquotation,misquotations +misquoter,misquoters +misreading,misreadings +misread,misreads +misrecital,misrecitals +misregistration,misregistrations +misregulation,misregulations +misrepair,misrepairs +misrepresentation,misrepresentations +misrepresenter,misrepresenters +misrhyme,misrhymes +misrule,misrules +misruler,misrulers +misruling,misrulings +missalette,missalettes +missal,missals +missed abortion,missed abortions +missed approach,missed approaches +missed miscarriage,missed miscarriages +missegregation,missegregations +missel thrush,missel thrushs +missense mutation,missense mutations +misser,missers +misses,misseses +miss fire,miss fires +misshape,misshapes +missileer,missileers +missile,missiles +missile silo,missile silos +missing link,missing links +missing person,missing persons,missing people +missiologist,missiologists +missiology,missiologies +missionary-linguist,missionary-linguists +missionary,missionaries +missionary position,missionary positions +missioner,missioners +mission kill,mission kills +mission statement,mission statements +Mississauga,Mississauga +Mississaugan,Mississaugans +Mississippian,Mississippians +Mississippi,Mississippis +Mississippi sax,Mississippi saxes +Mississippi wind chime,Mississippi wind chimes +missive,missives +miss,misses +Miss,Misses,Mlles +missocialisation,missocialisations +missort,missorts +Missouran,Missourans +Missourian,Missourians +Missouri toothpick,Missouri toothpicks +misspeaker,misspeakers +misspeaking,misspeakings +misspecification,misspecifications +misspeller,misspellers +mis-spelling,mis-spellings +misspelling,misspellings +misspender,misspenders +missprision,missprisions +misstatement,misstatements +misstep,missteps +missuggestion,missuggestions +missummation,missummations +missus,missuses +missy,missies +mistake,mistakes +mistaker,mistakers +mistal,mistals +misteaching,misteachings +mistelle,mistelles +mistell,mistells +misteress,misteresses +mister,misters +mister,misters +mister,misters +Mister,Misters +mistery,misteries +misthought,misthoughts +misthrow,misthrows +mistic,mistics +mistico,misticos,misticoes +mistion,mistions +mistle,mistles +mistle thrush,mistle thrushes +mistletoebird,mistletoebirds +mistletoe,mistletoes +mistrafficking,mistraffickings +mistral,mistrals +mistranslation,mistranslations +mistransliteration,mistransliterations +mistreading,mistreadings +mistreater,mistreaters +mistreatment,mistreatments +mistresse,mistresses +mistress,mistresses +Mistress,Mistresses +mistrial,mistrials +mistrow,mistrows +mistruster,mistrusters +misturn,misturns +misty rose,misty roses +misunderestimation,misunderestimations +misunderstander,misunderstanders +misunderstanding,misunderstandings +misusage,misusages +misuse,misuses +misuser,misusers +misway,misways +misyar,misyars +misyield,misyields +Mitchell principle,Mitchell principles +Mitchell's hopping mouse,Mitchell's hopping mice +mitcher,mitchers +mite cheese,mite cheeses +mite,mites +miter joint,miter joints +miter-joint,miter-joints +miter,miters +miterwort,miterworts +mitey,miteys +mither,mithers +mithqal,mithqals +Mithraeum,Mithraea,Mithraeums +Mithraist,Mithraists +mithridate,mithridates +mithridatic,mithridatics +miticide,miticides +mitigant,mitigants +mitigation,mitigations +mitigator,mitigators +miting,mitings +mitochondrial matrix,mitochondrial matrices +mitochondrion,mitochondria +mitofusin,mitofusins +mitogenesis,mitogeneses +mitogen,mitogens +mitogenome,mitogenomes +mitokorezeme,mitokorezemes +mitomycin,mitomycins +mitosis,mitoses +mitosome,mitosomes +mitospore,mitospores +mitotic spindle,mitotic spindles +mitotype,mitotypes +mitovirus,mitoviruses +mitraillade,mitraillades +mitrailleur,mitrailleurs +mitrailleuse,mitrailleuses +mitral valve,mitral valves +mitre joint,mitre joints +mitre-joint,mitre-joints +mitre,mitres +mitrid,mitrids +mitsukurinid,mitsukurinids +Mitsunobu reaction,Mitsunobu reactions +mitten,mittens +mittimus,mittimuses,mittimi +mitt,mitts +mitty,mitties +miturgid,miturgids +mitzvah,mitzvahs,mitzvoth +mitzva,mitzvot +Miwokan,Miwokans +mixblood,mixbloods +mixdown,mixdowns +mixed bag,mixed bags +mixed blessing,mixed blessings +mixed drink,mixed drinks +mixed grill,mixed grills +mixed inhibition,mixed inhibitions +mixed initiative,mixed initiatives +mixed-interval chord,mixed-interval chords +mixed language,mixed languages +mixed marriage,mixed marriages +mixed message,mixed messages +mixed metaphor,mixed metaphors +mixed mutation,mixed mutations +mixed oxide,mixed oxides +mixed picture,mixed pictures +mixed reaction,mixed reactions +mixed salt,mixed salts +mixed signal,mixed signals +mixel,mixels +mixen,mixens +mixer,mixers +mixer tap,mixer taps +mixie,mixies +mixing bowl,mixing bowls +mixing console,mixing consoles +mixing,mixings +mix-in,mix-ins +mixin,mixins +mixling,mixlings +mixmaster,mixmasters +mixmer,mixmers +mix,mixes +mixodectid,mixodectids +mixolimnion,mixolimnions +mixologist,mixologists +mixoploid,mixoploids +mixosaurid,mixosaurids +mixoscopia,mixoscopias +mixotope,mixotopes +mixotroph,mixotrophs +mix tape,mix tapes +mixtape,mixtapes +mixtion,mixtions +mixtite,mixtites +mixture,mixtures +mixture of acetonitrile and trifluoroacetic acid,mixture of acetonitrile and trifluoroacetic acids +mix up,mix ups +mix-up,mix-ups +mixup,mixups +mizenmast,mizenmasts +mizen,mizens +mizithra,mizithras +mizmar,mizmars +mizmaze,mizmazes +Miz,Mizzes +mizrah,mizrahs +Miztec,Miztecs +mizzen course,mizzen courses +mizzen-mast,mizzen-masts +mizzenmast,mizzenmasts +mizzen,mizzens +mizz,mizzes +mizzy,mizzies +m'lady,m'ladies +M.L.A.,M.L.A.s +MLBer,MLBers +mleccha,mlecchas +m'lord,m'lords +MLSer,MLSers +m'lud,m'luds +MMAPI,MMAPIs +mmHg,mmHg +MMI,MMIs +MM,MMs +mmole,mmoles +MMO,MMOs +MMORPG,MMORPGs +MNA,MNAs +mneme,mnemes +mnemist,mnemists +mnemonician,mnemonicians +mnemonic,mnemonics +mnemonist,mnemonists +mnesarchaeid,mnesarchaeids +moabi,moabis +Moabite,Moabites +Moabitess,Moabitesses +moai,moai +moa,moas +moaner,moaners +moaning dove,moaning doves +moaning Minnie,moaning Minnies +moan,moans +moat,moats +mobad,mobads +mobber,mobbers +mobbing,mobbings +mob cap,mob caps +mobcap,mobcaps +mobed,mobeds +mobe,mobes +mobey,mobeys +Mobile Army Surgical Hospital,Mobile Army Surgical Hospitals +mobile game,mobile games +mobile home,mobile homes +mobile library,mobile libraries +mobile,mobiles +mobile phase,mobile phases +mobile phone,mobile phones +mobile speed bump,mobile speed bumps +mobile station,mobile stations +mobile telephone,mobile telephones +mobilette,mobilettes +mobilisation,mobilisations +mobility kill,mobility kills +mobility scooter,mobility scooters +mobilization,mobilizations +mobilizer,mobilizers +mobilome,mobilomes +mobisode,mobisodes +Mobius band,Mobius bands +MΓΆbius band,MΓΆbius bands +MΓΆbius group,MΓΆbius groups +Mobius strip,Mobius strips +MΓΆbius strip,MΓΆbius strips +moblogger,mobloggers +moblog,moblogs +mobmobile,mobmobiles +mob,mobs +mob,mobs +mobocracy,mobocracies +mobocrat,mobocrats +mobo,mobos +mobot,mobots +mob rule,mob rules +mobsman,mobsmen +mobster,mobsters +mobulid,mobulids +Mobutist,Mobutists +Mobutuist,Mobutuists +moby,mobies +mocassin,mocassins +moccasin,moccasins +MOCC,MOCCs +mochaccino,mochaccinos +Moche,Moche +mochiko,mochikos +mochila,mochilas +mochi,mochis +mochokid,mochokids +mockado,mockados,mockadoes +mockbird,mockbirds +mockbuster,mockbusters +mocker,mockers +mockery,mockeries +mock exam,mock exams +mocking bird,mocking birds +mockingbird,mockingbirds +mocking,mockings +mock,mocks +mock object,mock objects +mocktail,mocktails +mocktini,mocktinis +mockumentary,mockumentaries +mockumentation,mockumentations +mockup,mockups +moco,mocos +mocuck,mocucks +modacrylic,modacrylics +modal adverb,modal adverbs +modal auxiliary,modal auxiliaries +modal case,modal cases +modalist,modalists +modality,modalities +modal logic,modal logics +modal,modals +modal verb,modal verbs +modaraba,modarabas +modchip,modchips +mod con,mod cons +modder,modders +model-based design,model-based designs +model-based testing,model-based testings +model-driven architecture,model-driven architectures +model-driven testing,model-driven testings +modeler,modelers +modeling,modelings +modelisation,modelisations +modelizer,modelizers +modeller,modellers +modell,modells +model,models +model number,model numbers +model organism,model organisms +model solution,model solutions +model-view-controller,model-view-controllers +model–view–presenter,model–view–presenters +modem,modems +mode,modes +mode,modes +Modenese,Modenese +mode of discourse,modes of discourse +mode of thought,modes of thought +mode of transport,modes of transport +moderate,moderates +moderato,moderatos +moderator,moderators +moderatour,moderatours +moderatress,moderatresses +moderatrix,moderatrices,moderatrixes +modern antique,modern antiques +modernisation,modernisations +moderniser,modernisers +modernista,modernistas +modernist,modernists +modernity,modernities +modernizer,modernizers +modern,moderns +modern pentathlon,modern pentathlons +modest proposal,modest proposals +modesty board,modesty boards +modesty panel,modesty panels +modesty piece,modesty pieces +modette,modettes +modicum,modica +modificand,modificands +modification,modifications +modificative,modificatives +modified bitumen,modified bitumens +modified chest thrust,modified chest thrusts +modified,modifieds +modified starch,modified starches +modifier key,modifier keys +modifier,modifiers +modillion,modillions +modinha,modinhas +modiolid,modiolids +modiolus,modioli +modiomorphid,modiomorphids +modiste,modistes +modist,modists +modius,modii +mod man,mod men +mod man,mod men +mod,mods +Modoc,Modoc,Modocs +modularisation,modularisations +modularization,modularizations +modulation,modulations +modulator,modulators +module,modules +module pattern,module patterns +modulid,modulids +modulino,modulinos,modulini +modulus,moduli +modulus of elasticity,moduli of elasticity +modus,modi +modus operandi,modi operandi +Moebius band,Moebius bands +Moebius strip,Moebius strips +moegoe,moegoes +moel,moels +moenomycin,moenomycins +moepel,moepels +moeritheriid,moeritheriids +Moesian,Moesians +moffie,moffies +mofongo,mofongos +moggan,moggans +moggie,moggies +moggy,moggies +Moghul,Moghuls +mog,mogs +Mogor,Mogors +mogul,moguls +mogul,moguls +mogwai,mogwais +Mohamedan,Mohamedans +Mohametan,Mohametans +Mohammedan,Mohammedans +Mohammedist,Mohammedists +Mohammetan,Mohammetans +moha moha,moha mohas +moharrir,moharrirs +mohassil,mohassils +mohawk,mohawks +Mohawk,Mohawks +mohel,mohels,mohelim +Mohican,Mohicans +Mohist,Mohists +Mohmand,Mohmands,Mohmand +Mohock,Mohocks +mohoid,mohoids +Mohole,Moholes +moho,mohos +mohr,mohrs +Mohr pipette,Mohr pipettes +mohur,mohurs +moidore,moidores +moiety,moieties +moilee,moilees +moile,moiles +moil,moils +moineau,moineaus +moinid,moinids +moirΓ©,moirΓ©s +moirΓ© pattern,moirΓ© patterns +moirologist,moirologists +moistener,moisteners +moist moment,moist moments +moisture scan,moisture scans +moisturiser,moisturisers +moisturizer,moisturizers +mojado,mojados +mojarra,mojarras +mojito,mojitos +mojo,mojos +mokadour,mokadours +mokele-mbembe,mokele-mbembes +moke,mokes +mokihi,mokihis,mokihi +mokoro,mokoros +molal concentration,molal concentrations +molality,molalities +mola,molas +molar concentration,molar concentrations +molariform,molariforms +molarity,molarities +molar,molars +molar solution,molar solutions +molar tooth,molar teeth +molar volume,molar volumes +molary,molaries +molasse,molasses +molasses cane,molasses canes +molatto,molattos,molattoes +molcajete,molcajetes +Moldavian,Moldavians +moldavite,moldavites +moldboard,moldboards +molder,molders +mold fossil,mold fossils +molding,moldings +moldiwarp,moldiwarps +mold,molds +mold,molds +mold,molds +Moldovan,Moldovans +Moldovian,Moldovians +moldwarp,moldwarps +molebut,molebuts +molecast,molecasts +molecatcher,molecatchers +mole cricket,mole crickets +molecular assembler,molecular assemblers +molecular biologist,molecular biologists +molecular cloud,molecular clouds +molecular dipole,molecular dipoles +molecular entity,molecular entities +molecular formula,molecular formulas,molecular formulae +molecularization,molecularizations +molecular knife,molecular knives +molecular mass,molecular masses +molecular orbital,molecular orbitals +molecular sieve,molecular sieves +molecular weight,molecular weights +molecule,molecules,moleculΓ¦ +mole fraction,mole fractions +molehead,moleheads +molehill,molehills +mole,moles +mole,moles +mole,moles +mole,moles +mole,moles +mole,moles +mole,moles +mole rat,mole rats +molerat,molerats +mole run,mole runs +mole salamander,mole salamanders +moleskin,moleskins +molestache,molestaches +molestation,molestations +molester,molesters +molewarp,molewarps +molfile,molfiles +molid,molids +moline,molines +molinillo,molinillos +Molinist,Molinists +mollah,mollahs +mollemoke,mollemokes +MOLLE,MOLLEs +mollicute,mollicutes +mollie,mollies +mollification,mollifications +mollifier,mollifiers +mollisol,mollisols +moll,molls +molluscan,molluscans +molluscicide,molluscicides +molluscivore,molluscivores +mollusc,molluscs +molluscoid,molluscoids +molluskicide,molluskicides +mollusk,mollusks +mollycoddle,mollycoddles +mollycoddler,mollycoddlers +mollydooker,mollydookers +molly-guard,molly-guards +molly house,molly houses +mollying-bitch,mollying-bitches +mollying-cull,mollying-culls +Molly Maguire,Molly Maguires +molly-mawk,molly-mawks +mollymawk,mollymawks +molly,mollies +mol,mols +Molniya orbit,Molniya orbits +moloch,molochs +moloi,baloi +molosse,molosses +Molossian,Molossians +molossid,molossids +molossine,molossines +molossus,molossuses,molossi +Molotov cocktail,Molotov cocktails +molozonide,molozonides +molpadiid,molpadiids +molrac,molracs +molten lava cake,molten lava cakes +molter,molters +molt,molts +Moluccan,Moluccans +molybdate,molybdates +molybdoenzyme,molybdoenzymes +molybdopterin,molybdopterins +molybdovanadate,molybdovanadates +moly,molies +momager,momagers +mom and pop,mom and pops +mom cave,mom caves +mome,momes +moment arm,moment arms +momentary god,momentary gods +moment-generating function,moment-generating functions +moment,moments +moment of force,moments of force +moment of inertia,moments of inertia +moment of silence,moments of silence +moment of truth,moments of truth +momento,momentoes +momentum,momentums,momenta +momic,momics +momier,momiers +momilactone,momilactones +momist,momists +momma,mommas +momma's boy,momma's boys +mommery,mommeries +mommet,mommets +mom,moms +mommy blogger,mommy bloggers +mommyblogger,mommybloggers +mommy,mommies +mommy track,mommy tracks +momoir,momoirs +momo,momos +mo,mos +mo,mos +momotid,momotids +momot,momots +momphid,momphids +mompreneur,mompreneurs +momser,momsers +Monacan,Monacans +monacanthid,monacanthids +monachization,monachizations +monadic predicate logic,monadic predicate logics +monad,monads +monadnock,monadnocks +monadology,monadologies +monal,monals +monamide,monamides +monamine,monamines +mona,monas +monarchess,monarchesses +Monarchian,Monarchians +monarchid,monarchids +monarchist,monarchists +monarchizer,monarchizers +monarch,monarchs +monarchy,monarchies +monarda,monardas +monastery,monasteries +monastick,monasticks +monastic,monastics +monasticon,monasticons +monazite,monazites +Monday,Mondays +Monday morning quarterback,Monday morning quarterbacks +Monday-morning quarterback,Monday-morning quarterbacks +mondegreen,mondegreens +Mondeo Man,Mondeo men +mondo,mondos +mondongo,mondongos +MonΓ©gasque,MonΓ©gasques +mone,mones +mone,mones +moneran,monerans,monera +moner,moners +moneron,monerons,monera +monetarist,monetarists +monetary instrument,monetary instruments +monetary policy,monetary policies +monetary unit,monetary units +moneth,moneths +monetisation,monetisations +monetization,monetizations +Monet,Monets +money bag,money bags +moneybag,moneybags +money belt,money belts +money bomb,money bombs +money box,money boxes +moneyboy,moneyboys +money broker,money brokers +money changer,money changers +moneychanger,moneychangers +money chest,money chests +money clip,money clips +money cowry,money cowries +moneyer,moneyers +money-grubber,money-grubbers +moneygrubber,moneygrubbers +money-guard,money-guards +moneylender,moneylenders +money machine,money machines +money maker,money makers +moneymaker,moneymakers +money-making,money-makings +moneyman,moneymen +money market fund,money market funds +money market,money markets +money mule,money mules +money order,money orders +money pit,money pits +money scrivener,money scriveners +money shot,money shots +money spider,money spiders +money-spinner,money-spinners +moneyspinner,moneyspinners +money tree,money trees +moneywort,moneyworts +monger,mongers +mong,mongs +mong,mongs +mong,mongs +Mongolian gazelle,Mongolian gazelles +Mongolian gerbil,Mongolian gerbils +Mongolian,Mongolians +Mongolian spot,Mongolian spots +Mongolian wild ass,Mongolian wild asses +mongoloid,mongoloids +mΓΆngΓΆ,mΓΆngΓΆ +mongongo,mongongos +mongoose,mongooses,mongeese +mongoos,mongooses +mongrelisation,mongrelisations +mongrelization,mongrelizations +mongrel,mongrels +monial,monials +monial,monials +moniamond,moniamonds +monicker,monickers +monifier,monifiers +moniker,monikers +moniment,moniments +monimolimnion,monimolimnions,monimolimnia +monishment,monishments +monist,monists +monition,monitions +monitor lizard,monitor lizards +monitor,monitors +monitorship,monitorships +monitory,monitories +monitour,monitours +monitress,monitresses +monitrix,monitrices +monkery,monkeries +monkey boy,monkey boys +monkey bread,monkey breads +monkey-bread,monkey-breads +monkey-cup,monkey-cups +monkey-faced owl,monkey-faced owls +monkey flip,monkey flips +monkeyflower,monkeyflowers +Monkey Hanger,Monkey Hangers +monkey-house,monkey-houses +monkey jacket,monkey jackets +monkey,monkeys +monkey patch,monkey patches +monkeypod,monkeypods +monkey puzzle,monkey puzzles +monkey's fist,monkey's fists +monkey-shine,monkey-shines +monkeyshine,monkeyshines +monkey suit,monkey suits +monkey's wedding,monkeys' weddings +monkey trail,monkey trails +monkey trap,monkey traps +monkey wrench,monkey wrenches +monkey-wrench,monkey-wrenches +monkeywrench,monkeywrenchs +monkfish,monkfish,monkfishes +monkie,monkies +monk,monks +monk parakeet,monk parakeets +monk seal,monk seals +monk's pepper,monk's peppers +monk vulture,monk vultures +Mon,Mons +monoacetylation,monoacetylations +monoacid,monoacids +monoacrylate,monoacrylates +monoacylglycerol,monoacylglycerols +monoadduct,monoadducts +monoaldehyde,monoaldehydes +monoalkene,monoalkenes +monoalkoxide,monoalkoxides +monoalkylation,monoalkylations +monoalkynylation,monoalkynylations +monoamide,monoamides +monoamine,monoamines +monoamine oxidase,monoamine oxidases +monoaminosaccharide,monoaminosaccharides +monoaromatic,monoaromatics +monoarsenide,monoarsenides +monoarylation,monoarylations +monobactam,monobactams +monobander,monobanders +monoblast,monoblasts +monoblock,monoblocks +monobloc,monoblocs +monobromide,monobromides +monobromination,monobrominations +monobrow,monobrows +monocaprin,monocaprins +monocarbene,monocarbenes +monocarboxylate,monocarboxylates +monocarp,monocarps +monocation,monocations +monocentrid,monocentrids +monoceros,monoceroses +monochalcogenide,monochalcogenides +monochasium,monochasia +monochloride,monochlorides +monochlorination,monochlorinations +monochlorobiphenyl,monochlorobiphenyls +monochord,monochords +monochromated scanning transmission electron microscope,monochromated scanning transmission electron microscopes +monochromatization,monochromatizations +monochromat,monochromats +monochromator,monochromators +monochrome,monochromes +monochromist,monochromists +monocle,monocles +monocline,monoclines +monoclonal antibody,monoclonal antibodies +monoclonal,monoclonals +monocolpate,monocolpates +monoconjugate,monoconjugates +monocoque,monocoques +monocot,monocots +monocotyledon,monocotyledons +monocotyl,monocotyls +monocrat,monocrats +monocrystal,monocrystals +monocular,monoculars +monocule,monocules +monoculturalism,monoculturalisms +monoculture,monocultures +monocycle,monocycles +monocyte,monocytes +monodactylid,monodactylids +monodelphian,monodelphians +monodelph,monodelphs +monodendrimer,monodendrimers +monodendron,monodendrons +monoderivative,monoderivatives +monodist,monodists +monodomain,monodomains +monodon,monodons +monodontid,monodontids +monodrama,monodramas +monodrame,monodrames +monody,monodies +monoene,monoenes +monoepoxide,monoepoxides +monoester,monoesters +monoetherate,monoetherates +monofilament,monofilaments +monofil,monofils +monofin,monofins +monofluoride,monofluorides +monofractal,monofractals +monogamist,monogamists +monogenean,monogeneans +monogenic,monogenics +monogenist,monogenists +monoglot,monoglots +monoglucuronide,monoglucuronides +monoglyceride,monoglycerides +monognathid,monognathids +monogon,monogons +monogonont,monogononts +monogramme,monogrammes +monogram,monograms +monogram,monograms +monogram,monograms +monographer,monographers +monographist,monographists +monograph,monographs +monography,monographies +monohaloarene,monohaloarenes +monohull,monohulls +monohybrid,monohybrids +monohydrate,monohydrates +monohydride,monohydrides +monohydrocalcite,monohydrocalcites +monohydrochloride,monohydrochlorides +monohydroxybenzoate,monohydroxybenzoates +monoid,monoids +monoimine,monoimines +monojet,monojets +monokine,monokines +monokini,monokinis +monolaurate,monolaurates +monolayer,monolayers +monolignol,monolignols +monoline,monolines +monolith,monoliths +monologist,monologists +monolog,monologs +monologue,monologues +monologuist,monologuists +monomachia,monomachias +monomachist,monomachists +monomachy,monomachies +monomane,monomanes +monomaniac,monomaniacs +monomania,monomanias,monomaniΓ¦ +monomath,monomaths +monome,monomes +monomerisation,monomerisations +monomerization,monomerizations +monomer,monomers +monometallist,monometallists +monometer,monometers +monomethine,monomethines +monomethylase,monomethylases +monomethylation,monomethylations +monomethyltransferase,monomethyltransferases +monomial,monomials +monomino,monominoes +monommatid,monommatids +monommid,monommids +mono,monos +mono,monos +monomorphism,monomorphisms +monomyelocyte,monomyelocytes +monomyth,monomyths +mononitrate,mononitrates +mononitration,mononitrations +mononitride,mononitrides +mononucleosome,mononucleosomes +mononucleotide,mononucleotides +mononumerosis,mononumeroses +mononym,mononyms +monooleate,monooleates +monoolein,monooleins +monooxygenase,monooxygenases +monooxygenation,monooxygenations +monopathophobia,monopathophobias +monopathy,monopathies +monopeptide,monopeptides +monophage,monophages +monophenol,monophenols +monophlebid,monophlebids +monophosphane,monophosphanes +monophosphatase,monophosphatases +monophosphate,monophosphates +monophosphide,monophosphides +monophosphonucleoside,monophosphonucleosides +monophosphorylation,monophosphorylations +monophthongisation,monophthongisations +monophthongization,monophthongizations +monophthong,monophthongs +monophyletic group,monophyletic groups +monophylum,monophyla +monophyodont,monophyodonts +monophysite,monophysites +Monophysite,Monophysites +monopipe,monopipes +monoplane,monoplanes +monoplast,monoplasts +monoploid,monoploids +monopode,monopodes +monopodium,monopodiums,monopodia +monopod,monopods +monopody,monopodies +monopole,monopoles +monopole,monopoles +monopoler,monopolers +monopolist,monopolists +monopolite,monopolites +monopolizer,monopolizers +monopolylogue,monopolylogues +monopoly,monopolies +monoprint,monoprints +monopropellant,monopropellants +monopsonist,monopsonists +monopsony,monopsonies +monopteron,monoptera +monopthong,monopthongs +monoptote,monoptotes +monorail,monorails +monorchid,monorchids +monorchiid,monorchiids +monoreduction,monoreductions +monoreme,monoremes +monorhyme,monorhymes +monosaccharide,monosaccharides +monose,monoses +monosilicide,monosilicides +monoskier,monoskiers +monoski,monoskis +monosperm,monosperms +monostich,monostiches +monostrophe,monostrophes +monosubstitution,monosubstitutions +monosuit,monosuits +monosulfide,monosulfides +monosulphide,monosulphides +monosulphuret,monosulphurets +monosyllabic,monosyllabics +monosyllable,monosyllables +monoterpene,monoterpenes +monoterpenoid,monoterpenoids +monotheism,monotheisms +monotheist,monotheists +Monothelete,Monotheletes +Monothelite,Monothelites +monotherapy,monotherapies +monothioacetal,monothioacetals +monothioglycerol,monothioglycerols +monothiohemiacetal,monothiohemiacetals +monothiophosphate,monothiophosphates +monotint,monotints +monotomid,monotomids +monotone function,monotone functions +monotone,monotones +monotonic function,monotonic functions +monotonist,monotonists +monotony,monotonies +monotransitivity,monotransitivities +monotreme,monotremes +monotriglyph,monotriglyphs +monotrysian,monotrysians +monotype,monotypes +monoubiquitination,monoubiquitinations +monoubiquitin,monoubiquitins +monoubiquitylation,monoubiquitylations +mono-unsaturate,mono-unsaturates +monounsaturate,monounsaturates +monovacancy,monovacancies +monowheel,monowheels +monoxide,monoxides +monoxime,monoximes +monoxylon,monoxylons +Monrovian,Monrovians +monseigneur,monseigneurs,messeigneurs +Monseigneur,Monseigneurs,Messeigneurs +Monsignor,Monsignori +monsignor,monsignors +mons,montes +monsoon bucket,monsoon buckets +monsoon,monsoons +monsoon season,monsoon seasons +monstera,monsteras +monster cock,monster cocks +monster-cock,monster-cocks +monstercock,monstercocks +monsterization,monsterizations +monsterlet,monsterlets +monsterling,monsterlings +monster,monsters +monster truck,monster trucks +monstrance,monstrances +monstre,monstres +monstrillid,monstrillids +monstrosity,monstrosities +mons veneris,montes veneris +montacutid,montacutids +montage,montages +Montanan,Montanans +montane,montanes +Montanist,Montanists +montant,montants +montant,montants +Monte Carlian,Monte Carlians +Monte Carlo method,Monte Carlo methods +Monte Cristo sandwich,Monte Cristo sandwiches +Montegonian,Montegonians +monteith,monteiths +Montenegrin,Montenegrins +Monterey cypress,Monterey cypresses +Monterey pine,Monterey pines +montero,monteros +Montessorian,Montessorians +monteth,monteths +Montgolfier,Montgolfiers +Montgomery pie,Montgomery pies +monther,monthers +monthling,monthlings +monthly,monthlies +month,months +month to date,months to date +monticle,monticles +monticule,monticules +mont,monts +montmorillonite,montmorillonites +montoir,montoirs +monton,montons +Montrachet,Montrachets +Montrealer,Montrealers +montross,montrosses +Montserratian,Montserratians +montuno,montunos +montuosity,montuosities +monument,monuments +monureide,monureides +monzonite,monzonites +moob,moobs +moocha,moochas +moocher,moochers +mooch,mooches +moo cow,moo cows +moo-cow,moo-cows +mooder,mooders +moodir,moodirs +mood message,mood messages +mood,moods +mood,moods +mood ring,mood rings +moodscape,moodscapes +moodsetter,moodsetters +mood swing,mood swings +mooeth,mooeths +mooey,mooeys +mooing,mooings +mook,mooks +mook,mooks +moolah,moolahs +mooli,moolis +moollah,moollahs +moolooite,moolooites +moo-moo,moo-moos +moo,moos +moonack,moonacks +moon bag,moon bags +moonball,moonballs +moonbase,moonbases +moonbat,moonbats +moonbeam,moonbeams +moon bear,moon bears +moon-blind,moon-blinds +moon blindness,moon blindnesses +moon boot,moon boots +moon bounce,moon bounces +moonbow,moonbows +moonburn,moonburns +moon cake,moon cakes +mooncake,mooncakes +moon-calf,moon-calves +mooncalf,mooncalves +moonchild,moonchildren +mooncusser,mooncussers +moondial,moondials +mooner,mooners +moonet,moonets +mooneye,mooneyes +moon-face,moon-faces +moonfish,moonfish,moonfishes +moonflower,moonflowers +moonglade,moonglades +moong,moongs +moonie,moonies +Moonie,Moonies +mooning,moonings +moon landing,moon landings +moon language,moon languages +moonlet,moonlets +moon letter,moon letters +moonlighter,moonlighters +moonling,moonlings +moon,moons +moonnaut,moonnauts +moonpool,moonpools +moonquake,moonquakes +moonraker,moonrakers +moon rat,moon rats +moonrat,moonrats +moonrise,moonrises +moon rock,moon rocks +moon roof,moon roofs +moonroof,moonroofs +moonsail,moonsails +moonscape,moonscapes +moonseed,moonseeds +moonset,moonsets +moonshee,moonshees +moonshine,moonshines +moonshiner,moonshiners +moonshiner's turn,moonshiners' turns +moonshiner U,moonshiner Us +moon shot,moon shots +moonshot,moonshots +moonstone,moonstones +moonwake,moonwakes +moonwalker,moonwalkers +moonwalk,moonwalks +moonwort,moonworts +moony,moonies +moorage,moorages +moorball,moorballs +moorbird,moorbirds +moorcock,moorcocks +moorer,moorers +Mooress,Mooresses +moorfowl,moorfowls +moorhen,moorhens +mooring,moorings +Moorish Scientist,Moorish Scientists +moorland,moorlands +moor macaque,moor macaques +moor,moors +Moor,Moors +moortop,moortops +mooruk,mooruks +moory,moories +moosebird,moosebirds +mooseburger,mooseburgers +moose,moose,mooses,meese +moose,mooses +mooseskin,mooseskins +moose test,moose tests +moot court,moot courts +mooter,mooters +moot-hall,moot-halls +moothill,moothills +mootman,mootmen +moot,moots +moot,moots +moot point,moot points +mopaliid,mopaliids +mopane,mopanes +mopboard,mopboards +mo-ped,mo-peds +moped,mopeds +mope,mopes +moper,mopers +mophandle,mophandles +mop head,mop heads +mophead,mopheads +Moplah,Moplahs +Mopla,Moplas +mop,mops +mopoke,mopokes +mopologist,mopologists +mopper,moppers +moppet,moppets +mopping,moppings +mopsey,mopseys +mop squeezer,mop squeezers +mopstick,mopsticks +mopsy,mopsies +moptop,moptops +moqueca,moquecas +moquette,moquettes +Moqui marble,Moqui marbles +morabitino,morabitinos +moraine,moraines +moral code,moral codes +moralfag,moralfags +moral fiber,moral fibers +moral fibre,moral fibres +moral high ground,moral high grounds +moralist,moralists +morality play,morality plays +moralization,moralizations +moralizer,moralizers +moralizing,moralizings +moraller,morallers +moral low ground,moral low grounds +moral minimum,moral minimums,moral minima +moral,morals +moral philosophy,moral philosophies +moral suasion,moral suasions +moral system,moral systems +mora,morae,moras +mora,moras +mora,moras +moran,morans +morass,morasses +moratorium,moratoriums,moratoria +Moravian,Moravians +Moravian star,Moravian stars +moray eel,moray eels +moray,morays +morbillivirus,morbilliviruses +morbosity,morbosities +morceau,morceaus +morcellation,morcellations +morcellator,morcellators +morcel,morcels +morcha,morchas +morcilla,morcillas +mordaciid,mordaciids +mordancy,mordancies +mordant,mordants +mordellid,mordellids +mordente,mordentes +mordent,mordents +Mordovian,Mordovians +Mordvinian,Mordvinians +morefold,morefolds +moreland,morelands +morello,morellos +morel,morels +more,mores +morepork,moreporks +moresome,moresomes +Moreton Bay bug,Moreton Bay bugs +morgan,morgans +Morgan,Morgans +morgay,morgays +morgen,morgens +morglay,morglays +Morgon,Morgons +morgue,morgues +Morian,Morians +moribund,moribunds +morice,morices +morid,morids +moril,morils +morinda,morindas +morinel,morinels +moringa,moringas +moringuid,moringuids +morin khuur,morin khuurs +morion,morions +morion,morions +Moriori,Morioris,Moriori +morisco,moriscos +Morisco,Moriscos +morisk,morisks +morkin,morkins +morland,morlands +morling,morlings +Morlock,Morlocks +mormal,mormals +mormo,mormos +Mormon cricket,Mormon crickets +Mormoness,Mormonesses +Mormonite,Mormonites +Mormon,Mormons +mormoopid,mormoopids +MOR,MORs +mormyrid,mormyrids +mormyromast,mormyromasts +morning after,morning afters +morning-after,morning-afters +morning-after pill,morning-after pills +morning coat,morning coats +morning draught,morning draughts +morning gift,morning gifts +morning-gift,morning-gifts +morninggift,morninggifts +morning glory,morning glories +morning gown,morning gowns +morning gun,morning guns +morning kitchen,morning kitchens +morningmare,morningmares +morning,mornings +morning person,morning people +morning room,morning rooms +morning star,morning stars +morningstar,morningstars +morning suit,morning suits +morning tea,morning teas +morning tent,morning tents +morning wood,morning woods +morning zoo,morning zoos +morn,morns +mornynge,mornynges +Moroccan,Moroccans +morocco,moroccos +morocoy,morocoys +morology,morologies +moronid,moronids +moron,morons +morosoph,morosophs +moroxylate,moroxylates +morphant,morphants +morpheein,morpheeins +morpheme,morphemes +morphe,morphes +morphew,morphews +morphic unit,morphic units +morphine alkaloid,morphine alkaloids +morphing,morphings +morphinomane,morphinomanes +morphinomaniac,morphinomaniacs +morphism,morphisms +morph,morphs +morphodite,morphodites +morphogene,morphogenes +morphogen,morphogens +morphograph,morphographs +morpholine,morpholines +morpholino,morpholinos +morpholinone,morpholinones +morpholinyl,morpholinyls +morphologist,morphologists +morphome,morphomes +morpho,morphos +morphon,morphons +morphophoneme,morphophonemes +morphoplasm,morphoplasms +morphosis,morphoses +morphospace,morphospaces +morphostat,morphostats +morphosyntax,morphosyntaxes +morphotaxon,morphotaxa +morphotype,morphotypes +morphovar,morphovars +morpion,morpions +morrice,morrices +morricer,morricers +Morris column,Morris columns +morris dance,morris dances +morris dancer,morris dancers +morris,morrises +morris,morrises +morris-pike,morris-pikes +morrocoy,morrocoys +morrot,morrots +morrow,morrows +morrowtide,morrowtides +Morse function,Morse functions +morsel,morsels +morse,morses +morse,morses +mortadella,mortadellas +mortal coil,mortal coils +mortalist,mortalists +mortalitie,mortalities +mortality rate,mortality rates +mortal,mortals +mortal sin,mortal sins +mortarboard,mortarboards +mortarium,mortaria +mortarman,mortarmen +mort cloth,mort cloths +mortgage-backed security,mortgage-backed securities +mortgage bond,mortgage bonds +mortgagee,mortgagees +mortgage lender,mortgage lenders +mortgage,mortgages +mortgager,mortgagers +mortgagor,mortgagors +mortice,mortices +mortician,morticians +mortification,mortifications +mortifier,mortifiers +mortise-and-tenon joint,mortise-and-tenon joints +mortise,mortises +mortling,mortlings +mortmain,mortmains +mort,morts +mort,morts +mort,morts +mort,morts +Morton's toe,Morton's toes +mortpay,mortpays +mortress,mortresses +mortrew,mortrews +mortsafe,mortsafes +mort stone,mort stones +mortuary,mortuaries +morula,morulae +morwe,morwes +morwening,morwenings +morwong,morwongs +Mosaical rod,Mosaical rods +mosaicist,mosaicists +mosaicity,mosaicities +mosaicking,mosaickings +mosaick,mosaicks +mosaic,mosaics +mosasaurid,mosasaurids +mosasaurine,mosasaurines +mosasaur,mosasaurs +mosasauroid,mosasauroids +mosbolletjie,mosbolletjies +moschatel,moschatels +moschid,moschids +moschorhinid,moschorhinids +Moscovian,Moscovians +Moselle,Moselles +Moses basket,Moses baskets +MOSFET,MOSFETs +moshava,moshavot +moshav,moshavs,moshavim +moshavnik,moshavniks +mosher,moshers +mosh pit,mosh pits +moshpit,moshpits +mosk,mosks +Moslem,Moslems +Mosotho,Basotho +mosque affiliation,mosque affiliations +mosque-goer,mosque-goers +mosquegoer,mosquegoers +mosque,mosques +mosquito bite,mosquito bites +mosquitocide,mosquitocides +mosquito coil,mosquito coils +mosquitofish,mosquitofishes,mosquitofish +mosquito hawk,mosquito hawks +mosquito,mosquitos,mosquitoes +mosquito net,mosquito nets +moss animal,moss animals +mossback,mossbacks +mossbanker,mossbankers +mossbunker,mossbunkers +moss frog,moss frogs +moss green,moss greens +mossie,mossies +mossie,mossies +Mossie,Mossies +moss lawn,moss lawns +moss stitch,moss stitches +moss-trooper,moss-troopers +mosstrooper,mosstroopers +mossycup,mossycups +most muscular,most musculars +most significant bit,most significant bits +most significant byte,most significant bytes +motacillid,motacillids +motard,motards +motard,motards +motation,motations +motel,motels +mote,motes +mote,motes +motet,motets +moth ball,moth balls +moth-ball,moth-balls +mothball,mothballs +mother abscess,mother abscesses +motherboard,motherboards +Mother Carey's chicken,Mother Carey's chickens +motherchucker,motherchuckers +mother country,mother countries +motherer,motherers +motherferyer,motherferyers +motherf****r,motherf****rs +mother fucker,mother fuckers +mother-fucker,mother-fuckers +motherfucker,motherfuckers +motherfuck,motherfucks +motherfunker,motherfunkers +mother goddess,mother goddesses +mother hen,mother hens +motherhood statement,motherhood statements +motherhouse,motherhouses +Mother Hubbard,Mother Hubbards +motherhumper,motherhumpers +mother-in-law apartment,mother-in-law apartments +mother-in-law,mothers-in-law +mother language,mother languages +motherling,motherlings +mother liquor,mother liquors +motherload,motherloads +mother lode,mother lodes +mother-lode,mother-lodes +motherlode,motherlodes +motherlover,motherlovers +moth-er,moth-ers +mother,mothers +mother,mothers +mother,mothers +mother,mothers +mother of chapel,mothers of chapel +mother sauce,mother sauces +Mother's Day,Mother's Days +mother ship,mother ships +mothership,motherships +mother's line,mothers' lines +Mother Superior,Mother Superiors +mother superior,mother superiors,mothers superior +Mother Teresa,Mother Teresas +mother-to-be,mothers-to-be +mother tongue,mother tongues +motherwort,motherworts +moth fly,moth flies +moth lacewing,moth lacewings +moth,moths +moth,moths +motia,motias +motif,motifs +motion detector,motion detectors +motioner,motioners +motion of confidence,motions of confidence +motion picture,motion pictures +motivation,motivations +motivator,motivators +motive,motives +motivo,motivos,motivi +mot juste,mots justes +motley crew,motley crews +motley fool,motley fools +motley,motleys +motmot,motmots +mot,mots +MOT,MOTs +motocrosser,motocrossers +motocycle,motocycles +motogen,motogens +moto,motos +motoneuron,motoneurons +moton,motons +motorbicycle,motorbicycles +motorbike,motorbikes +motorbiker,motorbikers +motorboater,motorboaters +motorboat,motorboats +motorbus,motorbuses +motorcade,motorcades +motorcaravan,motorcaravans +motor car,motor cars +motorcar,motorcars +motorcoach,motorcoaches +motor cop,motor cops +motorcycle club,motorcycle clubs +motorcycle,motorcycles +motorcycler,motorcyclers +motorcycle wheel,motorcycle wheels +motorcyclist,motorcyclists +motordrome,motordromes +motor glider,motor gliders +motorhead,motorheads +motor home,motor homes +motorhome,motorhomes +motor hotel,motor hotels +motor inn,motor inns +motorisation,motorisations +motorist,motorists +motorization,motorizations +motorized scooter,motorized scooters +motorjet,motorjets +motor lodge,motor lodges +motorman,motormen +motor,motors +motor mouth,motor mouths +motormouth,motormouths +motor neuron disease,motor neuron diseases +motorneurone,motorneurones +motor neuron,motor neurons +motorneuron,motorneurons +motor oil,motor oils +motorplex,motorplexes +motor pool,motor pools +motor sailer,motor sailers +motorsailer,motorsailers +motor scooter,motor scooters +motorscooter,motorscooters +motor show,motor shows +motorsport,motorsports +motorsportsman,motorsportsmen +motor unit,motor units +motor-van,motor-vans +motor vehicle,motor vehicles +motorway,motorways +motour,motours +Motswana,Batswana +motte,mottes +motti,mottis +mottled duck,mottled ducks +mottled mallard,mottled mallards +mottle,mottles +mottling,mottlings +mott,motts +motto,mottos,mottoes +motu proprio,motu proprios +mouchard,mouchards +mouchoir,mouchoirs +moue,moues +mouezzin,mouezzins +mouffle,mouffles +moufflon,moufflons +mouflon,mouflons +mouf,moufs +moujik,moujiks +moulage,moulages +mouldboard,mouldboards +moulder,moulders +moulding,mouldings +mould,moulds +mouldwarp,mouldwarps +mouline,moulines +moulinet,moulinets +moulin,moulins +moulter,moulters +moundbird,moundbirds +mound builder,mound builders +mound-builder,mound-builders +moundbuilder,moundbuilders +mound,mounds +mounseer,mounseers +mountain bearberry,mountain bearberries +mountain beaver,mountain beavers +mountain bike,mountain bikes +mountain bluebird,mountain bluebirds +mountainboarder,mountainboarders +mountainboard,mountainboards +mountain buzzard,mountain buzzards +mountain cat,mountain cats +mountain chain,mountain chains +mountain degu,mountain degus +mountaineer,mountaineers +mountainer,mountainers +mountainet,mountainets +mountain goat,mountain goats +mountain gorilla,mountain gorillas +mountain gun,mountain guns +mountain hare,mountain hares +mountain laurel,mountain laurels +mountain lion,mountain lions +mountain,mountains +mountain oyster,mountain oysters +mountain panther,mountain panthers +mountain range,mountain ranges +mountain reindeer,mountain reindeer +mountain ringlet,mountain ringlets +mountainscape,mountainscapes +mountain sheep,mountain sheeps +mountainside,mountainsides +mountainslope,mountainslopes +mountain to climb,mountains to climb +mountain top,mountain tops +mountaintop,mountaintops +mountain unit,mountain units +mountain vole,mountain voles +mountain zebra,mountain zebras +mountant,mountants +mountebank,mountebanks +mounted infantry,mounted infantries +mountenance,mountenances +mounter,mounters +mounting block,mounting blocks +mounting,mountings +mountlet,mountlets +mount,mounts +mount,mounts +mounture,mountures +Mountweazel,Mountweazels +mounty,mounties +Mouridi,Mouridis +mourne,mournes +mourner,mourners +mourners' bench,mourners' benchs +mourner's seat,mourner's seats +mourning cloak,mourning cloaks +mourning dove,mourning doves +mournival,mournivals +mourn,mourns +mousambi,mousambis +mousebird,mousebirds +mouseburger,mouseburgers +mouseclick,mouseclicks +mouse-colored antshrike,mouse-colored antshrikes +mouse deer,mouse deers,mouse deer +mousedeer,mousedeers,mousedeer +mouse-ear,mouse-ears +mousefish,mousefishes +mousehole,mouseholes +Mouseketeer,Mouseketeers +mousekin,mousekins +mouse lemur,mouse lemurs +mouse mat,mouse mats +mousemat,mousemats +mouse,mice +mouse-over,mouse-overs +mouseover,mouseovers +mouse pad,mouse pads +mousepad,mousepads +mouse potato,mouse potatoes +mouser,mousers +mousery,mouseries +mousetail,mousetails +mousetrap,mousetraps +mouse wheel,mouse wheels +mousie,mousies +mousing hook,mousing hooks +mousing,mousings +mousmΓ©e,mousmΓ©es +mousmΓ©,mousmΓ©s +mousseline,mousselines +mousse,mousses +mousseux,mousseux +moustached warbler,moustached warblers +moustache,moustaches +moustachio,moustachios +moustalevria,moustalevrias +moutan,moutans +mouth breather,mouth breathers +mouth-breather,mouth-breathers +mouthbreather,mouthbreathers +mouthbrooder,mouthbrooders +mouther,mouthers +mouthfeel,mouthfeels +mouth-friend,mouth-friends +mouthfucker,mouthfuckers +mouthfuck,mouthfucks +mouthful,mouthfuls,mouthsful +mouthful of marbles,mouthfuls of marbles +mouthguard,mouthguards +mouthline,mouthlines +mouth,mouths +mouth organ,mouth organs +mouth-part,mouth-parts +mouthpart,mouthparts +mouthpiece,mouthpieces +mouthsore,mouthsores +mouthstick,mouthsticks +mouth ulcer,mouth ulcers +mouton enragΓ©,moutons enragΓ©s +mouzhik,mouzhiks +movable bridge,movable bridges +movable feast,movable feasts +movable,movables +movable type,movable types +moval,movals +movant,movants +moveability,moveabilities +moveable feast,moveable feasts +movement disorder,movement disorders +movement,movements +move,moves +movent,movents +moveout,moveouts +mover and shaker,movers and shakers +mover,movers +movie deal,movie deals +moviegoer,moviegoers +moviehouse,moviehouses +moviemaker,moviemakers +movie,movies +movie star,movie stars +movie theater,movie theaters +movie theatre,movie theatres +movieverse,movieverses +moving average,moving averages +moving box,moving boxes +moving part,moving parts +moving picture,moving pictures +moving ramp,moving ramps +moving screen,moving screens +moving sidewalk,moving sidewalks +moving spirit,moving spirits +moving unit,moving units +moving violation,moving violations +moving walkway,moving walkways +movlog,movlogs +mower,mowers +mowing,mowings +mow,mows +mow,mows +mow,mows +mowyer,mowyers +moyle,moyles +Mozabite,Mozabites +Mozambican,Mozambicans +Mozarab,Mozarabs +Mozart,Mozarts +mozo,mozos +mozzarella,mozzarellas,mozzarelle +mozzetta,mozzette +mozzie,mozzies +Mozzie,Mozzies +MP3,MP3s +MP3 player,MP3 players +MP4 player,MP4 players +MPEG,MPEGs +mpingo,mpingos +Mpongwe,Mpongwe +mpret,mprets +MRAP,MRAPs +Mr Big,Mr Bigs +MRBM,MRBMs +mrca,mrcas +MRCA,MRCAs +mridangam,mridangams +mridang,mridangs +mrigal,mrigals +Mr. Nice Guy,Mr. Nice Guys +Mrs,Mmes +Mrs Mop,Mrs Mops +Mrs. Robinson,Mrs. Robinsons +MRV,MRVs +Ms. &Mz.,Ms. &Mz.s +MSA,MSAs +MSc,MScs +MSME,MSMEs +Ms.,Mss. +MS.,MSS. +ms,mss,mss. +Ms,Mss.,Mss,Mses.,Mses +mssg,mssgs +mtRNA,mtRNAs +mucate,mucates +muce,muces +muchkin,muchkins +muchness,muchnesses +mucin,mucins +mucinosis,mucinoses +mucivore,mucivores +muck-a-muck,muck-a-mucks +muckamuck,muckamucks +muckender,muckenders +muckerer,muckerers +mucker,muckers +mucket,muckets +muckety muck,muckety mucks +muckety-muck,muckety-mucks +muckheap,muckheaps +muckmidden,muckmiddens +muckraker,muckrakers +muck spreader,muck spreaders +muckspreader,muckspreaders +muckworm,muckworms +mucky pup,mucky pups +mucluc,muclucs +mucoadhesive,mucoadhesives +mucocele,mucoceles +mucolipidosis,mucolipidoses +mucolipin,mucolipins +mucolytic,mucolytics +muconate,muconates +mucopeptide,mucopeptides +mucopolysaccharide,mucopolysaccharides +mucoprotein,mucoproteins +mucoromycete,mucoromycetes +mucosa,mucosae,mucosas +mucosubstance,mucosubstances +mucotomy,mucotomies +mucous membrane,mucous membranes +mucro,mucros +mudang,mudangs +mudar,mudars +mudball,mudballs +mudbank,mudbanks +mud bath,mud baths +mudbath,mudbaths +mudbrick,mudbricks +mudbug,mudbugs +mudcat,mudcats +mud crab,mud crabs +mudda fucka,mudda fuckas +mudder,mudders +mudder,mudders +MUDder,MUDders +muddlehead,muddleheads +muddle,muddles +muddler,muddlers +MudΓ©jar,MudΓ©jars,MudΓ©jares +mud-eye,mud-eyes +mud fight,mud fights +mudfish,mudfish +mud flap,mud flaps +mudflap,mudflaps +mud flat,mud flats +mudflat,mudflats +mudflow,mudflows +mudguard,mudguards +mudheap,mudheaps +mudhole,mudholes +mudik,mudiks +Mudi,Mudis +mudir,mudirs +mudlark,mudlarks +mudlogger,mudloggers +mud map,mud maps +mud monkey,mud monkeys +mudpack,mudpacks +mud pie,mud pies +mudpie,mudpies +mudprawn,mudprawns +mudpuddle,mudpuddles +mud puppy,mud puppies +mudpuppy,mudpuppies +mudra,mudras +mudrā,mudrās +mud room,mud rooms +mudroom,mudrooms +mudscape,mudscapes +mud sedge,mud sedges +mudsill,mudsills +mudskipper,mudskippers +mud slab,mud slabs +mudsled,mudsleds +mudslide,mudslides +mudslime,mudslimes +mudslinger,mudslingers +mudslinging,mudslingings +mudsnake,mudsnakes +mudstain,mudstains +mudstone,mudstones +mudsucker,mudsuckers +mud volcano,mud volcanos,mud volcanoes +mudwall,mudwalls +mud water,mud waters +mudwort,mudworts +mud wrestler,mud wrestlers +mudwrestler,mudwrestlers +muenster,muensters +muezzin,muezzins +muff diver,muff divers +muff-diver,muff-divers +muffdiver,muffdivers +muffetee,muffetees +muffin cap,muffin caps +muffineer,muffineers +muffin,muffins +muffin pan,muffin pans +muffin tin,muffin tins +muffin top,muffin tops +muffle furnace,muffle furnaces +mufflehead,muffleheads +muffle,muffles +muffler bearing,muffler bearings +muffler,mufflers +muff,muffs +muff,muffs +muff,muffs +muff pistol,muff pistols +muflon,muflons +MUF,MUFs +mufti day,mufti days +mugam,mugams +mug book,mug books +mugearite,mugearites +mugful,mugfuls,mugsful +muggee,muggees +mugger,muggers +mugging,muggings +muggins,mugginses +muggle,muggles +muggle,muggles +Muggle,Muggles +Muggletonian,Muggletonians +Mughal,Mughals +mugham,mughams +mughouse,mughouses +mugilid,mugilids +mugil,mugils +mug,mugs +mug's game,mugs' games +mug shot,mug shots +mugshot,mugshots +mugu,mugus +mugwort,mugworts +mugwump,mugwumps +muhajir,muhajireen,muhajirun +Muhamedan,Muhamedans +Muhammadan,Muhammadans +Muhammedan,Muhammedans +muhassil,muhassils +muhfugga,muhfuggas +muid,muids +muishond,muishonds +mujahed,mujahedeen +mujahid,mujahids,mujahideen +mujik,mujiks +mujina,mujina +muke,muke +muke,mukes +mukhiya,mukhiyas +mukhtar,mukhtars +mukluk,mukluks +mulada,muladas +mulai,mulais +Mulao,Mulao +mulatto,mulattoes,mulattos +mulattress,mulatresses +mulberry,mulberries +mulcher,mulchers +mulching mower,mulching mowers +mulcting,mulctings +mulct,mulcts +mule deer,mule deer +muleload,muleloads +mule,mules +mule,mules +mule skinner,mule skinners +muleskinner,muleskinners +muleta,muletas +muleteer,muleteers +muley axle,muley axles +muley,muleys +mulga apple,mulga apples +mulga black,mulga blacks +mulga,mulgas +mulga snake,mulga snakes +mulga wire,mulga wires +Mulhousian,Mulhousians +mulid,mulids +muliebrity,muliebrities +mulier,muliers +mullah,mullahs +mulla,mullas +mullar,mullars +mullein,mulleins +Mullerian duct,Mullerian ducts +MΓΌllerian duct,MΓΌllerian ducts +MΓΌller-Lyer illusion,MΓΌller-Lyer illusions +muller,mullers +muller,mullers +mullethead,mulletheads +mullet,mullets +mullet,mullets +mullet,mullets +mullet,mullets,mullet +mulley,mulleys +mullid,mullids +mulligan,mulligans +mulligan stew,mulligan stews +mullingong,mullingongs +mullion,mullions +mull,mulls +mullock,mullocks +Mull of Kintyre test,Mull of Kintyre tests +mulloway,mulloways +mulo,mulos,muli +multeity,multeities +multi-addiction,multi-addictions +multi-agent system,multi-agent systems +multialgebra,multialgebras +multialgorithm,multialgorithms +multibillionaire,multibillionaires +multibracket,multibrackets +multibreather,multibreathers +multibuy,multibuys +multicable,multicables +multicache,multicaches +multicart,multicarts +multicast,multicasts +multicategory,multicategories +multicellular,multicellulars +multichine,multichines +multicide,multicides +multicolour yawn,multicolour yawns +multicombination,multicombinations +multicomplex,multicomplexs +multiconference,multiconferences +multicooker,multicookers +multiculti,multicultis +multiculturalist,multiculturalists +multicuspid,multicuspids +multicycle,multicycles +multidigraph,multidigraphs +multidimensional array,multidimensional arrays +multidisciplinarian,multidisciplinarians +multidistance,multidistances +multiduplex,multiduplexes +multiemployer,multiemployers +multienzyme,multienzymes +multiethnic,multiethnics +multiexciton,multiexcitons +multifamily,multifamilies +multifariousness,multifariousnesses +multiferroic,multiferroics +multifidus,multifidi +multifilament,multifilaments +multifil,multifils +multifilter,multifilters +multifoil,multifoils +multiform,multiforms +multifractal,multifractals +multifunctional cooker,multifunctional cookers +multifunction array radar,multifunction array radars +multigene family,multigene families +multiglycoside,multiglycosides +multigraphene,multigraphenes +multigraph,multigraphs +multigravida,multigravidas,multigravidae +multigym,multigyms +multihit,multihits +multihull,multihulls +multi-hydrocarbon,multi-hydrocarbons +multihyphenate,multihyphenates +multi infarct,multi infarcts +multi-infarct,multi-infarcts +multiinfarct,multiinfarcts +Multi Input Gateway,Multi Input Gateways +multi-instrumentalist,multi-instrumentalists +multiinstrumentalist,multiinstrumentalists +multilateralism,multilateralisms +multilateralist,multilateralists +multilayer,multilayers +multileaf collimator,multileaf collimators +multilinguist,multilinguists +multiliteracy,multiliteracies +multiloader,multiloaders +multiload,multiloads +multilobe,multilobes +multilogue,multilogues +multiloop,multiloops +multimap,multimaps +multimediocrity,multimediocrities +multimegawatt,multimegawatts +multimerisation,multimerisations +multimer,multimers +multimeter,multimeters +multimillionaire,multimillionaires +multimodality,multimodalities +multimorphism,multimorphisms +multinational,multinationals +multinomial,multinomials +multinucleation,multinucleations +multinumber,multinumbers +multi-ownership,multi-ownerships +multipack,multipacks +multipara,multiparas,multiparae +multiparter,multiparters +multipartyist,multipartyists +multipatch,multipatches +multipede,multipedes +multiped,multipeds +multiplane,multiplanes +multiple birth,multiple births +multiple bond,multiple bonds +multiple-choice question,multiple-choice questions +multiple citizenship,multiple citizenships +multiple dispatch,multiple dispatches +multiple expansion,multiple expansions +multiple exposure,multiple exposures +multiple-exposure,multiple-exposures +multiple fruit,multiple fruits +multiple level,multiple levels +multiple,multiples +multiple myeloma,multiple myelomas,multiple myelomata +multiple personality disorder,multiple personality disorders +multiple personality,multiple personalities +multiplepoinding,multiplepoindings +multiple star,multiple stars +multiple star system,multiple star systems +multiple superparticular,multiple superparticulars +multiplet,multiplets +multiple unit,multiple units +multiplexer,multiplexers +multiplexing,multiplexings +multiplex,multiplexes +multiplexor,multiplexors +multiplicand,multiplicands +multiplicate,multiplicates +multiplication sign,multiplication signs +multiplication table,multiplication tables +multiplicative identity,multiplicative identities +multiplicative inverse,multiplicative inverses +multiplicative operation,multiplicative operations +multiplicator,multiplicators +multiplicity,multiplicities +multiplier,multipliers +multiplier onion,multiplier onions +multiploidization,multiploidizations +multiplug,multiplugs +multiply,multiplies +multip,multips +multipoinding,multipoindings +multipole,multipoles +multipolymer,multipolymers +multiport,multiports +multipotentiality,multipotentialities +multiprint,multiprints +multiprocessor,multiprocessors +multiquark,multiquarks +multiracialist,multiracialists +multiracial,multiracials +multiread,multireads +multireedist,multireedists +multiregionalist,multiregionalists +multiregional,multiregionals +multiring,multirings +multisaver,multisavers +multiset,multisets +multiskyrmion,multiskyrmions +multispinor,multispinors +multi-storey,multi-storeys +multistorey,multistoreys +multisubset,multisubsets +multitaper,multitapers +multitap,multitaps +multitasker,multitaskers +multiterabyte,multiterabytes +multitester,multitesters +multitheist,multitheists +multiton pattern,multiton patterns +multitool,multitools +multitracker,multitrackers +multitubercolate,multitubercolates +multituberculate,multituberculates +multitude,multitudes +multiubiquitination,multiubiquitinations +multiubiquitylation,multiubiquitylations +multi-user dungeon,multi-user dungeons +multiutility,multiutilities +multivalent,multivalents +multivalve,multivalves +multivariate,multivariates +multi-vari chart,multi-vari charts +multivector,multivectors +multiverse,multiverses +multiversity,multiversities +multivibrator,multivibrators +multiviewer,multiviewers +multivitamin,multivitamins +Multnomah,Multnomahs,Multnomah +multure,multures +Mumbaikar,Mumbaikars +mumble,mumbles +mumblenews,mumblenewses +mumbler,mumblers +mumbling,mumblings +mumchance,mumchances +mu-meson,mu-mesons +mumian,mumian +mu'min,mu'mins +mummachog,mummachogs +mummer,mummers +mummery,mummeries +mummichog,mummichogs +mummification,mummifications +mum,mums +mum,mums +mummychog,mummychogs +mummy,mummies +mummy,mummies +mummy's boy,mummy's boys +mumper,mumpers +Mumping Day,Mumping Days +mumpreneur,mumpreneurs +mumpsimus,mumpsimuses +mumruffin,mumruffins +Mumsnetter,Mumsnetters +mumsy,mumsies +mu,mu +Mu,Mus +munafiq,munafiqs,munafiqun +Munchausenism,Munchausenisms +MΓΌnchausen syndrome,MΓΌnchausen syndromes +muncher,munchers +munchie,munchies +munching,munchings +munchkin,munchkins +Munchkin,Munchkins +munch,munches +munchnone,munchnones +munchy,munchies +Munda,Mundas,Munda +mundane,mundanes +mundanity,mundanities +mundation,mundations +mundborh,mundborhs +mundbyrd,mundbyrds +mundick,mundicks +mundic,mundics +mundificant,mundificants +mundification,mundifications +mundificative,mundificatives +mundil,mundils +mund,munds +Mundugumor,Mundugumors,Mundugumor +munga,mungas +mung bean,mung beans +mungbean,mungbeans +mung,mungs +mungoose,mungooses +mungoos,mungooses +mungous,mungouses +mungrel,mungrels +municide,municides +municipal borough,municipal boroughs +municipal corporation,municipal corporations +municipal incorporation,municipal incorporations +municipality,municipalities +municipal,municipals +municycling,municyclings +munidid,munidids +muniment,muniments +muni,munis +muni,munis +munitionette,munitionettes +munition,munitions +mun,muns +mun,muns +munnion,munnions +munnopsoid,munnopsoids +Munro bagger,Munro baggers +Munroist,Munroists +Munro,Munros +munshi,munshis +Muntenian,Muntenians +munter,munters +munting,muntings +muntin,muntins +muntjack,muntjacks +muntjac,muntjacs +muntjak,muntjaks +munt,munts +muonium,muoniums +muon,muons +muon neutrino,muon neutrinos +muppet,muppets +Muppet,Muppets +muqaddam,muqaddams +muqarnas,muqarnas +muraenesocid,muraenesocids +muraenid,muraenids +muraenolepidid,muraenolepidids +murage,murages +mural crown,mural crowns +muralist,muralists +mural,murals +mura,mura +muramyl,muramyls +Murasugi sum,Murasugi sums +murchisoniid,murchisoniids +Murcian,Murcians +murderbot,murderbots +murder by suicide,murders by suicide +murderee,murderees +murderer,murderers +murderess,murderesses +murder-suicide,murder-suicides +murdress,murdresses +murein,mureins +mure,mures +murenger,murengers +murex,murexes,murices +muriate,muriates +muricid,muricids +murid,murids +muringer,muringers +muriqui,muriquis +murmuration,murmurations +murmurer,murmurers +murmur,murmurs +murnival,murnivals +muroid,muroids +murolene,murolenes +muropeptidase,muropeptidases +muropeptide,muropeptides +Murphy bed,Murphy beds +Murphy game,Murphy games +Murphy,Murphys,Murphies +murrain,murrains +murrelet,murrelets +murre,murres +murrey,murreys +murrine,murrines +murrion,murrions +murr,murrs +murr,murrs +murry,murries +murse,murses +murse,murses +murshid,murshids +murtad,murtads +murtherer,murtherers +murther,murthers +murth,murths +murti,murtis +murukku,murukkus +murunga,murungas +murus,muri +muryan,muryans +murza,murzas +musΓ¦um,musΓ¦ums,musΓ¦a +musang,musangs +musard,musards +musar,musars +muscadel,muscadels +muscadet,muscadets +muscadine,muscadines +mΓΊscaΓ­odh,mΓΊscaΓ­odhs +muscallonge,muscallonges +muscardine,muscardines +muscardin,muscardins +muscatel,muscatels +Muscatian,Muscatians +muscat,muscats +muscicapid,muscicapids +muscid,muscids +muscimole,muscimoles +musclebike,musclebikes +muscleblind,muscleblinds +muscle boy,muscle boys +musclebrain,musclebrains +muscle car,muscle cars +muscle fiber,muscle fibers +muscle fibre,muscle fibres +musclehead,muscleheads +muscle man,muscle men +muscleman,musclemen +muscle Mary,muscle Marys +muscle,muscles +muscle relaxant,muscle relaxants +muscle shirt,muscle shirts +muscle-up,muscle-ups +muscle woman,muscle women +musclewoman,musclewomen +Muscogee,Muscogees +muscoid,muscoids +muscoid,muscoids +Muscovian,Muscovians +Muscovite,Muscovites +Muscovy duck,Muscovy ducks +muscovy,muscovies +muscular dystrophy,muscular dystrophies +muscular endurance,muscular endurances +musculation,musculations +musculature,musculatures +muscule,muscules +musculotropic,musculotropics +MUSD,MUSDs +muse,muses +muse,muses +muse,muses +Muse,Muses +museography,museographies +museologist,museologists +museophile,museophiles +muser,musers +muset,musets +musette,musettes +museum beetle,museum beetles +museumgoer,museumgoers +museum,museums,musea +museumobile,museumobiles +museum piece,museum pieces +mushaira,mushairas +musher,mushers +mushhead,mushheads +mushmouth,mushmouths +mush,mushes +mush,mushes +mush,mushes +mush,mushes +mushrat,mushrats +mushrik,mushriks +mushroom anchor,mushroom anchors +mushroom body,mushroom bodies +mushroomburger,mushroomburgers +mushroom cloud,mushroom clouds +mushroomer,mushroomers +mushroom,mushrooms +mushroom party,mushroom parties +musical bow,musical bows +musical box,musical boxes +musical chairs,musical chairs +musicale,musicales +musical instrument,musical instruments +musical interval,musical intervals +musicalization,musicalizations +musical,musicals +musical saw,musical saws +musical scale,musical scales +music box,music boxes +music center,music centers +music centre,music centres +music chart,music charts +musicdisk,musicdisks +music group,music groups +music hall,music halls +musicianer,musicianers +musician,musicians +musicker,musickers +musicologist,musicologists +music room,music rooms +music school,music schools +music stand,music stands +music therapy,music therapies +music video,music videos +musiczine,musiczines +musimon,musimons +musing,musings +musitian,musitians +musit,musits +muskadel,muskadels +muskat,muskats +musk cat,musk cats +musk duck,musk ducks +muskeg,muskegs +muskellunge,muskellunge +muskelunge,muskelunges +musketeer,musketeers +musket,muskets +musketo,musketos,musketoes +musketoon,musketoons +Muskhogean,Muskhogeans +muskie,muskies +muskimoot,muskimoots +muskiness,muskinesses +musk melon,musk melons +muskmelon,muskmelons +musk,musks +Muskogean,Muskogeans +Muskogee,Muskogees +Muskoka chair,Muskoka chairs +musk ox,musk oxen +muskox,muskoxen +musk-rat,musk-rats +muskrat,muskrats +musk shrew,musk shrews +muskshrew,muskshrews +musky,muskies +Muslimah,Muslimahs +Muslim,Muslims +muslin,muslins +musmon,musmons +musnud,musnuds +muso,musos +musophagid,musophagids +musquaw,musquaws +musqueteer,musqueteers +musquet,musquets +musquetoon,musquetoons +musquito,musquitos,musquitoes +musrole,musroles +musrol,musrols +Mussalman,Mussalmans +mussel digger,mussel diggers +mussel,mussels +mussid,mussids +mussitation,mussitations +mussite,mussites +muss,musses +muss,musses +Mussolinian,Mussolinians +Mussulman,Mussulmans,Mussulmen +mustache,mustaches +mustache ride,mustache rides +mustachio,mustachios +mustang,mustangs +mustard gas,mustard gases +mustard plaster,mustard plasters +must-buy,must-buys +mustee,mustees +mustelid,mustelids +musteloid,musteloids +musterer,musterers +mustering,musterings +muster,musters +muster roll,muster rolls +must,musts +must,musts +must-read,must-reads +mustre,mustres +must-see,must-sees +must weight,must weights +musubi,musubi,musubis +mutagenesis,mutageneses +mutagen,mutagens +mut'ah,mut'ahs +mutandum,mutanda +mutant,mutants +mutant protein,mutant proteins +mutarotation,mutarotations +mutasarrif,mutasarrifs +mutase,mutases +mutasynthesis,mutasyntheses +mutated contraction,mutated contractions +mutation,mutations +mutator,mutators +mutawa,mutaween +mutaween,mutaweens +mutawwa,mutaween +Mu'tazila,Mu'tazilas,Mu'tazilat +mutchkin,mutchkins +mutch,mutches +mute cancel,mute cancels +mute e,mute e's +mute-hill,mute-hills +mute h,mute h's +mutelid,mutelids +mute,mutes +mute,mutes +mute point,mute points +muter,muters +mutessarif,mutessarifs +mute swan,mute swans +mutex,mutexes +mutha fucka,mutha fuckas +muthafucka,muthafuckas +mutha,muthas +mutha,muthas +muther,muthers +mutilater,mutilaters +mutilator,mutilators +mutilid,mutilids +mutilin,mutilins +mutillid,mutillids +muti murder,muti murders +mutineer,mutineers +mutine,mutines +muting,mutings +mutiny,mutinies +mutoscope,mutoscopes +Mutsu,Mutsus +mutterer,mutterers +muttering,mutterings +mutter,mutters +mutter paneer,mutter paneers +mutt,mutts +muttnik,muttniks +mutton bird,mutton birds +mutton dagger,mutton daggers +muttonhead,muttonheads +mutton quad,mutton quads +mutual admiration society,mutual admiration societies +mutual fund,mutual funds +mutual information,mutual informations +mutualisation,mutualisations +mutualism,mutualisms +mutualist,mutualists +mutual masturbation,mutual masturbations +mutual,mutuals +mutual will,mutual wills +mutuary,mutuaries +mutule,mutules +mutuum,mutuums,muutua +muumuu,muumuus +muwashshah,muwashshahat,tawashih,muwashshahs +muxer,muxers +mux,muxes +Muzarab,Muzarabs +muzhik,muzhiks +muzjik,muzjiks +muzungu,muzungus,wazungu +muzzie,muzzies +muzzle blast,muzzle blasts +muzzle brake,muzzle brakes +muzzle compensator,muzzle compensators +muzzle energy,muzzle energies +muzzleloader,muzzleloaders +muzzle,muzzles +muzzler,muzzlers +muzzle velocity,muzzle velocities +muzzy,muzzies +MVP,MVPs +MWE,MWEs +m-word,m-words +myalgia,myalgias +myall,myalls +myall,myalls +Mya,Mya +mycalid,mycalids +mycangium,mycangia +mycelium,mycelia +Mycenaean,Mycenaeans +MycenΓ¦an,MycenΓ¦ans +mycetophagid,mycetophagids +mycetophilid,mycetophilids +mycetopodid,mycetopodids +mycobacteriophage,mycobacteriophages +mycobacterium,mycobacteria +mycobiont,mycobionts +mycoderma,mycodermas,mycodermata +mycoestrogen,mycoestrogens +mycoherbicide,mycoherbicides +myco-heterotroph,myco-heterotrophs +myco-heterotrophy,myco-heterotrophies +mycolate,mycolates +mycolic acid,mycolic acids +mycologist,mycologists +mycoparasite,mycoparasites +mycopeptone,mycopeptones +mycopesticide,mycopesticides +mycophage,mycophages +mycophile,mycophiles +mycophobe,mycophobes +mycoplasm,mycoplasms +mycoplasmologist,mycoplasmologists +mycorrhiza,mycorrhizas,mycorrhizae +mycorrhization,mycorrhizations +mycosis,mycoses +mycosporine,mycosporines +mycosterol,mycosterols +mycosymbiont,mycosymbionts +mycotic aneurysm,mycotic aneurysms +mycotoxin,mycotoxins +mycotroph,mycotrophs +mycovirus,mycoviruses +mycterid,mycterids +mycterism,mycterisms +myctophid,myctophid,myctophids +mydaid,mydaids +mydid,mydids +mydriasis, mydriases +mydriatic,mydriatics +myelencephalon,myelencephala +myelination,myelinations +myelin sheath,myelin sheaths +myeloblast,myeloblasts +myelocoele,myelocoeles +myelocyte,myelocytes +myelocytomatosis,myelocytomatoses +myelodysplasia,myelodysplasias +myelogram,myelograms +myelolipoma,myelolipomas +myeloma,myelomas,myelomata +myelomatosis,myelomatoses +myelomeningocele,myelomeningoceles +myelomere,myelomeres +myelomonocyte,myelomonocytes +myeloneuropathy,myeloneuropathies +myeloplax,myeloplaxes +myelosuppressive,myelosuppressives +myenteron,myenterons +mygale,mygales +myiasis,myiases +myid,myids +mylagaulid,mylagaulids +myliobatid,myliobatids +mylodon,mylodons +mylodontid,mylodontids +mylohyoideus,mylohyoidei +mylohyoid,mylohyoids +mylonite,mylonites +mymarid,mymarids +mymarommatid,mymarommatids +mynah,mynahs +myna,mynas +mynchen,mynchens +mynchery,myncheries +mynde,myndes +mynheer,mynheers +myoball,myoballs +myobatrachid,myobatrachids +myoblast,myoblasts +myocardial infarction,myocardial infarctions +myocardial infarct,myocardial infarcts +myocardioblast,myocardioblasts +myocardiocyte,myocardiocytes +myocardiopathy,myocardiopathies +myocardium,myocardia +myocastorid,myocastorids +myochamid,myochamids +myocilin,myocilins +myoclonia,myoclonias +myocomma,myocommas,myocommata +myocyte,myocytes +myodynamometer,myodynamometers +myoendothelium,myoendothelia +myofiber,myofibers +myofibre,myofibres +myofibril,myofibrils +myofibroblast,myofibroblasts +myofilament,myofilaments +myoglobulin,myoglobulins +myogram,myograms +myograph,myographs +myohaematin,myohaematins +myokine,myokines +myokymia,myokymias +myolemma,myolemmata +myologist,myologists +myoma,myomas,myomata +myomere,myomeres +myometer,myometers +myometrium,myometria +myomorph,myomorphs +myoneme,myonemes +myonucleus,myonuclei +myopathia,myopathias +myopathy,myopathies +myope,myopes +myopic,myopics +myoprecursor,myoprecursors +myoprotein,myoproteins +myopsid,myopsids +myopsocid,myopsocids +myosarcoma,myosarcomas,myosarcomata +myoseptum,myosepta +myosin,myosins +myosis,myoses +myospasm,myospasms +myotasis,myotases +myotherapist,myotherapists +myotic,myotics +myotome,myotomes +myotomy,myotomies +myotonia,myotonias +myotoxin,myotoxins +myotube,myotubes +myotubule,myotubules +myovirus,myoviruses +myoxid,myoxids +myozenin,myozenins +myriad,myriads +myriagon,myriagons +myriagramme,myriagrammes +myriagram,myriagrams +myrialiter,myrialiters +myrialitre,myrialitres +myriameter,myriameters +myriametre,myriametres +myriapod,myriapods +myriarch,myriarchs +myriare,myriares +myrica,myricas +myringoplasty,myringoplasties +myringotomy,myringotomies +myriologist,myriologists +myriologue,myriologues +myriorama,myrioramas +myrioscope,myrioscopes +myriotrochid,myriotrochids +myristate,myristates +myristic acid,myristic acids +myristica,myristicas +myristoylation,myristoylations +myristoyl,myristoyls +myristyl,myristyls +myrmecobiid,myrmecobiids +myrmecodomatium,myrmecodomatia +myrmecolacid,myrmecolacids +myrmecologist,myrmecologists +myrmecophage,myrmecophages +myrmecophagid,myrmecophagids +myrmecophile,myrmecophiles +myrmecophyte,myrmecophytes +myrmeleonid,myrmeleonids +myrmeleontid,myrmeleontids +myrmidon,myrmidons +myrobalan,myrobalans +myrobolan,myrobolans +myrosinase,myrosinases +myrosin,myrosins +myrtle,myrtles +myself,ourselves +Mysian,Mysians +mysid,mysids +mysmenid,mysmenids +my son,my sons +mysophile,mysophiles +mysophobe,mysophobes +mysophobia,mysophobias +myspace,myspaces +MySpace,MySpaces +MySpacer,MySpacers +mystacinid,mystacinids +mystagogue,mystagogues +mystagogy,mystagogies +mysteriarch,mysteriarchs +mystery bag,mystery bags +mystery bag,mystery bags +mystery,mysteries +mystery play,mystery plays +mystery ship,mystery ships +mystery shopper,mystery shoppers +mystery tour,mystery tours +mysticality,mysticalities +mysticete,mysticetes +mysticist,mysticists +mystick,mysticks +mystic,mystics +mystification,mystifications +mystificator,mystificators +mystifier,mystifiers +mytharc,mytharcs +mythconception,mythconceptions +mytheme,mythemes +mythe,mythes +mythicism,mythicisms +mythicomyiid,mythicomyiids +mythmaker,mythmakers +myth,myths +mythographer,mythographers +mythologem,mythologems +mythologer,mythologers +mythologian,mythologians +mythologist,mythologists +mythologizer,mythologizers +mythologue,mythologues +mythomaniac,mythomaniacs +mythoplasm,mythoplasms +mythopoeia,mythopoeiae +mythopΕ“ia,mythopΕ“iΓ¦ +mythopoesis,mythopoeses +mythopoet,mythopoets +mythos,mythoi,mythoses +mythscape,mythscapes +mytilicolid,mytilicolids +mytilid,mytilids +mytilus,mytili +myxillid,myxillids +myxine,myxines +myxinid,myxinids +myxinoid,myxinoids +myxobacterium,myxobacteria +myxobolid,myxobolids +myxochondroepithelioma,myxochondroepitheliomas +myxogastrid,myxogastrids +myxoma,myxomas,myxomata +myxomycete,myxomycetes +myxopod,myxopods +myxopyronin,myxopyronins +myxosarcoma,myxosarcomas,myxosarcomata +myxosporean,myxosporeans +myxospore,myxospores +myxosporidian,myxosporidians +myxovirus,myxoviruses +myxozoa,myxozoas +myxozoan,myxozoans +myzopodid,myzopodids +myzostomid,myzostomids +mzee,mzees,wazee +mzungu,mzungus,wazungu +n00blet,n00blets +n00b,n00bs +NAAFI,NAAFIs +naan,naans +naartje,naartjes +Naassene,Naassenes +naat,naats +Nabataean,Nabataeans +Nabatean,Nabateans +nabber,nabbers +nabid,nabids +nabk,nabks +nabla,nablas +nablock,nablocks +nab,nabs +nabobess,nabobesses +nabob,nabobs +nabobship,nabobships +Nabokovism,Nabokovisms +naboot,naboots +NACCHO,NACCHOs +nacelle,nacelles +nacellid,nacellids +nacho,nachos +nacre,nacres +nacreous cloud,nacreous clouds +nacrite,nacrites +nacroleptic,nacroleptics +nadder,nadders +Nader effect,Nader effects +Naderite,Naderites +Nader's raider,Nader's raiders +nadger,nadgers +nadir,nadirs +nad,nads +naegleria,naeglerias +naenia,naenias +naeve,naeves +nΓ¦ve,nΓ¦ves +naevus,naevi +nΓ¦vus,nΓ¦vuses,nΓ¦vi +naga,nagas +nāga,nāgas +Nāga,Nāgas +nagara,nagaras +nagger,naggers +nagging,naggings +naggin,naggins +nagilactone,nagilactones +nag,nags +nag,nags +nagor,nagors +nag screen,nag screens +nagual,naguals +nagyagite,nagyagites +nahual,nahuals +Nahua,Nahuas +nahuatlato,nahuatlatos +Nahuatlato,Nahuatlatos +Nahuatlism,Nahuatlisms +Nahuatl,Nahuatls +nahuelito,nahuelitos +naiad,naiads +naidid,naidids +naif,naifs +naΓ―f,naΓ―fs +Naija,Naijas +naik,naiks +nail bar,nail bars +nailbat,nailbats +nail bed,nail beds +nailbed,nailbeds +nail biter,nail biters +nail-biter,nail-biters +nailbiter,nailbiters +nail bomb,nail bombs +nailbrush,nailbrushes +nail clipper,nail clippers +naileress,naileresses +nailer,nailers +nailery,naileries +nail file,nail files +nail-file,nail-files +nailfile,nailfiles +nail gun,nail guns +nailgun,nailguns +nailhead,nailheads +nail house,nail houses +nailing,nailings +nailist,nailists +nail knot,nail knots +nail,nails +nail scissors,nail scissors +nail set,nail sets +nail technician,nail technicians +nail trimmer,nail trimmers +nail varnish,nail varnishes +nainsell,nainsells +naira,nairas,naira +nairovirus,nairoviruses +nait,naits +naiveite,naiveites +naivetΓ©,naivetΓ©s +naja,najas +nakabandi,nakabandis +naked ape,naked apes +naked eye,naked eyes +naked lady,naked ladies +naked mole rat,naked mole rats +naked protein,naked proteins +naked seed,naked seeds +naked singularity,naked singularities +naker,nakers +nakfa,nakfas +nakharar,nakharars +nakhlite,nakhlites +nakong,nakongs +Nalgene bottle,Nalgene bottles +nalidixate,nalidixates +nall,nalls +naloxone,naloxones +namaskar,namaskars +namaste,namastes +namaycush,namaycush +namby-pamby,namby-pambies +name-based type system,name-based type systems +name brand,name brands +name day,name days +named pipe,named pipes +name-dropper,name-droppers +namedropper,namedroppers +name dropping,name droppings +namedropping,namedroppings +nameless finger,nameless fingers +nameling,namelings +name,names +nameplate,nameplates +name reaction,name reactions +namer,namers +name-sake,name-sakes +namesake,namesakes +name server,name servers +nameserver,nameservers +namespace,namespaces +nametag,nametags +nameword,namewords +Namibian,Namibians +naming collision,naming collisions +naming convention,naming conventions +naming,namings +namoura,namouras +Nanaimo bar,Nanaimo bars +nana,nanas +nana,nanas +nanaomycin,nanaomycins +Nance,Nances +nanchon,nanchons +nancy boy,nancy boys +nancyboy,nancyboys +nancy,nancies +nancy pants,nancy pants +Nancy Reagan gaze,Nancy Reagan gazes +nandid,nandids +NAND,NANDs +nandou,nandous +nandow,nandows +nandrolone,nandrolones +nandu,nandus +naner,naners +nang,nangs +nanism,nanisms +nanite,nanites +nankeen,nankeens +nanna,nannas +nanna nap,nanna naps +nannan,nannans +nan,nans +nan,nans +nannastacid,nannastacids +nanner,nanners +nannochoristid,nannochoristids +nannofossil,nannofossils +nannosquillid,nannosquillids +nannyberry,nannyberries +nanny cam,nanny cams +nannycam,nannycams +nannygai,nannygais +nanny goat,nanny goats +nanny-goat,nanny-goats +nannygoat,nannygoats +nanny,nannies +nanny state,nanny states +nanoacre,nanoacres +nanoactuator,nanoactuators +nanoalloy,nanoalloys +nanoampere,nanoamperes +nano-amp,nano-amps +nanoamp,nanoamps +nanoanalysis,nanoanalyses +nanoantenna,nanoantennas,nanoantennae +nanoantibody,nanoantibodies +nanoaperture,nanoapertures +nanoarray,nanoarrays +nanobacterium,nanobacteria +nanobalance,nanobalances +nanobarn,nanobarns +nanobattery,nanobatteries +nanobead,nanobeads +nanobeam,nanobeams +nanobelt,nanobelts +nanobiologist,nanobiologists +nanobioparticle,nanobioparticles +nanobiotechnologist,nanobiotechnologists +nanoblade,nanoblades +nanoblend,nanoblends +nanobody,nanobodies +nanobot,nanobots +nanobreak,nanobreaks +nanobridge,nanobridges +nanobristle,nanobristles +nanobubble,nanobubbles +nanobud,nanobuds +nanobunch,nanobunches +nanocable,nanocables +nanocage,nanocages +nanocalorimeter,nanocalorimeters +nanocantilever,nanocantilevers +nanocapacitor,nanocapacitors +nanocapillary,nanocapillaries +nanocap,nanocaps +nanocapsule,nanocapsules +nanocarbon,nanocarbons +nanocarrier,nanocarriers +nanocatalyst,nanocatalysts +nanocavity,nanocavities +nanoceramic,nanoceramics +nanochain,nanochains +nanochannel,nanochannels +nanochemist,nanochemists +nanochip,nanochips +nanocide,nanocides +nanocircuit,nanocircuits +nanocluster,nanoclusters +nanocoating,nanocoatings +nanocolumn,nanocolumns +nanocomponent,nanocomponents +nanocomposite,nanocomposites +nanocomputer,nanocomputers +nanoconductor,nanoconductors +nanocone,nanocones +nanoconjugate,nanoconjugates +nanoconstriction,nanoconstrictions +nanoconstruct,nanoconstructs +nanocontact,nanocontacts +nanocontainer,nanocontainers +nanoconverter,nanoconverters +nanocore,nanocores +nanocosmetic,nanocosmetics +nanocrown,nanocrowns +nanocrystallite,nanocrystallites +nanocrystal,nanocrystals +nanocube,nanocubes +nanocurie,nanocuries +nanocylinder,nanocylinders +nanodevice,nanodevices +nanodiamond,nanodiamonds +nanodielectric,nanodielectrics +nanodimer,nanodimers +nanodiode,nanodiodes +nanodisc,nanodiscs +nanodisk,nanodisks +nanodispersion,nanodispersions +nanodomain,nanodomains +nanodot,nanodots +nanodroplet,nanodroplets +nanodrop,nanodrops +nanodust,nanodusts +nanoelectrode,nanoelectrodes +nanoelectrospray,nanoelectrosprays +nanoelement,nanoelements +nanoemulsion,nanoemulsions +nanoengineer,nanoengineers +nanoequivalent,nanoequivalents +nanofabrication,nanofabrications +nano-farad,nano-farads +nanofarad,nanofarads +nanofiber,nanofibers +nanofibre,nanofibres +nanofibril,nanofibrils +nanofilament,nanofilaments +nanofilm,nanofilms +nanofiltration,nanofiltrations +nanofin,nanofins +nanoflake,nanoflakes +nanoflare,nanoflares +nanoflower,nanoflowers +nanoflow,nanoflows +nanofluid,nanofluids +nanofoam,nanofoams +nanoform,nanoforms +nanoformulation,nanoformulations +nanofossil,nanofossils +nanofractal,nanofractals +nanofragment,nanofragments +nanogap,nanogaps +nanogear,nanogears +nanogenerator,nanogenerators +nanograin,nanograins +nanogramme,nanogrammes +nanogram,nanograms +nanogranule,nanogranules +nanograting,nanogratings +nanogroove,nanogrooves +nanohertz,nanohertz +nanoHertz,nanoHertz +nanohole,nanoholes +nanohoneycomb,nanohoneycombs +nanohydroxyapatite,nanohydroxyapatites +nanoimprint,nanoimprints +nanoinclusion,nanoinclusions +nanoindentation,nanoindentations +nanoindenter,nanoindenters +nanoinductor,nanoinductors +nanoinjector,nanoinjectors +nanointerface,nanointerfaces +nanoisland,nanoislands +nano-joule,nano-joules +nanojoule,nanojoules +nanojunction,nanojunctions +nanokatal,nanokatals +nanokelvin,nanokelvins +nanokernel,nanokernels +nanolaser,nanolasers +nanolayer,nanolayers +nanoliter,nanoliters +nanolitre,nanolitres +nanomachine,nanomachines +nanomagnet,nanomagnets +nanomanipulator,nanomanipulators +nanomaterial,nanomaterials +nanomechanism,nanomechanisms +nanomembrane,nanomembranes +nanomesh,nanomeshes +nanometal,nanometals +nanometer,nanometers +nanometre,nanometres +nanomodule,nanomodules +nanomole,nanomoles +nanomorphology,nanomorphologies +nanomotor,nanomotors +nanomoulding,nanomouldings +Nano,Nanos +nanoneedle,nanoneedles +nanonet,nanonets +nanoobject,nanoobjects +nano-ohm,nano-ohms +nanooscillator,nanooscillators +nanoparticle,nanoparticles +nanopattern,nanopatterns +nanophanerophyte,nanophanerophytes +nanophase,nanophases +nanophotometer,nanophotometers +nanopillar,nanopillars +nanopipette,nanopipettes +nanoplasma,nanoplasmas +nanoplatelet,nanoplatelets +nanoplate,nanoplates +nanopolariton,nanopolaritons +nanopolymer,nanopolymers +nanopore,nanopores +nanopositioner,nanopositioners +nanoprecipitate,nanoprecipitates +nanoprobe,nanoprobes +nanoprobing,nanoprobings +nanoproduct,nanoproducts +nanopyramid,nanopyramids +nanoreactor,nanoreactors +nanorecorder,nanorecorders +nanorefrigerator,nanorefrigerators +nanoregion,nanoregions +nanorelay,nanorelays +nanoresistor,nanoresistors +nanoresonator,nanoresonators +nanoribbon,nanoribbons +nanoring,nanorings +nanoripple,nanoripples +nanorobot,nanorobots +nanorod,nanorods +nanoroughness,nanoroughnesses +nanosandwich,nanosandwiches +nanosatellite,nanosatellites +nanosat,nanosats +nanoscale,nanoscales +nanoscience,nanosciences +nanoscientist,nanoscientists +nanoscope,nanoscopes +nanoscroll,nanoscrolls +nanosecond,nanoseconds +nanosensor,nanosensors +nanosheet,nanosheets +nanoshell,nanoshells +nanoslit,nanoslits +nanosphere,nanospheres +nanospheroid,nanospheroids +nanosponge,nanosponges +nanospray,nanosprays +nanoSQUID,nanoSQUIDs +nanostar,nanostars +nanostring,nanostrings +nanostripe,nanostripes +nanostructure,nanostructures +nanostructuring,nanostructurings +nanosurface,nanosurfaces +nanoswitch,nanoswitches +nanosyringe,nanosyringes +nanosystem,nanosystems +nanotaper,nanotapers +nanotechnologist,nanotechnologists +nanotesla,nanoteslas +nanotextile,nanotextiles +nanotexture,nanotextures +nanothermometer,nanothermometers +nanotip,nanotips +nanotool,nanotools +nanotorus,nanotori +nanotoxicologist,nanotoxicologists +nanotrack,nanotracks +nanotransistor,nanotransistors +nanotriangle,nanotriangles +nanotube,nanotubes +nanotubule,nanotubules +nanotwin,nanotwins +nano-urchin,nano-urchins +nanovessel,nanovessels +nanovirid,nanovirids +nanovoid,nanovoids +nanovoltmeter,nanovoltmeters +nano-volt,nano-volts +nanovolt,nanovolts +nanowall,nanowalls +nano-watt,nano-watts +nanowatt,nanowatts +nanoWatt,nanoWatts +nanowaveguide,nanowaveguides +nanoweb,nanowebs +nanowhisker,nanowhiskers +nanowire,nanowires +nanoworld,nanoworlds +nanpie,nanpies +Nansemond,Nansemonds +Nanticoke,Nanticokes,Nanticoke +Nantucketer,Nantucketers +Nantucket sleigh ride,Nantucket sleigh rides +Nantucket sleigh-ride,Nantucket sleigh-rides +Nantucket sleighride,Nantucket sleighrides +naos,naoses,naosoi,naoi +napa cabbage,napa cabbages +nape-crest,nape-crests +nape,napes +nape,napes +nape of the neck,napes of the neck +naphthacene,naphthacenes +naphthalate,naphthalates +naphthaldehyde,naphthaldehydes +naphthaleneacetic acid,naphthaleneacetic acids +naphthalenesulfonate,naphthalenesulfonates +naphthalenesulphonate,naphthalenesulphonates +naphthalenol,naphthalenols +naphthalic acid,naphthalic acids +naphthenate,naphthenates +naphthene,naphthenes +naphthenic acid,naphthenic acids +naphthide,naphthides +naphthoate,naphthoates +naphthoflavone,naphthoflavones +naphthoic acid,naphthoic acids +naphtholate,naphtholates +naphthol,naphthols +naphthotriazole,naphthotriazoles +naphthylamidase,naphthylamidases +naphthylamide,naphthylamides +naphthylamine,naphthylamines +naphthyl,naphthyls +naphthylvinylpyridine,naphthylvinylpyridines +naphthyridine,naphthyridines +naphtol,naphtols +Napierite,Napierites +napkin,napkins +napkin ring,napkin rings +Naples biscuit,Naples biscuits +nap,naps +nap,naps +Napoleonist,Napoleonists +napoleon,napoleons +Napoleon,Napoleons +nappe,nappes +napper,nappers +nappie,nappies +napping,nappings +nappyhead,nappyheads +nappy,nappies +nappy,nappies +nappy rash,nappy rashes +napsylate,napsylates +napththyl,napththyls +naptime,naptimes +NAPT,NAPTs +napu,napus +napunyah,napunyahs +naqib,naqibs +Naqshbandi,Naqshbandis +naranjilla,naranjillas +naraoiid,naraoiids +narcinid,narcinids +narcissistic,narcissistics +narcissist,narcissists +narcissus,narcissuses,narcissi +narc,narcs +narc,narcs +narcoanalysis,narcoanalyses +narcoanalyst,narcoanalysts +narcobourgeois,narcobourgeois +narcocracy,narcocracies +narcodolar,narcodolares +narcodollar,narcodollars +narcoguerilla,narcoguerillas +narcoguerrilla,narcoguerrillas +narcokleptocracy,narcokleptocracies +narcoleptic,narcoleptics +narcolept,narcolepts +narcologist,narcologists +narcomaniac,narcomaniacs +narco,narcos +narco,narcos +narcosis,narcoses +narco-state,narco-states +narcostate,narcostates +narcosynthesis,narcosyntheses +narcoterrorist,narcoterrorists +narcotick,narcoticks +narcotic,narcotics +narcotism,narcotisms +narcotist,narcotists +narcotrafficker,narcotraffickers +nard,nards +nare,nares +narghile,narghiles +nargileh,nargilehs +nargile,nargiles +narg,nargs +NARG,NARGs +narica,naricas +naricorn,naricorns +naringinase,naringinases +naris,nares +narkid,narkids +nark,narks +nark,narks +narnauk,narnauks +Narnian,Narnians +Narragansett,Narragansetts +Narragansett pacer,Narragansett pacers +narratee,narratees +narrateme,narratemes +narrater,narraters +narration,narrations +narrative link,narrative links +narrative,narratives +narrative present tense,narrative present tenses +narrative structure,narrative structures +narrative verdict,narrative verdicts +narratologist,narratologists +narrator,narrators +narratrix,narratrices +narrowboater,narrowboaters +narrowboat,narrowboats +narrowbody,narrowbodies +narrowcaster,narrowcasters +narrowcast,narrowcasts +narrower,narrowers +narrow gauge,narrow gauges +narrow house,narrow houses +narrowing,narrowings +narrow mindedness,narrow mindednesses +narrow,narrows +narrow sea,narrow seas +narrow squeak,narrow squeaks +narrowtooth shark,narrowtooth sharks +narrow-width effect,narrow-width effects +narrow-winged tree cricket,narrow-winged tree crickets +narthex,narthexes,narthices +nartjie,nartjies +narutard,narutards +Narutard,Narutards +narwal,narwals +narwhale,narwhales +narwhal,narwhals,narwhal +nasal bone,nasal bones +nasal cavity,nasal cavities +nasal concha,nasal conchae +nasal consonant,nasal consonants +nasal cycle,nasal cycles +nasal fossa,nasal fossae +nasal mutation,nasal mutations +nasal,nasals +nasal polyp,nasal polyps +nasal septum,nasal septa,nasal septums +nasal vowel,nasal vowels +nascal,nascals +nascence,nascences +nascency,nascencies +nascent protein,nascent proteins +naseberry,naseberries +nase,nase,nases +nasheed,nasheeds +Nash equilibrium,Nash equilibria +nashi,nashis +Nashi,Nashis +nasho,nashos +Nashville warbler,Nashville warblers +Nashvillian,Nashvillians +nasi goreng,nasi gorengs +nasion,nasions +nasolacrimal duct,nasolacrimal ducts +nasopharynx,nasopharynxes,nasopharynges +Nasoraean,Nasoraeans +Nasorean,Nasoreans +nasorostral,nasorostrals +nasoturbinal,nasoturbinals +nasoturbinate,nasoturbinates +nassariid,nassariids +Nasserist,Nasserists +Nassuvian,Nassuvians +nasturtion,nasturtions +nasturtium,nasturtiums,nasturtia +nasty gram,nasty grams +nasty-gram,nasty-grams +nastygram,nastygrams +nasty,nasties +natal cleft,natal clefts +natalid,natalids +natalist,natalists +natality,natalities +Natal plum,Natal plums +natatorium,natatoriums,natatoria +natator,natators +Natchez,Natchezes,Natchez +natch,natches +naticid,naticids +naticoid,naticoids +national academy,national academies +national airline,national airlines +national anthem,national anthems +national archive,national archives +national convention,national conventions +national costume,national costumes +national court,national courts +national day,national days +national emblem,national emblems +national epic,national epics +national grid,national grids +national holiday,national holidays +nationalisation,nationalisations +nationaliser,nationalisers +nationalism,nationalisms +nationalist,nationalists +nationality,nationalities +nationalization,nationalizations +nationalizer,nationalizers +national,nationals +national park,national parks +national revival,national revivals +National Socialist,National Socialists +national supremacy,national supremacies +national treasure,national treasures +nationism,nationisms +nation,nations +nation state,nation states +nation-state,nation-states +Native American,Native Americans +native bear,native bears +Native Californian,Native Californians +native cat,native cats +native code,native codes +native companion,native companions +native element,native elements +native ground,native grounds +native land,native lands +native language,native languages +native monkey,native monkeys +native,natives +native soil,native soils +native son,native sons +native speaker,native speakers +native species,native species +native title,native titles +native tongue,native tongues +nativist,nativists +nativity,nativities +nativity play,nativity plays +nativity scene,nativity scenes +Nativity Scene,Nativity Scenes +natlang,natlangs +nat,nats +nat,nats +NATO reporting name,NATO reporting names +natriuresis,natriureses +natriuretic,natriuretics +Natterer's slaty antshrike,Natterer's slaty antshrikes +nattering,natterings +natterjack,natterjacks +natter,natters +Natufian,Natufians +natural convection,natural convections +natural disaster,natural disasters +natural fiber,natural fibers +natural food,natural foods +natural function,natural functions +natural grammar,natural grammars +natural harmonic,natural harmonics +natural history,natural histories +natural increase rate,natural increase rates +naturalisation,naturalisations +naturalistic fallacy,naturalistic fallacies +naturalist,naturalists +naturalization,naturalizations +natural killer cell,natural killer cells +natural killer,natural killers +natural language,natural languages +natural logarithm,natural logarithms +natural log,natural logs +natural minor scale,natural minor scales +natural monopoly,natural monopolies +natural,naturals +natural number,natural numbers +natural person,natural persons +natural philosopher,natural philosophers +natural preserve,natural preserves +natural price,natural prices +natural process,natural processes +natural product,natural products +natural reserve,natural reserves +natural resource,natural resources +natural science,natural sciences +natural scientist,natural scientists +natural son,natural sons +natural transformation,natural transformations +natural trumpet,natural trumpets +natural unit,natural units +natural user interface,natural user interfaces +nature preserve,nature preserves +nature reserve,nature reserves +nature's scythe,nature's scythes +nature strip,nature strips +naturist,naturists +naturopathist,naturopathists +naturopath,naturopaths +naturopathy,naturopathies +naucorid,naucorids +naughty bit,naughty bits +naumachia,naumachias +naumachy,naumachies +naumannite,naumannites +naunt,naunts +naupaka,naupakas,naupaka +nauplius,nauplii +Nauruan,Nauruans +nauseant,nauseants +nautch,nautches +nautical mile,nautical miles +nautilid,nautilids +nautiliniellid,nautiliniellids +nautilite,nautilites +nautiloid,nautiloids +nautilus,nautiluses,nautili +navaid,navaids +Navajo,Navajos,Navajoes +Navajo white,Navajo whites +naval architect,naval architects +navalist,navalists +naval mine,naval mines +navamsa,navamsas +navarch,navarchs +navarin,navarins +Navarran,Navarrans +Navarrese,Navarreses +navbar,navbars +navel,navels +navel-string,navel-strings +nave,naves +nave,naves +naveta,navetas +navette,navettes +navew,navews +navicert,navicerts +navicular abdomen,navicular abdomens +navicular bone,navicular bones +navicular,naviculars +navie,navies +Navier-Stokes equation,Navier-Stokes equations +navigational chart,navigational charts +navigation channel,navigation channels +navigation mesh,navigation meshes +navigator,navigators +navigatrix,navigatrixes +navmesh,navmeshes +navvy,navvies +navy bean,navy beans +navy blue,navy blues +navy,navies +nawab,nawabs +nawabship,nawabships +Nawar,Nawars,Nawar +nawl,nawls +Naxalite,Naxalites +naxarar,naxarars +naxar,naxar +naybour,naybours +naycation,naycations +nay,nays +nay-sayer,nay-sayers +naysayer,naysayers +nay-saying,nay-sayings +nay-say,nay-says +naysay,naysays +nayword,naywords +Nazarene,Nazarenes +Nazarite,Nazarites +naze,nazes +nazi,nazis +Nazi,Nazis +Nazirite,Nazirites +NBAer,NBAers +n-bomb,n-bombs +N-bomb,N-bombs +N-cadherin,N-cadherins +NCT,NCTs +Ndembu,Ndembus,Ndembu +NDE,NDEs +n-dimensional space,n-dimensional spaces +ND,NDs +NDPer,NDPers +neam,neams +Neandertal,Neandertals +neanderthal,neanderthals +Neanderthal,Neanderthals +Neanthe bella palm,Neanthe bella palms +neanurid,neanurids +neap,neaps +Neapolitan chord,Neapolitan chords +Neapolitan,Neapolitans +neap tide,neap tides +near-death experience,near-death experiences +near-Earth object,near-Earth objects +near field communication,near field communications +near field,near fields +near-field,near-fields +nearfield,nearfields +near-minimal pair,near-minimal pairs +near miss,near misses +near,nears +near point,near points +near post,near posts +nearsightedness,nearsightednesses +neatball,neatballs +neat-freak,neat-freaks +neatherd,neatherds +neathouse,neathouses +neatline,neatlines +neat,neats,neat +neatnik,neatniks +neatress,neatresses +nebaliid,nebaliids +nebari,nebari +nebbish,nebbishes +Nebelung,Nebelungs +nebenion,nebenions +neb,nebs +Nebraskan,Nebraskans +nebris,nebrises +Nebuchadnezzar,Nebuchadnezzars +nebula,nebulae,nebulas +nebule,nebules +nebuliser,nebulisers +nebulization,nebulizations +nebulizer,nebulizers +nebulosity,nebulosities +nebulosus,nebulosi +necessaire,necessaires +nΓ©cessaire,nΓ©cessaires +necessarian,necessarians +Necessarian,Necessarians +necessary condition,necessary conditions +necessary evil,necessary evils +necessary,necessaries +necessitarian,necessitarians +necessitude,necessitudes +necessity,necessities +neckache,neckaches +neckband,neckbands +neckbeard,neckbeards +neckbone,neckbones +neck brace,neck braces +neck-brace,neck-braces +neckbrace,neckbraces +neckcloth,neckcloths +neck eel,neck eels +necke,neckes +neckerchief,neckerchiefs +necker knob,necker knobs +necker's knob,necker's knobs +neck-gable,neck-gables +necklace,necklaces +necklacing,necklacings +neckland,necklands +necklet,necklets +neckline,necklines +neckmould,neckmoulds +neck,necks +neck of the woods,necks of the woods +neckpiece,neckpieces +neckplate,neckplates +neck ring,neck rings +neckroll,neckrolls +neckstrap,neckstraps +necktie,neckties +necktie party,necktie parties +necktie-party,necktie-parties +neckwarmer,neckwarmers +neckyoke,neckyokes +necrobiosis,necrobioses +necrocracy,necrocracies +necrologist,necrologists +necrology,necrologies +necrolysis,necrolyses +necromance,necromances +necromancer,necromancers +necromantic,necromantics +necromass,necromasses +necro,necroes,necros +necronym,necronyms +necrophagan,necrophagans +necrophage,necrophages +necrophile,necrophiles +necrophiliac,necrophiliacs +necrophore,necrophores +necropolis,necropolises,necropoleis +necropsy,necropsies +necrosadist,necrosadists +necroscopy,necroscopies +necrosectomy,necrosectomies +necrosis,necroses +necrostatin,necrostatins +necrotaulid,necrotaulids +necrotomy,necrotomies +necrotroph,necrotrophs +necrovirus,necroviruses +nectaplum,nectaplums +nectarine,nectarines +nectarinid,nectarinids +nectariniid,nectariniids +nectarivore,nectarivores +nectar,nectars +nectary,nectaries +nectin,nectins +nectocalyx,nectocalyces +nectophore,nectophores +nectosac,nectosacs +nedder,nedders +neddy,neddies +ned,neds +neechee,neechees +neede,needes +needer,needers +need-fire,need-fires +needful,needfuls +neediness,needinesses +needle bearing,needle bearings +needlebook,needlebooks +needlecase,needlecases +needle-clawed bushbaby,needle-clawed bushbabies +needlecord,needlecords +needlecrafter,needlecrafters +needle dick,needle dicks +needledick,needledicks +needlefelt,needlefelts +needlefish,needlefish,needlefishes +needleful,needlefuls +needle gun,needle guns +needle,needles +needler,needlers +needlessness,needlessnesses +needlestick injury,needlestick injuries +needlestick,needlesticks +needletail,needletails +needle time,needle times +needlet,needlets +needle valve,needle valves +needlewoman,needlewomen +needleworker,needleworkers +needling,needlings +needment,needments +need,needs +neeld,neelds +neele,neeles +neelghau,neelghaus +neem,neems +neenish tart,neenish tarts +neep,neeps +ne'er-do-well,ne'er-do-wells +neer,neers +neesing,neesings +neet,neets +NEET,NEETs +nefazodone,nefazodones +neffy,neffies +nef,nefs +negaholic,negaholics +negamile,negamiles +negationist,negationists +negative clause,negative clauses +negative crystal,negative crystals +negative edge,negative edges +negative equity,negative equities +negative gearing,negative gearings +negative income tax,negative income taxes +negative interference,negative interferences +negative,negatives +negativeness,negativenesses +negative pledge,negative pledges +negative pressure,negative pressures +negative proof,negative proofs +negative side waterproofing,negative side waterproofings +negative space,negative spaces +negative verb,negative verbs +negative zero,negative zeros,negative zeroes +negativity,negativities +negaton,negatons +negator,negators +negatron,negatrons +negawatt,negawatts +neger,negers +neglectee,neglectees +neglecter,neglecters +neglection,neglections +negligΓ©e,negligΓ©es +nΓ©gligΓ©e,nΓ©gligΓ©es +negligible set,negligible sets +neg,negs +negociation,negociations +negotiable instrument,negotiable instruments +negotiable,negotiables +negotiant,negotiants +negotiation,negotiations +negotiator,negotiators +negotiatrix,negotiatrices +Negrense,Negrenses +negress,negresses +Negrito,Negritos,Negritoes,Negrito +negroid,negroids +Negro monkey,Negro monkeys +negro,negroes,negros +Negro,Negroes,Negros +negroni,negronis +negrophile,negrophiles +negro spiritual,negro spirituals +negus,neguses +Negus,Neguses +Nehru jacket,Nehru jackets +Nehushtan,Nehushtans +neibor,neibors +neibour,neibours +neif,neifs +neighboorhood,neighboorhoods +neighbore,neighbores +neighbor,neighbors +neighborred,neighborreds +neighbor tone,neighbor tones +neighboured,neighboureds +neighboure,neighboures +neighbouress,neighbouresses +neighbourhood,neighbourhoods +neighbouring group,neighbouring groups +neighbouring group participation,neighbouring group participations +neighbour,neighbours +neighbourship,neighbourships +neighing,neighings +neigh,neighs +neilonellid,neilonellids +nekomimi,nekomimi,nekomimis +nekropolis,nekropolises,nekropoleis +neleid,neleids +NELG,NELGs +nelly,nellies +nelson,nelsons +Nelson's elk,Nelson's elk +nelumbo,nelumbos +nemastomatid,nemastomatids +nemathecium,nemathecia +nematicide,nematicides +nematic,nematics +nematicon,nematicons +nematistiid,nematistiids +nematoblast,nematoblasts +nematocalyx,nematocalyces +nematoceran,nematocerans +nematocide,nematocides +nematocyst,nematocysts +nematode,nematodes +nematogene,nematogenes +nematogen,nematogens +nematogenyid,nematogenyids +nematognath,nematognaths +nematologist,nematologists +nematomorph,nematomorphs +nemegtosaurid,nemegtosaurids +nemertean,nemerteans +nemertian,nemertians +nemertodermatid,nemertodermatids +nemesiid,nemesiids +nemesis,nemeses +nemestrinid,nemestrinids +nemichthyid,nemichthyids +nemipterid,nemipterids +nemonychid,nemonychids +nemophilist,nemophilists +nemopterid,nemopterids +nemourid,nemourids +nene,nenes +nenia,nenias +nenuphar,nenuphars +neoadjuvant therapy,neoadjuvant therapies +neoangiogenesis,neoangiogeneses +neoantigen,neoantigens +neoarsphenamine,neoarsphenamines +neobalaenid,neobalaenids +neobehaviorist,neobehaviorists +neobladder,neobladders +neocapitalist,neocapitalists +neocentromere,neocentromeres +neoceratiid,neoceratiids +neoceratopsian,neoceratopsians +neocerebellum,neocerebellums +Neo-Charismatic,Neo-Charismatics +neoclassicist,neoclassicists +neocolonialist,neocolonialists +neo-colony,neo-colonies +neocolony,neocolonies +neoconceptualist,neoconceptualists +neocon,neocons +neoconservatism,neoconservatisms +neoconservative,neoconservatives +neocortex,neocortices,neocortexes +neocracy,neocracies +neo-creo,neo-creos +neodamode,neodamodes +neodecanoic acid,neodecanoic acids +Neo-druid,Neo-druids +Neodruid,Neodruids +neodymium magnet,neodymium magnets +neoechinorhynchid,neoechinorhynchids +neoendorphin,neoendorphins +neoepiblemid,neoepiblemids +neoepitope,neoepitopes +neofascist,neofascists +neofeminist,neofeminists +neoflavonoid,neoflavonoids +neoformalist,neoformalists +neogamist,neogamists +neogastropod,neogastropods +neogenesis,neogeneses +neoglycoconjugate,neoglycoconjugates +neoglycopolymer,neoglycopolymers +neoglycoprotein,neoglycoproteins +neoglyphioceratid,neoglyphioceratids +neogrammarian,neogrammarians +Neogrammarian,Neogrammarians +neohumanist,neohumanists +neoimperialist,neoimperialists +neoimpressionist,neoimpressionists +neointima,neointimas,neointimae +neolanid,neolanids +neolepetopsid,neolepetopsids +neoliberal,neoliberals +neolignane,neolignanes +neolignan,neolignans +Neolithic Revolution,Neolithic Revolutions +neolithization,neolithizations +neologian,neologians +neologiser,neologisers +neologist,neologists +neologizer,neologizers +neo-Luddite,neo-Luddites +neo-Luddite,neo-Luddites +neominimalist,neominimalists +neomorph,neomorphs +neomphalid,neomphalids +neonatalogist,neonatalogists +neonate,neonates +neonatologist,neonatologists +neo-Nazi,neo-Nazis +NEO,NEOs +neon glow lamp,neon glow lamps +neonicotinoid,neonicotinoids +neon lamp,neon lamps +neon lighting,neon lightings +neon light,neon lights +Neonomian,Neonomians +neon sign,neon signs +neon tetra,neon tetras +neo-Objectivist,neo-Objectivists +neo-pagan,neo-pagans +neopagan,neopagans +neopallium,neopallia +neo-pantheism,neo-pantheisms +neo-pantheist,neo-pantheists +Neo-Pentecostal,Neo-Pentecostals +neopentoxy,neopentoxys +neopentyl,neopentyls +neophyte,neophytes +neoplagiaulacid,neoplagiaulacids +neoplasm,neoplasms +neoplasticist,neoplasticists +neoplasty,neoplasties +Neoplatonician,Neoplatonicians +Neoplatonist,Neoplatonists +neopopulist,neopopulists +neopragmatist,neopragmatists +neoprimitivist,neoprimitivists +neopseustid,neopseustids +neopteran,neopterans +neopullulanase,neopullulanases +Neopythagorean,Neopythagoreans +Neo-Pythagorean,Neo-Pythagoreans +neorama,neoramas +neorealist,neorealists +neosauropod,neosauropods +neoscopelid,neoscopelids +neosocialist,neosocialists +neostatin,neostatins +neostomy,neostomies +neostriatum,neostriata +neostructuralist,neostructuralists +neosuchian,neosuchians +neosurrealist,neosurrealists +neotard,neotards +neoteric,neoterics +neoterism,neoterisms +neoterist,neoterists +neoteuthid,neoteuthids +neothalamus,neothalami +neotheropod,neotheropods +neotissue,neotissues +neotraditionalist,neotraditionalists +neottiophilid,neottiophilids +neotype,neotypes +neoumbilicoplasty,neoumbilicoplasties +neovagina,neovaginas +neovascularisation,neovascularisations +neovenatorid,neovenatorids +neovessel,neovessels +Nepalese,Nepalese +Nepali,Nepalis +Nepaulese,Nepaulese +nepenthe,nepenthes +neper,nepers +nepeta,nepetas +nephalist,nephalists +nephelite,nephelites +nephelometer,nephelometers +nephew-in-law,nephews-in-law +nephew,nephews +nephilid,nephilids +Nephite,Nephites +neph,nephs +nephoscope,nephoscopes +nephrectomy,nephrectomies +nephridiopore,nephridiopores +nephridium,nephridia +nephrin,nephrins +nephritick,nephriticks +nephritic,nephritics +nephritis,nephritides,nephritises +nephroblastoma,nephroblastomas,nephroblastomata +nephrocyte,nephrocytes +nephroid,nephroids +nephrolith,nephroliths +nephrolithotomy,nephrolithotomies +nephrolithotripsy,nephrolithotripsies +nephrologist,nephrologists +nephroma,nephromas +nephromegaly,nephromegalies +nephron,nephrons +nephropathy,nephropathies +nephropid,nephropids +nephropsid,nephropsids +nephroscope,nephroscopes +nephrosis,nephroses +nephros,nephros,nephroi +nephrostogram,nephrostograms +nephrostome,nephrostomes +nephrostomy,nephrostomies +nephrotome,nephrotomes +nephrotomy,nephrotomies +nephrotoxin,nephrotoxins +nephtheid,nephtheids +nephtyid,nephtyids +nepid,nepids +ne plus ultra,ne plus ultras +nep,neps +nepotist,nepotists +nepovirus,nepoviruses +nepticulid,nepticulids +Neptune's cup,Neptune's cups +Neptunian,Neptunians +Neptunist,Neptunists +nerdbrain,nerdbrains +nerdfest,nerdfests +nerdgasm,nerdgasms +nerdistan,nerdistans +nerditude,nerditudes +nerdlinger,nerdlingers +nerd,nerds +nerdo,nerdos +ne're-do-well,ne're-do-wells +nereidian,nereidians +nereidid,nereidids +nereid,nereids +nerf ball,nerf balls +nerf bar,nerf bars +nerfling,nerflings +nerf net,nerf nets +neriid,neriids +nerillid,nerillids +nerineid,nerineids +nerinellid,nerinellids +nerine,nerines +nerite,nerites +neritid,neritids +neritiliid,neritiliids +neritopsid,neritopsids +Nernst lamp,Nernst lamps +nervation,nervations +nerve agent,nerve agents +nerve cell,nerve cells +nerve center,nerve centers +nerve ending,nerve endings +nerve fiber,nerve fibers +nerve fibre,nerve fibres +nerve gas,nerve gases +nerve growth factor,nerve growth factors +nerve impulse,nerve impulses +nerve,nerves +nerve net,nerve nets +nerve trunk,nerve trunks +nerveway,nerveways +nerviness,nervinesses +nervon,nervons +nervosism,nervosisms +nervosity,nervosities +nervous breakdown,nervous breakdowns +nervous nellie,nervous nellies +nervous Nellie,nervous Nellies +Nervous Nellie,Nervous Nellies +nervous nelly,nervous nellies +nervous Nelly,nervous Nellies +Nervous Nelly,Nervous Nellies +nervous system,nervous systems +nervous tissue,nervous tissues +nervure,nervures +nescient,nescients +Neshannock,Neshannocks +NESOI,NESOIs +nesomyid,nesomyids +nesophontid,nesophontids +nesosilicate,nesosilicates +nesprin,nesprins +nesquehonite,nesquehonites +ness,nesses +nest box,nest boxes +nestbox,nestboxes +nested class,nested classes +nest egg,nest eggs +nester,nesters +nestful,nestfuls,nestsful +nesticid,nesticids +nesting,nestings +nestler,nestlers +nestling,nestlings +nestmate,nestmates +nest,nests +nestohedron,nestohedra +Nestorianism,Nestorianisms +Nestorian,Nestorians +nestorid,nestorids +nest scrape,nest scrapes +netback,netbacks +netballer,netballers +netblock,netblocks +netbook,netbooks +netburp,netburps +net call sign,net call signs +netcaster,netcasters +netcast,netcasts +netcop,netcops +netcronym,netcronyms +net curtain,net curtains +net earnings,net earnings +netful,netfuls,netsful +netgoth,netgoths +nethead,netheads +nether cheek,nether cheeks +netherdom,netherdoms +nethergarment,nethergarments +nether hair,nether hairs +nether-hair,nether-hairs +netherhair,netherhairs +netherhose,netherhose,netherhosen +Netherlander,Netherlanders +netherlandophone,netherlandophones +netherling,netherlings +netherman,nethermen +nethermind,netherminds +nether,nethers +nether region,nether regions +netherregion,netherregions +nether-shirt,nether-shirts +netherstocking,netherstockings +netherstock,netherstocks +nether thought,nether thoughts +netherthought,netherthoughts +netherverse,netherverses +nether world,nether worlds +netherworld,netherworlds +net income,net incomes +neti pot,neti pots +netizen,netizens +netkeeper,netkeepers +netlabel,netlabels +net lease,net leases +netlist,netlists +netload,netloads +netmask,netmasks +net minder,net minders +netminder,netminders +net net,net nets +net,nets +net,nets +netop,netops +netphone,netphones +net profit,net profits +netput,netputs +net-raising,net-raisings +netrin,netrins +netsplit,netsplits +netsuke,netsukes,netsuke +netsurfer,netsurfers +nettastomatid,nettastomatids +netter,netters +nettie,netties +nettie,netties +nettlebed,nettlebeds +nettle,nettles +nettle-rash,nettle-rashes +nettler,nettlers +nettop,nettops +netty,netties +net weight,net weights +network card,network cards +network effect,network effects +networker,networkers +network externality,network externalities +network interface card,network interface cards +network,networks +network printer,network printers +network subsystem,network subsystems +network topology,network topologies +netzine,netzines +neuk,neuks +neume,neumes +neural canal,neural canals +neural crest,neural crests +neural network,neural networks +neural plate,neural plates +neural tube,neural tubes +neuraminate,neuraminates +neurapophysis,neurapophyses +neurapraxia,neurapraxias +neurasthenia,neurasthenias +neuration,neurations +neuraxis,neuraxes +neurectomy,neurectomies +neuregulin,neuregulins +neurexin,neurexins +neurexophilin,neurexophilins +neurilemma,neurilemmas,neurilemmata +neurilemmoma,neurilemmomas,neurilemmomata +neurinoma,neurinomas,neurinomata +neurite,neurites +neuritis,neuritides +neuroactive steroid,neuroactive steroids +neuroanatomist,neuroanatomists +neuroanatomy,neuroanatomies +neuroarthropathy,neuroarthropathies +neurobiologist,neurobiologists +neuroblast,neuroblasts +neuroblastoma,neuroblastomas,neuroblastomata +neurochemical,neurochemicals +neurochemist,neurochemists +neurochip,neurochips +neurochord,neurochords +neurocircuit,neurocircuits +neurocoele,neurocoeles +neurocomputation,neurocomputations +neurocomputer,neurocomputers +neurocord,neurocords +neurocranium,neurocrania +neurocristopathy,neurocristopathies +neurocyte,neurocytes +neurocytoma,neurocytomas,neurocytomata +neurode,neurodes +neuroembryologist,neuroembryologists +neuroendocrine signaling,neuroendocrine signalings +neuroendocrinologist,neuroendocrinologists +neuroenhancement,neuroenhancements +neuroenhancer,neuroenhancers +neuroepidemiologist,neuroepidemiologists +neuroepithelioma,neuroepitheliomas,neuroepitheliomata +neuroepithelium,neuroepithelia +neuroesthesioblastoma,neuroesthesioblastomas +neuroethologist,neuroethologists +neurofascin,neurofascins +neurofibril,neurofibrils +neurofibroma,neurofibromas,neurofibromata +neurofibromatosis,neurofibromatoses +neurofibromin,neurofibromins +neurofibrosarcoma,neurofibrosarcomas,neurofibrosarcomata +neurofilament,neurofilaments +neurofuran,neurofurans +neurogeneticist,neurogeneticists +neurogenic shock,neurogenic shocks +neuroglia,neuroglia +neuroglobin,neuroglobins +neurography,neurographies +neurohormone,neurohormones +neurohumor,neurohumors +neurohumour,neurohumours +neurohypophysis hormone,neurohypophysis hormones +neurohypophysis,neurohypophyses +neuroimage,neuroimages +neuroimager,neuroimagers +neuroimmunologist,neuroimmunologists +neuroimmunology,neuroimmunologies +neuroimmunomodulation,neuroimmunomodulations +neurokinin,neurokinins +neurolawyer,neurolawyers +neurolemma,neurolemmas,neurolemmata +neurolemmoma,neurolemmomas,neurolemmomata +neuroleptic,neuroleptics +neuroligand,neuroligands +neuroligin,neuroligins +neurolipidosis,neurolipidoses +neurologist,neurologists +neurolysin,neurolysins +neuroma,neuromas,neuromata +neuromast,neuromasts +neuromedin,neuromedins +neuromere,neuromeres +neuromodulation,neuromodulations +neuromodulator,neuromodulators +neuromuscular junction,neuromuscular junctions +neuromyotonia,neuromyotonias +neuromyth,neuromyths +neuronaut,neuronauts +neurone,neurones +neuron,neurons,neura +neuro-ophthalmologist,neuro-ophthalmologists +neuroparalysis,neuroparalyses +neuropathogen,neuropathogens +neuropathologist,neuropathologists +neuropathy,neuropathies +neuropatterning,neuropatternings +neuropeptide,neuropeptides +neuropeptidome,neuropeptidomes +neuropharmacologist,neuropharmacologists +neurophilosopher,neurophilosophers +neurophysicist,neurophysicists +neurophysin,neurophysins +neurophysiologist,neurophysiologists +neuropilin,neuropilins +neuropil,neuropils +neuropin,neuropins +neuroplastin,neuroplastins +neuropodium,neuropodia +neuropod,neuropods +neuropore,neuropores +neuroprosthesis,neuroprostheses +neuroprotectant,neuroprotectants +neuroprotectin,neuroprotectins +neuroprotector,neuroprotectors +neuroprotein,neuroproteins +neuropsin,neuropsins +neuropsychiatrist,neuropsychiatrists +neuropsychologist,neuropsychologists +neuropsychopharmacologist,neuropsychopharmacologists +neuropteran,neuropterans +neuropter,neuropters +neuroradiologist,neuroradiologists +neuroreceptor,neuroreceptors +neuroretina,neuroretinas +neurorrhaphy,neurorrhaphies +neurorthid,neurorthids +neurosarcoma,neurosarcomas,neurosarcomata +neuroscientist,neuroscientists +neurosecretion,neurosecretions +neuroserpin,neuroserpins +neurosis,neuroses +neuroskeleton,neuroskeletons +neurospast,neurospasts +neurosphere,neurospheres +neurosteroid,neurosteroids +neurostimulator,neurostimulators +neurosurgeon,neurosurgeons +neurosyphilitic,neurosyphilitics +neurotechnology,neurotechnologies +neurotensin,neurotensins +neurotic,neurotics +neurotmesis,neurotmeses +neurotologist,neurotologists +neurotome,neurotomes +neurotomist,neurotomists +neurotomy,neurotomies +neurotoxicant,neurotoxicants +neurotoxicity,neurotoxicities +neurotoxicologist,neurotoxicologists +neurotoxin,neurotoxins +neurotransmission,neurotransmissions +neurotransmitter,neurotransmitters +neurotrophin,neurotrophins +neurotrosis,neurotroses +neurotype,neurotypes +neurotypical,neurotypicals +neurovirologist,neurovirologists +neuroweapon,neuroweapons +neurula,neurulae +neurulation,neurulations +neuter,neuters +neutraceutical,neutraceuticals +neutral clef,neutral clefs +neutral current,neutral currents +neutralino,neutralinos +neutralisation,neutralisations +neutraliser,neutralisers +neutralist,neutralists +neutralization,neutralizations +neutralizer,neutralizers +neutral,neutrals +neutralophile,neutralophiles +neutral third,neutral thirds +neutral-zone infraction,neutral-zone infractions +neutral zone,neutral zones +neutrino,neutrinos +neutrinosphere,neutrinospheres +neutrocyte,neutrocytes +neutron bomb,neutron bombs +neutron cross section,neutron cross sections +neutron flux,neutron fluxes +neutron interferometer,neutron interferometers +neutron,neutrons +neutron number,neutron numbers +neutron star,neutron stars +neutrophile,neutrophiles +neutrophil,neutrophils +Nevadan,Nevadans +neveling,nevelings +neve,neves +nΓ©vΓ©,nΓ©vΓ©s +neverendum,neverendums +neverland,neverlands +nevermind,neverminds +never-nude,never-nudes +never smoker,never smokers +never-smoker,never-smokers +neverthriving,neverthrivings +never-was-er,never-was-ers +never-was'er,never-was'ers +never-waser,never-wasers +never-wasser,never-wassers +never-would-be,never-would-bes +never-wozzer,never-wozzers +neverwozzer,neverwozzers +nevew,nevews +Nevisian,Nevisians +nevoxanthoendothelioma,nevoxanthoendotheliomas,nevoxanthoendotheliomata +nevrorthid,nevrorthids +nevus,nevi +New Ager,New Agers +New Age traveller,New Age travellers +new ball,new balls +newbie,newbies +newblet,newblets +newb,newbs +newborn,newborns,newborn +newbro,newbros +new broom,new brooms +New Brunswicker,New Brunswickers +newbuild,newbuilds +New Caledonian,New Caledonians +new chum,new chums +new cocoyam,new cocoyams +newcome,newcomes +new-comer,new-comers +newcomer,newcomers +newco,newcos +New Dem,New Dems +New Democrat,New Democrats +newel,newels +newel,newels +newel post,newel posts +New England clam chowder,New England clam chowders +New Englander,New Englanders +newfag,newfags +newfanglist,newfanglists +Newfie joke,Newfie jokes +Newfie,Newfies +Newf,Newfs +New Forester,New Foresters +New Forest pony,New Forest ponies +newform,newforms +Newfoundlander,Newfoundlanders +Newfoundland,Newfoundlands +Newfoundland speed bump,Newfoundland speed bumps +New Guinea flightless rail,New Guinea flightless rails +newhalf,newhalfs,newhalves +New Hampshirite,New Hampshirites +newie,newies +New Jerseyite,New Jerseyites +new kid on the block,new kids on the block +new lad,new lads +new lease on life,new leases on life +newline,newlines +newling,newlings +newlywed,newlyweds +New Mexican,New Mexicans +new moon,new moons +New Orleanian,New Orleanians +new penny,new pence,new pennies +new potato,new potatoes +new religious movement,new religious movements +New Romantic,New Romantics +news agency,news agencies +newsagency,newsagencies +newsagent,newsagents +news anchor,news anchors +newsbook,newsbooks +newsbot,newsbots +newsbox,newsboxes +newsboy,newsboys +newsbreak,newsbreaks +newscaster,newscasters +newscast,newscasts +news channel,news channels +new school,new schools +news conference,news conferences +news correspondent,news correspondents +newsdealer,newsdealers +news desk,news desks +newsdesk,newsdesks +newser,newsers +newsfeed,newsfeeds +news flash,news flashes +newsflash,newsflashes +newsflow,newsflows +newsfroup,newsfroups +newsgatherer,newsgatherers +newsgirl,newsgirls +newsgrouper,newsgroupers +newsgroup,newsgroups +newshand,newshands +new shekel,new shekels +new sheqel,new sheqels,new sheqalim +news hole,news holes +newshole,newsholes +newshound,newshounds +newsie,newsies +newsjacking,newsjackings +newslady,newsladies +newsletter,newsletters +newsmagazine,newsmagazines +newsmaker,newsmakers +newsman,newsmen +newsmonger,newsmongers +newspaperman,newspapermen +newspaperwoman,newspaperwomen +newsperson,newspersons,newspeople +newsplan,newsplans +newsreader,newsreaders +newsroom,newsrooms +newsstand,newsstands +newsstore,newsstores +new standard,new standards +news ticker,news tickers +newsticker,newstickers +newsvendor,newsvendors +newsweekly,newsweeklies +news wire,news wires +newswire,newswires +newswoman,newswomen +newsy,newsies +New Taiwan dollar,New Taiwan dollars +newtling,newtlings +newt,newts +Newton hearing,Newton hearings +Newtonian fluid,Newtonian fluids +Newtonian,Newtonians +Newtonmas,Newtonmases +newton meter,newton meters +newton metre,newton metres +newton,newtons +Newton's cradle,Newton's cradles +new town,new towns +New Woman,New Women +New World monkey,New World monkeys +New World porcupine,New World porcupines +New World vulture,New World vultures +New Year,New Years +New Year's Day,New Year's Days +New Year's resolution,New Year's resolutions +New York breakfast,New York breakfasts +New Yorker,New Yorkers +New York fern,New York ferns +New York minute,New York minutes +New York reload,New York reloads +new zaΓ―re,new zaΓ―res,new zaΓ―re +New Zealand dollar,New Zealand dollars +New Zealander,New Zealanders +New Zealand falcon,New Zealand falcons +New Zealandism,New Zealandisms +New Zealand pigeon,New Zealand pigeons +New Zealandress,New Zealandresses +New Zealand spinach,New Zealand spinaches +nexion,nexions +neyghbore,neyghbores +neyghbor,neyghbors +neyghboure,neyghboures +neyghbour,neyghbours +ney,neys +N-facility,N-facilities +NFLer,NFLers +ngaio,ngaios +Nganasan,Nganasans +ngawha,ngawhas +Ngbandi,Ngbandi +ngeli,ngelis +ngina,nginas +Ngqika,Ngqikas,Ngqika +n-gram,n-grams +ngultrum,ngultrums +ngwee,ngwees +NHLer,NHLers +NHS Trust,NHS Trusts +niacinate,niacinates +Niagara grape,Niagara grapes +Niagara,Niagaras +Niagaran,Niagarans +n-iamond,n-iamonds +niaouli,niaoulis +nibble,nibbles +nibble,nibbles +nibbler,nibblers +nibbly,nibblies +niblet,niblets +niblick,niblicks +niblick shot,niblick shots +nibling,niblings +nib,nibs +nibs,nibs +nicad,nicads +nicandrenone,nicandrenones +Nica,Nicas +Nican Tlaca,Nican Tlacas +Nicaraguan,Nicaraguans +nicca,niccas,niccaz +nice guy,nice guys +niceling,nicelings +nice round number,nice round numbers +nicery,niceries +nicety,niceties +niche market,niche markets +niche,niches +Nicholaitan,Nicholaitans +nickase,nickases +nickelate,nickelates +nickel bag,nickel bags +nickel note,nickel notes +nickelocene,nickelocenes +nickelodeon,nickelodeons +Nickelodeon,Nickelodeons +nickering,nickerings +nicker,nicker +nicker,nickers +nicker,nickers +nicker nut,nicker nuts +nicker tree,nicker trees +nicking,nickings +nickle,nickles +nicknackery,nicknackeries +nick-nack,nick-nacks +nicknack,nicknacks +nickname,nicknames +nicknamer,nicknamers +nick,nicks +nick point,nick points +nickum,nickums +nicky-tam,nicky-tams +nicodamid,nicodamids +Nicodemite,Nicodemites +NiΓ§oise salad,NiΓ§oise salads +Nicolaitan,Nicolaitans +Nicolaite,Nicolaites +nicoletiid,nicoletiids +Nicol prism,Nicol prisms +nicomiid,nicomiids +Nicopolitan,Nicopolitans +Nicosian,Nicosians +nicothoid,nicothoids +nicotiana,nicotianas +nicotinate,nicotinates +nicotine alkaloid,nicotine alkaloids +nicotine gum,nicotine gums +nicotine patch,nicotine patches +nicotine stomatitis,nicotine stomatitiss +nicotinic acetylcholine receptor,nicotinic acetylcholine receptors +nicotinist,nicotinists +nicotinoyl,nicotinoyls +nictating membrane,nictating membranes +nictation,nictations +nictitating membrane,nictitating membranes +nictitation,nictitations +NICU,NICUs +nidary,nidaries +nidation,nidations +niddah,niddahs +nidda,niddas +niddering,nidderings +niddicock,niddicocks +niddy-noddy,niddy-noddies +nide,nides +nidgery,nidgeries +nidget,nidgets +niding,nidings +nid,nid +nidogen,nidogens +nidopallium,nidopalliums,nidopallia +nidor,nidor +nidus,nidi,niduses +niece-in-law,nieces-in-law +niece,nieces +nieceship,nieceships +niedermayrite,niedermayrites +nief,niefs +nief,niefs,nieves +niellist,niellists +Nietzschean,Nietzscheans +nieve,nieves +nifkin,nifkins +nifle,nifles +nift,nifts +niftyness,niftyness +nigella,nigellas +Nigel,Nigels +Nigel no friends,Nigel no friends +Nigerian,Nigerians +Nigerian scam,Nigerian scams +Nigerien,Nigeriens +niggah,niggahs +nigga,niggas,niggaz +niggard,niggards +niggerball,niggerballs +niggerbitch,niggerbitches +niggercide,niggercides +niggerdick,niggerdicks +niggeress,niggeresses +niggerfaggot,niggerfaggots +niggerfucker,niggerfuckers +nigger gallery,nigger galleries +nigger head,nigger heads +nigger-head,nigger-heads +niggerhead,niggerheads +nigger heaven,nigger heavens +nigger in the woodpile,niggers in the woodpile +niggerling,niggerlings +nigger lover,nigger lovers +niggerlover,niggerlovers +nigger,niggers +nigger toe,nigger toes +niggie,niggies +niggle,niggles +niggler,nigglers +niggy,niggies +nighantu,nighantus +Nighantu,Nighantus +night-bat,night-bats +night bird,night birds +nightbird,nightbirds +night blindness,night blindnesses +nightcap,nightcaps +nightclubber,nightclubbers +night club,night clubs +nightclub,nightclubs +nightcrawler,nightcrawlers +nightdream,nightdreams +nightdress,nightdresses +night emission,night emissions +night glass,night glasses +night-glass,night-glasses +nightglow,nightglows +nightgown,nightgowns +nightguard,nightguards +nighthawker,nighthawkers +night hawk,night hawks +nighthawk,nighthawks +night heron,night herons +nightie,nighties +nightingale,nightingales +nightjar,nightjars +night letter,night letters +nightlifer,nightlifers +nightlight bulb,nightlight bulbs +night light,night lights +nightlight,nightlights +night lizard,night lizards +nightly,nightlies +nightman,nightmen +nightmare,nightmares +night out,nights out +night owl,night owls +night person,night people +night-rail,night-rails +night-raven,night-ravens +nightscape,nightscapes +night school,night schools +nightshade,nightshades +night shift,night shifts +nightshift,nightshifts +nightshirt,nightshirts +nightside,nightsides +night soil man,night soil men +night-soil,night-soils +nightspot,nightspots +nightstand,nightstands +nightstick fracture,nightstick fractures +night stick,night sticks +nightstick,nightsticks +nightstool,nightstools +nightsuit,nightsuits +night terror,night terrors +night-time,night-times +nighttime,nighttimes +night tremor,night tremors +night watchman,night watchmen +night-watchman,night-watchmen +nightwatchman,nightwatchmen +night watchman state,night watchman states +night watch,night watches +nightwatchwoman,nightwatchwomen +night wind,night winds +nighty,nighties +niglet,niglets +nig,nigs +nig-nog,nig-nogs +nigorobuna,nigorobunas +nigra,nigras +Nigra,Nigras +nigrescence,nigrescences +nigress,nigresses +Nigritian,Nigritians +nigromancer,nigromancers +nigromancien,nigromanciens +nigromancy,nigromancies +nigromant,nigromants +nigua,niguas +nihang,nihangs +nihilarian,nihilarians +nihilartikel,nihilartikels +nihilation,nihilations +nihilator,nihilators +nihilist,nihilists +nikka,nikkas +Nikkei index,Nikkei indexs +nikkeijin,nikkeijins,nikkeijin +nikkei,nikkeis,nikkei +Nikon choir,Nikon choirs +Nikon chorus,Nikon choruses +Nikonian,Nikonians +Nile crocodile,Nile crocodiles +Nile perch,Nile perches,Nile perch +nilgai,nilgais,nilgai +nilghai,nilghais,nilghai +nilla,nillas +nilmanifold,nilmanifolds +nil,nils +nilometer,nilometers +Niloscope,Niloscopes +nilradical,nilradicals +nilsoliton,nilsolitons +nimber,nimbers +nimb,nimbs +nimbostratus,nimbostratus +nimbus,nimbi,nimbuses +nimby,nimbies,nimbys +nimmer,nimmers +nimph,nimphs +nimravid,nimravids +nimrod,nimrods +Nimrod,Nimrods +nimshy,nimshies +NINA loan,NINA loans +NINA,NINAs +Nina Ross,Nina Rosses +nincompoop,nincompoops +nine-banded armadillo,nine-banded armadillos +ninebark,ninebarks +nine days' wonder,nine days' wonders +nine day wonder,nine day wonders +nine eleven,nine elevens +nine-killer,nine-killers +nine,nines +nine one one,nine one ones +nine-one-one,nine-one-ones +ninepence,ninepences +ninepin,ninepins +nine-point circle,nine-point circles +nine points circle,nine points circles +ninesies,ninesies +nineteenth,nineteenths +ninetieth,ninetieths +nine-timer,nine-timers +nine to five,nine to fives +nine-to-fiver,nine-to-fivers +ninety-day wonder,ninety-day wonders +ninety-eighth,ninety-eighths +ninety-fifth,ninety-fifths +ninety-first,ninety-firsts +ninety-fourth,ninety-fourths +ninety-ninth,ninety-ninths +ninety-second,ninety-seconds +ninety-seventh,ninety-sevenths +ninety-sixth,ninety-sixths +ninety-third,ninety-thirds +ning nong,ning nongs +ning-nong,ning-nongs +ninja loan,ninja loans +NINJA loan,NINJA loans +ninja looter,ninja looters +ninja,ninja,ninjas +ninja rock,ninja rocks +ninja star,ninja stars +nin,nins +ninnyhammer,ninnyhammers +ninnyism,ninnyisms +ninny,ninnies +Nintendo,Nintendos +ninth chord,ninth chords +ninth grade,ninth grades +ninth,ninths +niobate,niobates +nip and tuck,nip and tucks,nips and tucks +nipa,nipas +niphargid,niphargids +Nipkow disk,Nipkow disks +Nipmuc,Nipmuc +nip,nips +nip,nips +nip,nips +Nip,Nips +nipperkin,nipperkins +nipper,nippers +nippitatum,nippitatums +nipple cactus,nipple cacti +nipple clamp,nipple clamps +nipple cripple,nipple cripples +nipple,nipples +nipplewort,nippleworts +nip point,nip points +Nipponism,Nipponisms +Nipponophile,Nipponophiles +Nippy,Nippies,Nippys +niqab,niqabs +nisbe,nisbes +Nisei,Nisei +nisei,niseis,nisei +Nisenan,Nisenans,Nisenan +Nishan Sahib,Nishan Sahibs +Nisibene,Nisibenes +nisin,nisins +Nisqually,Nisquallies,Nisqually +Nissen hut,Nissen huts +nitchie,nitchies +nit comb,nit combs +nite,nites +nither,nithers +nithing,nithings +nitidulid,nitidulids +nit,nits +nit,nits +nit-noid,nit-noids +nit nurse,nit nurses +niton,nitons +nit-picker,nit-pickers +nitpicker,nitpickers +nitramide,nitramides +nitramine,nitramines +nitraniline,nitranilines +nitrary,nitraries +nitrate,nitrates +nitratocuprate,nitratocuprates +nitrator,nitrators +nitrene,nitrenes +nitrenium,nitreniums +nitrenoid,nitrenoids +nitriary,nitriaries +nitridation,nitridations +nitride,nitrides +nitriding,nitridings +nitrification,nitrifications +nitrifier,nitrifiers +nitrile imide,nitrile imides +nitrile,nitriles +nitrile rubber,nitrile rubbers +nitrilimine,nitrilimines +nitrilium,nitriliums +nitrilotriacetate,nitrilotriacetates +nitrimine,nitrimines +nitrite,nitrites +nitrite reductase,nitrite reductases +nitroaldol,nitroaldols +nitroalkane,nitroalkanes +nitroalkene,nitroalkenes +nitroamide,nitroamides +nitroamine,nitroamines +nitroanilide,nitroanilides +nitroaniline,nitroanilines +nitroarene,nitroarenes +nitroaromatic,nitroaromatics +nitroaryl,nitroaryls +nitrobacterium,nitrobacteria +nitrobarite,nitrobarites +nitrobenzaldehyde,nitrobenzaldehydes +nitrobenzene,nitrobenzenes +nitrobenzoate,nitrobenzoates +nitrobenzoic acid,nitrobenzoic acids +nitrobenzyl,nitrobenzyls +nitrocarbon,nitrocarbons +nitrofuran,nitrofurans +nitrogenase,nitrogenases +nitrogen fixer,nitrogen fixers +nitrogen inversion,nitrogen inversions +nitrogen mustard,nitrogen mustards +nitrogen oxide,nitrogen oxides +nitrohumic acid,nitrohumic acids +nitro-hydrochloric acid,nitro-hydrochloric acids +nitroimidazole,nitroimidazoles +nitroimine,nitroimines +nitroindoline,nitroindolines +nitrokeg,nitrokegs +nitrolic acid,nitrolic acids +nitrol,nitrols +nitrolysis,nitrolyses +nitrometer,nitrometers +nitromethyl,nitromethyls +nitronate,nitronates +nitrone,nitrones +nitronic acid,nitronic acids +nitronium,nitroniums +nitroolefin,nitroolefins +nitroparaffin,nitroparaffins +nitrophenol,nitrophenols +nitrophenyl,nitrophenyls +nitrophyte,nitrophytes +nitroprusside,nitroprussides +nitropyridine,nitropyridines +nitroquinoline,nitroquinolines +nitroquinol,nitroquinols +nitroquinoxaline,nitroquinoxalines +nitroreductase,nitroreductases +nitrosamide,nitrosamides +nitrosamine,nitrosamines +nitrosation,nitrosations +nitrosimine,nitrosimines +nitrosochloride,nitrosochlorides +nitrosolic acid,nitrosolic acids +nitrosonium,nitrosoniums +nitrosothiol,nitrosothiols +nitrosourea,nitrosoureas +nitrostarch,nitrostarches +nitrostryene,nitrostryenes +nitrostyrene,nitrostyrenes +nitro sugar,nitro sugars +nitrosylation,nitrosylations +nitrosyl,nitrosyls +nitrotoluene,nitrotoluenes +nitroxide,nitroxides +nitroxylene,nitroxylenes +nitroxyl,nitroxyls +nitryl,nitryls +nitta,nittas +nitter,nitters +nitwit,nitwits +Niuean,Niueans +ni-Van,ni-Van +Ni-Van,Ni-Van +ni-Vanuatu,ni-Vanuatu +Ni-Vanuatu,Ni-Vanuatu +Nivkh,Nivkhs,Nivkh,Nivkhi +*nix,&#42;nixes,&#42;nices +nixer,nixers +nixie,nixies +nixie,nixies +Nixie tube,Nixie tubes +nix,nixes +Nixon,Nixons +nixy,nixies +nizam,nizams +nizzle,nizzles +nkishi,nkishis,minkishi +nkisi,nkisis,minkisi +Nkulengu rail,Nkulengu rails +NLQ,NLQs +NLRG,NLRGs +NLS1,NLS1s +NMJ,NMJs +Nm,Nms +NNH,NNHs +Noahide,Noahides +Noahite,Noahites +Noah,Noahs +noasaurid,noasaurids +no ball,no balls +nobbler,nobblers +Nobelist,Nobelists +Nobel laureate,Nobel laureates +Nobel,Nobels +Nobel Prize,Nobel Prizes +nobiliary particle,nobiliary particles +nobilissimus,nobilissimi +noble gas,noble gases +nobleman,noblemen +noble metal,noble metals +noble,nobles +noblewoman,noblewomen +nobley,nobleys +nob,nobs +nob,nobs +nobody,nobodies +no brainer,no brainers +no-brainer,no-brainers +no-break space,no-break spaces +NoCall,NoCalls +no-call-no-show,no-call-no-shows +nocebo effect,nocebo effects +nocebo,nocebos +no changer,no changers +nociceptin,nociceptins +nociceptor,nociceptors +nock,nocks +no contest,no contests +no coupling,no couplings +noctambulist,noctambulists +noctambulo,noctambuloes +nocticolid,nocticolids +noctilionid,noctilionids +noctograph,noctographs +noctuary,noctuaries +noctuid,noctuids +noctule,noctules +nocturnal delirium,nocturnal deliria +nocturnal emission,nocturnal emissions +nocturnalist,nocturnalists +nocturnality,nocturnalities +nocturnal penile tumescence,nocturnal penile tumescences +nocturne,nocturnes +nocturn,nocturns +no date,no dates +nodder,nodders +nodding acquaintance,nodding acquaintances +nodding donkey,nodding donkeys +noddle,noddles +noddy,noddies +noddy,noddies +noddy,noddies +no decision,no decisions +node,nodes +node of Ranvier,nodes of Ranvier +nod,nods +no-doc,no-docs +nodosarine,nodosarines +nodosaurid,nodosaurids +nodosaur,nodosaurs +nodosity,nodosities +nodulation,nodulations +nodule,nodules +nodus,nodi +noel,noels +noΓ«l,noΓ«ls +noema,noemata +noematachograph,noematachographs +noenicitinoid,noenicitinoids +Noetherian domain,Noetherian domains +Noetherian ring,Noetherian rings +Noetian,Noetians +noetic,noetics +noetiid,noetiids +no fly list,no fly lists +no-fly list,no-fly lists +nofly list,nofly lists +no-fly zone,no-fly zones +nogging,noggings +noggin,noggins +nog,nogs +nog,nogs +nog,nogs +nog,nogs +nogodinid,nogodinids +no-go,no-gos +no-goodnik,no-goodniks +nogoodnik,nogoodniks +no-good,no-goods +no-hitter,no-hitters +no-hoper,no-hopers +no host bar,no host bars +noiance,noiances +noight,noights +noil,noils +NOI,NOIs +noir,noirs +noisemaker,noisemakers +noisemonger,noisemongers +noise,noises +noise power,noise powers +noise trader,noise traders +noisette,noisettes +Nokian,Nokians +Nolan chart,Nolan charts +nole,noles +nolid,nolids +no-life,no-lifes +no-lifer,no-lifers +nolition,nolitions +nolle prosequi,nolle prosequis,nolle prosequies +nollie,nollies +noll,nolls +no-load fund,no-load funds +nolo contendere,nolo contenderes +no-lone zone,no-lone zones +nolt,nolt +nomade,nomades +nomadian,nomadians +nomad,nomads +nomarch,nomarchs +nomarchy,nomarchies +no-mark,no-marks +nombril,nombrils +nombril point,nombril points +nom de plume,noms de plume +nom-de-plume,noms-de-plume +nom de voyage,noms de voyage +nom de Web,noms de Web +no mean feat,no mean feats +nomeid,nomeids +nomen abstractum,nomina abstracta +nomen acti,nomina acti +nomen actionis,nomina actionis +nomen agentis,nomina agenti,nomina agentium +nomen appellativum,nomina appellativa +nomen attributivum,nomina attributiva +nomenclation,nomenclations +nomenclator,nomenclators +nomenclatress,nomenclatresses +nomen concretum,nomina concreta +nomen deminutivum,nomina deminutiva +nomen dubium,nomina dubia +nomen instrumenti,nomina instrumenti +nomen loci,nomina loci +nomen nescio,nomina nesciis +nomen novum,nomina nova +nomen nudum,nomina nuda +nome,nomes +nomen patientis,nomina patienti +nomen proprium,nomina propria +nomen relativum,nomina relativa +nomen unitatis,nomina unitatis +nomen vasis,nomina vasis +nomen verbi,nomina verbi +nomial,nomials +nominal clause,nominal clauses +nominal fee,nominal fees +nominalisation,nominalisations +nominalism,nominalisms +nominalist,nominalists +nominalization,nominalizations +nominalizer,nominalizers +nominal ledger,nominal ledgers +nominal,nominals +nominal partner,nominal partners +nominal type system,nominal type systems +nominal variable,nominal variables +nominate executor,nominate executors +nomination,nominations +nominative absolute,nominative absolutes +nominative case,nominative cases +nominative,nominatives +nominative type system,nominative type systems +nominator,nominators +nominee,nominees +n-omino,n-ominoes +nominor,nominors +nomisma,nomismata +nom,noms +nomocracy,nomocracies +nomogram,nomograms +nomograph,nomographs +nomography,nomographies +nomology,nomologies +nomothete,nomothetes +nom race,nom races +nonability,nonabilities +nonabuser,nonabusers +nonacademic,nonacademics +nonacceptance,nonacceptances +nonaccomplishment,nonaccomplishments +nonaccountant,nonaccountants +nonachievement,nonachievements +nonachiever,nonachievers +nonachloride,nonachlorides +nonachlorobiphenyl,nonachlorobiphenyls +nonacid,nonacids +nonactic acid,nonactic acids +nonactinide,nonactinides +nonactin,nonactins +nonactivist,nonactivists +nonactor,nonactors +nonaddict,nonaddicts +nonadecamer,nonadecamers +nonadecane,nonadecanes +nonadecene,nonadecenes +nonadherence,nonadherences +nonadministrator,nonadministrators +nonadmirer,nonadmirers +nonad,nonads +nonadolescent,nonadolescents +nonadopter,nonadopters +nonadult,nonadults +nonaerosol,nonaerosols +nonaffected,nonaffecteds +nonaffiliate,nonaffiliates +nonaffix,nonaffixes +nonaficionado,nonaficionados +nonaflate,nonaflates +nonAfrican,nonAfricans +nonagenarian,nonagenarians +nonage,nonages +nonage,nonages +nonagesimal,nonagesimals +nonaggressor,nonaggressors +nonagon,nonagons +nonagrian,nonagrians +nonahedron,nonahedrons +nonahydrate,nonahydrates +nonalcoholic,nonalcoholics +nonalcohol,nonalcohols +nonalien,nonaliens +nonalkaloid,nonalkaloids +nonallele,nonalleles +nonallergen,nonallergens +nonally,nonallies +no-name,no-names +nonamer,nonamers +nonamnesic,nonamnesics +nonamphetamine,nonamphetamines +nonamphibian,nonamphibians +nonamputee,nonamputees +nonanalgesic,nonanalgesics +nonanalyst,nonanalysts +nonanarchist,nonanarchists +nonane,nonanes +nonanesthetic,nonanesthetics +nonangiosperm,nonangiosperms +nonangler,nonanglers +nonanimal,nonanimals +nonanone,nonanones +nonanorexic,nonanorexics +nonanoyl,nonanoyls +nonanswer,nonanswers +nonantibiotic,nonantibiotics +nonantigen,nonantigens +nonantique,nonantiques +nonaoxide,nonaoxides +nonapeptide,nonapeptides +non-apology apology,non-apology apologies +nonapology apology,nonapology apologies +non-apology,non-apologies +nonapology,nonapologies +nonappearance,nonappearances +nonapple,nonapples +nonapplicant,nonapplicants +nonapplication,nonapplications +nonarchaeologist,nonarchaeologists +nonarchitect,nonarchitects +nonargument,nonarguments +nonaristocrat,nonaristocrats +nonaromatic,nonaromatics +nonartist,nonartists +nonaspirant,nonaspirants +nonaspirate,nonaspirates +non assumpsit,non assumpsits +nonasthmatic,nonasthmatics +nonastronomer,nonastronomers +nonatheist,nonatheists +nonathlete,nonathletes +nonatriacontane,nonatriacontanes +nonattendance,nonattendances +nonattender,nonattenders +nonauthoritarian,nonauthoritarians +nonauthor,nonauthors +nonbanker,nonbankers +nonbank,nonbanks +nonbarbiturate,nonbarbiturates +non-believer,non-believers +nonbeliever,nonbelievers +nonbelligerent,nonbelligerents +nonbeneficiary,nonbeneficiaries +nonbenzodiazepine,nonbenzodiazepines +nonbidder,nonbidders +nonbiker,nonbikers +nonbilaterian,nonbilaterians +nonbillionaire,nonbillionaires +nonbiochemist,nonbiochemists +nonbiodegradable,nonbiodegradables +nonbiologist,nonbiologists +nonbirder,nonbirders +nonbird,nonbirds +nonbisexual,nonbisexuals +non-biting midge,non-biting midges +nonblack,nonblacks +nonblonde,nonblondes +nonbody,nonbodies +nonbook,nonbooks +nonborrower,nonborrowers +nonbotanist,nonbotanists +non-breaking space,non-breaking spaces +nonbreeder,nonbreeders +non brewed condiment,non brewed condiments +non-brewed condiment,non-brewed condiments +nonbroiler,nonbroilers +nonbuilder,nonbuilders +nonbulimic,nonbulimics +nonbully,nonbullies +nonbureaucrat,nonbureaucrats +nonbusiness,nonbusinesses +nonbuyer,nonbuyers +noncall,noncalls +noncancer,noncancers +noncandidate,noncandidates +noncannibal,noncannibals +noncapitalist,noncapitalists +noncarbohydrate,noncarbohydrates +noncarbonate,noncarbonates +noncarcinogen,noncarcinogens +noncardiomyocyte,noncardiomyocytes +noncareerist,noncareerists +noncarer,noncarers +noncarnivore,noncarnivores +noncarrier,noncarriers +noncase,noncases +noncat,noncats +noncelebrity,noncelebrities +nonce,nonces +nonce,nonces +nonce,nonces +nonceramic,nonceramics +nonce word,nonce words +nonchain,nonchains +noncharacter,noncharacters +noncharismatic,noncharismatics +nonchauvinist,nonchauvinists +noncheater,noncheaters +noncheerleader,noncheerleaders +nonchef,nonchefs +nonchemical,nonchemicals +nonchemist,nonchemists +nonchild,nonchildren +nonchondrite,nonchondrites +nonchromogen,nonchromogens +nonchurchgoer,nonchurchgoers +noncitizen,noncitizens +noncity,noncities +nonclaim,nonclaims +nonclass,nonclasses +nonclergyman,nonclergymen +nonclient,nonclients +nonclustered index,nonclustered indices,nonclustered indexes +noncoder,noncoders +non-coding RNA,non-coding RNAs +noncognate,noncognates +noncognitivist,noncognitivists +noncoincidence,noncoincidences +noncolleague,noncolleagues +noncollector,noncollectors +noncollegian,noncollegians +noncollision,noncollisions +noncolor,noncolors +noncombatant,noncombatants +non-commissioned member,non-commissioned members +non-commissioned officer,non-commissioned officers +noncommissioned officer,noncommissioned officers +noncommunist,noncommunists +noncommuter,noncommuters +non-com,non-coms +noncom,noncoms +noncompete clause,noncompete clauses +non-compete,non-competes +noncompete,noncompetes +noncompetitor,noncompetitors +noncompliance,noncompliances +noncomposer,noncomposers +noncompos,noncompos,noncomposes +noncompound,noncompounds +nonconceptualist,nonconceptualists +nonconcern,nonconcerns +nonconfession,nonconfessions +nonconformer,nonconformers +nonconformist,nonconformists +Nonconformist,Nonconformists +nonconformist register,nonconformist registers +nonconform,nonconforms +non-con,non-cons +nonconservation,nonconservations +nonconspecific,nonconspecifics +nonconsultant,nonconsultants +nonconsumer,nonconsumers +noncontaminant,noncontaminants +noncontender,noncontenders +noncontent,noncontents +noncontractor,noncontractors +non-contradiction,non-contradictions +noncontradiction,noncontradictions +noncontributor,noncontributors +noncook,noncooks +noncooperator,noncooperators +noncorporation,noncorporations +noncorrespondence,noncorrespondences +noncorticosteroid,noncorticosteroids +noncototient,noncototients +noncount noun,noncount nouns +noncountry,noncountries +noncouple,noncouples +noncousin,noncousins +noncowboy,noncowboys +noncow,noncows +noncreationist,noncreationists +noncreator,noncreators +noncreditor,noncreditors +noncreole,noncreoles +noncrime,noncrimes +noncriminal,noncriminals +noncrisis,noncrises +noncritic,noncritics +noncrop,noncrops +noncustodial parent,noncustodial parents +noncustomer,noncustomers +noncyclist,noncyclists +nondaily,nondailies +non-dance,non-dances +nondance,nondances +nondancer,nondancers +nondealer,nondealers +nondeath,nondeaths +nondebate,nondebates +nondefendant,nondefendants +nondelegate,nondelegates +nondelinquent,nondelinquents +nondelivery,nondeliveries +nondemand,nondemands +nondemocrat,nondemocrats +non-denial denial,non-denial denials +nondenial denial,nondenial denials +nondentist,nondentists +nondependent,nondependents +nondepressive,nondepressives +nondescendant,nondescendants +nondescript,nondescripts +nondesigner,nondesigners +nondetection,nondetections +non-determinism,non-determinisms +nondeterminism,nondeterminisms +nondeviator,nondeviators +nondiabetic,nondiabetics +nondictatorship,nondictatorships +nondieter,nondieters +nondiplomat,nondiplomats +nondirector,nondirectors +non-disclosure agreement,non-disclosure agreements +nondisclosure agreement,nondisclosure agreements +non-disclosure,non-disclosures +nondisclosure,nondisclosures +nondiscriminator,nondiscriminators +nondisease,nondiseases +nondisjunction,nondisjunctions +nondisputant,nondisputants +nondissident,nondissidents +nondistorter,nondistorters +nondivergence,nondivergences +nondivisor,nondivisors +nondoctor,nondoctors +nondog,nondogs +nondonor,nondonors +nondreamer,nondreamers +nondrinker,nondrinkers +nondriver,nondrivers +nondropout,nondropouts +nondrug,nondrugs +nonduplicate,nonduplicates +nondurable,nondurables +nondyslexic,nondyslexics +nonearner,nonearners +noneconomist,noneconomists +nonedible,nonedibles +noneditor,noneditors +noneducator,noneducators +noneffective,noneffectives +nonegalitarian,nonegalitarians +nonego,nonegos +nonelect,nonelect +nonelectrolyte,nonelectrolytes +nonelement,nonelements +nonelitist,nonelitists +nonemergency,nonemergencies +nonemigrant,nonemigrants +non-empirical ego,non-empirical egos +nonemployee,nonemployees +nonemployer,nonemployers +nonene,nonenes +nonengineer,nonengineers +none,nones +nonenthusiast,nonenthusiasts +nonentity,nonentities +nonentomologist,nonentomologists +nonenyl,nonenyls +nonepileptic,nonepileptics +nonequalitarian,nonequalitarians +nonequal,nonequals +nonequestrian,nonequestrians +non-essential amino acid,non-essential amino acids +nonessential amino acid,nonessential amino acids +nonessential,nonessentials +non-essential prime implicant,non-essential prime implicants +non-esterified fatty acid,non-esterified fatty acids +nonesterified fatty acid,nonesterified fatty acids +nonester,nonesters +nonesuch,nonesuches +nonethnic,nonethnics +nonet,nonets +nonette,nonettes +nonetto,nonettos,nonetti +noneuclidean geometry,noneuclidean geometries +non-Euclidean geometry,non-Euclidean geometries +nonevangelical,nonevangelicals +non-event,non-events +nonevent,nonevents +nonevergreen,nonevergreens +nonexample,nonexamples +nonexchange,nonexchanges +non-exchanger,non-exchangers +nonexchanger,nonexchangers +nonexecutive,nonexecutives +nonexempt,nonexempts +nonexerciser,nonexercisers +non-expert,non-experts +nonexpert,nonexperts +nonexplanation,nonexplanations +nonexplorer,nonexplorers +nonextremist,nonextremists +nonface,nonfaces +nonfact,nonfacts +nonfactor,nonfactors +nonfamily,nonfamilies +nonfan,nonfans +nonfarmer,nonfarmers +nonfatality,nonfatalities +nonfather,nonfathers +nonfeasance,nonfeasances +nonfeature,nonfeatures +nonfelid,nonfelids +nonfeline,nonfelines +nonfelony,nonfelonies +nonfemale,nonfemales +nonfeminist,nonfeminists +nonfilament,nonfilaments +nonfiler,nonfilers +nonfinalist,nonfinalists +nonfinancial debt,nonfinancial debts +non-finite verb,non-finite verbs +nonfirefighter,nonfirefighters +nonfirm power,nonfirm powers +nonflammable,nonflammables +nonflier,nonfliers +nonfluid,nonfluids +nonfood,nonfoods +nonforeigner,nonforeigners +nonfoundationalist,nonfoundationalists +nonfranchisee,nonfranchisees +nonfriable,nonfriables +nonfriend,nonfriends +nonfugitive,nonfugitives +nonfulfillment,nonfulfillments +non-functional requirement,non-functional requirements +nonfundamentalist,nonfundamentalists +nonfungible,nonfungibles +nonfungicide,nonfungicides +nongambler,nongamblers +nongame,nongames +nongamer,nongamers +nongardener,nongardeners +nongas,nongases +nongay,nongays +nongeek,nongeeks +nongeneticist,nongeneticists +nongenius,nongeniuses +nongeographer,nongeographers +nongeologist,nongeologists +nongirlfriend,nongirlfriends +nongiver,nongivers +nonglucocorticoid,nonglucocorticoids +nonglyceride,nonglycerides +nonglycoside,nonglycosides +nong,nongs +nongoalkeeper,nongoalkeepers +non-goal,non-goals +nongoal,nongoals +nongod,nongods +nongolfer,nongolfers +non-governmental organisation,non-governmental organisations +non-governmental organization,non-governmental organizations +nongraduate,nongraduates +nongrain,nongrains +nongroup,nongroups +nonguard,nonguards +nonguest,nonguests +nonguitarist,nonguitarists +nongymnast,nongymnasts +nonhacker,nonhackers +nonhalogen,nonhalogens +nonhappening,nonhappenings +non-harmonic tone,non-harmonic tones +nonherbicide,nonherbicides +nonherbivore,nonherbivores +nonhero,nonheroes +nonheterosexual,nonheterosexuals +nonhiker,nonhikers +nonhippie,nonhippies +nonhippy,nonhippies +nonhistone,nonhistones +nonhistorian,nonhistorians +nonhit,nonhits +nonhobbyist,nonhobbyists +nonholiday,nonholidays +nonhomemaker,nonhomemakers +nonhomeowner,nonhomeowners +nonhomicide,nonhomicides +nonhomology,nonhomologies +nonhomosexual,nonhomosexuals +nonhormone,nonhormones +nonhorse,nonhorses +nonhost,nonhosts +nonhousewife,nonhousewives +nonhumanist,nonhumanists +non-human,non-humans +nonhuman,nonhumans +nonhunter,nonhunters +nonhybrid,nonhybrids +nonidealist,nonidealists +nonidea,nonideas +nonidentity,nonidentities +nonillion,nonillions +nonillionth,nonillionths +nonimage,nonimages +non-imitation,non-imitations +nonimitation,nonimitations +nonimmigrant,nonimmigrants +nonincumbent,nonincumbents +nonindigent,nonindigents +nonindividual,nonindividuals +noninfant,noninfants +noninfringer,noninfringers +noninhabitant,noninhabitants +noninhaler,noninhalers +noninitiate,noninitiates +noninnocent,noninnocents +noninpatient,noninpatients +noninsect,noninsects +noninsider,noninsiders +noninstance,noninstances +noninsurer,noninsurers +non-integer,non-integers +noninteger,nonintegers +nonintellectual,nonintellectuals +noninterventionist,noninterventionists +noninterview,noninterviews +nonintoxicant,nonintoxicants +noninvestor,noninvestors +nonionid,nonionids +nonirritant,nonirritants +nonislander,nonislanders +nonisolate,nonisolates +non-issue,non-issues +nonissue,nonissues +nonitemizer,nonitemizers +nonius,noniuses +nonjogger,nonjoggers +nonjoinder,nonjoinders +nonjoiner,nonjoiners +nonjoke,nonjokes +nonjournalist,nonjournalists +nonjudge,nonjudges +nonjuror,nonjurors +nonjuvenile,nonjuveniles +nonkiller,nonkillers +nonking,nonkings +nonlabial,nonlabials +nonlaborer,nonlaborers +nonlandlord,nonlandlords +nonlandowner,nonlandowners +nonlanguage,nonlanguages +nonlawyer,nonlawyers +non-leaguer,non-leaguers +non-leap year,non-leap years +nonleftist,nonleftists +nonlegislator,nonlegislators +nonlegume,nonlegumes +nonlesbian,nonlesbians +nonletter,nonletters +nonliar,nonliars +nonliberal,nonliberals +nonlibertarian,nonlibertarians +nonlibrarian,nonlibrarians +nonlifer,nonlifers +nonlinearization,nonlinearizations +nonlinguist,nonlinguists +nonlipid,nonlipids +non liquet,non liquets +nonliquid,nonliquids +nonlistener,nonlisteners +nonliterate,nonliterates +nonlitigant,nonlitigants +nonlobbyist,nonlobbyists +nonlocal,nonlocals +nonmagician,nonmagicians +nonmajor,nonmajors +nonmale,nonmales +nonmammal,nonmammals +nonmanager,nonmanagers +nonman,nonmen +nonmanufacturer,nonmanufacturers +nonmarketer,nonmarketers +nonmarket,nonmarkets +nonmarried,nonmarrieds +nonmarxist,nonmarxists +non-maskable interrupt,non-maskable interrupts +nonmasochist,nonmasochists +nonmason,nonmasons +nonmatch,nonmatches +nonmate,nonmates +nonmathematician,nonmathematicians +nonmediator,nonmediators +nonmeeting,nonmeetings +nonmelanoma,nonmelanomas +non-member,non-members +nonmember,nonmembers +nonmerchant,nonmerchants +nonmessenger,nonmessengers +nonmetallurgist,nonmetallurgists +nonmetal,nonmetals +nonmicroscopist,nonmicroscopists +nonmigrant,nonmigrants +nonmilitant,nonmilitants +nonmillionaire,nonmillionaires +nonmineral,nonminerals +nonminer,nonminers +nonminority,nonminorities +nonminor,nonminors +nonmodel,nonmodels +nonmoderate,nonmoderates +nonmodern,nonmoderns +nonmonarchy,nonmonarchies +nonmonetarist,nonmonetarists +nonmortal,nonmortals +nonmother,nonmothers +nonmotorist,nonmotorists +nonmountaineer,nonmountaineers +nonmover,nonmovers +nonmoving part,nonmoving parts +nonmurderer,nonmurderers +nonmusical,nonmusicals +nonmusician,nonmusicians +nonmutant,nonmutants +nonmyocyte,nonmyocytes +nonmystic,nonmystics +nonmyth,nonmyths +nonna,nonnas +nonnarcotic,nonnarcotics +nonnational,nonnationals +nonnative,nonnatives +non-native speaker,non-native speakers +nonnecessity,nonnecessities +nonnegative,nonnegatives +nonnegotiable,nonnegotiables +nonneurotic,nonneurotics +nonneutral,nonneutrals +non-Newtonian fluid,non-Newtonian fluids +nonnovel,nonnovels +nonnurse,nonnurses +nonny,nonnies +No,No +nonobjective,nonobjectives +nonobjectivist,nonobjectivists +nonobject,nonobjects +nonobservable,nonobservables +nonobservance,nonobservances +non obstante,non obstantes +nonoccupant,nonoccupants +nonoccurrence,nonoccurrences +no,noes +nonoffender,nonoffenders +nonofficer,nonofficers +non-official cover,non-official covers +nonofficial,nonofficials +nonogram,nonograms +nonomino,nonominoes +no-no,no-nos +nono,nonos +nonoperator,nonoperators +nonopioid,nonopioids +non-op,non-ops +nonorganism,nonorganisms +nonoriginalist,nonoriginalists +nonorphan,nonorphans +nonose,nonoses +nonother,nonothers +nonoutlier,nonoutliers +nonowner,nonowners +nonoxynol,nonoxynols +nonpagan,nonpagans +non-paper,non-papers +nonpapist,nonpapists +nonparanoid,nonparanoids +nonparasite,nonparasites +non-pareil,non-pareils +nonpareil,nonpareils +nonparent,nonparents +non partant,non partants +nonparticipant,nonparticipants +nonpartisan,nonpartisans +nonparty,nonparties +nonpassenger,nonpassengers +nonpathogen,nonpathogens +nonpathologist,nonpathologists +nonpatient,nonpatients +nonpatron,nonpatrons +nonpayee,nonpayees +nonpayer,nonpayers +nonpayment,nonpayments +nonpeasant,nonpeasants +nonpedestrian,nonpedestrians +nonpensioner,nonpensioners +nonpeptide,nonpeptides +nonperennial,nonperennials +nonperformer,nonperformers +nonperishable,nonperishables +nonperson,nonpersons,nonpeople +nonpesticide,nonpesticides +nonpest,nonpests +nonpharmacist,nonpharmacists +nonphilosopher,nonphilosophers +nonphobic,nonphobics +nonphosphate,nonphosphates +nonphotographer,nonphotographers +nonphysician,nonphysicians +nonphysicist,nonphysicists +nonpianist,nonpianists +nonpig,nonpigs +nonpilot,nonpilots +nonpitcher,nonpitchers +nonplacebo,nonplacebos +nonplace,nonplaces +nonplaintiff,nonplaintiffs +nonplanner,nonplanners +nonplastic,nonplastics +non-player character,non-player characters +nonplayer,nonplayers +nonplumber,nonplumbers +nonplus,nonpluses +non-plus,non-plusses +nonpoet,nonpoets +nonpointer,nonpointers +nonpolicy,nonpolicies +nonpolitician,nonpoliticians +nonpolluter,nonpolluters +nonpolynomial,nonpolynomials +nonpolysaccharide,nonpolysaccharides +nonpositive,nonpositives +nonpositivist,nonpositivists +nonpractitioner,nonpractitioners +nonprecursor,nonprecursors +nonpredator,nonpredators +nonprimate,nonprimates +nonprimitive,nonprimitives +nonprisoner,nonprisoners +nonproblem,nonproblems +non-producer,non-producers +nonproducer,nonproducers +nonproduct,nonproducts +non-professional,non-professionals +nonprofessional,nonprofessionals +nonprofessor,nonprofessors +non-profit,non-profits +nonprofit,nonprofits +non-programmer,non-programmers +nonprogrammer,nonprogrammers +nonprogressive,nonprogressives +nonprogressor,nonprogressors +non-proletarian,non-proletarians +nonproletarian,nonproletarians +nonpro,nonpros +nonproof,nonproofs +nonproperty,nonproperties +nonproposal,nonproposals +nonprostitute,nonprostitutes +nonprotagonist,nonprotagonists +nonprotectionist,nonprotectionists +nonprotein,nonproteins +nonproton,nonprotons +nonpsychiatrist,nonpsychiatrists +nonpsychic,nonpsychics +nonpsychotic,nonpsychotics +nonpublisher,nonpublishers +nonpurchaser,nonpurchasers +nonpurist,nonpurists +nonqualifier,nonqualifiers +nonquitter,nonquitters +nonracist,nonracists +nonradical,nonradicals +nonrapist,nonrapists +nonraven,nonravens +nonreactor,nonreactors +nonreader,nonreaders +nonrealist,nonrealists +nonrecidivist,nonrecidivists +nonrecipient,nonrecipients +nonrecombinant,nonrecombinants +nonrecyclable,nonrecyclables +nonreductionist,nonreductionists +non-referential perception,non-referential perceptions +nonreferent,nonreferents +nonrefugee,nonrefugees +nonregent,nonregents +nonrelationship,nonrelationships +non-relative,non-relatives +nonrelative,nonrelatives +nonreligion,nonreligions +nonrenewable,nonrenewables +nonrenewable resource,nonrenewable resources +nonrenewer,nonrenewers +nonreplier,nonrepliers +nonreply,nonreplies +nonreproductive,nonreproductives +nonreptile,nonreptiles +nonrepublic,nonrepublics +non-repudiation,non-repudiations +nonrequirement,nonrequirements +nonresearcher,nonresearchers +nonresident,nonresidents +nonresin,nonresins +nonresistance,nonresistances +nonresister,nonresisters +nonresistor,nonresistors +nonrespondent,nonrespondents +nonresponder,nonresponders +nonresponse,nonresponses +nonresult,nonresults +nonretailer,nonretailers +nonreturnable,nonreturnables +nonreturner,nonreturners +nonreviewer,nonreviewers +nonrevisionist,nonrevisionists +nonrevolutionary,nonrevolutionaries +nonrider,nonriders +nonrioter,nonrioters +nonrival,nonrivals +nonrodent,nonrodents +nonrotavirus,nonrotaviruses +nonroyal,nonroyals +nonruminant,nonruminants +nonsadist,nonsadists +nonsailor,nonsailors +nonsalesman,nonsalesmen +nonscalar,nonscalars +nonscandal,nonscandals +nonsceptic,nonsceptics +nonschizophrenic,nonschizophrenics +nonscholar,nonscholars +nonschool,nonschools +non-science,non-sciences +nonscience,nonsciences +nonscientist,nonscientists +nonsecretary,nonsecretaries +nonsecret,nonsecrets +nonsecretor,nonsecretors +nonsectarianism,nonsectarianisms +nonsectarian,nonsectarians +nonsedative,nonsedatives +nonseminoma,nonseminomas,nonseminomata +nonsenator,nonsenators +nonsenior,nonseniors +nonsense mutation,nonsense mutations +nonsense word,nonsense words +nonsensification,nonsensifications +nonsentence,nonsentences +nonsequel,nonsequels +nonsequence,nonsequences +nonsequitur,nonsequiturs +non sequitur,non sequiturs,non sequuntur +nonserf,nonserfs +nonserial,nonserials +nonservant,nonservants +nonsexist,nonsexists +nonshaman,nonshamans +nonshareholder,nonshareholders +nonshipper,nonshippers +nonshock,nonshocks +nonshopper,nonshoppers +nonsibling,nonsiblings +nonsignatory,nonsignatories +nonsigner,nonsigners +nonsinger,nonsingers +nonsinglet,nonsinglets +nonsinner,nonsinners +nonskater,nonskaters +nonsked,nonskeds +nonskeptic,nonskeptics +nonskier,nonskiers +nonslaveholder,nonslaveholders +nonslave,nonslaves +non-smoker,non-smokers +nonsmoker,nonsmokers +nonsocialist,nonsocialists +nonsociologist,nonsociologists +nonsociopath,nonsociopaths +nonsolid,nonsolids +nonsolution,nonsolutions +nonsolvent,nonsolvents +nonsonant,nonsonants +nonsongbird,nonsongbirds +nonspeaker,nonspeakers +nonspecialist,nonspecialists +nonspender,nonspenders +nonsphere,nonspheres +nonsponsor,nonsponsors +nonsquare,nonsquares +nonstandard,nonstandards +nonstandard number,nonstandard numbers +nonstaple,nonstaples +nonstarch,nonstarches +nonstar,nonstars +non-starter,non-starters +nonstarter,nonstarters +nonstatement,nonstatements +nonstate,nonstates +nonstative,nonstatives +non-steroidal anti-inflammatory drug,non-steroidal anti-inflammatory drugs +nonsteroidal anti-inflammatory drug,nonsteroidal anti-inflammatory drugs +nonsteroid,nonsteroids +nonstockholder,nonstockholders +non-stoichiometric compound,non-stoichiometric compounds +nonstop,nonstops +nonstory,nonstories +nonstranger,nonstrangers +nonstress test,nonstress tests +non-striker,non-strikers +nonstriker,nonstrikers +nonstudent,nonstudents +nonsubject,nonsubjects +nonsubordinate,nonsubordinates +nonsubscriber,nonsubscribers +nonsuch,nonsuches +nonsugar,nonsugars +nonsuicide,nonsuicides +nonsuit,nonsuits +nonsuperconductor,nonsuperconductors +nonsuperpower,nonsuperpowers +nonsuperstar,nonsuperstars +nonsupplier,nonsuppliers +nonsupporter,nonsupporters +nonsurfactant,nonsurfactants +nonsurrealist,nonsurrealists +nonsurvivor,nonsurvivors +nonsuspect,nonsuspects +nonswan,nonswans +nonswimmer,nonswimmers +nonswinger,nonswingers +nonsympathizer,nonsympathizers +nonsyntaxin,nonsyntaxins +nonsystem,nonsystems +nontalker,nontalkers +nontangible,nontangibles +nontaster,nontasters +nontax,nontaxes +nontaxpayer,nontaxpayers +nonteacher,nonteachers +nontechie,nontechies +non-terminal,non-terminals +nonterminal,nonterminals +non-terminal symbol,non-terminal symbols +nonterminal symbol,nonterminal symbols +nonterm,nonterms +nonterrorist,nonterrorists +nontheist,nontheists +nontheorem,nontheorems +nontheorist,nontheorists +nontheory,nontheories +nontherapeutic abortion,nontherapeutic abortions +nonthienopyridine,nonthienopyridines +nontipper,nontippers +nontotient,nontotients +nontourist,nontourists +nontrader,nontraders +nontraditionalist,nontraditionalists +nontranssexual,nontranssexuals +nontraveler,nontravelers +nontree,nontrees +nontrespasser,nontrespassers +nontrilobite,nontrilobites +nontrinitarian,nontrinitarians +nontronite,nontronites +nontroversy,nontroversies +nontrustee,nontrustees +nontruth,nontruths +nontutor,nontutors +nontwin,nontwins +nontypist,nontypists +nonunionist,nonunionists +nonuniversity,nonuniversities +nonuplet,nonuplets +nonurbanite,nonurbanites +nonuser,nonusers +nonutility,nonutilities +nonvampire,nonvampires +nonvariant,nonvariants +non-vascular plant,non-vascular plants +nonvector,nonvectors +nonvegan,nonvegans +nonvegetarian,nonvegetarians +nonvendor,nonvendors +non-verbal leak,non-verbal leaks +nonverbal learning disorder,nonverbal learning disorders +nonversation,nonversations +nonveteran,nonveterans +nonvictim,nonvictims +nonviewer,nonviewers +nonvillain,nonvillains +nonvirgin,nonvirgins +non-virtual interface,non-virtual interfaces +nonvirus,nonviruses +nonvisionary,nonvisionaries +nonvisitor,nonvisitors +nonvitamin,nonvitamins +nonvote,nonvotes +nonvoter,nonvoters +nonwar,nonwars +nonwestern,nonwesterns +nonwhite,nonwhites +nonwinner,nonwinners +nonwitch,nonwitches +nonwitness,nonwitnesses +non-Witness,non-Witnesses +nonwizard,nonwizards +nonwoman,nonwomen +non-word,non-words +nonword,nonwords +nonworkaholic,nonworkaholics +nonworker,nonworkers +nonworld,nonworlds +nonwoven,nonwovens +nonwriter,nonwriters +nonylene,nonylenes +nonyl,nonyls +nonylphenol,nonylphenols +nonzealot,nonzealots +nonzero,nonzeroes,nonzeros +nonzoologist,nonzoologists +noobie,noobies +nooblet,nooblets +noob,noobs +noodge,noodges +noodleburger,noodleburgers +noodlefish,noodlefishes +noodlehead,noodleheads +noodle,noodles +noodler,noodlers +noogie,noogies +noogy,noogies +nook and cranny,nooks and crannies +nookery,nookeries +nook,nooks +nook or cranny,nooks or crannies +noolbenger,noolbengers +noologist,noologists +noonday devil,noonday devils +noone,noones +nooner,nooners +noonflower,noonflowers +nooning,noonings +noonmark,noonmarks +noon,noons +noon,noons +noon prayer,noon prayers +noontide,noontides +noon-time,noon-times +noontime,noontimes +no-op,no-ops +noose,nooses +nooser,noosers +noosphere,noospheres +Nootka,Nootkas,Nootka +nootropic,nootropics +nopal,nopals,nopal +nopalry,nopalries +nope,nopes +nope,nopes +nope,nopes +nop,nops +Norbertine,Norbertines +norbornenyl,norbornenyls +norcholestane,norcholestanes +Nordicist,Nordicists +Nordic,Nordics +norditerpenoid,norditerpenoids +noreasterner,noreasterners +nor'easter,nor'easters +noreaster,noreasters +no result,no results +Norfolk Islander,Norfolk Islanders +Norfolk jacket,Norfolk jackets +Norfolk plover,Norfolk plovers +norfullerene,norfullerenes +noria,norias +norice,norices +norie,nories +norimon,norimons +nork,norks +Nork,Norks +norlignane,norlignanes +normalcy,normalcies +normal depth,normal depths +normal distribution,normal distributions +normale,normales +normal fault,normal faults +normal form game,normal form games +normal form,normal forms +normal good,normal goods +normal hydrogen electrode,normal hydrogen electrodes +normaliser,normalisers +normalization,normalizations +normalized yield,normalized yields +normalizer,normalizers +normal lens,normal lenses +normal,normals +normal pause,normal pauses +normal potential,normal potentials +normal saline,normal salines +normal school,normal schools +normal space,normal spaces +normal subgroup,normal subgroups +Normanism,Normanisms +norman,normans +Norman,Normans +norma,normas +Norman window,Norman windows +normation,normations +normative grammar,normative grammars +normed vector space,normed vector spaces +normie,normies +norm,norms +normoblast,normoblasts +normocyte,normocytes +normopath,normopaths +normopathy,normopathies +normotensive,normotensives +Norn,Norns +nor,nors +NOR,NORs +noromo,noromos +NoRomo,NoRomos +norovirus,noroviruses +Norplant,Norplants +norpregnane,norpregnanes +norpregnatriene,norpregnatrienes +norpregnene,norpregnenes +norprogesterone,norprogesterones +Norroy,Norroys +Norselander,Norselanders +norsesquiterpenoid,norsesquiterpenoids +Norsewoman,Norsewomen +norsteroid,norsteroids +NorteΓ±o,NorteΓ±os +Norte,Nortes +nortestosterone,nortestosterones +North African elephant,North African elephants +North African,North Africans +North American Indian,North American Indians +North American,North Americans +North American porcupine,North American porcupines +north and south,north and souths +northbridge,northbridges +North Briton,North Britons +North Carolinian,North Carolinians +north countryman,north countrymen +North Dakotan,North Dakotans +northeasterner,northeasterners +northeaster,northeasters +northerly,northerlies +northern bilberry,northern bilberries +northern birch mouse,northern birch mice +northern bottlenose whale,northern bottlenose whales +northerner,northerners +Northerner,Northerners +Northern European,Northern Europeans +northern firmoss,northern firmosses +northern flicker,northern flickers +northern greater galago,northern greater galagos +northern hawk owl,northern hawk owls +Northern Hemisphere,Northern Hemispheres +Northern Irelander,Northern Irelanders +Northern Irishman,Northern Irishmen +northern lapwing,northern lapwings +Northern Mariana Islander,Northern Mariana Islanders +northern monkey,northern monkeys +norther,northers +northern pike,northern pikes +northern raven,northern ravens +northern red-backed vole,northern red-backed voles +northern red oak,northern red oaks +northern screamer,northern screamers +northern shoveler,northern shovelers +northern snakehead,northern snakeheads +northern tree shrew,northern tree shrews +North Indian,North Indians +northing,northings +North Island brown kiwi,North Island brown kiwis +North Islander,North Islanders +North Korean,North Koreans +northland,northlands +Northman,Northmen +north pole,north poles +north-seeking pole,north-seeking poles +northside,northsides +Northumbrian,Northumbrians +northwesterner,northwesterners +northwester,northwesters +northwest,northwests +north wind,north winds +nortriterpenoid,nortriterpenoids +nortropane,nortropanes +Norwalk virus,Norwalk viruses +Norway lemming,Norway lemmings +Norway pine,Norway pines +Norway rat,Norway rats +Norway spruce,Norway spruces +Norwegian forest cat,Norwegian forest cats +Norwegian,Norwegians +Norwegian rat,Norwegian rats +nosean,noseans +nose bag,nose bags +nose-bag,nose-bags +nosebag,nosebags +noseband,nosebands +nosebleeder,nosebleeders +nose bleed,nose bleeds +nosebleed,nosebleeds +nosebleed seat,nosebleed seats +nose cap,nose caps +nose cone,nose cones +nosecone,nosecones +nosedive,nosedives +no-see-um,no-see-ums +noseeum,noseeums +nose flute,nose flutes +noseful,nosefuls +nosegay,nosegays +nose grind,nose grinds +nosegrind,nosegrinds +nose guard,nose guards +noseguard,noseguards +nose job,nose jobs +noseleaf,noseleafs,noseleaves +noselift,noselifts +noselite,noselites +nosematid,nosematids +nose,noses +nose out of joint,noses out of joint +nose pad,nose pads +nose-picker,nose-pickers +nose piece,nose pieces +nosepiece,nosepieces +noseplug,noseplugs +nose poke,nose pokes +noseprint,noseprints +nose ring,nose rings +nosering,noserings +noser,nosers +nose slide,nose slides +noseslide,noseslides +nose test,nose tests +nosethirl,nosethirls +nose to tail,nose to tails +nose to the grindstone,noses to the grindstone +nosewheel,nosewheels +nosewing,nosewings +nosey parker,nosey parkers +nosferatu,nosferatu +Nosferatu,Nosferatu +nosher,noshers +noshery,nosheries +nosh,noshes +noshoring,noshorings +no show,no shows +no-show,no-shows +nosing,nosings +nosle,nosles +Nosler,Noslers +nosodendrid,nosodendrids +nosode,nosodes +nosographer,nosographers +nosologist,nosologists +nosology,nosologies +nosophobia,nosophobias +no spring chicken,no spring chickens +nostalgiac,nostalgiacs +nostalgia,nostalgias +nostalgic,nostalgics +nostalgist,nostalgists +nostepinde,nostepindes +nostepinne,nostepinnes +nostoceratid,nostoceratids +nostoc,nostocs +nostomania,nostomanias +Nostraticist,Nostraticists +nostrification,nostrifications +nostril,nostrils +nostrum,nostrums,nostra +nostrum remedium,nostra remedia +nosybody,nosybodies +nosy parker,nosy parkers +notable,notables +notacanthid,notacanthids +notaeum,notaea +notandum,notanda +notaphilist,notaphilists +notarization,notarizations +notary,notaries +notary public,notaries public,notary publics +notator,notators +notchback,notchbacks +notchboard,notchboards +notcher,notchers +notcher,notchers +notch,notches +notch on one's bedpost,notches on one's bedpost +notch on the bedpost,notches on the bedpost +not dog,not dogs +notebook computer,notebook computers +note book,note books +notebook,notebooks +notecard,notecards +notecase,notecases +notefile,notefiles +noteholder,noteholders +notelet,notelets +note of hand,notes of hand +note pad,note pads +notepad,notepads +notepaper,notepapers +not equal sign,not equal signs +noterid,noterids +noter,noters +note shaver,note shavers +notetaker,notetakers +note value,note values +note verbale,notes verbales +noteworthy,noteworthies +not-for-profit,not-for-profits +NOT function,NOT functions +not guilty,not guilties +notharctid,notharctids +nothingarian,nothingarians +nothing ball,nothing balls +nothing,nothings +nothobranchiid,nothobranchiids +nothogenus,nothogenera +nothosaurid,nothosaurids +nothosaur,nothosaurs +nothospecies,nothospecies +no through road,no through roads +nothura,nothuras +noticeability,noticeabilities +notice board,notice boards +noticeboard,noticeboards +notice,notices +noticer,noticers +notidanian,notidanians +notifier,notifiers +notif,notifs +notional amount,notional amounts +notionist,notionists +notion,notions +notist,notists +not,nots +NOT,NOTs +notocheirid,notocheirids +notochord,notochords +notodontian,notodontians +notodontid,notodontids +notohippid,notohippids +notonectid,notonectids +NOT operator,NOT operators +notopodium,notopodia +notopterid,notopterids +notoriety,notorieties +notoryctid,notoryctids +notostylopid,notostylopids +notosuchian,notosuchians +notosuchid,notosuchids +notosudid,notosudids +nototheniid,nototheniids +notothen,notothens +notoungulate,notoungulates +not-pology,not-pologies +notpology,notpologies +no-trade clause,no-trade clauses +no-trump,no-trumps +notrump,notrumps +notspot,notspots +Nottoway,Nottoways,Nottoway +notturno,notturnos +notum,nota +notwithstanding clause,notwithstanding clauses +nouch,nouches +nought,noughts +noumenon,noumena +noun adjunct,noun adjuncts +noun class,noun classes +noun clause,noun clauses +noun,nouns +noun of assemblage,nouns of assemblage +noun of multitude,nouns of multitude +noun phrase,noun phrases +nourice,nourices +nourisher,nourishers +nourish,nourishes +nouveau pauvre,nouveaux pauvres +nouveau riche,nouveaux riches +nouvelle cuisine,nouvelle cuisines,nouvelles cuisines +novaculite,novaculites +nova,novae,novas +nova remnant,nova remnants +Nova Scotian,Nova Scotians +Novatian,Novatians +novator,novators +novelette,novelettes +novelisation,novelisations +novelist,novelists +novelization,novelizations +novella,novellas,novelle +novelle,novelles +novel,novels +novelry,novelries +novelty song,novelty songs +November moth,November moths +novena,novenas +novenary,novenaries +Novgorodian,Novgorodians +novice,novices +noviciate,noviciates +novirhabdovirus,novirhabdoviruses +novitiate,novitiates +Novocastrian,Novocastrians +novum,nova +nowcast,nowcasts +nowch,nowches +nowd,nowds +nowell,nowells +nowel,nowels +nowhere,nowheres +Nowheresville,Nowheresvilles +no-win situation,no-win situations +nowt,nowts +noyade,noyades +noyance,noyances +noyau,noyaus +noyer,noyers +noyl,noyls +noyse,noyses +nozle,nozles +nozzleman,nozzlemen +nozzle,nozzles +N-pole,N-poles +N-ray,N-rays +NRI,NRIs +NRM,NRMs +nRNA,nRNAs +NSAID,NSAIDs +NSAP address,NSAP addresss +ntamani,ntamanis +nth,nths +Ntigram,Ntigrams +n-tuple,n-tuples +nuance,nuances +nubber,nubbers +nubbing cheat,nubbing cheats +nubbin,nubbins +nubble,nubbles +nubcake,nubcakes,nubcakez +nubecula,nubeculae +Nubian lion,Nubian lions +Nubian,Nubians +nubia,nubias +nubile,nubiles +nub,nubs +nub,nubs +nu body,nu bodies +nuby,nubies +nucament,nucaments +nucellus,nucelli +nuchal,nuchals +nucha,nuchae +nuclear airburst,nuclear airbursts +nuclear battery,nuclear batteries +nuclear binding energy,nuclear binding energies +nuclear bomb,nuclear bombs +nuclear cataract,nuclear cataracts +nuclear deterrent,nuclear deterrents +nuclear-electric rocket,nuclear-electric rockets +nuclear envelope,nuclear envelopes +nuclear family,nuclear families +nuclear fission,nuclear fissions +nuclear force,nuclear forces +nuclear-free zone,nuclear-free zones +nuclear holocaust,nuclear holocausts +nuclear hydrogen detection meter,nuclear hydrogen detection meters +nucleariid,nucleariids +nuclearisation,nuclearisations +nuclearity,nuclearities +nuclearization,nuclearizations +nuclear magnetic pulse,nuclear magnetic pulses +nuclear magneton,nuclear magnetons +nuclear matrix,nuclear matrices +nuclear membrane,nuclear membranes +nuclear pore complex,nuclear pore complexes +nuclear power plant,nuclear power plants +nuclear power station,nuclear power stations +nuclear-pulse rocket,nuclear-pulse rockets +nuclear reaction,nuclear reactions +nuclear reactor,nuclear reactors +nuclear response function,nuclear response functions +nuclear rocket,nuclear rockets +nuclear summer,nuclear summers +nuclear-thermal rocket,nuclear-thermal rockets +nuclear-thermoelectric rocket,nuclear-thermoelectric rockets +nuclear war,nuclear wars +nuclear weapon,nuclear weapons +nuclear winter,nuclear winters +nuclease,nucleases +nucleate,nucleates +nucleation,nucleations +nucleator,nucleators +nucleic acid,nucleic acids +nuclein,nucleins +nucleobase,nucleobases +nucleobranch,nucleobranchs +nucleocapsid,nucleocapsids +nucleocomplex,nucleocomplexes +nucleofection,nucleofections +nucleofector,nucleofectors +nucleofuge,nucleofuges +nucleoid,nucleoids +nucleole,nucleoles +nucleolus,nucleoli +nucleometallation,nucleometallations +nucleomorph,nucleomorphs +nucleon,nucleons +nucleophile,nucleophiles +nucleophilic substitution,nucleophilic substitutions +nucleophosmin,nucleophosmins +nucleoplasm,nucleoplasms +nucleopolyhedrovirus,nucleopolyhedroviruses +nucleoporin,nucleoporins +nucleoprotein,nucleoproteins +nucleoside,nucleosides +nucleoskeleton,nucleoskeletons +nucleosol,nucleosols +nucleosome,nucleosomes +nucleosynthesis,nucleosyntheses +nucleotidase,nucleotidases +nucleotide,nucleotides +nucleotidyltransferase,nucleotidyltransferases +nucleus,nuclei,nucleuses +nuclide,nuclides +nuc,nucs +nuculanid,nuculanids +nucule,nucules +nuculid,nuculids +nude,nudes +nude run,nude runs +nudge,nudges +nudger,nudgers +nudibranch,nudibranchs +nudie-cutie,nudie-cuties +nudie,nudies +nudist colony,nudist colonies +nudist community,nudist communities +nudist,nudists +nudivirus,nudiviruses +nudnik,nudniks +nudum pactum,nudum pacta +nudzh,nudzhes +nuΓ©e ardente,nuΓ©e ardentes +Nueir,Nueir,Nueirs +Nuer,Nuer,Nuers +nuevo sol,nuevos soles +nugation,nugations +nugget of truth,nuggets of truth +nug,nugs +NUI,NUIs +nuisance fee,nuisance fees +nuisance,nuisances +nuisancer,nuisancers +nuisance tax,nuisance taxes +nuke,nukes +nuker,nukers +nullability,nullabilities +nullah-nullah,nullah-nullahs +nullah,nullahs +null anaphora,null anaphoras +nulla nulla,nulla nullas +nulla-nulla,nulla-nullas +nullary sum,nullary sums +null character,null characters +null hypothesis,null hypotheses +nullification,nullifications +nullifidian,nullifidians +nullifier,nullifiers +nulligravida,nulligravidas,nulligravidae +null infinity,null infinities +nullipara,nulliparas,nulliparae +nullipore,nullipores +nullisomic,nullisomics +nullity,nullities +nulliverse,nulliverses +null modem,null modems +null,nulls +null object,null objects +nullomer,nullomers +null path length,null path lengths +null pointer,null pointers +null sign,null signs +nullspace,nullspaces +null-subject language,null-subject languages +nul points,nul points +Numanoid,Numanoids +numbat,numbats +number 2,number 2s +number 2 pencil,number 2 pencils +number close,number closes +number cruncher,number crunchers +number-cruncher,number-crunchers +numbered list,numbered lists +number eight,number eights +number eleven,number elevens +numberer,numberers +number field,number fields +number five,number fives +number four,number fours +numbering,numberings +number line,number lines +number needed to harm,numbers needed to harm +number nine,number nines +number,numbers +number one,number ones +number plate,number plates +numberplate,numberplates +number seven,number sevens +number sign,number signs +number six,number sixes +numbers station,numbers stations +number system,number systems +number ten,number tens +number theoretician,number theoreticians +number theorist,number theorists +number three,number threes +number two,number twos +numbfish,numbfish,numbfishes +numbnuts,numbnuts +numbre,numbres +numbskull,numbskulls +numen,numina +numeraire,numeraires +numΓ©raire,numΓ©raires +numeral,numerals +numerary,numeraries +numeration,numerations +numerator,numerators +numerical adjective,numerical adjectives +numeric complement,numeric complements +numeric,numerics +numerist,numerists +numerologist,numerologists +numerology,numerologies +numeronym,numeronyms +numero sign,numero signs +numero symbol,numero symbols +numero uno,numero unos +numerus clausus,numeri clausi +Numidian crane,Numidian cranes +Numidian,Numidians +numidid,numidids +numismatist,numismatists +numismat,numismats +numismatologist,numismatologists +num lock,num locks +Num Lock,Num Locks +nummulation,nummulations +nummulite,nummulites +nummulitid,nummulitids +numnah,numnahs +num-num,num-nums +num,nums +numps,numpses +numptie,numpties +numpty,numpties +numse,numses +numskull,numskulls +nunatak,nunataks +nunation,nunations +Nunavummiuq,Nunavummiut +nuncheon,nuncheons +nunchion,nunchions +nunchuck,nunchucks +nunciate,nunciates +nunciature,nunciatures +nuncio,nuncios +nuncius,nuncii +nuncle,nuncles +nuncupation,nuncupations +nundinal letter,nundinal letters +nundinal,nundinals +nundine,nundines +Nunga,Nungas +nunnation,nunnations +nunnery,nunneries +nun,nuns +nun,nuns +nunship,nunships +nunu,nunus +nupharamine,nupharamines +nuplex,nuplexes +nupson,nupsons +nuptial act,nuptial acts +nuptiality,nuptialities +nuqta,nuqta +nuque,nuques +nuraghe,nuraghi,nuraghes +NURBS,NURBS +nurdle,nurdles +nurd,nurds +Nuremberg defence,Nuremberg defences +Nuremberg defense,Nuremberg defenses +Nuristani,Nuristanis +nurl,nurls +nurnie,nurnies +nur,nurs +nursehound,nursehounds +nurse-in,nurse-ins +nursemaid,nursemaids +nurse,nurses +nursepond,nurseponds +nurse practitioner,nurse practitioners +Nurse Ratched,Nurse Ratcheds +nurser,nursers +nurseryfish,nurseryfishes,nurseryfish +nurserymaid,nurserymaids +nurseryman,nurserymen +nursery,nurseries +nursery rhyme,nursery rhymes +nursery school,nursery schools +nursery web spider,nursery web spiders +nurserywoman,nurserywomen +nurse shark,nurse sharks +nursie,nursies +nursing bra,nursing bras +nursing home,nursing homes +nursing,nursings +nursling,nurslings +nursy,nursies +nurturance,nurturances +nurture,nurtures +nurturer,nurturers +nurturist,nurturists +Nusayri,Nusayris +nutation,nutations +nutator,nutators +nutbag,nutbags +nutball,nutballs +nutbar,nutbars +nutbowl,nutbowls +nutburger,nutburgers +nut case,nut cases +nutcase,nutcases +nutcracker,nutcrackers +nut-cutting time,nut-cutting times +nutfarm,nutfarms +nutgall,nutgalls +nutgraf,nutgrafs +nut-grass,nut-grasses +nutgrass,nutgrasses +nuthatch,nuthatches +nuthook,nuthooks +nuthouse,nuthouses +nutjobber,nutjobbers +nut job,nut jobs +nutjob,nutjobs +nutlet,nutlets +Nutmegger,Nutmeggers +nutmeg,nutmegs +nutmeg psychosis,nutmeg psychoses +nut,nuts +nutpecker,nutpeckers +nutpick,nutpicks +nutraceutical,nutraceuticals +nutria,nutrias +nutria rat,nutria rats +nutriceutical,nutriceuticals +nutrider,nutriders +nutrient,nutrients +nutriment,nutriments +nutriocyte,nutriocytes +nutritarian,nutritarians +nutritionalist,nutritionalists +nutritionist,nutritionists +nut roast,nut roasts +nut roll,nut rolls +nutsack,nutsacks +nutsedge,nutsedges +nutshell,nutshells +nuttalliellid,nuttalliellids +nutter,nutters +nutting truck,nutting trucks +nutzoid,nutzoids +Nuwaubian,Nuwaubians +nux vomica,nuces vomicae +Nuyorican,Nuyoricans +Nuzian,Nuzians +nuzzler,nuzzlers +NVRAM,NVRAMs +NWEM,NWEMs +n-word,n-words +nyala,nyalas +Nyasalander,Nyasalanders +nyas,nyases +nyatiti,nyatitis +nybble,nybbles +nychthemeron,nychthemera,nychthemerons +nyctalopia,nyctalopias,nyctalopiae +nycteribiid,nycteribiids +nycterid,nycterids +nycthemeron,nycthemera,nycthemerons +nyctibiid,nyctibiids +nyctiphruretid,nyctiphruretids +nyctophile,nyctophiles +nyctosaurid,nyctosaurids +nyem,nyems +nye,nyes +nylgau,nylgaus +nylghau,nylghaus +nym,nyms +nymphaea,nymphaeas +nymphaeid,nymphaeids +nymphaeum,nymphaea +nymphΓ¦um,nymphΓ¦a +nymphalid,nymphalids +nympha,nymphae +nymphe,nymphes,nymphΓ¦ +nymphet,nymphets +nymphette,nymphettes +nymphid,nymphids +nymph,nymphs,nymphΓ¦ +nymph of the pavΓ©,nymphs of the pavΓ© +nympholepsy,nympholepsies +nympholept,nympholepts +nymphologist,nymphologists +nymphomaniac,nymphomaniacs +nymphomanic,nymphomanics +nymphomyiid,nymphomyiids +nymphonid,nymphonids +nympho,nymphos +nymshifter,nymshifters +nystagmus,nystagmuses +nystose,nystoses +Nyungar,Nyungars +N. Zealander,N. Zealanders +Nzema,Nzema +Nzima,Nzima +oaf,oafs +oak apple,oak apples +oak fern,oak ferns +oak gall,oak galls +oakleaf,oakleaves +oakling,oaklings +oak processionary moth,oak processionary moths +oak tree,oak trees +oaktree,oaktrees +oakwood,oakwoods +OAP,OAPs +oar blade,oar blades +oarfish,oarfishes,oarfish +oarlock,oarlocks +oar,oars +oarsman,oarsmen +oarswoman,oarswomen +oarweed,oarweeds +oasis,oases +oast house,oast houses +oasthouse,oasthouses +oast,oasts +oatcake,oatcakes +oater,oaters +oat grass,oat grasses +oathbreach,oathbreaches +oathbreaker,oathbreakers +oath,oaths +oath-ring,oath-rings +oat opera,oat operas +OAV,OAVs +Obamacrat,Obamacrats +Obamatard,Obamatards +Obamaton,Obamatons +obambulation,obambulations +oba,obas +obbligato,obbligatos,obbligati +obduracy,obduracies +obeah doctor,obeah doctors +obeah,obeahs +obeast,obeasts +obedienciary,obedienciaries +obediency,obediencies +obedientiary,obedientiaries +obeisance,obeisances +obeisancy,obeisancies +obeisaunce,obeisaunces +obelia,obelias +obelion,obelions,obelia +obelisc,obeliscs +obelisk,obelisks +obelus,obeluses,obeli +obe,obes +oberration,oberrations +obesity hypoventilation syndrome,obesity hypoventilation syndromes +obesogen,obesogens +obeyer,obeyers +obfuscator,obfuscators +OB/GYN,OB/GYNs +obijime,obijimes +obi,obi +obi,obis +obiter dictum,obiter dicta +obiter,obiters +obit,obits +obit,obits +obituarist,obituarists +obituary,obituaries +Obi-Wan Kenobi,Obi-Wan Kenobis +object adapter pattern,object adapter patterns +object ball,object balls +object graph,object graphs +objectifier,objectifiers +objection,objections +objectist,objectists +objectivation,objectivations +objective case,objective cases +objective clause,objective clauses +objective correlative,objective correlatives +objective function,objective functions +objective,objectives +objectivism,objectivisms +objectivist,objectivists +objectivizer,objectivizers +object language,object languages +object lesson,object lessons +objectness,objectnesses +object,objects +objector,objectors +object pool pattern,object pool patterns +object pronoun,object pronouns +objectress,objectresses +objectrix,objectrices +object space,object spaces +objet d'art,objets d’art +objet de vertu,objets de vertu +objet trouvΓ©,objets trouvΓ©s +objicient,objicients +obj,objs +objuration,objurations +objurgation,objurgations +oblast,oblasts +oblate,oblates +oblationer,oblationers +oblation,oblations +oblatration,oblatrations +oblatum,oblata +oblectation,oblectations +obley,obleys +obligate biped,obligate bipeds +obligate carnivore,obligate carnivores +obligate carrier,obligate carriers +obligatee,obligatees +obligate quadruped,obligate quadrupeds +obligation,obligations +obligato,obligatos +obligator,obligators +obligee,obligees +obligement,obligements +obliger,obligers +obligor,obligors +oblique angle,oblique angles +oblique arch,oblique arches +oblique bridge,oblique bridges +oblique case,oblique cases +oblique circle,oblique circles +oblique fire,oblique fires +oblique flank,oblique flanks +oblique line,oblique lines +oblique muscle,oblique muscles +obliqueness,obliquenesses +oblique,obliques +oblique plane,oblique planes +oblique rhyme,oblique rhymes +oblique sphere,oblique spheres +oblique-swimming triplefin,oblique-swimming triplefins +obliquity,obliquities +oblivious transfer,oblivious transfers +Oblomovist,Oblomovists +oblongata,oblongatas +oblong number,oblong numbers +oblong,oblongs +oblongum,oblonga +obloquy,obloquies +obluctation,obluctations +obnosis,obnoses +ob,obs +ob,obs +Obodrite,Obodrites +oboe d'amore,oboe d'amores,oboes d'amore,oboi d'amore +oboeist,oboeists +oboe,oboes +oboist,oboists +obole,oboles +obolid,obolids +obolo,obolos +obolus,oboloi +Obotrite,Obotrites +obreption,obreptions +obrok,obroks +obround,obrounds +obscenity,obscenities +obscurantism,obscurantisms +obscurantist,obscurantists +obscurant,obscurants +obscuration,obscurations +obscurer,obscurers +obscurification,obscurifications +obscurist,obscurists +obsecration,obsecrations +obsequience,obsequiences +obsequy,obsequies +observable,observables +observable universe,observable universes +observance,observances +observandum,observanda +Observantine,Observantines +Observant,Observants +observationalist,observationalists +observation deck,observation decks +observation,observations +observation post,observation posts +observator,observators +observatory,observatories +observaunce,observaunces +observee,observees +observer,observers +obsessive-compulsive disorder,obsessive-compulsive disorders +obsessive,obsessives +obsignation,obsignations +obsoletion,obsoletions +obsoletism,obsoletisms +obsonator,obsonators +obstacle,obstacles +obstancy,obstancies +obstetrical toad,obstetrical toads +obstetrician,obstetricians +obstinance,obstinances +obstinancy,obstinancies +obstination,obstinations +obstipation,obstipations +obstipum abdomen,obstipum abdomens +obstructer,obstructers +obstructionist,obstructionists +obstruction,obstructions +obstruction of justice,obstructions of justice +obstructor,obstructors +obstruent,obstruents +obtainer,obtainers +obtainment,obtainments +obtention,obtentions +obtestation,obtestations +obtrectation,obtrectations +obtruder,obtruders +obtrusion,obtrusions +obtundation,obtundations +obtundent,obtundents +obtunder,obtunders +obturaculum,obturacula +obturator,obturators +obtuseness,obtusenesses +obtuse triangle,obtuse triangles +obumbration,obumbrations +obvention,obventions +obverse,obverses +obviation,obviations +obviative,obviatives +obviator,obviators +obv.,obv. +oby,obies +ocarina,ocarinas +ocarinist,ocarinists +occashun,occashuns +occasionalist,occasionalists +occasional table,occasional tables +occasioner,occasioners +occasion,occasions +occidental,occidentals +occidentotropism,occidentotropisms +occipital bone,occipital bones +occipital lobe,occipital lobes +occipital,occipitals +occipital point,occipital points +occiput,occipita,occiputs +occision,occisions +occluded front,occluded fronts +occluder,occluders +occludin,occludins +occlusal guard,occlusal guards +occlusion body,occlusion bodies +occlusion,occlusions +occlusive,occlusives +occlusometer,occlusometers +occulent,occulents +occultation,occultations +occulter,occulters +occulting light,occulting lights +occultism,occultisms +occultist,occultists +occupance,occupances +occupancy,occupancies +occupant,occupants +occupational disease,occupational diseases +occupational hazard,occupational hazards +occupational name,occupational names +occupational therapist,occupational therapists +occupation bridge,occupation bridges +occupation,occupations +occupier,occupiers +occurrence,occurrences +occurrent,occurrents +occurse,occurses +occursion,occursions +oceanarium,oceanariums,oceanaria +oceanaut,oceanauts +ocean current,ocean currents +ocean dumping,ocean dumpings +oceanfront,oceanfronts +Oceanian,Oceanians +oceanic abyss,oceanic abysses +oceanic trench,oceanic trenches +oceanic whitetip shark,oceanic whitetip sharks +oceanitid,oceanitids +ocean liner,ocean liners +oceanliner,oceanliners +ocean,oceans +oceanographer,oceanographers +oceanographist,oceanographists +oceanologist,oceanologists +ocean tramp,ocean tramps +oceanview,oceanviews +ocellated crake,ocellated crakes +ocellus,ocelli +ocelot,ocelots +ocher,ochers +ochlagogue,ochlagogues +ochlarchy,ochlarchies +ochlesid,ochlesids +ochlesis,ochleses +ochlocracy,ochlocracies +ochlocrat,ochlocrats +ochlophobia,ochlophobias +ochodaeid,ochodaeids +ochotonid,ochotonids +ochratoxin,ochratoxins +ochrea,ochreas,ochreae +ochre,ochres +ochterid,ochterids +ochyroceratid,ochyroceratids +Ocicat,Ocicats +ocimene,ocimenes +ocker,ockers +ocker,ockers +Ockhamist,Ockhamists +ocoid,ocoids +ocotillo,ocotillos +ocrea,ocreas,ocreae +octabromide,octabromides +octachlorobiphenyl,octachlorobiphenyls +octachord,octachords +octachoron,octachorons,octachora +octacosane,octacosanes +octacosanol,octacosanols +octacyanomolybdate,octacyanomolybdates +octadecadienoate,octadecadienoates +octadecadienoyl,octadecadienoyls +octadecamer,octadecamers +octadecane,octadecanes +octadecanoyl,octadecanoyls +octadecatrienoyl,octadecatrienoyls +octadecene,octadecenes +octadecenoyl,octadecenoyls +octadecyl,octadecyls +octadienal,octadienals +octadiene,octadienes +octad,octads +octaeteris,octaeterides +octaethyleneglycol,octaethyleneglycols +octagenarian,octagenarians +octagon,octagons +octahedron,octahedra,octahedrons +octahydrate,octahydrates +octalogy,octalogies +octaloop,octaloops +octamerization,octamerizations +octamer,octamers +octameter,octameters +octanedione,octanediones +octane number,octane numbers +octane,octanes +octangle,octangles +octanoate,octanoates +octanol,octanols +octanose,octanoses +octanoyl,octanoyls +octant,octants +octa,octas +octaoxide,octaoxides +octapeptide,octapeptides +octarchy,octarchies +octaroon,octaroons +octastich,octastiches +octateuch,octateuchs +octatonic scale,octatonic scales +octatriacontane,octatriacontanes +octatriene,octatrienes +octavate,octavates +octavation,octavations +octave,octaves +octavofinal,octavofinals +octavo,octavos +octenal,octenals +octene,octenes +octenyl,octenyls +octeract,octeracts +octet,octets +octetonium,octetoniums +octette,octettes +octett,octetts +OCTG,OCTGs +octic,octics +octile,octiles +octillionth,octillionths +octitol,octitols +octlet,octlets +octoate,octoates +octobass,octobasses +October surprise,October surprises +octocentenary,octocentenaries +octochord,octochords +octocoral,octocorals +octodecillion,octodecillions +octodecimo,octodecimos +octodontid,octodontids +octodont,octodonts +octogenarian,octogenarians +octomino,octominoes +octonary,octonaries +octonion,octonions +octopede,octopedes +octopine,octopines +octoploid,octoploids +octopodid,octopodids +octopod,octopods +octopole,octopoles +octopoteuthid,octopoteuthids +octopus,octopuses,octopodes,octopi +octopussy,octopussies +octopyranose,octopyranoses +octoroon,octoroons +octose,octoses +octosyllable,octosyllables +octothorn,octothorns +octothorpe,octothorpes +octothorp,octothorps +octoword,octowords +octoxide,octoxides +octree,octrees +octroi,octrois +octulofuranoside,octulofuranosides +octulopyranoside,octulopyranosides +octulose,octuloses +octulosonic acid,octulosonic acids +octuple,octuples +octuplet,octuplets +octuplicate,octuplicates +octupole,octupoles +octylamine,octylamines +octylene,octylenes +octylglucoside,octylglucosides +octyl,octyls +octyne,octynes +ocularcentrism,ocularcentrisms +ocularist,ocularists +ocular micrometer,ocular micrometers +ocular,oculars +oculinid,oculinids +oculist,oculists +oculomotor nerve,oculomotor nerves +oculus,oculi +ocypodian,ocypodians +ocypodid,ocypodids +ocythoid,ocythoids +odachi,odachis +odacid,odacids +odalisk,odalisks +odalisque,odalisques +odango,odangos +oda,odas +oddball,oddballs +odd duck,odd ducks +odderon,odderons +Oddfellow,Oddfellows +odd function,odd functions +odditorium,odditoriums +oddity,oddities +odd-jobber,odd-jobbers +odd job,odd jobs +oddling,oddlings +odd lot,odd lots +odd man out,odd men out +oddment,oddments +odd number,odd numbers +odd one out,odd ones out +oddsmaker,oddsmakers +odelet,odelets +ode,odes +odeon,odeons +odeum,odea +Odia,Odias +odiid,odiids +odiniid,odiniids +Odinist,Odinists +odist,odists +odobenid,odobenids +odometer,odometers +odometre,odometres +odometry,odometries +odontalgia,odontalgias +odontalgic,odontalgics +odontaspidid,odontaspidids +odontasterid,odontasterids +odontoblast,odontoblasts +odontobutid,odontobutids +odontocete,odontocetes +odontodactylid,odontodactylids +odontoglossum,odontoglossums +odontograph,odontographs +odontoid,odontoids +odontolite,odontolites +odontologist,odontologists +odontophore,odontophores +odontophorid,odontophorids +odontoplast,odontoplasts +odontopleurid,odontopleurids +odonym,odonyms +odorament,odoraments +odorant,odorants +odoriser,odorisers +odorizer,odorizers +odostomiid,odostomiids +odourant,odourants +odour,odours +Odyssean Wiccan,Odyssean Wiccans +odyssey,odysseys +oecobiid,oecobiids +Ε“cologist,Ε“cologists +Ε“conomist,Ε“conomists +oeconomus,oeconomi +Ε“conomy,Ε“conomies +Ε“coparasite,Ε“coparasites +oecophorid,oecophorids +Ε“cumenism,Ε“cumenisms +Ε“cumenist,Ε“cumenists +oedema,oedemas,oedemata +Ε“dema,Ε“demas,Ε“demata +oedemerid,oedemerids +oedicerotid,oedicerotids +oedipodid,oedipodids +Oedipus complex,Oedipus complexes +oedometer,oedometers +oegopsid,oegopsids +oeillade,oeillades +Ε“illade,Ε“illades +OEM,OEMs +Ε“nochoe,Ε“nochoes +oenocyte,oenocytes +oenologist,oenologists +Ε“nologist,Ε“nologists +oenologue,oenologues +Ε“nologue,Ε“nologues +Ε“nomaniac,Ε“nomaniacs +oenomel,oenomels +oenophile,oenophiles +Ε“nophile,Ε“nophiles +oe,oes +oersted,oersteds +oesophagectomy,oesophagectomies +oesophagoscope,oesophagoscopes +Ε“sophagospasm,Ε“sophagospasms +Ε“sophagotomy,Ε“sophagotomies +Ε“sophagus,Ε“sophagi +oesophagus,oesophagi,oesophaguses +oestrid,oestrids +oestrogen,oestrogens +Ε“strogen,Ε“strogens +oestrus,oestruses +Ε“strus,Ε“struses,Ε“stri +Ε“thel,Ε“thels +oeuvre,oeuvres +Ε“uvre,Ε“uvres +o-face,o-faces +ofay,ofays +OFC,OFCs +offbeat,offbeats +off brand,off brands +off break,off breaks +offcast,offcasts +off-come,off-comes +offcome,offcomes +offcomer,offcomers +offcut,offcuts +off cutter,off cutters +off day,off days +off drive,off drives +offence,offences +offendant,offendants +offendee,offendees +offender,offenders +offendor,offendors +offendour,offendours +offendress,offendresses +offense,offenses +offensive back,offensive backs +offensive foul,offensive fouls +offensive line,offensive lines +offensive tackle,offensive tackles +offensive zone,offensive zones +offeree,offerees +offerer,offerers +offering,offerings +offer,offers +offer,offers +offeror,offerors +offertory,offertories +offerture,offertures +off-flow,off-flows +off-gas,off-gases +off-hour,off-hours +office boy,office boys +office building,office buildings +office chair,office chairs +officeholder,officeholders +office-house,office-houses +office mate,office mates +officemate,officemates +office,offices +officeress,officeresses +officer-involved shooting,officer-involved shootings +officer,officers +officeseeker,officeseekers +office wall,office walls +office-wall,office-walls +officewall,officewalls +official at-bat,official at-bats +official cover,official covers +officiality,officialities +official,officials +official scorer,official scorers +officialty,officialties +officiant,officiants +officiator,officiators +officious intermeddler,officious intermeddlers +offie,offies +offing,offings +offlet,offlets +off licence,off licences +off-licence,off-licences +offloader,offloaders +offload,offloads +off-note,off-notes +off-off-off Broadway,off-off-off Broadways +off-pister,off-pisters +offprint,offprints +off-ramp,off-ramps +offramp,offramps +offre,offres +off-road bike,off-road bikes +off-roader,off-roaders +offroader,offroaders +offscape,offscapes +offscouring,offscourings +offscum,offscums +offseason,offseasons +offset,offsets +offsetter,offsetters +offsetting,offsettings +offshoot,offshoots +offside,offsides +offsider,offsiders +offskip,offskips +off-slip,off-slips +offslip,offslips +off spinner,off spinners +offspinner,offspinners +off-split,off-splits +offsplit,offsplits +offspring,offspring,offsprings +offstand,offstands +off stump,off stumps +off vocal,off vocals +off worlder,off worlders +off-worlder,off-worlders +offworlder,offworlders +offy,offies +ofuda,ofudas +ogcocephalid,ogcocephalids +ogdoad,ogdoads +ogdoastich,ogdoastichs +Ogeechee lime,Ogeechee limes +ogee,ogees +ogenach,ogenachs +oggin,oggins +oggy,oggies +Oghenewome,Oghenewomes +ogive,ogives +ogle,ogles +ogler,oglers +ogling,oglings +oglio,oglios +ogonek,ogoneks +ogre,ogres +ogress,ogresses +ogress,ogresses +ohana,ohanas +Ohara's fever,Ohara's fevers +oheloberry,oheloberries +oh for,oh fors +ohia,ohias +Ohioan,Ohioans +ohmmeter,ohmmeters +ohm,ohms +ohnosecond,ohnoseconds +oh,ohs +OHP,OHPs +Ohtahara syndrome,Ohtahara syndromes +oibara,oibaras +oidium,oidia +oik,oiks +oikonym,oikonyms +oikumene,oikumenes +oilbird,oilbirds +oil burner,oil burners +oilcan,oilcans +oilcloth,oilcloths +oiler,oilers +oilery,oileries +oil field,oil fields +oilfield,oilfields +oilfish,oilfishes,oilfish +oilionaire,oilionaires +oil lamp,oil lamps +oillet,oillets +oilman,oilmen +oil mill,oil mills +oilnut,oilnuts +oil painting,oil paintings +oil paint,oil paints +oil palm,oil palms +oilpaper,oilpapers +oil platform,oil platforms +oil refinery,oil refineries +oil rig,oil rigs +oilrig,oilrigs +oil sand,oil sands +oilsand,oilsands +oilskin,oilskins +oil spot,oil spots +oilstone,oilstones +oil stove,oil stoves +oil well,oil wells +oilwell,oilwells +oily bitterling,oily bitterlings +oily,oilies +oily rag,oily rags +oinement,oinements +oink,oinks +ointment,ointments +oiran,oiran,oirans +Ojibway,Ojibways +Ojibwe,Ojibwes +Ojos Azules,Ojos Azules +oka,okas +Oka,Okas +okapi,okapis +Okarito brown kiwi,Okarito brown kiwis +okay,okays +okenite,okenites +oke,okes +oke,okes +oker,okers +oker,okers +Okie,Okies +Okinawan,Okinawans +okiya,okiya +Oklahoman,Oklahomans +OK,OKs +okrug,okrugs +okta,oktas,okta +olallaberry,olallaberries +olalliberry,olalliberries +olallieberry,olallieberries +old age pension,old age pensions +old bag,old bags +old ball,old balls +old banger,old bangers +old bean,old beans +Old Believer,Old Believers +oldbie,oldbies +old boy network,old boy networks +old-boy network,old-boy networks +old boy,old boys +old boys' club,old boys' clubs +old chap,old chaps +old chestnut,old chestnuts +old cocoyam,old cocoyams +old codger,old codgers +old college try,old college tries +old country,old countries +Old English Sheepdog,Old English Sheepdogs +older adult,older adults +Old Etonian,Old Etonians +oldfag,oldfags +old fart,old farts +old-fashioned,old-fashioneds +oldfieldthomasiid,oldfieldthomasiids +old flame,old flames +old fogey,old fogies +old franc,old francs +old girl,old girls +old-growth forest,old-growth forests +old guard,old guards +oldhamite,oldhamites +old hand,old hands +oldie,oldies +old lace,old laces +old lady,old ladies +oldling,oldlings +old maid,old maids +old man,old men +old-man,old-men +oldman,oldmen +Old Marlburian,Old Marlburians +Old Master,Old Masters +old mate,old mates +old moon,old moons +old-oil,old-oils +old penny,old pence,old pennies +old salt,old salts +old saw,old saws +old-school,old-schools +old sod,old sods +old soldier,old soldiers +old song,old songs +old soul,old souls +old sport,old sports +old squaw,old squaws +oldsquaw,oldsquaws +oldster,oldsters +old stick,old sticks +old sweat,old sweats +old-sweat,old-sweats +old time,old times +old-timer,old-timers +oldtimer,oldtimers +old town,old towns +oldtown,oldtowns +old wives' tale,old wives' tales +old woman,old women +Old World flycatcher,Old World flycatchers +Old World monkey,Old World monkeys +Old World porcupine,Old World porcupines +oleacinid,oleacinids +oleamide,oleamides +oleanane,oleananes +oleander,oleanders +oleaster,oleasters +oleate,oleates +olecranon,olecranons +OLED,OLEDs +olefination,olefinations +olefin,olefins +olein,oleins +olenellid,olenellids +olenid,olenids +oleochemical,oleochemicals +oleocystidium,oleocystidia +oleograph,oleographs +oleogum,oleogums +oleomargarine,oleomargarines +oleometer,oleometers +oleoptene,oleoptenes +oleoyl,oleoyls +olethreutid,olethreutids +oleuropein,oleuropeins +O-level,O-levels +olfaction,olfactions +olfactomedin,olfactomedins +olfactometer,olfactometers +olfactor,olfactors +olfactory nerve,olfactory nerves +olfactory,olfactories +olf,olfs +'oliday,'olidays +oliebol,oliebollen +olifant,olifants +oligacanthorhynchid,oligacanthorhynchids +oligarch,oligarchs +oligarchy,oligarchies +oligist,oligists +oligoacene,oligoacenes +oligoadenylate,oligoadenylates +oligoamine,oligoamines +oligoaniline,oligoanilines +oligoastrocytoma,oligoastrocytomas +oligochaete,oligochaetes +oligochaetologist,oligochaetologists +oligochete,oligochetes +oligoclonal band,oligoclonal bands +oligodendroctye,oligodendroctyes +oligodendrocyte,oligodendrocytes +oligodendroglioma,oligodendrogliomas +oligodendroglion,oligodendroglia +oligodeoxynucleotide,oligodeoxynucleotides +oligodeoxyribonucleotide,oligodeoxyribonucleotides +oligoene,oligoenes +oligoester,oligoesters +oligoether,oligoethers +oligofluorene,oligofluorenes +oligofructose,oligofructoses +oligogalacturonide,oligogalacturonides +oligoguanidine,oligoguanidines +oligomannose,oligomannoses +oligomenorrhea,oligomenorrheas +oligomerisation,oligomerisations +oligomerization,oligomerizations +oligomer,oligomers +oligomycin,oligomycins +oligonucleosome,oligonucleosomes +oligonucleotide,oligonucleotides +oligo,oligos +oligopeptidase,oligopeptidases +oligopeptide,oligopeptides +oligophenylene,oligophenylenes +oligopithecid,oligopithecids +oligopolist,oligopolists +oligopolymer,oligopolymers +oligopoly,oligopolies +oligoprobe,oligoprobes +oligopsony,oligopsonies +oligopyrrole,oligopyrroles +oligoribonucleotide,oligoribonucleotides +oligosaccharide,oligosaccharides +oligosaccharyltransferase,oligosaccharyltransferases +oligosiderite,oligosiderites +oligosilane,oligosilanes +oligosiloxane,oligosiloxanes +oligosome,oligosomes +oligostilbene,oligostilbenes +oligotherapy,oligotherapies +oligothiophene,oligothiophenes +oligotroph,oligotrophs +oligoubiquitination,oligoubiquitinations +oligoubiquitin,oligoubiquitins +oligoubiquitylation,oligoubiquitylations +oligoyne,oligoynes +oligozoospermia,oligozoospermias +olingo,olingos +olinguito,olinguitos +oliphant,oliphants +oliphaunt,oliphaunts +olisbos,olisboi,olisbos +olistostrome,olistostromes +olivanic acid,olivanic acids +olivary body,olivary bodies +olive-backed oriole,olive-backed orioles +olive branch,olive branches +olive drab,olive drabs +olive grove,olive groves +olivegrower,olivegrowers +olivellid,olivellids +olivenite,olivenites +olive,olives +Oliverian,Oliverians +olive ridley sea turtle,olive ridley sea turtles +oliver,olivers +olive tree,olive trees +olivetta,olivettas +olivewood,olivewoods +olivid,olivids +olivine,olivines +ollalaberry,ollalaberries +ollaliberry,ollaliberries +ollalieberry,ollalieberries +ollamh,ollamhs +olla,ollas +olla podrida,olla podridas +ollapodrida,ollapodridas +ollave,ollaves +ollav,ollavs +ollie,ollies +ollycrock,ollycrocks +Olmec,Olmecs +olm,olms +ologamasid,ologamasids +ology,ologies +oloroso,olorosos +olpe,olpes +olykoek,olykoeks +olympiad,olympiads +Olympiad,Olympiads +Olympian,Olympians +Olympic flame,Olympic flames +Olympic goal,Olympic goals +olyrid,olyrids +omadhaun,omadhauns +Omaha,Omahas +omake,omake +omalogyrid,omalogyrids +Omani,Omanis +oma,omas +O mark,O marks +omasum,omasums,omasa +omasus,omasuses +ombre,ombres +ombrometer,ombrometers +ombrophile,ombrophiles +ombud,ombuds +ombudsman,ombudsmen +ombudsperson,ombudspersons,ombudspeople +ombudswoman,ombudswomen +OMC,OMCs +omega-3 fatty acid,omega-3 fatty acids +omega,omegas,omegala +omegasome,omegasomes +omega with titlo,omegas with titlo +omelet,omelets +omelette,omelettes +omen,omens +omentectomy,omentectomies +omentin,omentins +omentum,omentums,omenta +'ome,'omes +omer,omers +omicron,omicrons,omicra +omics,omics +omikuji,omikuji +omission,omissions +omittance,omittances +omitter,omitters +omkar,omkars +ommastrephid,ommastrephids +ommateum,ommatea +ommatidium,ommatidia +ommatid,ommatids +ommatophore,ommatophores +ommission,ommissions +ommochrome,ommochromes +omniana,omnianas +omnibus,omnibuses,omnibi +omnicompetence,omnicompetences +omniety,omnieties +omnigraph,omnigraphs +omnilingual,omnilinguals +omnishambles,omnishambles +omnitheist,omnitheists +omnium-gatherum,omnium-gatherums,omnium-gathera +omnium,omniums +omnivore,omnivores +omohyoideus,omohyoidei +omohyoid,omohyoids +om,oms +omomyid,omomyids +omophagia,omophagias +omophorion,omophorions,omophoria +omoplate,omoplates +omosternum,omosterna +omosudid,omosudids +omphalocele,omphaloceles +omphalode,omphalodes +Omphalopsychite,Omphalopsychites +omphaloskeptic,omphaloskeptics +omphalos,omphaloi +omphalotrochid,omphalotrochids +omul,omuls +onager,onagers,onagri +onagga,onaggas +onanist,onanists +on-base percentage,on-base percentages +on-base plus slugging,on-base plus sluggings +onbeat,onbeats +onbringing,onbringings +oncaeid,oncaeids +once over,once overs +once-over,once-overs +oncer,oncers +onchidiid,onchidiids +onchocercid,onchocercids +oncidium,oncidiums +oncilla,oncillas +oncoceratid,oncoceratids +oncocyte,oncocytes +oncocytoma,oncocytomas +oncogene,oncogenes +oncogenesis,oncogeneses +oncograph,oncographs +oncolite,oncolites +oncologist,oncologists +oncolysis,oncolyses +oncome,oncomes +oncometer,oncometers +oncoming,oncomings +oncomiracidium,oncomiracidia +oncomir,oncomirs +oncomouse,oncomice +oncopodid,oncopodids +oncoprotein,oncoproteins +oncoretrovirus,oncoretroviruses +oncosphere,oncospheres +oncostatin,oncostatins +oncost,oncosts +oncosuppressor,oncosuppressors +oncotomy,oncotomies +oncovirus,oncoviruses +ondatra,ondatras +on deck circle,on deck circles +onding,ondings +onding,ondings +on dit,on dits +ondol,ondols +on drive,on drives +one and a half,one and a halves +one-and-done,one-and-dones +one and only,one and onlies +one-armed bandit,one-armed bandits +one-armed router,one-armed routers +one-banana problem,one-banana problems +one-child policy,one-child policies +one-day international,one-day internationals +one-day match,one-day matches +one drop,one drops +one eyed jack,one eyed jacks +one-eyed jack,one-eyed jacks +one-eyed trouser snake,one-eyed trouser snakes +one finger salute,one finger salutes +one-finger salute,one-finger salutes +one foot,one foots +one-form,one-forms +one hit wonder,one hit wonders +one-hit wonder,one-hit wonders +one-horse town,one-horse towns +one-hundred-year storm,one-hundred-year storms +Oneida,Oneidas,Oneida +O'Neillite,O'Neillites +oneirism,oneirisms +oneirocritic,oneirocritics +oneirodid,oneirodids +oneirologist,oneirologists +oneirology,oneirologies +oneiromancer,oneiromancers +oneiromancy,oneiromancies +oneironaut,oneironauts +oneiroscopist,oneiroscopists +one liner,one liners +one-liner,one-liners +one-line whip,one-line whips +oneling,onelings +one L,one Ls +one-man band,one-man bands +one-minute warning,one-minute warnings +one-nighter,one-nighters +one-night stand,one-night stands +one of a kind,one of a kinds +one-of-a-kind,one-of-a-kinds +one-off,one-offs +one,ones +one-on-one,one-on-ones +one-percenter,one-percenters +one-piece,one-pieces +one pot,one pots +oner,oners +ones' complement,ones' complements +one-shot,one-shots +onesie,onesies +one-stop shop,one-stop shops +oneth,oneths +one-time pad,one-time pads +one-to-one,one-to-ones +one-track mind,one-track minds +one trick pony,one trick ponies +one-trick pony,one-trick ponies +one-two,one-twos +one-two punch,one-two punches +one under,one unders +one-upmanship,one-upmanships +one-up-one-down,one-up-one-downs +one up,one ups +one-up,one-ups +one-way mirror,one-way mirrors +one-way street,one-way streets +one-way ticket,one-way tickets +'oney,'oneys +onfall,onfalls +ongang,ongangs +ongaonga,ongaongas +ongoing,ongoings +onguent,onguents +on-hanger,on-hangers +onhanger,onhangers +onigiri,onigiris,onigiri +onion dome,onion domes +oni,onis,oni +onion Johnny,onion Johnnies +onion,onions +onion ring,onion rings +onion seed,onion seeds +onion straw,onion straws +oniscid,oniscids +onium,onia +onium,oniums +onlap,onlaps +online public access catalog,online public access catalogs +onliner,onliners +on-looker,on-lookers +onlooker,onlookers +onlook,onlooks +onlyborn,onlyborns +only child,only children +only daughter,only daughters +only,onlies +only son,only sons +onnagata,onnagatas +onocentaur,onocentaurs +onocerin,onocerins +onolatry,onolatries +onomastician,onomasticians +onomasticon,onomasticons +onomast,onomasts +onomatologist,onomatologists +onomatology,onomatologies +onomatopeia,onomatopeias +onomatope,onomatopes +onomatopoeian,onomatopoeians +Onondaga,Onondagas,Onondaga +'onour,'onours +on-ramp,on-ramps +onramp,onramps +on-roader,on-roaders +onrush,onrushes +onsen,onsens +onset,onsets +on-side kick,on-side kicks +onside kick,onside kicks +onslaughter,onslaughters +onslaught,onslaughts +on-slip,on-slips +onslip,onslips +onstead,onsteads +ontake,ontakes +Ontarian,Ontarians +on-time marker,on-time markers +ontogenesis,ontogeneses +ontogeny,ontogenies +ontological argument,ontological arguments +ontological proof,ontological proofs +ontologist,ontologists +ontology,ontologies +Ontos,Ontos +ontosophy,ontosophies +onuphid,onuphids +onychectomy,onychectomies +onychia,onychias +onychochilid,onychochilids +onychodontid,onychodontids +onycholysis,onycholyses +onychopathy,onychopathies +onychophagist,onychophagists +onychophoran,onychophorans +onychoteuthid,onychoteuthids +onyon,onyons +oocyst,oocysts +oocyte,oocytes +oΓΆcyte,oΓΆcytes +O'odham,O'odhams +ooecium,ooecia +o,oes +oofamily,oofamilies +oΓΆgenesis,oΓΆgeneses +oogenus,oogenera +oogone,oogones +oΓΆgone,oΓΆgones +oogonium,oogonia +oΓΆgonium,oΓΆgonia +ooid,ooids +oΓΆid,oΓΆids +oojamaflip,oojamaflips +ookinete,ookinetes +ookpik,ookpiks +oolacunta,oolacuntas +oΓΆlite,oΓΆlites +oolith,ooliths +oolitic,oolitics +oologist,oologists +oΓΆlogist,oΓΆlogists +oolong,oolongs +oomiac,oomiacs +oomiak,oomiaks +oom,ooms +oom-pah,oom-pahs +oompah,oompahs +Oompa Loompa,Oompa Loompas +oomycete,oomycetes +oonopid,oonopids +oont,oonts +oo,oos +oo,oos +oophorectomy,oophorectomies +oΓΆphorectomy,oΓΆphorectomies +oophore,oophores +oΓΆphore,oΓΆphores +oophoridium,oophoridia +oophyte,oophytes +oΓΆphyte,oΓΆphytes +oorial,oorials +oorie,oories +Oorlam,Oorlams,Oorlam +Oorya,Ooryas +o-,o-s +oosperm,oosperms +oosphere,oospheres +oΓΆsphere,oΓΆspheres +oosporangium,oosporangia +oospore,oospores +oΓΆspore,oΓΆspores +oostegite,oostegites +oΓΆstegite,oΓΆstegites +ootheca,oothecae +oΓΆtheca,oΓΆthecae +ootid,ootids +oΓΆtid,oΓΆtids +ootype,ootypes +ooze,oozes +ooze,oozes +oozing,oozings +opabinid,opabinids +opacification,opacifications +opacifier,opacifiers +opah,opahs,opah +opakapaka,opakapakas,opakapaka +opaleye,opaleyes +opaline,opalines +opaline,opalines +opalinid,opalinids +opal,opals +opalotype,opalotypes +op-amp,op-amps +opamp,opamps +opanka,opankas +opaque,opaques +opcode,opcodes +OpCon,OpCons +op-ed,op-eds +opelet,opelets +open adoption,open adoptions +open air museum,open air museums +open and shut case,open and shut cases +open-arse,open-arses +open ball,open balls +open bar,open bars +openbill,openbills +open bite,open bites +open book decomposition,open book decompositions +open book,open books +open circuit,open circuits +open circulatory system,open circulatory systems +open cluster,open clusters +open compound,open compounds +open cover,open covers +open day,open days +open ended straight draw,open ended straight draws +open-end fund,open-end funds +opener,openers +open feedwater heater,open feedwater heaters +open file,open files +open floor plan,open floor plans +open game,open games +open goal,open goals +open half space,open half spaces +openhandedness,openhandednesses +open house,open houses +opening argument,opening arguments +opening batsman,opening batsmen +opening ceremony,opening ceremonies +opening,openings +opening speech,opening speeches +opening statement,opening statements +open interval,open intervals +open jaw,open jaws +open letter,open letters +open market,open markets +open marriage,open marriages +open mic,open mics +open mike,open mikes +open-mindedness,open-mindednesses +open mind,open minds +open,opens +open-pit mine,open-pit mines +open problem,open problems +open proxy,open proxies +open razor,open razors +open reading frame,open reading frames +open rectangle,open rectangles +open relationship,open relationships +open sandwich,open sandwiches +open sea,open seas +open season,open seasons +open secret,open secrets +open sesame,open sesames +open set,open sets +open shop,open shops +openside flanker,openside flankers +open-side,open-sides +openside,opensides +open syllable,open syllables +open system,open systems +open time,open times +open valley,open valleys +openwork stocking,openwork stockings +open wound,open wounds +opera bouffe,operas bouffes +opΓ©ra bouffe,opΓ©ras bouffes +operad,operads +opera glass,opera glasses +opera glove,opera gloves +operagoer,operagoers +opera hat,opera hats +opera house,opera houses +opera house trap,opera house traps +operameter,operameters +operand,operands +operandum,operanda +operant,operants +opera,operas,opere +opera singer,opera singers +operatee,operatees +operating concept,operating concepts +operating cycle,operating cycles +operating expense,operating expenses +operating loss,operating losses +operating room,operating rooms +operating system,operating systems +operating theatre,operating theatres +operating time,operating times +operational definition,operational definitions +operationalisability,operationalisabilities +operationalisation,operationalisations +operationality,operationalities +operationalizability,operationalizabilities +operationalization,operationalizations +operational service period,operational service periods +operational taxonomic unit,operational taxonomic units +operation,operations +operative,operatives +operative word,operative words +operator,operators +operatorship,operatorships +operatory,operatories +operatour,operatours +opera window,opera windows +opercle,opercles +opercular,operculars +operculate,operculates +operculum,opercula +operetta,operettas +operon,operons +oper,opers +opeway,opeways +opgaaf,opgaafs +ophan,ophanim +opheliid,opheliids +ophiacodontid,ophiacodontids +ophiactid,ophiactids +Ophian,Ophians +ophiceratid,ophiceratids +ophichthid,ophichthids +ophicleide,ophicleides +ophiderpetontid,ophiderpetontids +ophidian,ophidians +ophidiasterid,ophidiasterids +ophidiid,ophidiids +ophidioid,ophidioids +ophiocomid,ophiocomids +ophiodermatid,ophiodermatids +ophioglossid,ophioglossids +ophiolepidid,ophiolepidids +ophioleucinid,ophioleucinids +ophiolite,ophiolites +ophiolitologist,ophiolitologists +ophiologist,ophiologists +ophiomorphite,ophiomorphites +ophiophobe,ophiophobes +ophiothricid,ophiothricids +ophiotrichid,ophiotrichids +ophite,ophites +Ophite,Ophites +ophiuran,ophiurans +ophiure,ophiures +ophiurid,ophiurids +ophiurioid,ophiurioids +ophiuroid,ophiuroids +ophryon,ophryons +ophthalmite,ophthalmites +ophthalmologist,ophthalmologists +ophthalmometer,ophthalmometers +ophthalmosaurid,ophthalmosaurids +ophthalmoscope,ophthalmoscopes +opiate,opiates +opificer,opificers +opilioacarid,opilioacarids +opination,opinations +opinator,opinators +opine,opines +opiner,opiners +opiniaster,opiniasters +opiniator,opiniators +opinionatist,opinionatists +opinionator,opinionators +opinionist,opinionists +opinionmaker,opinionmakers +opinionnaire,opinionnaires +opinion,opinions +opinion poll,opinion polls +opioid,opioids +opishaptor,opishaptors +opisometer,opisometers +opisthaptor,opisthaptors +opisthenar,opisthenars +opisthion,opisthia +opisthobranchiate,opisthobranchiates +opisthobranch,opisthobranchs +opisthocomid,opisthocomids +opisthodome,opisthodomes +opisthoglyph,opisthoglyphs +opisthognathid,opisthognathids +opisthograph,opisthographs +opisthokont,opisthokonts +opisthomastigote,opisthomastigotes +opisthomonorchiine,opisthomonorchiines +opisthoproctid,opisthoproctids +opisthorchiid,opisthorchiids +opisthosoma,opisthosomas,opisthosomata +opisthoteuthid,opisthoteuthids +opisthotic,opisthotics +opistognathid,opistognathids +opium alkaloid,opium alkaloids +opium poppy,opium poppies +oplegnathid,oplegnathids +ople tree,ople trees +oplock,oplocks +oplophorid,oplophorids +oplurid,oplurids +opodeldoc,opodeldocs +opomyzid,opomyzids +op,ops +opossum,opossums +opostegid,opostegids +oppeliid,oppeliids +oppidan,oppidans +oppilation,oppilations +opponency,opponencies +opponent,opponents +oppo,oppos +opportunism,opportunisms +opportunistic infection,opportunistic infections +opportunist,opportunists +opportunity cost,opportunity costs +opportunity,opportunities +opportunity shop,opportunity shops +opportunivore,opportunivores +opposer,opposers +opposite number,opposite numbers +opposite,opposites +opposite side,opposite sides +oppositionist,oppositionists +opposition,oppositions +opposition parry,opposition parries +opposit,opposits +opposum,opposums +oppressiveness,oppressivenesses +oppressor,oppressors +oppressour,oppressours +oppugnancy,oppugnancies +oppugnant,oppugnants +oppugnation,oppugnations +oppugner,oppugners +oppy,oppies +OPQRST,OPQRSTs +oprahfication,oprahfications +Oprahfication,Oprahfications +opry,opries +op shop,op shops +opsimath,opsimaths +opsin,opsins +opsiometer,opsiometers +opsonin,opsonins +opsonisation,opsonisations +opsony,opsonies +opsophagos,opsophagoi +optant,optants +optative,optatives +optical activity,optical activities +optical axis,optical axes +optical disc,optical discs +optical double,optical doubles +optical drive,optical drives +optical fiber,optical fibers +optical fibre,optical fibres +optical flat,optical flats +optical illusion,optical illusions +optical isomer,optical isomers +optical rotation,optical rotations +optical spectrum,optical spectrums +optical switch,optical switches +optical trap,optical traps +optic chiasm,optic chiasms +optic disc,optic discs +optic disk,optic disks +optician,opticians +optick,opticks +optic nerve,optic nerves +optic,optics +optigraph,optigraphs +optimate,optimates +optimation,optimations +optime,optimes +optimisation,optimisations +optimiser,optimisers +optimist,optimists +optimization,optimizations +optimization problem,optimization problems +optimizer,optimizers +optimum,optima,optimums +optionaire,optionaires +optionality,optionalities +optionally piloted vehicle,optionally piloted vehicles +option button,option buttons +option,options +optocoupler,optocouplers +optode,optodes +optogram,optograms +optoisolator,optoisolators +optometer,optometers +optometrist,optometrists +optophone,optophones +optotype,optotypes +opt-out,opt-outs +optrode,optrodes +opuntia,opuntias +opuscle,opuscles +opuscule,opuscules +opusculum,opuscula +opus,opuses,opera +OPV,OPVs +oquassa,oquassas +orache,oraches +orach,oraches +oracle machine,oracle machines +oracle,oracles +oraison,oraisons +oral cavity,oral cavities +oral gratification,oral gratifications +oralist,oralists +orality,oralities +orally disintegrating tablet,orally disintegrating tablets +oral,orals +oranda,orandas +orangeade,orangeades +orangeat,orangeats +orange blister beetle,orange blister beetles +orange blossom,orange blossoms +orange grove,orange groves +orangelo,orangelos +Orangeman,Orangemen +orange pekoe,orange pekoes +orangequat,orangequats +orange roughy,orange roughies +orangery,orangeries +orange squash,orange squashes +orange stick,orange sticks +orange tip,orange tips +Orangewoman,Orangewomen +Orangey,Orangies +orang,orangs +orang-outang,orang-outangs +orangoutang,orangoutangs +orangutang,orangutangs +orang-utan,orang-utans +orangutan,orangutans +oran-outang,oran-outangs +orant,orants +ora,oras +orarian,orarians +oration,orations +oratorian,oratorians +oratorio,oratorios +orator,orators +oratory,oratories +oratour,oratours +oratress,oratresses +oratrix,oratrixes,oratrices +orbicle,orbicles +orbicula,orbiculas,orbiculae +orbiculate,orbiculates +orbifolding,orbifoldings +orbifold,orbifolds +orbiform,orbiforms +orbiniid,orbiniids +orbispace,orbispaces +orbital cavity,orbital cavities +orbitalis,orbitales +orbital motorway,orbital motorways +orbital,orbitals +orbital plane,orbital planes +orbital ridge,orbital ridges +orbital symmetry,orbital symmetries +orbiter,orbiters +orbitestellid,orbitestellids +orbiton,orbitons +orbit,orbits +orbitosphenoid,orbitosphenoids +orbity,orbities +orbivirus,orbiviruses +orb,orbs +orb,orbs +Orcadian,Orcadians +orca,orcas +orchal,orchals +orcharder,orcharders +orchardful,orchardfuls,orchardsful +orchardgrass,orchardgrasses +orchard heater,orchard heaters +orchardist,orchardists +orchardman,orchardmen +orchard,orchards +orchestra hit,orchestra hits +orchestra,orchestras +orchestrator,orchestrators +orchestrelle,orchestrelles +orchestre,orchestres +orchestrina,orchestrinas +orchestrion,orchestrions +orchidarium,orchidariums,orchidaria +orchid bee,orchid bees +orchidectomy,orchidectomies +orchidologist,orchidologists +orchidometer,orchidometers +orchidopexy,orchidopexies +orchid,orchids +orchiectomy,orchiectomies +orchil,orchils +orchiopexy,orchiopexies +orchis,orchises +orchitis,orchitides +orc,orcs +orc,orcs +orculid,orculids +ordainer,ordainers +ordainment,ordainments +ordalium,ordalia +ordeal bean,ordeal beans +ordeal,ordeals +orde,ordes +ordered field,ordered fields +ordered integral domain,ordered integral domains +ordered pair,ordered pairs +orderer,orderers +order in council,orders in council +order-in-council,orders-in-council +orderly,orderlies +Order of Australia,Orders of Australia +order of battle,orders of battle +order of business,orders of business +order of knighthood,orders of knighthood +order of magnitude,orders of magnitude +order of operations,orders of operations +order of succession,orders of succession +order of the day,orders of the day +ℝ-order tree,ℝ-order trees +order tree,order trees +ordinal adjective,ordinal adjectives +ordinal direction,ordinal directions +ordinale,ordinales +ordinal indicator,ordinal indicators +ordinal number,ordinal numbers +ordinal,ordinals +ordinal rank,ordinal ranks +ordinal scale,ordinal scales +ordinal variable,ordinal variables +ordinance,ordinances +ordinand,ordinands +ordinant,ordinants +ordinariate,ordinariates +ordinary differential equation,ordinary differential equations +ordinary,ordinaries +ordinary resolution,ordinary resolutions +ordinary seaman,ordinary seamen +ordinate,ordinates +ordination,ordinations +ordinator,ordinators +ordinaunce,ordinaunces +ordnance,ordnances +Ordnance Survey map,Ordnance Survey maps +ordoliberal,ordoliberals +ordo,ordines,ordos +ord,ords +ordure,ordures +oread,oreads +oreasterid,oreasterids +Orebite,Orebites +ore body,ore bodies +orebody,orebodies +orectolobid,orectolobids +Oregonian,Oregonians +Oreo cookie,Oreo cookies +oreodontid,oreodontids +oreodont,oreodonts +oreohelicid,oreohelicids +oreopithecid,oreopithecids +ΓΆre,ΓΆres +ΓΈre,ΓΈres +oreosomatid,oreosomatids +oreshoot,oreshoots +oreweed,oreweeds +orexin,orexins +orexis,orexes +orfeome,orfeomes +orfe,orfes +orf,orfs +orfray,orfrays +organ console,organ consoles +organdie,organdies +organ donation,organ donations +organ donor,organ donors +organdy,organdies +organelle,organelles +organette,organettes +organ grinder,organ grinders +organ gun,organ guns +organic chemist,organic chemists +organic compound,organic compounds +organic electroluminescent display,organic electroluminescent displays +organic law,organic laws +organic light-emitting diode,organic light-emitting diodes +organic,organics +organic salt,organic salts +organigramme,organigrammes +organigram,organigrams +organisational chart,organisational charts +organisation chart,organisation charts +organisation,organisations +organiser,organisers +organism,organisms +organista,organistas +organist,organists +organizational breakdown structure,organizational breakdown structures +organizational chart,organizational charts +organization chart,organization charts +organization man,organization men +organized religion,organized religions +organizer,organizers +organoactinide,organoactinides +organoborane,organoboranes +organoboronate,organoboronates +organoboronic acid,organoboronic acids +organobromine,organobromines +organocatalyst,organocatalysts +organocation,organocations +organochloride,organochlorides +organochlorine,organochlorines +organocuprate,organocuprates +organ of Corti,organs of Corti +organofluoride,organofluorides +organofluorine,organofluorines +organ of RosenmΓΌller,organs of RosenmΓΌller +organ of state,organs of state +organogen,organogens +organogermane,organogermanes +organogram,organograms +organographer,organographers +organographist,organographists +organohalide,organohalides +organohalogen,organohalogens +organoheterotroph,organoheterotrophs +organoheteryl,organoheteryls +organoid,organoids +organoiodine,organoiodines +organolithium,organolithiums +organologist,organologists +organomercurial,organomercurials +organometallic compound,organometallic compounds +organometallic,organometallics +organometal,organometals +organonitrogen,organonitrogens +organon,organons +organoperoxy,organoperoxys +organophosphate,organophosphates +organophosphine,organophosphines +organ,organs +organosilane,organosilanes +organosilanol,organosilanols +organosilica,organosilicas +organosilicon,organosilicons +organosol,organosols +organosol,organosols +organostibine,organostibines +organosulfurane,organosulfuranes +organotherapy,organotherapies +organothiophosphate,organothiophosphates +organotroph,organotrophs +organ pipe cactus,organ pipe cactuses,organ pipe cacti +organ pipe,organ pipes +organ stop,organ stops +organ transplant,organ transplants +organule,organules +organum,organa +organum triplum,organa tripla +organyl,organyls +organzine,organzines +orgasmatron,orgasmatrons +orgasm,orgasms +org chart,org charts +orgeat,orgeats +orgiast,orgiasts +orgone,orgones +orgue,orgues +orgy,orgies +oribatid,oribatids +oribi,oribis +oricha,orichas +oriel,oriels +orientalist,orientalists +Oriental Longhair,Oriental Longhairs +oriental,orientals +Oriental,Orientals +Oriental plane,Oriental planes +Oriental Shorthair,Oriental Shorthairs +oriental sweetgum,oriental sweetgums +oriental turtle dove,oriental turtle doves +orientating response,orientating responses +orienteerer,orienteerers +orienteer,orienteers +orientifold,orientifolds +orient,orients +Orient,Orients +orifice,orifices +oriflamb,oriflambs +oriflamme,oriflammes +origamist,origamists +Origenist,Origenists +original aspect ratio,original aspect ratios +original character,original characters +originalist,originalists +original,originals +originator,originators +origin,origins +orillon,orillons +O-ring,O-rings +Orin,Orins +oriole,orioles +Oriole,Orioles +oriolid,oriolids +oriol,oriols +oriostomatid,oriostomatids +orisa,orisas +orisha,orishas +orison,orisons +orixa,orixas +Oriya,Oriyas +orizon,orizons +Orkneyan,Orkneyans +orlay,orlays +orle,orles +orl fly,orl flies +orling,orlings +orling,orlings +orlo,orlos +orlop deck,orlop decks +orlop,orlops +orl,orls +ormer,ormers +ormolu,ormolus +ORM,ORMs +Ormsby filter,Ormsby filters +ormyrid,ormyrids +ornamentalist,ornamentalists +ornamental,ornamentals +ornamentation,ornamentations +ornamenter,ornamenters +ornament,ornaments +ornate horned toad,ornate horned toads +ornate tinamou,ornate tinamous +ornate wolf,ornate wolves +orneodid,orneodids +ornis,ornithes +ornithichnite,ornithichnites +ornithischian,ornithischians +ornithocheirid,ornithocheirids +ornithodiran,ornithodirans +ornithodorid,ornithodorids +ornithoidichnite,ornithoidichnites +ornitholestid,ornitholestids +ornitholite,ornitholites +ornithologist,ornithologists +ornithomimid,ornithomimids +ornithomimosaur,ornithomimosaurs +ornithon,ornithons +ornithopod,ornithopods +ornithopter,ornithopters +ornithorhynchid,ornithorhynchids +ornithorhynchus,ornithorhynchuses +ornithoscelidan,ornithoscelidans +ornithosis,ornithoses +ornithosuchid,ornithosuchids +ornithotomist,ornithotomists +ornithurine,ornithurines +oroblanco,oroblancos +orocline,oroclines +orodontid,orodontids +orogen,orogens +orogenous zone,orogenous zones +orogeny,orogenies +orographer,orographers +oroide,oroides +oroidin,oroidins +orologist,orologists +oromerycid,oromerycids +Oromo,Oromos,Oromo +oronym,oronyms +oropharynx,oropharynxes,oropharynges +orophyte,orophytes +Oropom,Oropom +Oroqen,Oroqens +orosomucoid,orosomucoids +orotate,orotates +orotic acid,orotic acids +orotundity,orotundities +orphanage,orphanages +orphanarium,orphanariums +orphan asylum,orphan asylums +orphan disease,orphan diseases +orphandom,orphandoms +orphan drug,orphan drugs +orphanhood,orphanhoods +orphanism,orphanisms +orphanity,orphanities +orphan medicine,orphan medicines +orphan,orphans +orphanotrophy,orphanotrophies +orphan receptor,orphan receptors +orphanry,orphanries +orphanship,orphanships +orpharion,orpharions +orpheline,orphelines +orphrey,orphreys +orpine,orpines +Orpington,Orpingtons +orrach,orrachs +orrery,orreries +orris,orrises +orris,orrises +orris pea,orris peas +orseille,orseilles +orsellinate,orsellinates +'orse,'orses +orsolobid,orsolobids +ortanique,ortaniques +orthant,orthants +orthel,orthels +orthent,orthents +ortheziid,ortheziids +orthicon,orthicons +orthid,orthids +orthoacetate,orthoacetates +orthoacid,orthoacids +orthoarsenite,orthoarsenites +orthobenzoate,orthobenzoates +orthobicupola,orthobicupolas +orthoborate,orthoborates +orthoboric acid,orthoboric acids +orthobunyavirus,orthobunyaviruses +orthocarbonate,orthocarbonates +orthocenter,orthocenters +orthocentre,orthocentres +orthoceratid,orthoceratids +orthoceratite,orthoceratites +orthochromite,orthochromites +orthocomplementation,orthocomplementations +orthocomplement,orthocomplements +orthodiagonal,orthodiagonals +orthodome,orthodomes +orthodontist,orthodontists +Orthodox Jew,Orthodox Jews +orthodox spin,orthodox spins +orthodoxy,orthodoxies +orthodrome,orthodromes +orthoepist,orthoepists +orthoΓ«pist,orthoΓ«pists +orthoester,orthoesters +orthoexciton,orthoexcitons +orthoferrite,orthoferrites +orthoferrosilite,orthoferrosilites +orthoformate,orthoformates +orthogenesis,orthogeneses +orthogneiss,orthogneisses +orthogonal complement,orthogonal complements +orthogonal function,orthogonal functions +orthogonalisation,orthogonalisations +orthogon,orthogons +orthographer,orthographers +orthographist,orthographists +orthograph,orthographs +orthography,orthographies +orthohepadnavirus,orthohepadnaviruses +orthoimage,orthoimages +ortholog,orthologs +orthologue,orthologues +orthomyxovirus,orthomyxoviruses +orthonitrate,orthonitrates +orthonormal function,orthonormal functions +orthonormalisation,orthonormalisations +orthonormalization,orthonormalizations +orthonychid,orthonychids +ortho,orthos +orthopaedist,orthopaedists +orthopantomogram,orthopantomograms +orthopedic bed,orthopedic beds +orthopedic shoe,orthopedic shoes +orthopedic surgeon,orthopedic surgeons +orthopedist,orthopedists +orthoperiodate,orthoperiodates +orthophosphate,orthophosphates +orthophotograph,orthophotographs +orthophoto,orthophotos +orthopinacoid,orthopinacoids +orthopod,orthopods +orthopoxvirus,orthopoxviruses +orthopsychiatrist,orthopsychiatrists +orthopteran,orthopterans +orthoptera,orthopteras +orthopter,orthopters +orthoptic,orthoptics +orthopyroxene,orthopyroxenes +orthorectification,orthorectifications +orthoreovirus,orthoreoviruses +orthorexic,orthorexics +orthorhombic pyroxene,orthorhombic pyroxenes +orthoscope,orthoscopes +orthosexual,orthosexuals +orthosilicate,orthosilicates +orthosis,orthoses +orthostat,orthostats +orthostichy,orthostichies +orthosubstitution,orthosubstitutions +orthotetrahedron,orthotetrahedra +orthotic,orthotics +orthotope,orthotopes +orthovanadate,orthovanadates +orthovoltage,orthovoltages +ortolan,ortolans +ort,orts +ortygan,ortygans +orujo,orujos +orussid,orussids +orvet,orvets +orvieto,orvietos +oryall,oryalls +oryctere,orycteres +orycterope,orycteropes +orycteropodid,orycteropodids +oryctologist,oryctologists +oryx,oryxes,oryx +oryzalexin,oryzalexins +oryzomyine,oryzomyines +osage orange,osage oranges +Osakan,Osakans +osar,osars +osazone,osazones +Oscan,Oscans +Oscarologist,Oscarologists +oscar,oscars +Oscar,Oscars +oscillation,oscillations +oscillaton,oscillatons +oscillator,oscillators +oscillatory reaction,oscillatory reactions +oscillogram,oscillograms +oscillograph,oscillographs +oscillometer,oscillometers +oscillon,oscillons +oscilloscope,oscilloscopes +oscitancy,oscitancies +oscitation,oscitations +os clitoridis,ossa clitoridis +os clitoris,ossa clitoris +o-scope,o-scopes +OSC,OSCs +os coxae,ossa coxae +osculating circle,osculating circles +osculating orbit,osculating orbits +osculation,osculations +osculator,osculators +osculatory,osculatories +osculatrix,osculatrices +oscule,oscules +osculum,oscula +Osete,Osetes +Osetian,Osetians +oshibori,oshibori +osier,osiers +osiery,osieries +OSI layer,OSI layers +Osler node,Osler nodes +Osloite,Osloites +Osmanli,Osmanlis +osmanthus,osmanthuses +osmate,osmates +osmaterium,osmateria +osmerid,osmerids +osmeterium,osmeteria +osmiamate,osmiamates +osmiate,osmiates +osmina,osminas +osmiridium,osmiridiums +osmite,osmites +osmoconformer,osmoconformers +osmolality,osmolalities +osmolarity,osmolarities +osmole,osmoles +osmolyte,osmolytes +osmometer,osmometers +osmophobia,osmophobias +osmoprotectant,osmoprotectants +osmoreceptor,osmoreceptors +osmoregulator,osmoregulators +osmosensor,osmosensors +osmosis,osmoses +osmoticum,osmotica +osmunda,osmundas +osmylid,osmylids +osoberry,osoberries +osone,osones +osophy,osophies +os,ora +OS,OSes +os,ossa +osotriazole,osotriazoles +os penis,ossa penis +osphradium,osphradia +osphronemid,osphronemids +'ospital,'ospitals +ospray,osprays +osprey,ospreys +OSRD,OSRDs +ossature,ossatures +ossean,osseans +ossein,osseins +osselet,osselets +ossel hitch,ossel hitches +Ossete,Ossetes +osseter,osseters +Ossetian,Ossetians +Osset,Ossets +ossia,ossias +ossicle,ossicles +ossicone,ossicones +ossiculum,ossicula +ossification,ossifications +ossifrage,ossifrages +ossuarium,ossuariums,ossuaria +ossuary,ossuaries +osteectomy,osteectomies +osteichthyan,osteichthyans +o-stem,o-stems +Ostender,Ostenders +ostensive definition,ostensive definitions +ostensorium,ostensoria +ostensory,ostensories +ostentator,ostentators +ostent,ostents +osteoarthritic,osteoarthritics +osteoarthritis,osteoarthritides +osteoarthropathy,osteoarthropathies +osteoarthrosis,osteoarthroses +osteoblastoma,osteoblastomas +osteoblast,osteoblasts +osteocalcin,osteocalcins +osteochondrodysplasia,osteochondrodysplasias +osteochondroma,osteochondromas +osteoclasis,osteoclases +osteoclastogenesis,osteoclastogeneses +osteoclastoma,osteoclastomas +osteoclast,osteoclasts +osteocope,osteocopes +osteocranium,osteocrania +osteocyte,osteocytes +osteoderm,osteoderms +osteodistraction,osteodistractions +osteodysplasia,osteodysplasias +osteodystrophy,osteodystrophies +osteogenesis,osteogeneses +osteoglossid,osteoglossids +osteoid,osteoids +osteolepid,osteolepids +osteolite,osteolites +osteologer,osteologers +osteologist,osteologists +osteo-malacia,osteo-malacias +osteomalacia,osteomalacias +osteoma,osteomas +osteonecrosis,osteonecroses +osteone,osteones +osteon,osteons,ostea +osteopath,osteopaths +osteopeltid,osteopeltids +osteopetrosis,osteopetroses +osteophone,osteophones +osteophyte,osteophytes +osteoplast,osteoplasts +osteoplasty,osteoplasties +osteopontin,osteopontins +osteoporosis,osteoporoses +osteoprogenitor,osteoprogenitors +osteoprotegerin,osteoprotegerins +osteosarcoma,osteosarcomas,osteosarcomata +osteosclerosis,osteoscleroses +osteospermum,osteospermums +osteotome,osteotomes +osteotomist,osteotomists +osteotomy,osteotomies +Ostian,Ostians +ostiary,ostiaries +ostinato,ostinatos,ostinati +ostiole,ostioles +ostium,ostia +ostleress,ostleresses +ostler,ostlers +ostlery,ostleries +Ostman,Ostmen +ostmark,ostmarks +ostodolepid,ostodolepids +ostomate,ostomates +ostomy,ostomies +ost,osts +OST,OSTs +ostracean,ostraceans +ostraciid,ostraciids +ostraciont,ostracionts +ostracite,ostracites +ostracitoxin,ostracitoxins +ostracode,ostracodes +ostracod,ostracods +ostracoid,ostracoids +ostracon,ostraca +ostracum,ostraca +ostrakon,ostraka +ostreaphile,ostreaphiles +ostreid,ostreids +ostreolith,ostreoliths +ostreophagist,ostreophagists +ostrich,ostriches +ostricization,ostricizations +Ostrobothnian,Ostrobothnians +Ostrogoth,Ostrogoths +ostro,ostros +ostruble,ostrubles +otacousticon,otacousticons +Otaheite apple,Otaheite apples +otakukin,otakukin +otaku,otakus +otalgic,otalgics +otaman,otamans +OTA,OTAs +otariid,otariids +otary,otaries +otheoscope,otheoscopes +other fish in the sea,other fishes in the sea +other half,other halves +other head,other heads +otherkin,otherkin +othermother,othermothers +other,others +other's,others' +other woman,other women +otherworld,otherworlds +Otherworld,Otherworlds +Othman,Othmans +oth,oths +otic bone,otic bones +otidid,otidids +otinid,otinids +otiosity,otiosities +otitid,otitids +otitis,otitides +OTL,OTLs +otoceratid,otoceratids +otoconite,otoconites +otoconium,otoconia +otocrane,otocranes +otocyst,otocysts +otodontid,otodontids +otoitid,otoitids +otolaryngologist,otolaryngologists +otolite,otolites +otolith,otoliths +otologist,otologists +Otomi,Otomis +otopheidomenid,otopheidomenids +otoplasty,otoplasties +otorhinolaryngologist,otorhinolaryngologists +otorrhea,otorrheas +otorrhoea,otorrhoeas +otoscope,otoscopes +otoscopy,otoscopies +otosteal,otosteals +ototoxin,ototoxins +OT,OTs +OTPROM,OTPROMs +Ottawan,Ottawans +Ottawa,Ottawas +otter civet,otter civets +Otterhound,Otterhounds +otter,otters +otterskin,otterskins +Otto cycle,Otto cycles +ottoman,ottomans +Ottoman,Ottomans +Ottomite,Ottomites +ottomy,ottomies +otto,ottos +OTW,OTWs +otzovist,otzovists +ouakari,ouakaris +ouarine,ouarines +oubliette,oubliettes +ouche,ouches +ouchie,ouchies +ouch,ouches +oude genever,oude genevers +Oudin coil,Oudin coils +oud,ouds +oughtness,oughtnesses +ought,oughts +ought,oughts +ouguiya,ouguiyas +ouija,ouijas +Ouija,Ouijas +Ouija,ouijata +ouistiti,ouistitis +oukie,oukies +oulachan,oulachans +oule,oules +Oulipian,Oulipians +oul,ouls +ounceland,ouncelands +ounce,ounces +ounce,ounces +ou,ous +ou,ous,ouens +ouphe,ouphes +oupire,oupires +ourang,ourangs +ourang-outang,ourang-outangs +ourebi,ourebis +ouroboros,ouroboroi,ouroboroses +ourouparia,ourouparias +'our,'ours +ousel,ousels +ousie,ousies +oustee,oustees +oustering,ousterings +ouster,ousters +ouster,ousters +Outagamie,Outagamies +outage,outages +out ball,out balls +outbase,outbases +outbidder,outbidders +outboard motor,outboard motors +outboard,outboards +outbound,outbounds +outbox,outboxes +outbreaking,outbreakings +outbreak,outbreaks +outbreeder,outbreeders +outbuilding,outbuildings +outburster,outbursters +outburst flood,outburst floods +outburst,outbursts +outcall,outcalls +outcaste,outcastes +outcast,outcasts +outcome delivery,outcome deliveries +outcomeling,outcomelings +outcome,outcomes +outcome variable,outcome variables +outcourt,outcourts +outcrier,outcriers +outcrop,outcrops +outcropping,outcroppings +outcrosser,outcrossers +outcross,outcrosses +outcry,outcries +outcurve,outcurves +outcut,outcuts +outdegree,outdegrees +outdent,outdents +outdoer,outdoers +outdoorsman,outdoorsmen +outdoorswoman,outdoorswomen +outdweller,outdwellers +outener,outeners +outerchange,outerchanges +outer class,outer classes +outer core,outer cores +outer ear,outer ears +outer garment,outer garments +outer,outers +outer,outers +outer planet,outer planets +outfall,outfalls +outfangthef,outfangthefs +outfielder,outfielders +outfield,outfields +outfire,outfires +outfit,outfits +outfitter,outfitters +outfitting,outfittings +outfleme,outflemes +outflow,outflows +outflux,outfluxes +outfoxer,outfoxers +outgang,outgangs +outgate,outgates +outgiving,outgivings +outgoer,outgoers +outgoing,outgoings +outgo,outgos,outgoes +outgrade,outgrades +outground,outgrounds +outgroup,outgroups +outgrowth,outgrowths +outguard,outguards +outgush,outgushes +outharbor,outharbors +outharbour,outharbours +outhaul,outhauls +outhole,outholes +outhouse,outhouses +outie,outies +outing,outings +outjet,outjets +outjie,outjies +outkeeper,outkeepers +outlander,outlanders +outland,outlands +outlane,outlanes +outlaw,outlaws +outlawry,outlawries +outleap,outleaps +outlet,outlets +outlett,outletts +outlier,outliers +outline,outlines +outliner,outliners +outliver,outlivers +outlook,outlooks +outlying field,outlying fields +outmigrant,outmigrants +out-of-body experience,out-of-body experiences +out-of-towner,out-of-towners +out,outs +outparish,outparishes +outpart,outparts +outpatient,outpatients +outperformer,outperformers +outplacement,outplacements +outplant,outplants +outport,outports +outpost,outposts +outpouching,outpouchings +outpouring,outpourings +outpour,outpours +output device,output devices +output rating,output ratings +outrageousness,outrageousnesses +outrage,outrages +outrager,outragers +outreach,outreaches +outride,outrides +outrider,outriders +outrigger canoe,outrigger canoes +outrigger,outriggers +outroad,outroads +outrode,outrodes +outroom,outrooms +outro,outros +outrunner,outrunners +outrun,outruns +outscouring,outscourings +outseam,outseams +outsending,outsendings +outsend,outsends +outsentry,outsentries +outsert,outserts +outset,outsets +outsettler,outsettlers +outshow,outshows +outside back,outside backs +outside centre,outside centres +outside edge,outside edges +outside gross area,outside gross areas +outside,outsides +outside passed pawn,outside passed pawns +outsider,outsiders +outside world,outside worlds +outsight,outsights +outsize,outsizes +outskin,outskins +outskirt,outskirts +outsmarter,outsmarters +outsole,outsoles +outsourcer,outsourcers +outspan,outspans +outstation,outstations +outstreet,outstreets +out-swinger,out-swingers +outswinger,outswingers +outswing,outswings +outtake,outtakes +outterm,outterms +outthrust,outthrusts +out-turn,out-turns +outturn,outturns +outvoter,outvoters +outwalker,outwalkers +outwall,outwalls +outwash,outwashes +outway,outways +outwitter,outwitters +outworking,outworkings +outwork,outworks +outworld,outworlds +outy,outies +ouvert,ouverts +ouzel,ouzels +ovalbumin,ovalbumins +ovalene,ovalenes +ovality,ovalities +ovalocyte,ovalocytes +oval,ovals +OVA,OVAs +ovarian cycle,ovarian cycles +ovarian cyst,ovarian cysts +ovariectomy,ovariectomies +ovariole,ovarioles +ovariotomist,ovariotomists +ovariotomy,ovariotomies +ovarium,ovaria +ovary,ovaries +ovation,ovations +ovenbird,ovenbirds +oven glove,oven gloves +oven mitt,oven mitts +oven,ovens +overabundance,overabundances +overachievement,overachievements +over-achiever,over-achievers +overachiever,overachievers +overactivation,overactivations +overactor,overactors +overage,overages +overalkylation,overalkylations +overall,overalls +overall picture,overall pictures +overamplification,overamplifications +overanalysis,overanalyses +over and under,over and unders +overapplication,overapplications +over-approximation,over-approximations +overapproximation,overapproximations +overbalance,overbalances +overbar,overbars +overbet,overbets +overbidder,overbidders +overbid,overbids +overbite,overbites +overblouse,overblouses +overbooker,overbookers +overbooking,overbookings +overboot,overboots +overbridge,overbridges +overbuilder,overbuilders +overburden,overburdens +overcaller,overcallers +overcall,overcalls +overcapacity,overcapacities +overcapitalization,overcapitalizations +overcard,overcards +overcast,overcasts +overcharge,overcharges +overcharger,overchargers +overcheck,overchecks +overclass,overclasses +overclocker,overclockers +overcoat,overcoats +overcoil,overcoils +overcomer,overcomers +overcoming,overcomings +overcomplication,overcomplications +overconsumer,overconsumers +overcorrection,overcorrections +overdate,overdates +overdeal,overdeals +overdede,overdedes +overdemand,overdemands +overdensity,overdensities +overdependence,overdependences +overdispersion,overdispersions +overdoer,overdoers +overdog,overdogs +overdoor,overdoors +overdosage,overdosages +overdose,overdoses +overdoser,overdosers +overdot,overdots +overdramatisation,overdramatisations +overdramatization,overdramatizations +overdraught,overdraughts +overdraw,overdraws +overdresser,overdressers +overdubber,overdubbers +overdub,overdubs +overdue abortion,overdue abortions +overeater,overeaters +overedger,overedgers +overeducation,overeducations +overemphasis,overemphasises +overestimation,overestimations +overestimator,overestimators +overexcitation,overexcitations +overexertion,overexertions +overexpressor,overexpressors +overfall,overfalls +overfeeder,overfeeders +overfill,overfills +overfitting,overfittings +overflight,overflights +overflood,overfloods +overflow hole,overflow holes +overflowing,overflowings +overflow,overflows +overflow pool,overflow pools +overfold,overfolds +overgang,overgangs +overgarment,overgarments +overgeneralizer,overgeneralizers +overglaze,overglazes +overgo,overgoes +overgrowth,overgrowths +overhand knot,overhand knots +overhang,overhangs +overhauler,overhaulers +overhaul,overhauls +overhead cam,overhead cams +overhead kick,overhead kicks +overhead line,overhead lines +overhead,overheads +overhead press,overhead presses +overhead projector,overhead projectors +overhead valve,overhead valves +overhearer,overhearers +overhold,overholds +overhope,overhopes +overindulgence,overindulgences +overindulger,overindulgers +overinterpretation,overinterpretations +overinvestor,overinvestors +overinvolvement,overinvolvements +overiodisation,overiodisations +overiodization,overiodizations +overionization,overionizations +overkingdom,overkingdoms +overking,overkings +overlaminate,overlaminates +overlander,overlanders +overland,overlands +overlap,overlaps +overlapper,overlappers +overlapping,overlappings +overlayer,overlayers +overlay,overlays +overleave,overleaves +overline,overlines +overling,overlings +overlining,overlinings +overlip,overlips +overliver,overlivers +overloader,overloaders +overloading,overloadings +overload,overloads +overlocker,overlockers +overlock,overlocks +overloe,overloes +overlong vowel,overlong vowels +overlooker,overlookers +overloop,overloops +overlord,overlords +overmake,overmakes +overman,overmen +overmantel,overmantels +overmatch,overmatches +overmind,overminds +overnighter,overnighters +overnight,overnights +overo,overos +overorder,overorders +over,overs +overpack,overpacks +overpair,overpairs +overpart,overparts +overpass,overpasses +overpayment,overpayments +overperformance,overperformances +overperformer,overperformers +overplus,overpluses +overpotential,overpotentials +overpowerer,overpowerers +overprediction,overpredictions +overpressure,overpressures +overpressurisation,overpressurisations +overpressurization,overpressurizations +overprint,overprints +overproducer,overproducers +overpronator,overpronators +overprotector,overprotectors +overprovision,overprovisions +overpush,overpushes +over rate,over rates +overreacher,overreachers +overreach,overreaches +overreaction,overreactions +overreactor,overreactors +overrelaxation,overrelaxations +overreliance,overreliances +override,overrides +overrobe,overrobes +overruff,overruffs +overruler,overrulers +overruling,overrulings +overrunner,overrunners +overrun,overruns +oversample,oversamples +overscore,overscores +overseas Chinese,overseas Chinese +overseas territory,overseas territories +oversedation,oversedations +overseer,overseers +overseership,overseerships +oversensitiveness,oversensitivenesses +overshadower,overshadowers +overshape,overshapes +oversheet,oversheets +overshirt,overshirts +overshoe,overshoes +overshoot,overshoots +overside,oversides +oversight,oversights +oversimplification,oversimplifications +oversimplifier,oversimplifiers +oversit,oversits +overskirt,overskirts +overslaugh,overslaughs +oversleeper,oversleepers +oversleeve,oversleeves +overslop,overslops +oversman,oversmen +oversoul,oversouls +overspecialization,overspecializations +overspender,overspenders +overspending,overspendings +overspend,overspends +overspill estate,overspill estates +oversplit,oversplits +overspray,oversprays +overspray surface texture,overspray surface textures +over square,over squares +overstatement,overstatements +overstayer,overstayers +overstay,overstays +oversteer,oversteers +overstitch,overstitches +overstock,overstocks +overstorey,overstoreys +overstory,overstories +oversubscription,oversubscriptions +oversum,oversums +oversupply,oversupplies +overswing,overswings +overtaker,overtakers +overtalk,overtalks +overtemperature,overtemperatures +over-the-counter drug,over-the-counter drugs +over-the-shoulder boulder holder,over-the-shoulder boulder holders +overthinker,overthinkers +overthrowal,overthrowals +overthrower,overthrowers +overthrow,overthrows +overthrow,overthrows +overthrust,overthrusts +overtilde,overtildes +overtime ban,overtime bans +overtitle,overtitles +overtone,overtones +overtrader,overtraders +overtreatment,overtreatments +overtrick,overtricks +overture,overtures +overturner,overturners +over-under,over-unders +overuser,overusers +overutilizer,overutilizers +overvaluation,overvaluations +overview,overviews +overvoltage,overvoltages +overvote,overvotes +overwait,overwaits +overweener,overweeners +overwhelmer,overwhelmers +overwin,overwins +overwinterer,overwinterers +overword,overwords +overworld map,overworld maps +overworld,overworlds +overwrap,overwraps +overwriter,overwriters +ovibovine,ovibovines +ovicaprid,ovicaprids +ovicapsule,ovicapsules +ovicell,ovicells +ovicide,ovicides +oviduct,oviducts +Oviedan,Oviedans +ovine,ovines +ovipositor,ovipositors +oviraptoran,oviraptorans +oviraptorid,oviraptorids +oviraptorosaur,oviraptorosaurs +oviraptor,oviraptors +ovisac,ovisacs +ovispirin,ovispirins +ovist,ovists +ovoid,ovoids +ovolactovegetarian,ovolactovegetarians +ovolo,ovolos +ovotestis,ovotestes +OV,OVs +ovulation,ovulations +ovule,ovules +ovulid,ovulids +ovulist,ovulists +ovulite,ovulites +ovulum,ovula +ovum,ova +owch,owches +owelty,owelties +owenettid,owenettids +oweniid,oweniids +Owenite,Owenites +ower,owers +owie,owies +owlbear,owlbears +owler,owlers +owlery,owleries +owlet moth,owlet moths +owlet,owlets +owling,owlings +owl,owls +owl,owls +OWL,OWLs +owl parrot,owl parrots +owl train,owl trains +owndom,owndoms +owner-operator,owner-operators +owner,owners +ownership,ownerships +own goal,own goals +oword,owords +owre,owres +oxacephem,oxacephems +oxacid,oxacids +oxadiazepine,oxadiazepines +oxadiazinane,oxadiazinanes +oxadiazine,oxadiazines +oxadiazole,oxadiazoles +oxadiazol,oxadiazols +oxalamide,oxalamides +oxalate,oxalates +oxaldehyde,oxaldehydes +oxalis,oxalis +oxaloacetate,oxaloacetates +oxalocrotonate,oxalocrotonates +oxalocrotonic acid,oxalocrotonic acids +oxalurate,oxalurates +oxaluria,oxalurias +oxalyl,oxalyls +oxamate,oxamates +oxamic acid,oxamic acids +oxamidine,oxamidines +oxanilate,oxanilates +oxanorbornene,oxanorbornenes +oxanorbornenyl,oxanorbornenyls +oxanthrene,oxanthrenes +oxaphosphine,oxaphosphines +oxaphosphole,oxaphospholes +oxasilolane,oxasilolanes +oxathiadiazol,oxathiadiazols +oxathiane,oxathianes +oxathiazinone,oxathiazinones +oxathiazole,oxathiazoles +oxathiazolidine,oxathiazolidines +oxathiine,oxathiines +oxathiolane,oxathiolanes +oxathiole,oxathioles +oxazaborolane,oxazaborolanes +oxazaborolidine,oxazaborolidines +oxazepine,oxazepines +oxazine,oxazines +oxazinone,oxazinones +oxazole,oxazoles +oxazolidinedione,oxazolidinediones +oxazolidine,oxazolidines +oxazolidinone,oxazolidinones +oxazoline,oxazolines +oxazolyl,oxazolyls +oxbird,oxbirds +oxbow lake,oxbow lakes +oxbow,oxbows +oxcart,oxcarts +oxenium,oxeniums +oxepane,oxepanes +oxepine,oxepines +oxepin,oxepins +oxer,oxers +oxetane,oxetanes +oxetose,oxetoses +oxeye daisy,oxeye daisies +oxeye,oxeyes +oxfly,oxflies +Oxford comma,Oxford commas +Oxfordian,Oxfordians +Oxford,Oxfords +Oxford pillowcase,Oxford pillowcases +Oxford shoe,Oxford shoes +Oxford spelling,Oxford spellings +Oxford tie,Oxford ties +oxgang,oxgangs +oxgoad,oxgoads +oxhead,oxheads +oxheart,oxhearts +oxherd,oxherds +oxhide,oxhides +oxidant,oxidants +oxidase,oxidases +oxidate,oxidates +oxidation number,oxidation numbers +oxidation,oxidations +oxidation state,oxidation states +oxidator,oxidators +oxide,oxides +oxidiser,oxidisers +oxidizer,oxidizers +oxidizing agent,oxidizing agents +oxidizing flame,oxidizing flames +oxidoreductase,oxidoreductases +oxidoreduction,oxidoreductions +oxid,oxids +oximation,oximations +oxime,oximes +oximeter,oximeters +oximetre,oximetres +oxinate,oxinates +oxirane,oxiranes +oxirene,oxirenes +oxirose,oxiroses +oxisol,oxisols +oxling,oxlings +oxlip,oxlips +oxoacetate,oxoacetates +oxoacid,oxoacids +oxoaldehyde,oxoaldehydes +oxoalkyl,oxoalkyls +oxoamide,oxoamides +oxoanion,oxoanions +oxoazetidine,oxoazetidines +oxobromide,oxobromides +oxocane,oxocanes +oxocarbenium,oxocarbeniums +oxocarbon,oxocarbons +oxochloride,oxochlorides +oxocine,oxocines +oxoethyl,oxoethyls +oxofluoride,oxofluorides +oxoglutarate,oxoglutarates +oxoglutaric acid,oxoglutaric acids +oxohalide,oxohalides +oxoiodide,oxoiodides +oxole,oxoles +oxometalate,oxometalates +oxometallate,oxometallates +oxonate,oxonates +oxonine,oxonines +oxonium,oxoniums +oxononanoate,oxononanoates +oxon,oxons +oxo,oxos +oxophytodienoate,oxophytodienoates +oxopnictide,oxopnictides +oxorhenium,oxorheniums +oxosilane,oxosilanes +oxosulfoselenide,oxosulfoselenides +oxovanadium,oxovanadiums +ox,oxen +oxpecker,oxpeckers +oxshoe,oxshoes +oxskin,oxskins +oxtail,oxtails +oxter,oxters +oxtongue,oxtongues +oxyacid,oxyacids +oxyaenid,oxyaenids +oxyanion,oxyanions +oxyarc,oxyarcs +oxyarsenide,oxyarsenides +oxyarylation,oxyarylations +oxycalcium light,oxycalcium lights +oxycarbonate,oxycarbonates +oxychalcogenide,oxychalcogenides +oxychloride,oxychlorides +oxychlorination,oxychlorinations +oxychorid,oxychorids +oxycline,oxyclines +oxycorynid,oxycorynids +oxydoreductase,oxydoreductases +oxyd,oxyds +oxyferryl,oxyferryls +oxyfluoride,oxyfluorides +oxyfuel,oxyfuels +oxygenation,oxygenations +oxygenator,oxygenators +oxygen bar,oxygen bars +oxygen bottle,oxygen bottles +oxygen cylinder,oxygen cylinders +oxygen debt,oxygen debts +oxygen deficit,oxygen deficits +oxygen demand,oxygen demands +oxygen depletion,oxygen depletions +oxygen difluoride,oxygen difluorides +oxygen fluoride,oxygen fluorides +oxygen lance,oxygen lances +oxygen mask,oxygen masks +oxygen tank,oxygen tanks +oxygen tent,oxygen tents +oxygen thief,oxygen thieves +oxygon,oxygons +oxyhalide,oxyhalides +oxyhydroxide,oxyhydroxides +oxylinkage,oxylinkages +oxylipin,oxylipins +oxylith,oxyliths +oxylium ion,oxylium ions +oxylium,oxyliums +oxylophyte,oxylophytes +oxyl,oxyls +oxyluciferin,oxyluciferins +oxymel,oxymels +oxymoron,oxymorons,oxymora +oxyneolignane,oxyneolignanes +oxyneolignan,oxyneolignans +oxynitrate,oxynitrates +oxynitride,oxynitrides +oxynoid,oxynoids +oxynoticeratid,oxynoticeratids +oxynotid,oxynotids +oxyopid,oxyopids +oxypalladation,oxypalladations +oxyphenbutazone,oxyphenbutazones +oxyphenol,oxyphenols +oxypnictide,oxypnictides +oxyradical,oxyradicals +oxyruncid,oxyruncids +oxysalt,oxysalts +oxyselenide,oxyselenides +oxysterol,oxysterols +oxysulfate,oxysulfates +oxysulfide,oxysulfides +oxysulphate,oxysulphates +oxysulphide,oxysulphides +oxysulphuret,oxysulphurets +oxytelluride,oxytellurides +oxytetrafluoride,oxytetrafluorides +oxythiomolybdate,oxythiomolybdates +oxytocia,oxytocias +oxytocic,oxytocics +oxytoluene,oxytoluenes +oxytone,oxytones +oxyurid,oxyurids +oyabun,oyabuns,oyabun +oyamel,oyamels +oyez,oyezes +oylet,oylets +oynoun,oynouns +oyrur,oyrur +oyster ball,oyster balls +oysterbank,oysterbanks +oyster bed,oyster beds +oysterbed,oysterbeds +Oyster card,Oyster cards +oystercatcher,oystercatchers +oyster cracker,oyster crackers +oyster drill,oyster drills +oyster farm,oyster farms +oysterling,oysterlings +oysterman,oystermen +oyster mushroom,oyster mushrooms +oyster,oysters +oyster plant,oyster plants +oysterplant,oysterplants +oyster Rockefeller,oysters Rockefeller +oyster sauce,oyster sauces +oyster shooter,oyster shooters +oystery,oysteries +oystre,oystres +ozaena,ozaenas,ozaenae +Ozarker,Ozarkers +ozarkite,ozarkites +Ozark,Ozarks +ozelot sword,ozelot swords +ozier,oziers +ozocerite,ozocerites +ozokerite,ozokerites +ozonate,ozonates +ozone hole,ozone holes +ozoner,ozoners +ozonesonde,ozonesondes +ozonide,ozonides +ozonisation,ozonisations +ozonizer,ozonizers +ozonolysis,ozonolyses +ozonometer,ozonometers +ozonoscope,ozonoscopes +ozonosphere,ozonospheres +p13n,p13ns +P3,P3s +P45,P45s +P60,P60s +paΚ»anga,paΚ»anga +pabulum,pabula,pabulums +paca,pacas +pacarana,pacaranas +pacay,pacays +paccan,paccans +paccay,paccays +pace car,pace cars +pace egg,pace eggs +pace-egg,pace-eggs +paceline,pacelines +pacemaker,pacemakers +paceman,pacemen +pace,paces +pace,paces +pacer,pacers +Pacer,Pacers +pace setter,pace setters +pace-setter,pace-setters +pacesetter,pacesetters +paceway,paceways +pachamanca,pachamancas +Pacheneg,Pachenegs +pachinko,pachinkos +pachometer,pachometers +pachuco,pachucos +pachycaul,pachycauls +pachycephalid,pachycephalids +pachycephalosaurid,pachycephalosaurids +pachycephalosaur,pachycephalosaurs +pachyceratid,pachyceratids +pachychilid,pachychilids +pachycormid,pachycormids +pachycurare,pachycurares +pachydermatocele,pachydermatoceles +pachyderm,pachyderms +pachydiscid,pachydiscids +pachylaelapid,pachylaelapids +pachymeter,pachymeters +pachyophiid,pachyophiids +pachypleurosaurid,pachypleurosaurids +pachypleurosaur,pachypleurosaurs +pachysandra,pachysandras +pachytene,pachytenes +pachytroctid,pachytroctids +pacification,pacifications +pacificator,pacificators +Pacific blackberry,Pacific blackberries +Pacific blackchin,Pacific blackchins +Pacific dewberry,Pacific dewberries +Pacific Diver,Pacific Divers +Pacific herring,Pacific herrings +Pacific Islander,Pacific Islanders +pacificist,pacificists +Pacific loon,Pacific loons +Pacific Northwesterner,Pacific Northwesterners +Pacific silver fir,Pacific silver firs +pacifier,pacifiers +pacifist,pacifists +pacing,pacings +paci,pacis +package deal,package deals +packaged petroleum product,packaged petroleum products +package film,package films +package holiday,package holidays +package management system,package management systems +package,packages +packager,packagers +package store,package stores +packaging gas,packaging gases +packaging,packagings +pack animal,pack animals +packboard,packboards +packed lunch,packed lunches +packer,packers +Packer,Packers +Packer whacker,Packer whackers +packetizer,packetizers +packet,packets +packet sniffer,packet sniffers +packhorse bridge,packhorse bridges +pack horse,pack horses +pack-horse,pack-horses +packhorse,packhorses +packhouse,packhouses +packie,packies +packing case,packing cases +packing-case,packing-cases +packinghouse,packinghouses +packing,packings +packing plant,packing plants +packman,packmen +packmate,packmates +pack,packs +pack rat,pack rats +pack-rat,pack-rats +packrat,packrats +packsack,packsacks +packsaddle,packsaddles +packshot,packshots +pack-up kit,pack-up kits +pack-up,pack-ups +packway,packways +packyear,packyears +paco,pacos,pacoes +PAC,PACs +pacquet,pacquets +pacsin,pacsins +paction,pactions +pact,pacts +pactum de non petendo,pacta de non petendo +pacu,pacus +paczki,paczkis +Padanian,Padanians +Padaung,Padaungs,Padaung +padawan,padawans +padayatra,padayatras +padder,padders +padding,paddings +paddlane,paddlanes +paddleboarder,paddleboarders +paddle board,paddle boards +paddleboard,paddleboards +paddleboater,paddleboaters +paddleboat,paddleboats +paddlecock,paddlecocks +paddlefish,paddlefishes,paddlefish +paddle,paddles +paddler,paddlers +paddle shifter,paddle shifters +paddlesport,paddlesports +paddle steamer,paddle steamers +paddle wheel,paddle wheels +paddlewheel,paddlewheels +paddling,paddlings +paddling pool,paddling pools +paddock,paddocks +paddock,paddocks +paddy bird,paddy birds +paddy field,paddy fields +paddymelon,paddymelons +paddy,paddies +Paddy,Paddies +paddy paw,paddy paws +paddy wagon,paddy wagons +paddywagon,paddywagons +paddywhack,paddywhacks +padella,padellas +padelle,padelles +pademelon,pademelons +padfolio,padfolios +padge,padges +p-adic absolute value,p-adic absolute values +p-adic norm,p-adic norms +p-adic number,p-adic numbers +p-adic ordinal,p-adic ordinals +p-adic ultrametric,p-adic ultrametrics +padiddle,padiddles +padimate,padimates +padishah,padishahs +Padishah,Padishahs +padlock,padlocks +padloper,padlopers +padnag,padnags +Padouca,Padoucas +padow,padows +pad,pads +pad,pads +pad,pads +pad,pads +padparadscha,padparadschas +padrΓ£o,padrΓ΅es +padre,padres +padrone,padrones,padroni +pad saw,pad saws +padsaw,padsaws +pad stitch,pad stitches +padstone,padstones +Paduan,Paduans +paduasoy,paduasoies +paean,paeans +pΓ¦an,pΓ¦ans +pΓ¦dagog,pΓ¦dagogs +pΓ¦dagogue,pΓ¦dagogues +paederast,paederasts +pΓ¦derast,pΓ¦derasts +paediatrician,paediatricians +pΓ¦diatrician,pΓ¦diatricians +paediatrist,paediatrists +pΓ¦diatrist,pΓ¦diatrists +paedobaptism,paedobaptisms +pΓ¦dobaptism,pΓ¦dobaptisms +paedobaptist,paedobaptists +pΓ¦dobaptist,pΓ¦dobaptists +paedologist,paedologists +pΓ¦dologist,pΓ¦dologists +paedo,paedos +paedophage,paedophages +paedophile,paedophiles +pΓ¦dophile,pΓ¦dophiles +paedophiliac,paedophiliacs +pΓ¦dophiliac,pΓ¦dophiliacs +paedophilophile,paedophilophiles +paella,paellas +paellera,paelleras +paenungulate,paenungulates +paeon,paeons +paeony,paeonies +pΓ¦ony,pΓ¦onies +paepae,paepaes +paganess,paganesses +paganing,paganings +paganizer,paganizers +pagan,pagans +pagast,pagasts +pagati,pagatis +pageanter,pageanters +pageant,pageants +pageantry,pageantries +pageaunt,pageaunts +page boy,page boys +pageboy,pageboys +Page Down,Page Downs +page fault,page faults +pagefile,pagefiles +page flow,page flows +pageful,pagefuls,pagesful +page,pages +page,pages +page proof,page proofs +pager,pagers +page-turner,page-turners +pageturner,pageturners +Page Up,Page Ups +pageview,pageviews +pagina,paginae +pagination,paginations +paginator,paginators +pagoda,pagodas +pagod,pagods +pagri,pagris +paguma,pagumas +pagurid,pagurids +Pahari,Paharis,Pahari +pahi,pahis +pahlavi,pahlavis +pahoehoe,pahoehoes +pah,pahs +PAH,PAHs +pahu,pahus +Pahute,Pahutes +Pahvant Valley plague,Pahvant Valley plagues +paigle,paigles +paijama,paijamas +pailful,pailfuls,pailsful +paillard,paillards +paillasse,paillasses +paillette,paillettes +pail,pails +pain au chocolat,pains au chocolat +painim,painims +pain in the arse,pains in the arse +pain in the ass,pains in the ass +pain in the bum,pains in the bum +pain killer,pain killers +painkiller,painkillers +painmaker,painmakers +painslut,painsluts +painstaker,painstakers +paintathon,paintathons +paintballer,paintballers +paint-billed crake,paint-billed crakes +paintbox,paintboxes +paintbrush,paintbrushes +painted bunting,painted buntings +painted dog,painted dogs +painted frog,painted frogs +painted hunting dog,painted hunting dogs +painted lady,painted ladies +painted snipe,painted snipes +painted wolf,painted wolves +painter,painters +painter's tape,painter's tapes +paintery,painteries +Paint Horse,Paint Horses +pain threshold,pain thresholds +painting,paintings +paintmaker,paintmakers +Paint,Paints +paintress,paintresses +paintstick,paintsticks +paintwork,paintworks +paiocke,paiockes +paiock,paiocks +pair bond,pair bonds +pairer,pairers +pairing energy,pairing energies +pairing,pairings +pair of compasses,pairs of compasses +pair of eyeglasses,pairs of eyeglasses +pair of glasses,pairs of glasses +pair of pants,pairs of pants +pair of specs,pairs of specs +pair of spectacles,pairs of spectacles +pair of stairs,pairs of stairs +pair,pairs,pair +pairwise linkage disequilibrium diagram,pairwise linkage disequilibrium diagrams +paisano,paisanos +paisan,paisans +paisa,paisas +paisa,paisas,paise,pice +paise,paises +paisley,paisleys +Paiute,Paiutes +Paixhans gun,Paixhans guns +paiza,paizas +pajocke,pajockes +pajock,pajocks +pakalolo,pakalolos +pakamac,pakamacs +pakeha,pakehas,pakeha +pakhavaj,pakhavajs +pakhawaj,pakhawajs +pakicetid,pakicetids +paki,pakis +Paki,Pakis +Paki shop,Paki shops +Pakistani,Pakistanis +pakol,pakols +pakora,pakoras +pak pai,pak pai,pak pais +pak,paks +paksha,pakshas +paktong,paktongs +pakul,pakuls +palabra,palabras +palace,palaces +paladar,paladars +paladin,paladins +palaeanthropologist,palaeanthropologists +palΓ¦anthropologist,palΓ¦anthropologists +palaelodid,palaelodids +palaemonid,palaemonids +palaeoanthropologist,palaeoanthropologists +palΓ¦oanthropologist,palΓ¦oanthropologists +palaeobiogeographer,palaeobiogeographers +palaeobiologist,palaeobiologists +palaeobotanist,palaeobotanists +palaeoceanographer,palaeoceanographers +palaeochiropterygid,palaeochiropterygids +palaeoclimate,palaeoclimates +palaeoclimatologist,palaeoclimatologists +palaeoconservative,palaeoconservatives +palaeocurrent,palaeocurrents +palaeodicot,palaeodicots +Palaeodicotyledon,Palaeodicotyledons +palaeodrainage,palaeodrainages +palaeodune,palaeodunes +palaeoecologist,palaeoecologists +palaeoencephalon,palaeoencephalons +palaeoentomologist,palaeoentomologists +palaeoenvironment,palaeoenvironments +palaeoequator,palaeoequators +palaeoethnobotanist,palaeoethnobotanists +palaeogeneticist,palaeogeneticists +palaeogeographer,palaeogeographers +palaeographer,palaeographers +palΓ¦ographer,palΓ¦ographers +palaeographist,palaeographists +palΓ¦ographist,palΓ¦ographists +palaeography,palaeographies +palΓ¦ography,palΓ¦ographies +palaeoichthyologist,palaeoichthyologists +palaeointensity,palaeointensities +palaeolake,palaeolakes +palaeolatitude,palaeolatitudes +palΓ¦ologist,palΓ¦ologists +palΓ¦ology,palΓ¦ologies +palaeolongitude,palaeolongitudes +palaeomagnetist,palaeomagnetists +palaeomerycid,palaeomerycids +palaeoniscid,palaeoniscids +palaeontinid,palaeontinids +palaeontologist,palaeontologists +palΓ¦ontologist,palΓ¦ontologists +palaeopathologist,palaeopathologists +palaeopedologist,palaeopedologists +palaeophiid,palaeophiids +palaeopolyploidization,palaeopolyploidizations +palaeopropithecid,palaeopropithecids +palaeorecord,palaeorecords +palaeoregolith,palaeoregoliths +palaeoryctid,palaeoryctids +palaeosaur,palaeosaurs +palaeoscience,palaeosciences +palaeosetid,palaeosetids +palaeoshoreline,palaeoshorelines +palaeosoil,palaeosoils +palaeosol,palaeosols +palaeosubduction,palaeosubductions +palaeotemperature,palaeotemperatures +palaeotheriid,palaeotheriids +palaeothermometer,palaeothermometers +palaeotype,palaeotypes +palaeozoologist,palaeozoologists +palaeozygopleurid,palaeozygopleurids +PalΓ¦stinian,PalΓ¦stinians +palΓ¦stra,palΓ¦strΓ¦ +palaestra,palaestras,palaestrae +palaetiologist,palaetiologists +palagi,palagi,palagis +palagonite,palagonites +palampore,palampores +palanka,palankas +palankeen,palankeens +palanquine,palanquines +palanquin,palanquins +pala,palas +palapa,palapas +palatal expander,palatal expanders +palatal hook,palatal hooks +palatal,palatals +palate expander,palate expanders +palate,palates +palatic,palatics +palatinate,palatinates +palatine bone,palatine bones +palatine,palatines +palatine,palatines +palatine tonsil,palatine tonsils +palatine uvula,palatine uvulas,palatine uvulae +palatoglossus,palatoglossi +palatogram,palatograms +palatonaris,palatonares +palatopharyngeus,palatopharyngei +palatoquadrate,palatoquadrates +palatovelar,palatovelars +Palauan,Palauans +palaverer,palaverers +palaver,palavers +Palawan bearcat,Palawan bearcats +palazzo,palazzos,palazzi +palea,paleae +paleass,paleasses +paleass,paleasses +pale-browed tinamou,pale-browed tinamous +pale clouded yellow,pale clouded yellows +Pale Clouded Yellow,Pale Clouded Yellows +paleencephalon,paleencephalons +paleface,palefaces +palegold searsid,palegold searsids +palempore,palempores +palenque,palenques +paleoanthropologist,paleoanthropologists +paleoartist,paleoartists +paleobiogeographer,paleobiogeographers +paleobiologist,paleobiologists +paleobotanist,paleobotanists +paleoceanographer,paleoceanographers +paleocerebellum,paleocerebellums +paleochannel,paleochannels +paleoclimate,paleoclimates +paleoclimatologist,paleoclimatologists +paleocon,paleocons +paleoconservative,paleoconservatives +paleocurrent,paleocurrents +paleodepth,paleodepths +paleodicot,paleodicots +paleodiet,paleodiets +paleodistribution,paleodistributions +paleoecologist,paleoecologists +paleoecology,paleoecologies +paleoencephalon,paleoencephala +paleoenvironment,paleoenvironments +paleoethnobotanist,paleoethnobotanists +paleofantasy,paleofantasies +paleofield,paleofields +paleogeographer,paleogeographers +paleognath,paleognaths +paleographer,paleographers +paleographist,paleographists +paleograph,paleographs +paleography,paleographies +paleohabitat,paleohabitats +paleoherb,paleoherbs +paleoichnologist,paleoichnologists +paleointensity,paleointensities +paleolake,paleolakes +paleola,paleolae +paleolatitude,paleolatitudes +paleolibertarian,paleolibertarians +paleolimnologist,paleolimnologists +paleolith,paleoliths +paleologism,paleologisms +paleomagnetician,paleomagneticians +paleomagnetist,paleomagnetists +paleomagnetosphere,paleomagnetospheres +paleome,paleomes +paleontologist,paleontologists +paleopalynologist,paleopalynologists +paleopathologist,paleopathologists +paleopedologist,paleopedologists +paleophyte,paleophytes +paleophytologist,paleophytologists +paleopolyploidization,paleopolyploidizations +paleorecord,paleorecords +paleoscience,paleosciences +paleoseismicity,paleoseismicities +paleoseismologist,paleoseismologists +paleosoil,paleosoils +paleosol,paleosols +paleostriatum,paleostriata +paleotemperature,paleotemperatures +paleothere,paleotheres +paleothermometer,paleothermometers +paleotype,paleotypes +paleozoologist,paleozoologists +pale,pales +Palestinean,Palestineans +Palestinian,Palestinians +palestra,palestras,palestrae +paleta,paletas +paletot,paletots +paletΓ΄t,paletΓ΄ts +palet,palets +palette knife,palette knives +palette,palettes +palette swap,palette swaps +palette window,palette windows +palfrey,palfreys +palgrave,palgraves +palicid,palicids +paliette,paliettes +paliguanid,paliguanids +palillogy,palillogies +palilogy,palilogies +palimpsest,palimpsests +palindrome,palindromes +palindromist,palindromists +palindromization,palindromizations +palingenesis,palingeneses +paling,palings +Palinista,Palinistas +palinode,palinodes +palinody,palinodies +palinurid,palinurids +palisade,palisades +palisading,palisadings +palisadoderm,palisadoderms +palisado,palisadoes +palkee,palkees +palki,palkis +palladacycle,palladacycles +palladate,palladates +palladation,palladations +palladium,palladia +palladobismutharsenide,palladobismutharsenides +pallah,pallahs +palla,pallae +Pallas cat,Pallas cats +Pallas' cat,Pallas' cats +pallasite,pallasites +Pallas's cat,Pallas's cats +pallbearer,pallbearers +palletizer,palletizers +pallet jack,pallet jacks +pallet,pallets +pallet,pallets +pallet,pallets +pallet,pallets +pallette,pallettes +pallet truck,pallet trucks +palliament,palliaments +palliard,palliards +palliasse,palliasses +palliation,palliations +palliative,palliatives +pallidum,pallida +pallisander,pallisanders +pallium,pallia,palliums +pallophotophone,pallophotophones +pallopterid,pallopterids +pallor,pallors +Pallottine,Pallottines +pall,palls +pally,pallies +palmacite,palmacites +palmarium,palmaria +palmate,palmates +palm card,palm cards +palmchat,palmchats +palm cockatoo,palm cockatoos +palmcorder,palmcorders +palmcrist,palmcrists +palmer,palmers +palmer,palmers +palmerworm,palmerworms +palmette,palmettes +palmetto bug,palmetto bugs +palmetto,palmettos +palmful,palmfuls,palmsful +palmier,palmiers +palmiped,palmipeds +palmister,palmisters +palmist,palmists +palmita,palmitas +palmitate,palmitates +palmitoleic acid,palmitoleic acids +palmitotransferase,palmitotransferases +palmitoylation,palmitoylations +palmitoyl,palmitoyls +palmitoyltransferase,palmitoyltransferases +palmityl,palmityls +palm nut,palm nuts +palm oil,palm oils +palm,palms +palm,palms +palm print,palm prints +palmprint,palmprints +Palm Sunday,Palm Sundays +palm thief,palm thieves +palmtop,palmtops +palm tree,palm trees +palm-tree,palm-trees +palmyra,palmyras +palochka,palochkas +palomino,palominos +palone,palones +palooka,palookas +palooza,paloozas +palorchestid,palorchestids +palo verde,palo verdes +paloverde,paloverdes +pal,pals +PAL,PALs +palpation,palpations +palpator,palpators +palpebral fissure,palpebral fissures +palpebra,palpebrae +palpicorn,palpicorns +palpifer,palpifers +palpiger,palpigers +palpigrade,palpigrades +palpimanid,palpimanids +palpitation,palpitations +palpocil,palpocils +palpometer,palpometers +palp,palps +palpus,palpi +palsa,palsas +palsey,palseys +palsgrave,palsgraves +palsgravine,palsgravines +palstave,palstaves +palster,palsters +palsy,palsies +palterer,palterers +paltering,palterings +paltock,paltocks +paludament,paludaments +paludamentum,paladumenta +paludina,paludinas,paludinae +paludomid,paludomids +palule,palules +palulus,paluli +palus,pali +palus,paludes +palynivore,palynivores +palynofacy,palynofacies +palynoflora,palynofloras +palynologist,palynologists +palynomorph,palynomorphs +pament,paments +pamidronate,pamidronates +Pamir,Pamirs +pamoate,pamoates +pam,pams +Pampangan,Pampangans +pampano,pampanos +pampa,pampas +pampas deer,pampas deer +pampatheriid,pampatheriids +pamperer,pamperers +pampero,pamperos +Pampero,Pamperos +pamphilid,pamphilids +pamphiliid,pamphiliids +pamphleteer,pamphleteers +pamphlet,pamphlets +Pamplonan,Pamplonans +pampootie,pampooties +pampre,pampres +panacea,panaceas,panaceΓ¦ +panada,panadas +panade,panades +Panama hat palm,Panama hat palms +Panama hat,Panama hats +Panamanian,Panamanians +Panama,Panamas +pan and scan,pan and scans +panarchy,panarchies +panarthropod,panarthropods +panary,panaries +panatela,panatelas +panatella,panatellas +pan bagnat,pan bagnats +pancake landing,pancake landings +pancake,pancakes +pancake syrup,pancake syrups +pancake tortoise,pancake tortoises +pancarte,pancartes +pance,pances +panchakarma,panchakarmas +panchax,panchaxes +panchayath,panchayaths +panchayat,panchayats +Panchen Lama,Panchen Lamas +pancheon,pancheons +panchion,panchions +panch,panches +panchway,panchways +Pancoast tumor,Pancoast tumors +pancratiast,pancratiasts +pancratist,pancratists +pancreas,pancreases,pancreata +pancreatectomy,pancreatectomies +pancreatic cancer,pancreatic cancers +pancreatic juice,pancreatic juices +pancreaticoduodenectomy,pancreaticoduodenectomies +pancreaticojejunostomy,pancreaticojejunostomies +pancreatin,pancreatins +pancreatitis,pancreatitises,pancreatitides +pancreatoduodenectomy,pancreatoduodenectomies +pancreectomy,pancreectomies +pancy,pancies +pancytopenia,pancytopenias +panda bear,panda bears +panda car,panda cars +pandaemonium,pandaemonia +pandΓ¦monium,pandΓ¦monia +panda hugger,panda huggers +pandalid,pandalids +pandal,pandals +pandanus,pandanuses +panda,pandas +pandar,pandars +pandect,pandects +pandeid,pandeids +pandeiro,pandeiros +pan deism,pan deisms +pan deist,pan deists +pan-deist,pan-deists +pandeist,pandeists +Pan-Deist,Pan-Deists +PanDeist,PanDeists +pandemic,pandemics +pandemonium,pandemoniums,pandemonia +panderer,panderers +panderichthyid,panderichthyids +pander,panders +pandesal,pandesals +pandiculation,pandiculations +pandionid,pandionids +pandit,pandits +pandoor,pandoors +pandora,pandoras +Pandora's box,Pandora's boxes +pandore,pandores +pandorid,pandorids +pandoura,pandouras +pandour,pandours +pandowdy,pandowdies +pandura,panduras +pandybat,pandybats +pandy,pandies +paneer,paneers +panegyrick,panegyricks +panegyric,panegyrics +panegyrist,panegyrists +panegyry,panegyries +panelboard,panelboards +panel discussion,panel discussions +panelist,panelists +panellist,panellists +panel,panels +panel pin,panel pins +panel saw,panel saws +panel van,panel vans +panelvan,panelvans +pan-en-deist,pan-en-deists +panendeist,panendeists +pan-en-theist,pan-en-theists +panentheist,panentheists +Pan-en-theist,Pan-en-theists +PanenTheist,PanenTheists +pane,panes +panettone,panettones +panexperientialist,panexperientialists +panfish,panfishes,panfish +pan flute,pan flutes +panflute,panflutes +pan former,pan formers +panful,panfuls,pansful +pangamic acid,pangamic acids +panga,pangas +panga,pangas +panga,pangas +pangasiid,pangasiids +pangasius,pangasia +pangene,pangenes +pangenesis,pangeneses +pangenome,pangenomes +pang of conscience,pangs of conscience +pangolin,pangolins +pang,pangs +pangram,pangrams +pangulu,pangulus +panhandle,panhandles +panhandler,panhandlers +panharmonicon,panharmonicons +Panhellenist,Panhellenists +Panhellenium,Panhellenia +panhysterectomy,panhysterectomies +panic attack,panic attacks +panic button,panic buttons +panic disorder,panic disorders +panicker,panickers +panick,panicks +panicle,panicles +panic,panics +panic rev,panic revs +panic room,panic rooms +panic snap,panic snaps +panicum,panicums +panier,paniers +panim,panims +panini,paninis +paniolo,paniolos +panipuri,panipuris +panisidine,panisidines +Panjabi,Panjabis +panjandrum,panjandrums +pan-loaf,pan-loaves +pan man,pan men +pannade,pannades +pannecrosis,pannecroses +pannekoek,pannekoeken +pannel,pannels +panne,pannes +panner,panners +pannexin,pannexins +pannicle,pannicles +pannier,panniers +pannikel,pannikels +pannikin,pannikins +Pannonian,Pannonians +pannoniasaur,pannoniasaurs +pannus,panni +panocracy,panocracies +pano,panos +panopeid,panopeids +panoply,panoplies +panopticon,panopticons +panorama,panoramas,panoramata +panoramic,panoramics +panorpid,panorpids +panorpodid,panorpodids +panorpoid,panorpoids +panose,panoses +pan,pans +pan,pans +panpharmacon,panpharmacons +panphiliac,panphiliacs +panpipe,panpipes +panpipes,panpipes +pan pot,pan pots +panpot,panpots +Pansclavist,Pansclavists +pansexual,pansexuals +panshon,panshons +panshway,panshways +Panslavist,Panslavists +panspermatist,panspermatists +panspermist,panspermists +pansphygmograph,pansphygmographs +panstereorama,panstereoramas +pansy,pansies +pantable,pantables +pantagraph,pantagraphs +pantalet,pantalets +pantaloon,pantaloons +Pantanal cat,Pantanal cats +pantascope,pantascopes +pantechnicon,pantechnicons +pantech,pantechs +pantelegraph,pantelegraphs +panter,panters +panter,panters +panter,panters +pantheid,pantheids +pan theism,pan theisms +pan-theism,pan-theisms +pantheism,pantheisms +pan theist,pan theists +pan-theist,pan-theists +pantheist,pantheists +Pan-Theist,Pan-Theists +pantheologist,pantheologists +pantheology,pantheologies +pantheonization,pantheonizations +pantheon,pantheons,panthea +panther cap,panther caps +pantheress,pantheresses +pantherid,pantherids +pantherine,pantherines +panther,panthers +Panther,Panthers +pantie,panties +pantile,pantiles +pantiliner,pantiliners +pantisocracy,pantisocracies +pantisocratist,pantisocratists +pantisocrat,pantisocrats +pant leg,pant legs +pantleg,pantlegs +pantler,pantlers +pantmaker,pantmakers +pantoate,pantoates +pantoble,pantobles +pantocracy,pantocracies +pantodontid,pantodontids +pantodont,pantodonts +pantoffle,pantoffles +pantofle,pantofles +pantographer,pantographers +pantograph,pantographs +pantolestid,pantolestids +pantolest,pantolests +pantologist,pantologists +pantometer,pantometers +pantomime horse,pantomime horses +pantomime,pantomimes +pantomimist,pantomimists +panton,pantons +panto,pantos +pantophagist,pantophagists +pantophthalmid,pantophthalmids +pantopod,pantopods +pantothenate,pantothenates +pantoum,pantoums +pant,pants +pant,pants +pant,pants +pantryman,pantrymen +pantry,pantries +pant suit,pant suits +pantsuit,pantsuits +Pan-Turkist,Pan-Turkists +panty girdle,panty girdles +pantygirdle,pantygirdles +pantylid,pantylids +pantyliner,pantyliners +panty,panties +panty raid,panty raids +pantywaist,pantywaists +panucho,panuchos +panurid,panurids +panvitalist,panvitalists +panyard,panyards +panym,panyms +panzarotti,panzarotti,panzarotties +Panzerfaust,Panzerfausts +panzer,panzers +Panzer,Panzers +Panzerschrek,Panzerschreks +panzoist,panzoists +paolo,paoli +papabile,papabiles,papabili +papabote,papabotes +papacy,papacies +papadam,papadams +papadom,papadoms +papad,papads +papadum,papadums +papagay,papagays +papain,papains +papalagi,papalagis,papalagi +papal bull,papal bulls +papalist,papalists +papalty,papalties +papa,papas +paparazzo,paparazzi,paparazzos +pa,pas +pa,pas +papaver,papavers +papaw,papaws +papaw,papaws +papaya,papayas +papboat,papboats +papejay,papejays +Pape,Papes +paper aeroplane,paper aeroplanes +paper airplane,paper airplanes +paperbacker,paperbackers +paperback,paperbacks +paper ballot,paper ballots +paperbark,paperbarks +paper birch,paper birches +paper board,paper boards +paperboard,paperboards +paperboy,paperboys +paper candidate,paper candidates +paperchase,paperchases +paper clip,paper clips +paperclip,paperclips +paper cut,paper cuts +papercut,papercuts +paperer,paperers +paper fight,paper fights +paper flower,paper flowers +paperflower,paperflowers +papergirl,papergirls +paperhanger,paperhangers +paperhanging,paperhangings +paper hat,paper hats +paper jam,paper jams +paper-knife,paper-knives +paperknife,paperknives +paperless office,paperless offices +papermaker,papermakers +paperman,papermen +paper mill,paper mills +papermill,papermills +paper mulberry,paper mulberries +paper nautilus,paper nautiluses,paper nautili +paperphile,paperphiles +paper plane,paper planes +paper profit,paper profits +paper-pusher,paper-pushers +paper shop,paper shops +paper snowflake,paper snowflakes +paper ticket,paper tickets +paper tiger,paper tigers +paper towel,paper towels +paper trail,paper trails +paperweight,paperweights +paperwhite,paperwhites +paperwoman,paperwomen +papess,papesses +papeterie,papeteries +Paphian,Paphians +paphiopedilum,paphiopedilums +papilionid,papilionids +papilionoid,papilionoids +papilla,papillae +papillectomy,papillectomies +papilledema,papilledemas +papilloedema,papilloedemas +papillΕ“dema,papillΕ“demas,papillΕ“demata +papilloma,papillomas,papillomata +papillomatosis,papillomatoses +papillomavirus,papillomaviruses +papillon,papillons +papillote,papillotes +papionine,papionines +papion,papions +papish,papishes +papist,papists +papodum,papodums +papoose,papooses +papovavirus,papoviruses +pappadam,pappadams +pappadom,pappadoms +pappad,pappads +pappadum,pappadums +pap,paps +pap,paps +pap,paps +PAP,PAPs +pappaw,pappaws +papponymic,papponymics +pappoose,pappooses +pappus,pappuses,pappi +pappy,pappies +Pap smear,Pap smears +Pap test,Pap tests +Papua New Guinean,Papua New Guineans +Papuan,Papuans +papula,papulae +papule,papules +papyrograph,papyrographs +papyrologist,papyrologists +paquebot,paquebots +parabasalid,parabasalids +parabasis,parabases +paraben,parabens +parabiont,parabionts +parabiosis,parabioses +parablast,parablasts +parable,parables +parablepsy,parablepsia +parabola,parabolas,parabolae,parabolΓ¦ +parabolic,parabolics +parabolism,parabolisms +parabolist,parabolists +paraboloid,paraboloids +paraboson,parabosons +parabronchium,parabronchia +parabrotulid,parabrotulids +paracalanid,paracalanids +paracalliopiid,paracalliopiids +paracaspase,paracaspases +Paracelsian,Paracelsians +Paracelsist,Paracelsists +paraceltitid,paraceltitids +paracentesis,paracenteses +paracentric,paracentrics +parachordal,parachordals +parachronism,parachronisms +parachurch,parachurches +parachute flare,parachute flares +parachute,parachutes +parachuter,parachuters +parachutist,parachutists +paracingulate cortex,paracingulate cortexes,paracingulate cortices +paraclade,paraclades +paraclete,paracletes +paraclone,paraclones +paraclose,paracloses +paracme,paracmes +paraconductivity,paraconductivities +paracone,paracones +paraconid,paraconids +paraconsistent logic,paraconsistent logics +paracord,paracords +paracorolla,paracorollas,paracorollae +paracosmos,paracosmoses +paracosm,paracosms +paracrostic,paracrostics +paracrystal,paracrystals +paracusis,paracuses +paracyclophane,paracyclophanes +paradactylum,paradactyla +paradegoer,paradegoers +parade ground,parade grounds +paradelle,paradelles +parade of horribles,parades of horribles +parade,parades +parader,paraders +Paradesi,Paradesis +paradiastole,paradiastoles +paradiddle-diddle,paradiddle-diddles +paradiddle,paradiddles +paradigma,paradigmata +paradigmaticism,paradigmaticisms +paradigmatic,paradigmatics +paradigm,paradigms +paradigm shift,paradigm shifts +paradiorthosis,paradiorthoses +paradisaeid,paradisaeids +paradise,paradises +paradise parrot,paradise parrots +paradoctor,paradoctors +paradoxer,paradoxers +paradoxical frog,paradoxical frogs +paradoxical rage reaction,paradoxical rage reactions +paradoxidid,paradoxidids +paradoxid,paradoxids +paradoxist,paradoxists +paradoxornithid,paradoxornithids +paradoxosomatid,paradoxosomatids +paradox,paradoxes +paradoxure,paradoxures +parΓ¦sthesis,parΓ¦stheses +paraexciton,paraexcitons +parafermion,parafermions +paraffine,paraffines +paraffinoma,paraffinomas,paraffinomata +paraffin,paraffins +parafoil,parafoils +paraformer,paraformers +paraganglioma,paragangliomas,paragangliomata +paraganglion,paraganglia +paragastrioceratid,paragastrioceratids +paragenesis,parageneses +paraglider,paragliders +paraglossa,paraglossas,paraglossae +paraglottic space,paraglottic spaces +paragnath,paragnaths +paragnathus,paragnathi +paragneiss,paragneisses +paragon,paragons +paragrammatist,paragrammatists +paragramme,paragrammes +paragram,paragrams +paragrandine,paragrandines +paragrapher,paragraphers +paragraphist,paragraphists +paragraph mark,paragraph marks +paragraph,paragraphs +paragrele,paragreles +paragroup,paragroups +Paraguayan,Paraguayans +parahippocampal gyrus,parahippocampal gyri,parahippocampal gyruses +parahoplitid,parahoplitids +parahuman,parahumans +paraiba tourmaline,paraiba tourmalines +parainfection,parainfections +parainfluenza,parainfluenzas +parainfluenzavirus,parainfluenzaviruses +parakeet,parakeets +parakeratosis,parakeratoses +paralarva,paralarvae +paralbumin,paralbumins +paralectotype,paralectotypes +paralegal,paralegals +paraleipsis,paraleipses +paralepidid,paralepidids +paralepsis,paralepses +paralian,paralians +paralichthyid,paralichthyids +paralipomenon,paralipomenons +paralipsis,paralipses +parallax,parallaxes +parallax second,parallax seconds +parallel circuit,parallel circuits +parallel citation,parallel citations +parallelepiped,parallelepipeds +parallel gill trama,parallel gill tramas +parallel import,parallel imports +parallelisation,parallelisations +parallelism,parallelisms +parallelization,parallelizations +parallel key,parallel keys +parallelodontid,parallelodontids +parallelogramme,parallelogrammes +parallelogram of forces,parallelograms of forces +parallelogram,parallelograms +parallelopipedon,parallelopipedons +parallelopiped,parallelopipeds +parallelotope,parallelotopes +parallel,parallels +parallel parking,parallel parkings +parallel port,parallel ports +parallel text,parallel texts +parallel universe,parallel universes +parallel world,parallel worlds +paralogism,paralogisms +paralogon,paralogons +paralog,paralogs +paralogue,paralogues +paraloph,paralophs +paralophule,paralophules +Paralympian,Paralympians +paralysant,paralysants +paralyser,paralysers +paralysis,paralyses +paralytick,paralyticks +paralytic,paralytics +paralyzer,paralyzers +paralyzis,paralyzes +paramagnet,paramagnets +paramagnon,paramagnons +paramaniac,paramaniacs +paramania,paramanias +paramecium,paramecia,parameciums +paramedicine,paramedicines +paramedic,paramedics +paramegistid,paramegistids +paramelitid,paramelitids +parament,paraments +paramere,parameres +paramesonephric duct,paramesonephric ducts +parameterisation,parameterisations +parameter,parameters +parametre,parametres +parametric amplifier,parametric amplifiers +parametric array,parametric arrays +parametric equation,parametric equations +parametric polymorphism,parametric polymorphisms +parametrisation,parametrisations +parametrium,parametria +parametrization,parametrizations +paramilitary,paramilitaries +paramiographer,paramiographers +paramita,paramitas +paramitome,paramitomes +paramoecium,paramoeciums,paramoecia +paramolybdate,paramolybdates +paramo,paramos +paramorphism,paramorphisms +paramorph,paramorphs +paramosol,paramosols +paramotor,paramotors +paramour,paramours +param,params +paramukta,paramuktas +paramutation,paramutations +paramylon,paramylons +paramythiid,paramythiids +paramyxovirus,paramyxoviruses +paranasal sinus,paranasal sinuses +paranda,parandas +paraneopteran,paraneopterans +parang,parangs +parang,parangs +paranΕ“ac,paranΕ“acs +paranΕ“ic,paranΕ“ics +paranoiac,paranoiacs +paranoia,paranoias +paranoid,paranoids +paranoid personality disorder,paranoid personality disorders +paranomia,paranomias +paranormalist,paranormalists +paranuchal,paranuchals +paranucleus,paranuclei +ParΓ‘ nut,ParΓ‘ nuts +paranymph,paranymphs +paraoptometric,paraoptometrics +paraoxonase,paraoxonases +parapagurid,parapagurids +para,paras +para,paras +para,paras +para,paras +paraparticle,paraparticles +parapegma,parapegmas,parapegmata +parapegm,parapegms +parapeptone,parapeptones +parapet,parapets +paraphasia,paraphasias +paraphenylenediamine,paraphenylenediamines +paraphilia,paraphilias,paraphiliae +paraphilic,paraphilics +paraphillia,paraphillias +paraphily,paraphilies +paraphimosis,paraphimoses +paraph,paraphs +paraphragma,paraphragmata +paraphrase,paraphrases +paraphraser,paraphrasers +paraphrast,paraphrasts +paraphyllum,paraphylla +paraphylum,paraphyla +paraphysis,paraphyses +parapithecid,parapithecids +paraplanner,paraplanners +paraplegic,paraplegics +parapleura,parapleurae +parapodium,parapodia +parapophysis,parapophyses +parapoxvirus,parapoxviruses +parapraxia,parapraxias +parapraxis,parapraxes +paraprofessional,paraprofessionals +paraprosdokian,paraprosdokians +paraprotaspis,paraprotaspides +paraproteinemia,paraproteinemias +paraprotein,paraproteins +parapsychologist,parapsychologists +parapterum,paraptera +paraquet,paraquets +paraquito,paraquitos,paraquitoes +pararescueman,pararescuemen +pararetrovirus,pararetroviruses +pararhyme,pararhymes +ParΓ‘ rubber tree,ParΓ‘ rubber trees +parasailer,parasailers +parasailor,parasailors +parasail,parasails +parasang,parasangs +parasaurolophus,parasaurolophuses +parascenium,parascenia +Parasceve,Parasceves +parascientist,parascientists +parascylliid,parascylliids +parasegment,parasegments +paraselene,paraselenes,paraselenae +parasequence,parasequences +parasitation,parasitations +parasitemia,parasitemias +parasite,parasites +parasitic element,parasitic elements +parasitic gap,parasitic gaps +parasiticide,parasiticides +parasitic,parasitics +parasitid,parasitids +parasitisation,parasitisations +parasitization,parasitizations +parasitoid,parasitoids +parasitologist,parasitologists +parasitosis,parasitoses +parasolette,parasolettes +parasol,parasols +parasol tree,parasol trees +parasomniac,parasomniacs +parasomnia,parasomnias +parasphenoid,parasphenoids +parasporal body,parasporal bodies +paraspurrite,paraspurrites +parasquillid,parasquillids +parastacid,parastacids +parastatal,parastatals +parastate,parastates +parastenocaridid,parastenocaridids +parastichy,parastichies +parastyle,parastyles +parasubiculum,parasubicula +parasubstitution,parasubstitutions +parasuchid,parasuchids +parasuicide,parasuicides +parasympatholytic,parasympatholytics +parasympathomimetic,parasympathomimetics +parasynonym,parasynonyms +parasynthesis,parasyntheses +paratacamite,paratacamites +paratext,paratexts +paratha,parathas +parathelphusid,parathelphusids +parathesis,paratheses +parathormone,parathormones +parathyroidectomy,parathyroidectomies +parathyroid gland,parathyroid glands +parathyroid hormone,parathyroid hormones +parathyroid,parathyroids +paratope,paratopes +paratrooper,paratroopers +paratroop,paratroops +paratropidid,paratropidids +paratungstate,paratungstates +paratype,paratypes +parauque,parauques +paraurethral gland,paraurethral glands +paravane,paravanes +paravector,paravectors +paravent,paravents +paraventral,paraventrals +paravirtualisation,paravirtualisations +paravirtualization,paravirtualizations +parawai,parawais +parazoan,parazoans +parazoanthid,parazoanthids +parbreak,parbreaks +parbuckle,parbuckles +parcel bomb,parcel bombs +parcellation,parcellations +parcelling,parcellings +parcel,parcels +parcel-poet,parcel-poets +parcel post,parcel posts +parcenary,parcenaries +parcener,parceners +parc fermΓ©,parcs fermΓ©s +parchment,parchments +parch,parches +parclo,parclos +parclose,parcloses +parcourse,parcourses +parc,parcs +pardale,pardales +pardaliscid,pardaliscids +pardalote,pardalotes +pardal,pardals +pardaxin,pardaxins +pardner,pardners +pardoner,pardoners +pardon,pardons +pardo,pardos,pardoes +pard,pards +pard,pards +paregmenon,paregmenons +paregorick,paregoricks +paregoric,paregorics +pareiasaurid,pareiasaurids +parelius,parelii +parembole,paremboles +paremiologist,paremiologists +paren,parens +parentage,parentages +parental home,parental homes +parental leave,parental leaves +parental,parentals +parentation,parentations +parent company,parent companies +parent compound,parent compounds +parenthesis,parentheses +parenthesization,parenthesizations +parenthesome,parenthesomes +parenthetical,parentheticals +parent-in-law,parents-in-law +parent nuclide,parent nuclides +parent,parents +pareo,pareos +parergon,parergons +parergy,parergies +parer,parers +paresis,pareses +parethmoid,parethmoids +Pareto distribution,Pareto distributions +Pareto improvement,Pareto improvements +Pareto-improvement,Pareto-improvements +parfait,parfaits +parfleche,parfleches +parfumier,parfumiers +parge coat,parge coats +parge,parges +pargeter,pargeters +parget,pargets +parhelic circle,parhelic circles +parhelion,parhelia,parhelions +parhelium,parheliums,parhelia +parholaspidid,parholaspidids +pariah dog,pariah dogs +pariah kite,pariah kites +pariah,pariahs +Parian,Parians +parid,parids +paries,parietes +parietal bone,parietal bones +parietal cell,parietal cells +parietal lobe,parietal lobes +parietal,parietals +parietary,parietaries +parietine,parietines +pari-mutuel,pari-mutuels +parinaric acid,parinaric acids +paring knife,paring knives +paring,parings +Paris-Brest,Paris-Brests +parish assembly,parish assemblies +parishen,parishens +parish house,parish houses +parishioner,parishioners +parish,parishes +Parisian,Parisians +Parisienne,Parisiennes +parisienne scoop,parisienne scoops +parison,parisons +paritor,paritors +parity bit,parity bits +parity,parities +parkade,parkades +parka,parkas +Parker House roll,Parker House rolls +parker,parkers +Parker,Parkers +parkette,parkettes +parkgoer,parkgoers +parkie,parkies +parking brake,parking brakes +parking disc,parking discs +parking garage,parking garages +parking lot,parking lots +parking meter,parking meters +parking space,parking spaces +parking ticket,parking tickets +parking violation,parking violations +parkinsonian,parkinsonians +Parkinsonian,Parkinsonians +parkkeeper,parkkeepers +parkland,parklands +parklet,parklets +park light,park lights +park,parks +parkway,parkways +parlance,parlances +parlando,parlandos +parlay,parlays +parle,parles +parleyer,parleyers +parley,parleys +parleyvoo,parleyvoos +parliamentarian,parliamentarians +parliament,parliaments +parlor game,parlor games +parlor-game,parlor-games +parlormaid,parlormaids +parlor,parlors +parlour game,parlour games +parlour-game,parlour-games +parlourmaid,parlourmaids +parlour,parlours +parlour skate,parlour skates +parmacellid,parmacellids +parmacetty,parmacetties +parmacety,parmaceties +parma,parmae +parma wallaby,parma wallabies +Parmesan,Parmesans +parmo,parmos +parnassian,parnassians +Parnassian,Parnassians +parnassia,parnassias +parochialism,parochialisms +parochial school,parochial schools +parochial vicar,parochial vicars +parochian,parochians +parodist,parodists +parodontid,parodontids +parody,parodies +parΕ“miographer,parΕ“miographers +parole board,parole boards +parolee,parolees +parole officer,parole officers +parol,parols +parol,parols +paronomasiac,paronomasiacs +paronomasia,paronomasias +paronomasy,paronomasies +paronychia,paronychias,paronychiae +paronychium,paronychia +paronym,paronyms +paronymy,paronymies +paroquet,paroquets +parosmia,parosmias +parostosis,parostoses +parotidectomy,parotidectomies +parotid gland,parotid glands +parotid,parotids +parotitis,parotitides +parotoid gland,parotoid glands +parotoid,parotoids +parovarium,parovaria +paroxysmal trepidant abasia,paroxysmal trepidant abasias +paroxysm,paroxysms +paroxytone,paroxytones +par,pars +parping,parpings +parp,parps +parquet,parquets +parquette,parquettes +parrakeet,parrakeets +parral,parrals +parraqua,parraquas +parrel,parrels +parricide,parricides +parrilla,parrillas +parrock,parrocks +parrot and monkey time,parrot and monkey times +parrotbill,parrotbills +parrot cry,parrot cries +parrot disease,parrot diseases +parroter,parroters +parrotfeather,parrotfeathers +parrotfinch,parrotfinches +parrotfish,parrotfish,parrotfishes +parrothouse,parrothouses +parroting,parrotings +parrotlet,parrotlets +parrot,parrots +parrot snake,parrot snakes +parrying dagger,parrying daggers +parry,parries +parsa,parsas +pars distalis,partes distales +parsec,parsecs +Parsee,Parsees +parse,parses +parser,parsers +parsing,parsings +Parsi,Parsis +parsley frog,parsley frogs +parsnip,parsnips +parsonage,parsonages +parson bird,parson birds +parson,parsons +parson's nose,parson's noses,parsons' noses +partaga,partagas +partage,partages +partaker,partakers +partan,partans +partay,partays +parter,parters +parter,parters +parterre,parterres +partheniad,partheniads +parthenium,partheniums +parthenogen,parthenogens +parthenopid,parthenopids +parthenote,parthenotes +Parthian,Parthians +partial autocorrelation,partial autocorrelations +partial-birth abortion,partial-birth abortions +partial charge,partial charges +partial cloverleaf interchange,partial cloverleaf interchanges +partial dependency,partial dependencies +partial derivative,partial derivatives +partial differential equation,partial differential equations +partial false friend,partial false friends +partial fraction,partial fractions +partial function,partial functions +partialism,partialisms +partialist,partialists +partiality,partialities +partially ordered set,partially ordered sets +partial ordering relation,partial ordering relations +partial order,partial orders +partial,partials +partial pin,partial pins +partial pressure,partial pressures +partial vacuum,partial vacuums +partial veil,partial veils +participant,participants +participation,participations +participator,participators +participatory democracy,participatory democracies +participial adjective,participial adjectives +participial,participials +participle,participles +particle accelerator,particle accelerators +particle beam,particle beams +particle board,particle boards +particle energy,particle energies +particle horizon,particle horizons +particle,particles +particle zoo,particle zoos +particracy,particracies +particular Church,particular Churches +particular integral,particular integrals +particularisation,particularisations +particularist,particularists +particularization,particularizations +particularizer,particularizers +particularment,particularments +particular,particulars +particulate,particulates +partier,partiers +parting gift,parting gifts +parting,partings +parting shot,parting shots +parti,partis +parti pris,partis pris +partisan,partisans +partisan,partisans +partita,partitas +partition coefficient,partition coefficients +partitioner,partitioners +partitioning,partitionings +partitionist,partitionists +partitionment,partitionments +partition of unity,partitions of unity +partition,partitions +partitive case,partitive cases +partitive,partitives +partitocracy,partitocracies +partizan,partizans +partlet,partlets +partlet,partlets +partner in crime,partners in crime +partner,partners +partnership,partnerships +partocracy,partocracies +partocrat,partocrats +part of speech,parts of speech +partogram,partograms +parton,partons +part,parts +partridge berry,partridge berries +partridgeberry,partridgeberries +partridge,partridges,partridge +partscore,partscores +parts interpreter,parts interpreters +part song,part songs +part-song,part-songs +part-time bowler,part-time bowlers +part-timer,part-timers +partulid,partulids +parturient,parturients +parturifacient,parturifacients +parturition,parturitions +partword,partwords +partwork,partworks +party and party costs,party and party costs +party animal,party animals +party bag,party bags +party bus,party buses +party dress,party dresses +partyer,partyers +party favor,party favors +party game,party games +party girl,party girls +partygoer,partygoers +party hat,party hats +party horn,party horns +party line,party lines +partymeister,partymeisters +party of the first part,parties of the first part +party of the second part,parties of the second part +party,parties +party pastie,party pasties +party pie,party pies +party political broadcast,party political broadcasts +party pooper,party poopers +party-pooper,party-poopers +party puffer,party puffers +party sausage roll,party sausage rolls +party school,party schools +party state,party states +party tray,party trays +party wall,party walls +party whip,party whips +parula,parulas +parulid,parulids +parure,parures +par value,par values +parvclass,parvclasses +parvenu,parvenus +parvise,parvises +parvis,parvises +parvorder,parvorders +parvovirus,parvoviruses +par yield,par yields +Pasadenan,Pasadenans +pasan,pasans +Pascalian,Pascalians +pascal,pascals +paschal candle,paschal candles +paschal lamb,paschal lambs +Paschal Lamb,Paschal Lambs +Paschal troparion,Paschal troparia +Pascha,Paschas +Pasch,Paschs +pas de deux,pas de deux +pas-de-deux,pas-de-deux +paseng,pasengs +paseo,paseos +PASGT,PASGTs +pashalic,pashalics +pashalik,pashaliks +pasha,pashas +pashaw,pashaws +pasher,pashers +pashmina,pashminas +pash,pashes +pash,pashes +Pashtunist,Pashtunists +Pashtun,Pashtuns +pasilaly,pasilalies +pasilla,pasillas +pasiphaeid,pasiphaeids +paskha,paskhas +paso doble,paso dobles +Paso,Pasos +paspalum,paspalums +pas,pas +paspy,paspies +pasque flower,pasque flowers +pasqueflower,pasqueflowers +pasquil,pasquils +pasquinade,pasquinades +pasquin,pasquins +passacaglia,passacaglias +passade,passades +passado,passados,passadoes +passage maker,passage makers +passagemaker,passagemakers +passage migrant,passage migrants +passage,passages +passage,passages +passager,passagers +passageway,passageways +passalid,passalids +Passamaquoddy,Passamaquoddies +passandrid,passandrids +passband,passbands +passbook,passbooks +passcard,passcards +passcode,passcodes +passed ball,passed balls +passed pawn,passed pawns +passegarde,passegardes +passel,passels +passementerie,passementeries +passement,passements +passenger car,passenger cars +passenger kilometer,passenger kilometers +passenger liner,passenger liners +passenger mile,passenger miles +passenger,passengers +passenger pigeon,passenger pigeons +passenger ship,passenger ships +passenger train,passenger trains +passe-partout,passe-partouts +passΓ©,passΓ©s +passepied,passepieds +passer-by,passers-by +passerby,passersby +passerid,passerids +passerine,passerines +passeroid,passeroids +passer,passers +passibility,passibilities +passiflora,passifloras +passing bell,passing bells +passing tone,passing tones +passional,passionals +passionary,passionaries +passionate,passionates +Passion flower,Passion +passionflower,passionflowers +Passionist,Passionists +passion pit,passion pits +passion play,passion plays +Passion Sunday,Passion Sundays +Passiontide,Passiontides +passivation,passivations +passive armour,passive armours +passive immunity,passive immunities +passive investor,passive investors +passive matrix,passive matrices +passive,passives +passive vocabulary,passive vocabularies +passivisation,passivisations +passivization,passivizations +passivizer,passivizers +passkey,passkeys +passman,passmen +passometer,passometers +pass-out,pass-outs +pass-parole,pass-paroles +pass,passes +pass,passes +passphrase,passphrases +passport,passports +passroll,passrolls +pass through,pass throughs +passus,passuses +passw0rd,passw0rds +passway,passways +password,passwords +passymeasure,passymeasures +Pastafarian,Pastafarians +pastance,pastances +pasta sauce,pasta sauces +pastedown,pastedowns +paste egg,paste eggs +paste-egg,paste-eggs +pastegh,pasteghs +pastel de nata,pastΓ©is de natas +pastelist,pastelists +pastellist,pastellists +pastel,pastels +pastern,pasterns +paster,pasters +pasteurellosis,pasteurelloses +pasteurizer,pasteurizers +Pasteur pipette,Pasteur pipettes +pasticcio,pasticcios +pastiche,pastiches +pasticheur,pasticheurs +pastichio,pastichios +pastie,pasties +pastie,pasties +pastiera,pastieras +pastilla,pastillas +pastillator,pastillators +pastille,pastilles +pastil,pastils +pastime,pastimes +pasting,pastings +pastis,pastises +pastitsio,pastitsios +pastizzi,pastizzi +past life,past lives +past master,past masters +past-master,past-masters +pastmaster,pastmasters +pastophorus,pastophori +pastorage,pastorages +pastoral charge,pastoral charges +pastorale,pastorales +pastoralist,pastoralists +pastoral,pastorals +pastorate,pastorates +pastoress,pastoresses +pastor,pastors +pastorpreneur,pastorpreneurs +pastorship,pastorships +pastourelle,pastourelles +pastour,pastours +past paper,past papers +past participle,past participles +past,pasts +pastry bag,pastry bags +pastrymaker,pastrymakers +pastry,pastries +pastry shop,pastry shops +past simple,past simples +past tense,past tenses +pasturage,pasturages +pastureland,pasturelands +pasture,pastures +pasturer,pasturers +pasty,pasties +pasty,pasties +PA system,PA systems +pataca,patacas +patache,pataches +patacoon,patacoons +pataecid,pataecids +patagium,patagia +Patagonian,Patagonians +Patagonian tinamou,Patagonian tinamous +Patagonian weasel,Patagonian weasels +patamar,patamars +pataphysician,pataphysicians +pataphysicist,pataphysicists +patchboard,patchboards +patchcoat,patchcoats +patcher,patchers +patch file,patch files +patchnose snake,patchnose snakes +patch panel,patch panels +patch,patches +patch,patches +patch pocket,patch pockets +patchset,patchsets +patch-up,patch-ups +patchwork,patchworks +patchwork quilt,patchwork quilts +patdown,patdowns +pΓ’tΓ© chinois,pΓ’tΓ© chinois +pΓ’tΓ© de foie gras,pΓ’tΓ©s de foie gras +patefaction,patefactions +patela,patelas +patellamide,patellamides +patella,patellas,patellae +patellar ligament,patellar ligaments +patellar reflex,patellar reflexes +patellid,patellids +patellofemoral pain syndrome,patellofemoral pain syndromes +patellula,patellulae +patena,patenas +patency,patencies +paten,patens +patentability,patentabilities +patentee,patentees +patent hammer,patent hammers +patentholder,patentholders +patent leather,patent leathers +patent log,patent logs +patent medicine,patent medicines +patent,patents +patent pool,patent pools +patent thicket,patent thickets +patent troll,patent trolls +pate,pates +pate,pates +pΓ’tΓ©,pΓ’tΓ©s +patera,paterae +paterero,patereros,patereroes +paterfamilias,paterfamiliases,patresfamilias +paternal aunt,paternal aunts +paternal cousin,paternal cousins +paternal filicide,paternal filicides +paternal grandchild,paternal grandchildren +paternal grandfather,paternal grandfathers +paternal grandmother,paternal grandmothers +paternalist,paternalists +paternal uncle,paternal uncles +paternity leave,paternity leaves +paternity suit,paternity suits +paternity test,paternity tests +paternoster,paternosters +pater,paters +Pathan,Pathans +pathbreaker,pathbreakers +path dependency,path dependencies +pather,pathers +pathetic fallacy,pathetic fallacies +pathfinder,pathfinders +pathfinder prospectus,pathfinder prospectuses +pathic,pathics +path length,path lengths +pathlength,pathlengths +pathline,pathlines +pathmaker,pathmakers +pathname,pathnames +pathoadaptation,pathoadaptations +pathoanatomist,pathoanatomists +pathobiologist,pathobiologists +pathobiont,pathobionts +pathogene,pathogenes +pathogenicity,pathogenicities +pathogen,pathogens +pathogeny,pathogenies +pathography,pathographies +pathological coupling,pathological couplings +pathologisation,pathologisations +pathologist,pathologists +pathologization,pathologizations +pathology,pathologies +pathomechanism,pathomechanisms +pathophobia,pathophobias +pathophysiologist,pathophysiologists +pathosystem,pathosystems +pathotype,pathotypes +pathovar,pathovars +path,paths +pathshala,pathshalas +pathway,pathways +pathwidth,pathwidths +pathy,pathies +patibulum,patibulums +patientive,patientives +patient,patients +patine,patines +patin,patins +patio chair,patio chairs +patio door,patio doors +patio,patios +patisserie,patisseries +pΓ’tisserie,pΓ’tisseries +patissier,patissiers +pativrata,pativratas +patois,patois +pat on the back,pats on the back +pat-on-the-back,pats-on-the-back +patootie,patooties +patoot,patoots +patooty,patooties +pat,pats +pat,pats +patress,patresses +patrial,patrials +patriarchalist,patriarchalists +patriarchate,patriarchates +Patriarchist,Patriarchists +patriarch,patriarchs +patriarchship,patriarchships +patriarchy,patriarchies +patriation,patriations +patrician,patricians +patriciate,patriciates +patricide,patricides +patriclan,patriclans +patrilineage,patrilineages +patriline,patrilines +patrimoiety,patrimoieties +patrimony,patrimonies +patriotism,patriotisms +Patriot missile,Patriot missiles +patriot,patriots +Patripassian,Patripassians +patrist,patrists +patritian,patritians +patrocination,patrocinations +patrol car,patrol cars +patrole,patroles +patroller,patrollers +patrolman,patrolmen +patrologist,patrologists +patrol,patrols +patrolperson,patrolpersons +patrolwoman,patrolwomen +patroness,patronesses +patronisation,patronisations +patroniser,patronisers +patronite,patronites +patronization,patronizations +patronizer,patronizers +patronne,patronnes +patron,patrons +patron saint,patron saints +patronymick,patronymicks +patronymic,patronymics +patronym,patronyms +patroon,patroons +pat slide,pat slides +patsy,patsies +pattemar,pattemars +patten,pattens +patteran,patteran +patterer,patterers +pattering,patterings +patternation,patternations +pattern board,pattern boards +pattern formation,pattern formations +patternicity,patternicities +patterning,patternings +pattern language,pattern languages +pattern maker,pattern makers +patternmaker,patternmakers +pattern,patterns +patter,patters +patter,patters +patter,patters +pattie,patties +patting,pattings +pattipan,pattipans +pattress,pattresses +pattycake,pattycakes +pattypan,pattypans +pattypan squash,pattypan squash +patty,patties +patulin,patulins +patupaiarehe,patupaiarehe +patwari,patwaris +patzer,patzers +paua,pauas,paua +paugie,paugies +Paul Allen's flower fly,Paul Allen's flower flies +paulchoffatiid,paulchoffatiids +pauldron,pauldrons +Paulianist,Paulianists +Paulian,Paulians +Paulician,Paulicians +Pauli matrix,Pauli matrixes,Pauli matrices +Pauline conversion, Pauline conversions +paulin,paulins +Paulist,Paulists +Pauli vector,Pauli vectors +paullone,paullones +paulownia,paulownias +paul,pauls +paul,pauls +Paultard,Paultards +paunce,paunces +paunce,paunces +paunch,paunches +paunchway,paunchways +pau,paus +pauperisation,pauperisations +pauper,paupers +paupiette,paupiettes +paurodontid,paurodontids +pauropodid,pauropodids +pauropod,pauropods +pause,pauses +Pause,Pauses +pauser,pausers +paussid,paussids +pauxi,pauxis +pavache,pavaches +pavais,pavaises +pavane,pavanes +pavee,pavees +pavement artist,pavement artists +pavement cell,pavement cells +pavement princess,pavement princesses +pavΓ©,pavΓ©s +paver,pavers +pavesade,pavesades +pavese,paveses +pavesse,pavesses +paviage,paviages +pavier,paviers +pavilion,pavilions +pavillion,pavillions +pavior,paviors +paviour,paviours +pavisade,pavisades +pavise,pavises +pavisor,pavisors +pavis,pavises +pavlova,pavlovas +pavone,pavones +pavonne,pavonnes +pavon,pavons +pav,pavs +pav,pavs +pav,pavs +pawful,pawfuls,pawsful +pawk,pawks +pawl,pawls +pawnbroker,pawnbrokers +pawn chain,pawn chains +Pawnee,Pawnee +pawnee,pawnees +pawner,pawners +pawn island,pawn islands +pawnor,pawnors +pawn,pawns +pawn,pawns +pawn race,pawn races +pawnshop,pawnshops +pawn storm,pawn storms +pawpaw,pawpaws +pawpaw,pawpaws +paw,paws +paw,paws +pawprint,pawprints +pawty,pawtys,pawties +paxillus,paxilli +pax,pax +payada,payadas +payara,payaras,payara +paybook,paybooks +pay check,pay checks +paycheck,paychecks +pay cheque,pay cheques +paycheque,paycheques +paycock,paycocks +payday loan,payday loans +pay day,pay days +payday,paydays +paydirt,paydirts +payee,payees +payen,payens +payer,payers +payess,payesses +pay grade,pay grades +paygrade,paygrades +Paykan,Paykans +payloader,payloaders +payload,payloads +paymaster,paymasters +payment card,payment cards +payment schedule,payment schedules +payment service,payment services +paynim,paynims +paynym,paynyms +payoff function,payoff functions +pay-off,pay-offs +payoff,payoffs +payor,payors +payout,payouts +pay packet,pay packets +pay,pays +pay phone,pay phones +payphone,payphones +payroller,payrollers +payroll,payrolls +payscale,payscales +pays d'Γ©tat,pays d'Γ©tat +paysite,paysites +payslip,payslips +pay spine,pay spines +pay stub,pay stubs +paystub,paystubs +paytable,paytables +paythrough,paythroughs +paywall,paywalls +PBeM,PBeMs +PBEM,PBEMs +PBM,PBMs +PBP,PBPs +PC Card,PC Cards +PCI,PCIs +PCO,PCOs +PC,PCs +PC Plod,PC Plods +PCSO,PCSOs +PDA,PDAs +PDE,PDEs +PDF,PDFs +PDGF,PDGFs +PDLC,PDLCs +pdoc,pdocs +PDP,PDPs +PDW,PDWs +peaberry,peaberries +Peabody bird,Peabody birds +peabrain,peabrains +peace bond,peace bonds +peacebreaker,peacebreakers +peace dividend,peace dividends +peacekeeper,peacekeepers +peacemaker,peacemakers +peacemonger,peacemongers +peacenik,peaceniks +peace pipe,peace pipes +peace process,peace processes +peace sign,peace signs +peace treaty,peace treaties +peach blossom,peach blossoms +peacher,peachers +peachick,peachicks +peach palm,peach palms +peach,peaches +Peach,Peaches +peachtree,peachtrees +pea coat,pea coats +peacoat,peacoats +peacock blue,peacock blues +peacock butterfly,peacock butterflies +peacock mite,peacock mites +peacock,peacocks +peacock worm,peacock worms +peacotum,peacotums +pea crab,pea crabs +peafowl,peafowls +peage,peages +pea green,pea greens +peahen,peahens +pea jacket,pea jackets +peajacket,peajackets +peak body,peak bodies +peaker,peakers +peak flow meter,peak flow meters +peakflowmeter,peakflowmeters +peak flow,peak flows +peakist,peakists +peaklet,peaklets +peaknik,peakniks +peakon,peakons +peak organisation,peak organisations +peak,peaks +peak season,peak seasons +peak vehicle requirement,peak vehicle requirements +peak visual,peak visuals +pealing,pealings +peal,peals +peal,peals +Peano curve,Peano curves +pean,peans +peanut butter cup,peanut butter cups +peanut butter,peanut butters +peanut gallery,peanut galleries +pea-nut,pea-nuts +peanut,peanuts +peanut tree,peanut trees +pea patch,pea patches +pea,peas +pea,peas +pea pod,pea pods +peapod,peapods +pearch,pearches +pearl-bordered fritillary,pearl-bordered fritillaries +pearl diver,pearl divers +pearler,pearlers +pearlfish,pearlfishes,pearlfish +pearl grey,pearl greys +pearlie,pearlies +pearlin,pearlins +pearl necklace,pearl necklaces +pearl of wisdom,pearls of wisdom +pearl oyster,pearl oysters +pearl,pearls +pearl shell,pearl shells +pearlwort,pearlworts +pearly antshrike,pearly antshrikes +pearly family,pearly families +pearly king,pearly kings +pearly prince,pearly princes +pearly princess,pearly princesses +pearly queen,pearly queens +pearmain,pearmains +pear of anguish,pears of anguish +pear,pears +Pearson's long-clawed shrew,Pearson's long-clawed shrews +pear tree,pear trees +peasant blouse,peasant blouses +peasant,peasants +peasantry,peasantries +peasant shirt,peasant shirts +peascod,peascods +pease,peasen +pea-shooter,pea-shooters +peashooter,peashooters +pea-souper,pea-soupers +peasouper,peasoupers +peasweep,peasweeps +pea-time,pea-times +peatland,peatlands +peat,peats +peavey,peaveys +peavy,peavies +peba,pebas +pebble-bed reactor,pebble-bed reactors +pebble dash,pebble dashes +pebble mill,pebble mills +pebble,pebbles +pebbling,pebblings +pebibit,pebibits +pebibyte,pebibytes +pecan,pecans +pecan pie,pecan pies +pecary,pecaries +peccadillo,peccadillos,peccadilloes +peccancy,peccancies +peccan,peccans +peccant,peccants +peccary,peccaries +peccavi,peccavis +pec deck,pec decks +Pecheneg,Pechenegs +pechka,pechkas,pechki +peckerhead,peckerheads +pecker,peckers +peckerwood,peckerwoods +peckerwood sawmill,peckerwood sawmills +pecking order,pecking orders +peck,pecks +pecorino,pecorinos +pec,pecs +pectate,pectates +pectenotoxin,pectenotoxins +pecten,pectens +pectic acid,pectic acids +pectinal,pectinals +pectinariid,pectinariids +pectinate,pectinates +pectination,pectinations +pectineus,pectinei +pectinibranch,pectinibranchs +pectinid,pectinids +pectiniid,pectiniids +pectin,pectins +pectolite,pectolites +pectolyase,pectolyases +pectoral fin,pectoral fins +pectoral girdle,pectoral girdles +pectoralis major,pectoralis majors +pectoralis minor,pectoralis minors +pectoral,pectorals +pectose,pectoses +pectus,pectora +peculation,peculations +peculator,peculators +peculiarity,peculiarities +peculium,peculia +pecul,peculs +pedage,pedages +pedagog,pedagogs +pedagogue,pedagogues +pedagoguette,pedagoguettes +pedaheh,pedahehs +pedalboard,pedalboards +pedalboat,pedalboats +pedal curve,pedal curves +pedaler,pedalers +pedalfer,pedalfers +pedal keyboard,pedal keyboards +pedaller,pedallers +pedalo,pedalos,pedaloes +pedal,pedals +pedal pusher,pedal pushers +pedal steel guitar,pedal steel guitars +pedal stool,pedal stools +pedal-stool,pedal-stools +pedanda,pedanda +pedantism,pedantisms +pedantocracy,pedantocracies +pedant,pedants +pedantry,pedantries +pedanty,pedanties +pedarian,pedarians +pedary,pedaries +pedascule,pedascules +peddler,peddlers +pedelec,pedelecs +pederast,pederasts +pederero,pedereros,pedereroes +pedestal fan,pedestal fans +pedestal,pedestals +pedestrian crossing,pedestrian crossings +pedestrian,pedestrians +pedestrian precinct,pedestrian precincts +pedestrian scramble,pedestrian scrambles +pedestrienne,pedestriennes +pedetid,pedetids +pediatrician,pediatricians +pedicab,pedicabs +pedicellaria,pedicellariae +pedicel,pedicels +pediciid,pediciids +pedicle,pedicles +pediculariid,pediculariids +pedicule,pedicules +pediculicide,pediculicides +pediculid,pediculids +pediculus,pediculi +pedicure,pedicures +pedicurist,pedicurists +pedigree,pedigrees +pedilid,pedilids +pedimane,pedimanes +pediment,pediments +pedinid,pedinids +pedionomid,pedionomids +pedipalp,pedipalps +pedipalpus,pedipalpi +pedipulator,pedipulators +pediveliger,pediveligers +pedlar,pedlars +pedler,pedlers +pedobaptism,pedobaptisms +pedobaptist,pedobaptists +pedobarograph,pedobarographs +pedobear,pedobears +pedoclimate,pedoclimates +pedodontist,pedodontists +pedohebephile,pedohebephiles +pedologist,pedologists +pedometer,pedometers +pedometre,pedometres +pedon,pedons +pedo,pedos +pedophile,pedophiles +pedophiliac,pedophiliacs +pedophobia,pedophobias +pedoscope,pedoscopes +pedosexual,pedosexuals +pedosphere,pedospheres +ped,peds +ped,peds +pedregal,pedregals +peduncle,peduncles +pedway,pedways +peece,peeces +peek-a-boo bra,peek-a-boo bras +peekaboo bra,peekaboo bras +peekapoo,peekapoos +peekytoe,peekytoes +peele,peeles +peeler,peelers +peeler,peelers +peelhouse,peelhouses +peeling,peelings +Peelite,Peelites +peel,peels +peel,peels +peel,peels +peel strength,peel strengths +peemergency,peemergencies +peen,peens +peen,peens +peepal,peepals +pee,pee +pee,pees +pee,pees +pee,pees +peeper,peepers +peephole,peepholes +peeping,peepings +peeping tom,peeping toms +peep,peeps +peep,peeps +peep,peeps +peep,peeps +Peep,Peeps +peep show,peep shows +peepshow,peepshows +peepul,peepuls +peerage,peerages +peerer,peerers +peeress,peeresses +peerie,peeries +peer of the realm,peers of the realm +peer,peers +peer,peers +peer review,peer reviews +peery,peeries +peeve,peeves +peever,peevers +peevit,peevits +pee-wee,pee-wees +pee-wee,pee-wees +pee-wee,pee-wees +peewee,peewees +peewee,peewees +peewit,peewits +pegacorn,pegacorns +pegador,pegadors +pegasid,pegasids +pegasister,pegasisters +Pegasus,Pegasi +pegasus,pegasuses,pegasi +pegboard,pegboards +pegbox,pegboxes +pegger,peggers +peghead,pegheads +peginterferon,peginterferons +peg leg,peg legs +peg-leg,peg-legs +pegmatite,pegmatites +pego,pegos +peg,pegs +peg warmer,peg warmers +pegylation,pegylations +PEGylation,PEGylations +peignoir,peignoirs +peine,peines +peirameter,peirameters +peirosaurid,peirosaurids +peise,peises +peitrel,peitrels +pejoration,pejorations +pejorative,pejoratives +pejorist,pejorists +pekan,pekans +Peke,Pekes +Pekie,Pekies +Pekinese,Pekinese +Pekingese,Pekingese +Pekingologist,Pekingologists +pelage,pelages +pelagiellid,pelagiellids +pelagiid,pelagiids +pelagophyte,pelagophytes +pelagornithid,pelagornithids +pelagothuriid,pelagothuriids +pelargonium,pelargoniums +pelargonoyl,pelargonoyls +Pelasgian,Pelasgians +pelecanid,pelecanids +pelecanoidid,pelecanoidids +pelecan,pelecans +pelecinid,pelecinids +pelecorhynchid,pelecorhynchids +pelecypod,pelecypods +pelehouse,pelehouses +pelerine,pelerines +peleton,peletons +pelham,pelhams +pelican crossing,pelican crossings +pelican flower,pelican flowers +pelicanist,pelicanists +pelican,pelicans +pelick,pelicks +pelidnoma,pelidnomas +pelike,pelikes +pelioma,peliomata +pelisse,pelissees +pelite,pelites +pellack,pellacks +pellagrin,pellagrins +pellet gun,pellet guns +pelletizer,pelletizers +pellet moulding,pellet mouldings +pellet,pellets +pellicle,pellicles +pellicule,pellicules +pellistor,pellistors +pellitory,pellitories +pellitory,pellitories +pellock,pellocks +pell,pells +pelma,pelmata +pelmatogram,pelmatograms +pelmet,pelmets +pelobatid,pelobatids +pelodytid,pelodytids +peloid,peloids +pelomedusid,pelomedusids +pelomyxid,pelomyxids +Peloponnesian,Peloponnesians +peloridiid,peloridiids +pelorus,peloruses +peloton,pelotons +pel,pels +pelta,peltae +peltasperm,peltasperms +peltast,peltasts +pelter,pelters +peltidium,peltidia +peltogastrid,peltogastrids +peltoperlid,peltoperlids +peltospirid,peltospirids +pelt,pelts +pelt,pelts +peltry,peltries +peludo,peludos,peludoes +Pelusian,Pelusians +pelvic arch,pelvic arches +pelvic diaphragm,pelvic diaphragms +pelvic fin,pelvic fins +pelvic floor,pelvic floors +pelvic girdle,pelvic girdles +pelvic thrust,pelvic thrusts +pelvimeter,pelvimeters +pelviotomy,pelviotomies +pelvis,pelvises,pelves +Pema,Pemas +pembina,pembinas +pempherid,pempherids +pemphigid,pemphigids +penaeid,penaeids +penal code,penal codes +penal colony,penal colonies +penalisation,penalisations +penalization,penalizations +penal rosary,penal rosaries +penalty arc,penalty arcs +penalty area,penalty areas +penalty box,penalty boxes +penalty corner,penalty corners +penalty function,penalty functions +penalty goal,penalty goals +penalty kick,penalty kicks +penalty kill,penalty kills +penalty,penalties +penalty phase,penalty phases +penalty shootout,penalty shootouts +penalty spot,penalty spots +penalty throw,penalty throws +penalty try,penalty tries +penalty unit,penalty units +penam,penams +penance,penances +pen-and-wash,pen-and-washes +Penangite,Penangites +Penang lawyer,Penang lawyers +pencell,pencells +pencel,pencels +penchant,penchants +pencil box,pencil boxes +pencil case,pencil cases +pencil crayon,pencil crayons +pencil dick,pencil dicks +penciler,pencilers +pencil flower,pencil flowers +penciling,pencilings +pencilling,pencillings +pencill,pencills +pencilmaker,pencilmakers +pencil-neck,pencil-necks +pencilneck,pencilnecks +pencil,pencils +pencil pleat,pencil pleats +pencil pusher,pencil pushers +pencil-pusher,pencil-pushers +pencil sharpener,pencil sharpeners +pencil skirt,pencil skirts +pencil stub,pencil stubs +pencil tree,pencil trees +pendant,pendants +pendaunt,pendaunts +pendejo,pendejos +pendeloque,pendeloques +pendentive,pendentives +pendent,pendents +pendice,pendices +pendicle,pendicles +pendicler,pendiclers +pend,pends +pendragon,pendragons +pen drive,pen drives +pendule,pendules +penduline,pendulines +pendulous abdomen,pendulous abdomens +pendulum clock,pendulum clocks +pendulum,pendulums,pendula +penectomy,penectomies +pene-enclave,pene-enclaves +pene-exclave,pene-exclaves +peneid,peneids +peneplain,peneplains +penetrability,penetrabilities +penetralium,penetralia +penetrameter,penetrameters +penetrance,penetrances +penetrant,penetrants +penetratee,penetratees +penetration,penetrations +penetration test,penetration tests +penetrator,penetrators +penetrometer,penetrometers +penfish,penfishes,penfish +penfold,penfolds +pen friend,pen friends +pen-friend,pen-friends +penfriend,penfriends +penghulu,penghulus +pengolin,pengolins +pengΕ‘,pengΕ‘s +pengo,pengos,pengoes +penguinery,penguineries +penguin,penguins +penguin suit,penguin suits +pengulu,pengulus +penholder,penholders +penhouse,penhouses +peniche,peniches +penicillium,penicilliums +penicil,penicils +penicylinder,penicylinders +penillion,penillions +peninsula,peninsulas,peninsulae +penis bone,penis bones +penis,penises,penes +penis pump,penis pumps +penis worm,penis worms +penitant,penitants +penitencer,penitencers +penitential,penitentials +penitentiary,penitentiaries +penitent,penitents +penknife,penknives +penk,penks +penlight,penlights +penlite,penlites +penmaker,penmakers +penman,penmen +pennage,pennages +pen name,pen names +pen-name,pen-names +pennant,pennants +penna,pennae +pennatula,pennatulas,pennatulae +pennellid,pennellids +penner,penners +penneth,penneths +Penning trap,Penning traps +pennoncel,pennoncels +pennon,pennons +penn'orth,penn'orths +pennorth,pennorths +Pennsylvania German,Pennsylvania Germans +Pennsylvanian,Pennsylvanians +penny-a-liner,penny-a-liners +penny arcade,penny arcades +Penny Black,Penny Blacks +penny chew,penny chews +pennycress,pennycresses +penny dreadful,penny dreadfuls +penny farthing,penny farthings +penny-farthing,penny-farthings +pennyland,pennylands +penny packet,penny packets +penny,pennies,pence +penny pincher,penny pinchers +penny-pincher,penny-pinchers +penny-pinching,penny-pinchings +pennyroyal,pennyroyals +penny stock,penny stocks +pennyweight,pennyweights +penny whistle,penny whistles +pennywhistle,pennywhistles +pennyworth,pennyworths +pennywort,pennyworts +Penobscot,Penobscots +penologist,penologists +pen pal,pen pals +penpal,penpals +pen,pens +pen,pens +pen,pens +pen,pens +pen pusher,pen pushers +pen-pusher,pen-pushers +penpusher,penpushers +penrack,penracks +Penrose staircase,Penrose staircases +Penrose stairs,Penrose stairs +Penrose steps,Penrose steps +Penrose triangle,Penrose triangles +pensel,pensels +pensill,pensills +pensionary,pensionaries +pensioner,pensioners +pension fund,pension funds +pension,pensions +penstemon,penstemons +penstock,penstocks +penstroke,penstrokes +pentaacetate,pentaacetates +pentaamine,pentaamines +pentaborate,pentaborates +pentabromide,pentabromides +pentacarbonyl,pentacarbonyls +pentacerotid,pentacerotids +pentachloride,pentachlorides +pentachlorobiphenyl,pentachlorobiphenyls +pentachord,pentachords +pentachoron,pentachorons,pentachora +pentachromat,pentachromats +pentachrome,pentachromes +pentacle,pentacles +pentacontagon,pentacontagons +pentaconter,pentaconters +pentacosane,pentacosanes +pentacosanoyl,pentacosanoyls +pentacrinite,pentacrinites +pentacrinoid,pentacrinoids +pentacron,pentacra +pentacrostic,pentacrostics +pentacube,pentacubes +pentadecagon,pentadecagons +pentadecamer,pentadecamers +pentadecane,pentadecanes +pentadecanoate,pentadecanoates +pentadecenoyl,pentadecenoyls +pentadecimal,pentadecimals +pentadiene,pentadienes +pentadienoate,pentadienoates +pentadienoic acid,pentadienoic acids +pentadodecahedron,pentadodecahedrons +pentad,pentads +pentaene,pentaenes +pentaerythrityl,pentaerythrityls +pentafluoride,pentafluorides +pentagonal prism,pentagonal prisms +pentagon,pentagons +pentagramme,pentagrammes +pentagram,pentagrams +pentagraph,pentagraphs +pentagrid,pentagrids +pentahalide,pentahalides +pentahedron,pentahedrons,pentahedra +pentahelicene,pentahelicenes +pentahydrate,pentahydrates +pentahydroxide,pentahydroxides +pen-tailed treeshrew,pen-tailed treeshrews +pentail,pentails +pentaiodide,pentaiodides +pentakis dodecahedron,pentakis dodecahedra +pentakisphosphate,pentakisphosphates +pentalene,pentalenes +pentalogy,pentalogies +pentalpha,pentalphas +pentamer,pentamers +pentameter,pentameters +pentamethylcyclopentadiene,pentamethylcyclopentadienes +pentamethylcyclopentadienyl,pentamethylcyclopentadienyls +pentamethylene,pentamethylenes +pentametre,pentametres +pentamirror,pentamirrors +pentamolybdate,pentamolybdates +pentanediol,pentanediols +pentanedithiol,pentanedithiols +pentane,pentanes +pentangle,pentangles +pentanitride,pentanitrides +pentanoate,pentanoates +pentanol,pentanols +pentanone,pentanones +pentaoxide,pentaoxides +pentapeptide,pentapeptides +pentaphene,pentaphenes +pentaphosphaferrocene,pentaphosphaferrocenes +pentaphosphate,pentaphosphates +pentaphosphide,pentaphosphides +pentapody,pentapodies +pentaprism,pentaprisms +pentaptote,pentaptotes +pentaptych,pentaptychs +pentaquark,pentaquarks +pentarchy,pentarchies +pentasaccharide,pentasaccharides +pentasiloxane,pentasiloxanes +pentasil,pentasils +pentastich,pentastichs +pentastyle,pentastyles +pentasulfide,pentasulfides +pentasulphide,pentasulphides +pentathiophene,pentathiophenes +pentathlete,pentathletes +pentathlon,pentathlons +pentatomid,pentatomids +pentatonic scale,pentatonic scales +pentatriacontane,pentatriacontanes +pentatriene,pentatrienes +pentaxin,pentaxins +pentazole,pentazoles +penteconter,penteconters +Pentecostalism,Pentecostalisms +Pentecostalist,Pentecostalists +Pentecostal,Pentecostals +pentecoster,pentecosters +pentecosty,pentecosties +pentene,pentenes +pentenyl,pentenyls +penteract,penteracts +pentereme,penteremes +pen test,pen tests +pentetate,pentetates +penthaleid,penthaleids +penthouse,penthouses +pentiamond,pentiamonds +pentice,pentices +pentile,pentiles +pentimal,pentimals +pentimento,pentimenti +pentiment,pentiments +pentine,pentines +pentitol,pentitols +pentlandite,pentlandites +pentode,pentodes +pentofuranose,pentofuranoses +pentofuranoside,pentofuranosides +pentomino,pentominoes +pentonate,pentonates +pentonic acid,pentonic acids +penton,pentons +pentop,pentops +pentosan,pentosans +pentose,pentoses +pentosuria,pentosurias +pentosyltransferase,pentosyltransferases +pentoxide,pentoxides +pentraxin,pentraxins +pentremite,pentremites +pent roof,pent roofs +pentroof,pent roofs +pentrough,pentroughs +pentuplet,pentuplets +pentylamine,pentylamines +pentyl,pentyls +pentyne,pentynes +penultimate,penultimates +penult,penults +penumbra,penumbras +penup,penups +penury,penuries +penwiper,penwipers +penwoman,penwomen +peonage,peonages +peon,peons +peony,peonies +people carrier,people carriers +people mover,people movers +People of the Book,People of the Books +people person,people persons,people people +people pleaser,people pleasers +peopler,peoplers +people's house,people's houses +people's republic,people's republics +People's Republic,People's Republics +Peoria,Peorias,Peoria +peotomy,peotomies +pepastic,pepastics +peperine,peperines +pepernoot,pepernoots +pepita,pepitas +peplomer,peplomers +peplos,peploi +peplum,pepla +peplum,peplums +peplus,pepluses +pepo,pepos +pep,peps +pepperbox,pepperboxes +peppercorn,peppercorns +peppercorn rent,peppercorn rents +pepperer,pepperers +peppergrass,peppergrasses +pepper mill,pepper mills +peppermill,peppermills +peppermint,peppermints +peppermint stick,peppermint sticks +peppernut,peppernuts +pepper pot,pepper pots +pepper-pot,pepper-pots +pepperpot,pepperpots +pepper sauce,pepper sauces +Pepper's ghost,Pepper's ghosts +pepper shaker,pepper shakers +peppershaker,peppershakers +pepperwort,pepperworts +pepsinogen,pepsinogens +Pepsi,Pepsis +pep squad,pep squads +pepstatin,pepstatins +peptaibol,peptaibols +pep talk,pep talks +peptic,peptics +peptic ulcer,peptic ulcers +peptidase,peptidases +peptide bond,peptide bonds +peptide chain,peptide chains +peptide nucleic acid,peptide nucleic acids +peptide,peptides +peptidodendrimer,peptidodendrimers +peptidoglycan,peptidoglycans +peptidolactone,peptidolactones +peptidome,peptidomes +peptidomimetic,peptidomimetics +peptidyldipeptidase,peptidyldipeptidases +peptidylprolyl isomerase,peptidylprolyl isomerases +peptization,peptizations +peptogen,peptogens +peptoid,peptoids +peptomer,peptomers +peptone,peptones +peptonization,peptonizations +peptonoid,peptonoids +peptonuria,peptonurias +peptoprime,peptoprimes +Pequiste,Pequistes +Pequod,Pequods,Pequod +Pequot,Pequots,Pequot +peracarid,peracarids +peracephalus,peracephali +peracetate,peracetates +peracid,peracids +peraclid,peraclids +peradventure,peradventures +peraeopod,peraeopods,peraeopoda +peragration,peragrations +perambulation,perambulations +perambulator,perambulators +peramelid,peramelids +peramurid,peramurids +perastatate,perastatates +Perate,Perates,Peratae +P/E ratio,P/E ratios +perbend,perbends +perborate,perborates +perbromate,perbromates +perbromide,perbromides +percaline,percalines +percarbide,percarbides +percarbonate,percarbonates +percarburet,percarburets +perceived temperature,perceived temperatures +perceiver,perceivers +percentage,percentages +percentage point,percentage points +percentage rate,percentage rates +percenter,percenters +percentile,percentiles +per cent,per cent +percent,percent,percents +perception,perceptions +percept,percepts +perceptron,perceptrons +Percheron,Percherons +percher,perchers +percher,perchers +percher,perchers +perchery,percheries +perching bird,perching birds +perchlorate,perchlorates +perchloride,perchlorides +perchlorination,perchlorinations +perchlorobenzoic acid,perchlorobenzoic acids +perch,perches,perch +perch,perches,perch +percichthyid,percichthyids +percid,percids +perciform,perciforms +percipient,percipients +perclose,percloses +percoid,percoids +percolate,percolates +percolation,percolations +percolation theory,percolation theories +percolator,percolators +percomorph,percomorphs +percontation,percontations +percophid,percophids +percopsid,percopsids +percrocutid,percrocutids +percussion cap,percussion caps +percussion instrument,percussion instruments +percussionist,percussionists +perdeuteration,perdeuterations +per diem,per diems +perdifoil,perdifoils +perdu,perdus +perdurantist,perdurantists +PΓ¨re David's deer,PΓ¨re David's deers,PΓ¨re David's deer +peregrination,peregrinations +peregrinator,peregrinators +peregrine falcon,peregrine falcons +peregrine hawk,peregrine hawks +peregrine,peregrines +pereiopod,pereiopods +peremption,peremptions +perennial,perennials +perentie,perenties +pΓ¨re,pΓ¨res +pererration,pererrations +Perestroikan,Perestroikans +perfecta,perfectas +perfect crime,perfect crimes +perfecter,perfecters +perfect fifth,perfect fifths +perfect fourth,perfect fourths +perfect game,perfect games +perfect gold standard test,perfect gold standard tests +perfectibilian,perfectibilians +perfectibilist,perfectibilists +perfectibility,perfectibilities +perfecting press,perfecting presses +perfect interval,perfect intervals +perfectionist,perfectionists +perfection,perfections +perfectissimate,perfectissimates +perfective aspect,perfective aspects +perfectiveness,perfectivenesses +perfective,perfectives +perfect metal,perfect metals +perfect number,perfect numbers +perfect octave,perfect octaves +perfector,perfectors +perfect passive participle,perfect passive participles +perfect,perfects +perfect rhyme,perfect rhymes +perfect set,perfect sets +perfect storm,perfect storms +perfect tense,perfect tenses +perfect unison,perfect unisons +perficient,perficients +perfidy,perfidies +perfin,perfins +perflation,perflations +perfluoroalkyl,perfluoroalkyls +perfluorocarbon,perfluorocarbons +perfluorochemical,perfluorochemicals +perfluorohexyl,perfluorohexyls +perfluorooctyl,perfluorooctyls +perfluorosulfonate,perfluorosulfonates +perforation gauge,perforation gauges +perforation,perforations +perforator,perforators +perforin,perforins +performance arousal,performance arousals +performance bond,performance bonds +performance metric,performance metrics +performance,performances +performant,performants +performative,performatives +performative utterance,performative utterances +performaunce,performaunces +performer,performers +perfume,perfumes +perfumer,perfumers +perfumery,perfumeries +perfumier,perfumiers +perfusate,perfusates +perfusionist,perfusionists +perfusion,perfusions +pergal,pergals +pergid,pergids +pergola,pergolas +perhaloalkane,perhaloalkanes +perhydrate,perhydrates +perhydroisoquinoline,perhydroisoquinolines +periagua,periaguas +periaktos,periaktoi +perianthium,perianthia +perianth,perianths +periapse,periapses +periapsis,periapsides +periapt,periapts +periastron,periastrons +periauger,periaugers +periblast,periblasts +peribolos,periboloi +pericapsid,pericapsids +pericardiocentesis,pericardiocenteses +pericardium,pericardia +pericarp,pericarps +pericenter,pericenters +pericentre,pericentres +perichaeth,perichaeths +perichaetium,perichaetia +perichete,perichetes +perichondrium,perichondria +periclase,periclases +periclinium,periclinia +pericope,pericopes +pericranium,pericraniums +periculum,pericula +pericycle,pericycles +pericyclic reaction,pericyclic reactions +pericyclid,pericyclids +pericystectomy,pericystectomies +pericyst,pericysts +pericyte,pericytes +periderm,periderms +peridinin,peridinins +peridium,peridia +peridomicile,peridomiciles +peridotite,peridotites +peridot,peridots +peridrome,peridromes +periecian,periecians +periegesis,periegeses +perifovea,perifoveas +perifusion,perifusions +perigalacticon,perigalacticons +perigee,perigees +perigone,perigones +perigonium,perigonia +perigon,perigons +PΓ©rigord pie,PΓ©rigord pies +perigraph,perigraphs +perigynium,perigynia +perihelion,perihelia +perihelium,perihelia +periherm,periherms +perikaryon,perikarya +perikyma,perikymata +perilampid,perilampids +perilla,perillas +peril,perils +perilune,perilunes +perimeter,perimeters +perimidine,perimidines +perimorph,perimorphs +perimylopid,perimylopids +perimysium,perimysia +perinaeum,perinaea +perinΓ¦um,perinΓ¦a +perinate,perinates +perinatologist,perinatologists +perineal raphe,perineal raphae +perineometer,perineometers +perineoplasty,perineoplasties +perineorrhaphy,perineorrhaphies +perineum,perinea +perineurium,perineuria +periodate,periodates +period doubling,period doublings +periodic acid,periodic acids +periodical cicada,periodical cicadas +periodical comet,periodical comets +periodicalist,periodicalists +periodical,periodicals +periodic comet,periodic comets +periodic function,periodic functions +periodicity,periodicities +periodic sentence,periodic sentences +periodic structure,periodic structures +periodic table,periodic tables +periodide,periodides +periodinane,periodinanes +periodisation,periodisations +periodization,periodizations +periodogram,periodograms +periodontist,periodontists +periodontologist,periodontologists +periodoscope,periodoscopes +period,periods +period piece,period pieces +Perioecian,Perioecians +perioecus,perioeci +periΕ“cus,periΕ“ci +Perioikos,PerioiΞΊΞΏi +perioscope,perioscopes +periosteum,periosteums +periostracum,periostraca +periotic,periotics +periot,periots +peripatecian,peripatecians +peripatetick,peripateticks +peripatetic,peripatetics +Peripatetic,Peripatetics +peripatid,peripatids +peripatopsid,peripatopsids +peripatus,peripatuses +peri,peris +peripetia,peripetias +peripety,peripeties +peripheral brain,peripheral brains +peripheral device,peripheral devices +peripheral,peripherals +periphery,peripheries +periphrase,periphrases +periphrasis,periphrases +periphrastic conjugation,periphrastic conjugations +periplanone,periplanones +periplasm,periplasms +periplast,periplasts +periplomatid,periplomatids +periplus,peripli,periploi +periproct,periprocts +peripsocid,peripsocids +peripteros,peripteroi +periptychid,periptychids +perisarc,perisarcs +periscian,periscians +periscope,periscopes +perishability,perishabilities +perishableness,perishablenesses +perishable,perishables +perisher,perishers +perisoma,perisomata +perisome,perisomes +perisperm,perisperms +perisphinctid,perisphinctids +perispomenon,perispomena +perispore,perispores +perisporium,perisporiums +perissityid,perissityids +perissodactyl,perissodactyls +peristalsis,peristalses +peristediid,peristediids +peristeria,peristerias +peristerite,peristerites +peristoma,peristomata +peristome,peristomes +peristomium,peristomia +peristyle,peristyles +peritectomy,peritectomies +peritenon,peritenons +peritext,peritexts +perithecium,perithecia +peritomy,peritomies +peritonΓ¦um,peritonΓ¦ums,peritonΓ¦a +peritoneum,peritoneums,peritonea +peritreme,peritremes +peritrich,peritrichs +peritrochium,peritrochia +peritubular capillary,peritubular capillaries +perityphlitis,perityphlitides +periwig,periwigs +periwinkle,periwinkles +periwinkle,periwinkles +perjure,perjures +perjurer,perjurers +perjuror,perjurors +perjury,perjuries +perkinsid,perkinsids +perk,perks +perk,perks +perlection,perlections +perlemoen,perlemoen +perlid,perlids +perlite,perlites +perlocution,perlocutions +perlodid,perlodids +perlustration,perlustrations +permaban,permabans +permablock,permablocks +perma-boner,perma-boners +permaboner,permaboners +permaculturalist,permaculturalists +permaculture,permacultures +permaculturist,permaculturists +permafrost,permafrosts +permalancer,permalancers +permalink,permalinks +permalloy,permalloys +permanent loan,permanent loans +permanent magnet,permanent magnets +permanent marker,permanent markers +permanent,permanents +permanent resident,permanent residents +permanent wave,permanent waves +permanent way,permanent ways +permanganate,permanganates +permatemp,permatemps +permathread,permathreads +permeabilisation,permeabilisations +permeabilization,permeabilizations +permeabilizer,permeabilizers +permeameter,permeameters +permeant,permeants +permease,permeases +permeator,permeators +permethylation,permethylations +Permian,Permians +permie,permies +per mille,per mille +permille,permille +permissivist,permissivists +permiss,permisses +permitholder,permitholders +permit,permit +permit,permits +permittance,permittances +permittee,permittees +permitter,permitters +permittivity,permittivities +perm,perms +permutant,permutants +permutation group,permutation groups +permutation lock,permutation locks +permutation,permutations +permuter,permuters +permutite,permutites +permutohedron,permutohedra +pernach,pernaches +pernicion,pernicions +pernicious anaemia,pernicious anaemias +pernicious anΓ¦mia,pernicious anΓ¦mias +pernicious anemia,pernicious anemias +pernio,pernios +perniosis,pernioses +pernitrate,pernitrates +pernoctation,pernoctations +pernor,pernors +Pernot furnace,Pernot furnaces +pern,perns +pern,perns +pernt,pernts +Pernyi moth,Pernyi moths +perogue,perogues +perogy,perogies +peronaeus,peronaei +peroneus,peronei +Peronist,Peronists +perophorid,perophorids +peroqua,peroquas +peroration,perorations +peroryctid,peroryctids +perovskite,perovskites +peroxidase,peroxidases +peroxidation,peroxidations +peroxide blonde,peroxide blondes +peroxide,peroxides +peroxidisulfate,peroxidisulfates +peroxidisulphate,peroxidisulphates +peroxin,peroxins +peroxiredoxin,peroxiredoxins +peroxisome,peroxisomes +peroxodiphosphate,peroxodiphosphates +peroxomonosulfate,peroxomonosulfates +peroxophosphate,peroxophosphates +perox,peroxes +peroxyacetyl,peroxyacetyls +peroxydation,peroxydations +peroxyl,peroxyls +peroxymolybdate,peroxymolybdates +peroxynitrite,peroxynitrites +peroxysome,peroxysomes +perpender,perpenders +perpendicle,perpendicles +perpendicular,perpendiculars +perpendicular recording,perpendicular recordings +perpend,perpends +perpension,perpensions +perpent stone,perpent stones +perper,perpers +perpession,perpessions +perpetration,perpetrations +perpetrator,perpetrators +perpetual bond,perpetual bonds +perpetual check,perpetual checks +perpetual license,perpetual licenses +perpetual motion machine,perpetual motion machines +perpetuation,perpetuations +perpetuator,perpetuators +perplection,perplections +perplexer,perplexers +perplexion,perplexions +perplexity,perplexities +perp,perps +perp walk,perp walks +perpyne,perpynes +perq,perqs +perquisite,perquisites +perquisition,perquisitions +perrhenate,perrhenates +perrier,perriers +perrinitid,perrinitids +perrisodactyl,perrisodactyls +perron,perrons +perroquet,perroquets +perrot,perrots +perruquier,perruquiers +perruthenate,perruthenates +Perry Mason moment,Perry Mason moments +persalt,persalts +perscrutation,perscrutations +Persean,Perseans +persecutor,persecutors +persecutour,persecutours +persecutrix,persecutrices +perseid,perseids +Perseid,Perseids +perseveration,perseverations +persevering,perseverings +Persian,Persians +persicaria,persicarias +Persic,Persics +persifleur,persifleurs +persillade,persillades +persimmon,persimmons +Persism,Persisms +persistence,persistences +persister,persisters +persistive vegetative state,persistive vegetative states +persistor,persistors +personage,personages +personal area network,personal area networks +personal assistant,personal assistants +personal attack,personal attacks +personal best,personal bests +personal computer,personal computers +personal day,personal days +personal defence weapon,personal defence weapons +personal defense weapon,personal defense weapons +personal digital assistant,personal digital assistants +personal effect,personal effects +personal fiduciary,personal fiduciaries +personal flotation device,personal flotation devices +personal foul,personal fouls +personal god,personal gods +personal identification number,personal identification numbers +personal injury,personal injuries +personalisation,personalisations +personalist,personalists +personality cult,personality cults +personality disorder,personality disorders +personality,personalities +personal jurisdiction,personal jurisdictions +personal life,personal lives +personal locator beacon,personal locator beacons +personall,personalls +personal lubricant,personal lubricants +personal name,personal names +personalness,personalnesses +personal online desktop,personal online desktops +personal organizer,personal organizers +personal,personals +personal pronoun,personal pronouns +personal property,personal properties +personal record,personal records +personal space,personal spaces +personal stereo,personal stereos +personal trainer,personal trainers +personal training,personal trainings +personalty,personalties +personal union,personal unions +personal video recorder,personal video recorders +personal water craft,personal water crafts +persona non grata,personae non gratae +persona,personas,personae,personΓ¦ +personation,personations +personator,personators +personeity,personeities +personhood,personhoods +personid,personids +personifacation,personifacations +personification,personifications +personifier,personifiers +person of color,people of color,persons of color +person of colour,people of colour,persons of colour +person of ordinary skill in the art,persons of ordinary skill in the art +person of size,people of size,persons of size +person,persons,people +perspective glass,perspective glasses +perspective,perspectives +perspectivist,perspectivists +perspectograph,perspectographs +pers.,pers.,pers's +perspicil,perspicils +perspirer,perspirers +PERSTAT,PERSTATs +perstraction,perstractions +persuadee,persuadees +persuader,persuaders +persuasion,persuasions +persuasive precedent,persuasive precedents +persulfate,persulfates +persulfide,persulfides +persulfurane,persulfuranes +persulfuric acid,persulfuric acids +persulphate,persulphates +persulphide,persulphides +persulphocyanate,persulphocyanates +persulphuret,persulphurets +pertaining,pertainings +pertainment,pertainments +pertainym,pertainyms +PERT chart,PERT charts +pertechnetate,pertechnetates +Perthian,Perthians +perthite,perthites +perticular,perticulars +pertuisan,pertuisans +perturbator,perturbators +perturbatour,perturbatours +perturber,perturbers +pertusion,pertusions +pertussis,pertusses +Perugian,Perugians +peruke,perukes +perula,perulae +perule,perules +peruse,peruses +peruser,perusers +Peruvian Paso,Peruvian Pasos +Peruvian,Peruvians +Peruvian slaty antshrike,Peruvian slaty antshrikes +pervader,pervaders +pervasion,pervasions +pervasive developmental disorder - not otherwise specified,pervasive developmental disorders - not otherwise specified +pervasive developmental disorder,pervasive developmental disorders +perve,perves +perversion,perversions +perversity,perversities +perverter,perverters +pervert,perverts +pervestigation,pervestigations +Pervezi,Pervezis +pervis,pervises +perv,pervs +perxenate,perxenates +perylene,perylenes +peryton,perytons +perzine,perzines +pesade,pesades +pesage,pesages +pescatarian,pescatarians +pescetarian,pescetarians +pescevegetarian,pescevegetarians +pescovegetarian,pescovegetarians +pesen,pesens +peseta,pesetas +pesewa,pesewas +pesher,pesharim +peso ley,pesos ley +peso,pesos +pes,pedes +pessary,pessaries +pessimist,pessimists +pessimum,pessimums,pessima +pessulus,pessuli +Pestalozzian,Pestalozzians +pesterer,pesterers +pestering,pesterings +pesterment,pesterments +pesthole,pestholes +pesthouse,pesthouses +pesticide,pesticides +pestiduct,pestiducts +pestilence,pestilences +pestivirus,pestiviruses +pestle,pestles +pest,pests +petabecquerel,petabecquerels +petabit,petabits +petabyte,petabytes +petaflop,petaflops +petagramme,petagrammes +petagram,petagrams +petahertz,petahertz +petajoule,petajoules +petakatal,petakatals +petalite,petalites +petaliter,petaliters +petalitre,petalitres +petal,petals +petalum,petala +petalurid,petalurids +petameter,petameters +petametre,petametres +petardeer,petardeers +petardier,petardiers +petard,petards +petar,petars +petasecond,petaseconds +petasos,petasoi +petaton,petatons +petaurid,petaurids +petauristid,petauristids +Petaurist,Petaurists +petawatt,petawatts +Petcheneg,Petchenegs +Petchenek,Petcheneks +petcock,petcocks +pet cone,pet cones +pet door,pet doors +petechia,petechiae +Peterbald,Peterbalds +peterel,peterels +peterero,petereros,petereroes +Peter Funk,Peter Funks +peterman,petermen +Peter Pan,Peter Pans +peter,peters +peter puffer,peter puffers +petersham,petershams +petha,pethas +pet hate,pet hates +petiole,petioles +petiolule,petiolules +Petit Basset Griffon VendΓ©en,Petits Bassets Griffons VendΓ©ens +petit four,petits fours,petit fours +petitionee,petitionees +petitioner,petitioners +petition,petitions +petit jury,petit juries +petkeeper,petkeepers +pet lamp-shade,pet lamp-shades +pet name,pet names +petnapper,petnappers +petnapping,petnappings +pet peeve,pet peeves +pet,pets +pet,pets +pet,pets +pet,pets +pET plasmid,pET plasmids +pet project,pet projects +petrale sole,petrale soles,petrale sole +Petrarchan sonnet,Petrarchan sonnets +petrary,petraries +petrel,petrels +petricolid,petricolids +petri dish,petri dishes +Petri dish,Petri dishes +petrifaction,petrifactions +petrifact,petrifacts +petrifier,petrifiers +Petri net,Petri nets +petrissage,petrissages +Petrobrusian,Petrobrusians +petrochemical,petrochemicals +petrochemist,petrochemists +petrocortyne,petrocortynes +petro-dictator,petro-dictators +petro-dictatorship,petro-dictatorships +petrodollar,petrodollars +petrogarch,petrogarchs +petrogeologist,petrogeologists +petroglyph,petroglyphs +petrographer,petrographers +petrograph,petrographs +petrography,petrographies +petroholic,petroholics +petrohyoid,petrohyoids +petrolatum,petrolatums +petrol bomb,petrol bombs +petroleum coke,petroleum cokes +petroleum fly,petroleum flies +petroleum jelly,petroleum jellies +petroleum,petroleums,petrolea +petroleum spirit,petroleum spirits +petrol filling station,petrol filling stations +petrolhead,petrolheads +petrolist,petrolists +petrologist,petrologists +petrol pump,petrol pumps +petrol sniffer,petrol sniffers +petrol station,petrol stations +petrol tank,petrol tanks +petromax,petromaxes +petromurid,petromurids +petromyzonid,petromyzonids +petromyzontid,petromyzontids +petromyzont,petromyzonts +petronel,petronels +petropedetid,petropedetids +petroproduct,petroproducts +petrosal,petrosals +petrosilex,petrosilexes +petrosomatoglyph,petrosomatoglyphs +petrosphere,petrospheres +petrostate,petrostates +pet shop,pet shops +petshop,petshops +petsitter,petsitters +pettah,pettahs +petter,petters +petticoat government,petticoat governments +petticoat,petticoats +petticoat pipe,petticoat pipes +pettifogger,pettifoggers +pettifoggery,pettifoggeries +petting zoo,petting zoos +pettiskirt,pettiskirts +petty bourgeoisie,petty bourgeoisies +pettychaps,pettychaps +petty crime,petty crimes +pettyfogger,pettyfoggers +petty larceny,petty larcenies +petty officer first class,petty officers first class +petty officer,petty officers +petty officer second class,petty officers second class +petty officer third class,petty officers third class +petty theft,petty thefts +petunia,petunias +peuce,peuces +Peugeot,Peugeots +pewee,pewees +pewet,pewets +pewfellow,pewfellows +pewful,pewfuls +pewit,pewits +pewmate,pewmates +pew,pews +pewterer,pewterers +Peyer's patch,Peyer's patches +peyote,peyotes +peytrel,peytrels +peziza,pezizas +pezograph,pezographs +Pfaffian,Pfaffians +pfalzgraf,pfalzgrafs +PFCA,PFCAs +pfeffernusse,pfeffernusses,pfeffernusse +pfeffernuss,pfeffernusse +pfennig,pfennige,pfennigs +Pfizer riser,Pfizer risers +P-frame,P-frames +PG,PGs +PGSEM,PGSEMs +phablet,phablets +phacelia,phacelias +phacellus,phacelli +phacochere,phacocheres +phacolite,phacolites +phacopid,phacopids +Phaeacian,Phaeacians +phaennid,phaennids +phaenomenon,phaenomena +phΓ¦nomenon,phΓ¦nomena +phaeochromocytoma,phaeochromocytomas,phaeochromocytomata +phaeomyiid,phaeomyiids +phaeophyte,phaeophytes +phaeopigment,phaeopigments +phaeospore,phaeospores +phaethontid,phaethontids +phaeton,phaetons +phagemid,phagemids +phage,phages,phage +phagget,phaggets +phagocyte,phagocytes +phagolysosome,phagolysosomes +phagophore,phagophores +phagosome,phagosomes +phainopepla,phainopeplas +phakomatosis,phakomatoses +phakoscope,phakoscopes +phalacrid,phalacrids +phalacrocoracid,phalacrocoracids +phalaenid,phalaenids +phalaenopsis,phalaenopsises +phalangeal,phalangeals +phalange,phalanges +phalangerid,phalangerids +phalanger,phalangers +phalangid,phalangids +phalangiid,phalangiids +Phalangist,Phalangists +phalangite,phalangites +phalangodid,phalangodids +phalansterian,phalansterians +phalanstery,phalansteries +phalanx,phalanxes,phalanges +phalaris,phalaris +phalarope,phalaropes +phalaropodid,phalaropodids +phalera,phalerae +phallectomy,phallectomies +phallist,phallists +phallobase,phallobases +phallocrat,phallocrats +phallodeum,phallodea +phallologist,phallologists +phalloplasty,phalloplasties +phallostethid,phallostethids +phallotoxin,phallotoxins +phall,phalls +phallus,phalli,phalluses +phal,phals +phal,phals +phanaeine,phanaeines +Phanariot,Phanariotes +phane,phanes +phane,phanes +phanerogam,phanerogams +phaneromania,phaneromanias +phanerophyte,phanerophytes +phaneropterid,phaneropterids +phantascope,phantascopes +phantasia,phantasias +phantasie,phantasies +phantasist,phantasists +phantasizer,phantasizers +phantasmagoria,phantasmagorias +phantasmagory,phantasmagories +phantasma,phantasmata +phantasmascope,phantasmascopes +phantasm,phantasms +phantasy,phantasies +phantom limb,phantom limbs +phantom pain,phantom pains +phantom,phantoms +phantom pregnancy,phantom pregnancies +phantom punch,phantom punches +phantom tumour,phantom tumours +phantom withdrawal,phantom withdrawals +phantosmia,phantosmias +pharaoh ant,pharaoh ants +pharaoh,pharaohs +pharaonic circumcision,pharaonic circumcisions +pharaon,pharaons +pharao,pharaos +phare,phares +pharid,pharids +Pharisaean,Pharisaeans +PharisΓ¦an,PharisΓ¦ans +Pharisean,Phariseans +Pharisee,Pharisees +pharmaceutical grade,pharmaceutical grades +pharmaceutical,pharmaceuticals +pharmaceutist,pharmaceutists +pharmacist,pharmacists +pharmacochemist,pharmacochemists +pharmacoeconomist,pharmacoeconomists +pharmacoepidemiologist,pharmacoepidemiologists +pharmacogeneticist,pharmacogeneticists +pharmacognosist,pharmacognosists +pharmacognosy,pharmacognosies +pharmacological agent,pharmacological agents +pharmacologist,pharmacologists +pharmacometrician,pharmacometricians +pharmacon,pharmacons +pharmacopeia,pharmacopeias +pharmacopeist,pharmacopeists +pharmacophore,pharmacophores +pharmacopΕ“ia,pharmacopΕ“iΓ¦ +pharmacopoeia,pharmacopoeias +pharmacopolist,pharmacopolists +pharmacosiderite,pharmacosiderites +pharmacotherapist,pharmacotherapists +pharmacotherapy,pharmacotherapies +pharmacy,pharmacies +pharmafood,pharmafoods +pharm,pharms +pharo,pharos +pharyngeal,pharyngeals +pharyngeal tonsil,pharyngeal tonsils +pharyngitis,pharyngitides +pharyngobranchial,pharyngobranchials +pharyngologist,pharyngologists +pharyngopalatinus,pharyngopalatini +pharyngoscope,pharyngoscopes +pharyngoscopy,pharyngoscopies +pharyngotome,pharyngotomes +pharyngotomy,pharyngotomies +pharynx,pharynges,pharynxes +phascogale,phascogales +phascolarctid,phascolarctids +phascolome,phascolomes +phascolosomatid,phascolosomatids +phase contrast microscope,phase contrast microscopes +phase diagram,phase diagrams +phasedown,phasedowns +phase factor,phase factors +phase function,phase functions +phase inverter,phase inverters +phase-locked loop,phase-locked loops +phasel,phasels +phase modulator,phase modulators +phaseolus,phaseoli +phaseout,phaseouts +phase,phases +phaser,phasers +phaseshift,phaseshifts +phasianellid,phasianellids +phasianid,phasianids +phasing,phasings +phasis,phases +phasmatid,phasmatids +phasmid,phasmids +phasm,phasms +phason,phasons +phasor,phasors +phassachate,phassachates +phatagin,phatagins +PhD,PhDs +pheasant,pheasants +pheasantry,pheasantries +pheasant's eye,pheasant's eyes,pheasants' eyes +phebe,phebes +pheer,pheers +phellandrene,phellandrenes +phelloderm,phelloderms +phelloplastic,phelloplastics +phenacene,phenacenes +phenacetin,phenacetins +phenacite,phenacites +phenacodontid,phenacodontids +phenacolepadid,phenacolepadids +phenacyl,phenacyls +phenakism,phenakisms +phenakistiscope,phenakistiscopes +phenakistoscope,phenakistoscopes +phenalene,phenalenes +phenanthrenequinone,phenanthrenequinones +phenanthridine,phenanthridines +phenanthroindolizidine,phenanthroindolizidines +phenanthroline,phenanthrolines +phenanthrol,phenanthrols +phenanthryl,phenanthryls +phenarsazinine,phenarsazinines +phenate,phenates +phenazine,phenazines +phenetidine,phenetidines +phenetol,phenetols +phengodid,phengodids +Phenician,Phenicians +phenicopter,phenicopters +phenix,phenixes +phenocopy,phenocopies +phenocryst,phenocrysts +phenogram,phenograms +phenolase,phenolases +phenolate,phenolates +phenol formaldehyde resin,phenol formaldehyde resins +phenolic,phenolics +phenoloxidase,phenoloxidases +phenomenal world,phenomenal worlds +phenomenist,phenomenists +phenomenological reduction,phenomenological reductions +phenomenologist,phenomenologists +phenomenon,phenomena +phenome,phenomes +phenomime,phenomimes +phenom,phenoms +phenone,phenones +phenonium,phenoniums +phenophosphazine,phenophosphazines +phenophosphazinine,phenophosphazinines +phenoplast,phenoplasts +phenothiazine,phenothiazines +phenotype,phenotypes +phenoxaphosphine,phenoxaphosphines +phenoxaphosphinine,phenoxaphosphinines +phenoxathiine,phenoxathiines +phenoxazine,phenoxazines +phenoxide,phenoxides +phenoxyacid,phenoxyacids +phenoxyl,phenoxyls +phenoxy,phenoxys +phenpropionate,phenpropionates +phenyboronic acid,phenyboronic acids +phenylacetaldehyde,phenylacetaldehydes +phenylacetate,phenylacetates +phenylamino,phenylaminos +phenylbutanoic acid,phenylbutanoic acids +phenylbutyrate,phenylbutyrates +phenylcarbinol,phenylcarbinols +phenylenediamine,phenylenediamines +phenylenedicarbene,phenylenedicarbenes +phenylene,phenylenes +phenylenevinylene,phenylenevinylenes +phenylethane,phenylethanes +phenylethanoid,phenylethanoids +phenylethylamine,phenylethylamines +phenylhydrazine,phenylhydrazines +phenylindole,phenylindoles +phenylisopropyladenosine,phenylisopropyladenosines +phenylisothiocyanate,phenylisothiocyanates +phenylmercury,phenylmercuries +phenylnitrone,phenylnitrones +phenylosazone,phenylosazones +phenyl,phenyls +phenylpiperazine,phenylpiperazines +phenylpiperidine,phenylpiperidines +phenylpropanoid,phenylpropanoids +phenylpropionate,phenylpropionates +phenylpyrrole,phenylpyrroles +phenylselenide,phenylselenides +phenyltetrazolium,phenyltetrazoliums +phenylthiohydantoin,phenylthiohydantoins +phenylthiolate,phenylthiolates +phenyltropane,phenyltropanes +phenytoin,phenytoins +pheochromocytoma,pheochromocytomas,pheochromocytomata +pheomelanosome,pheomelanosomes +pheon,pheons +pheophytin,pheophytins +pheoplast,pheoplasts +pheresis,phereses +pheromone,pheromones +phiale,phiales +phialide,phialides +phial,phials +Phi Bete,Phi Betes +phidoloporid,phidoloporids +philabeg,philabegs +Philadelphia chromosome,Philadelphia chromosomes +Philadelphia lawyer,Philadelphia lawyers +Philadelphian,Philadelphians +philaid,philaids +philalethist,philalethists +philanderer,philanderers +philanderess,philanderesses +philandering,philanderings +philander,philanders +philanthrocapitalist,philanthrocapitalists +philanthrope,philanthropes +philanthropinist,philanthropinists +philanthropist,philanthropists +philanthropoid,philanthropoids +philatelic forgery,philatelic forgeries +philatelist,philatelists +philatory,philatories +philepittid,philepittids +philerast,philerasts +philharmonic orchestra,philharmonic orchestras +philharmonic,philharmonics +philhellene,philhellenes +Philhellenist,Philhellenists +philibeg,philibegs +philibuster,philibusters +philinid,philinids +philinoglossid,philinoglossids +Philipino,Philipinos +Philippian,Philippians +philippick,philippicks +philippic,philippics +Philippine eagle,Philippine eagles +Philippine tarsier,Philippine tarsiers +philistine,philistines +Philistine,Philistines +Phillips head,Phillips heads +phillipsiid,phillipsiids +Phillips,Phillips +Phillips screwdriver,Phillips screwdrivers +Phillips screw,Phillips screws +phillumenist,phillumenists +Philly cheesesteak,Philly cheesesteaks +Philly fade,Philly fades +phillyrea,phillyreas +philobryid,philobryids +philocrat,philocrats +philodendron,philodendrons,philodendra +philodox,philodoxes +philodromid,philodromids +philographer,philographers +philography,philographies +philogynist,philogynists +philologer,philologers +philologian,philologians +philologist,philologists +philologue,philologues +philomath,philomaths +philomel,philomels +philomene,philomenes +philomuse,philomuses +philomycid,philomycids +philopena,philopenas +philopotamid,philopotamids +philopterid,philopterids +philosciid,philosciids +philosophaster,philosophasters +philosophation,philosophations +philosopheme,philosophemes +philosophe,philosophes +philosopheress,philosopheresses +philosopher king,philosopher kings +philosopher,philosophers +philosophical method,philosophical methods +philosophist,philosophists +philosophizer,philosophizers +philosophocracy,philosophocracies +philosophress,philosophresses +philosophy of mind,philosophies of mind +philotarsid,philotarsids +philotimia,philotimias +philozoist,philozoists +philter,philters +philtre,philtres +philtrum moustache,philtrum moustaches +philtrum,philtra +phimosis,phimoses +pH indicator,pH indicators +phiomyid,phiomyids +phi,phis +phiran,phirans +phisher,phishers +phish,phishes +phitoness,phitonesses +phit,phits +phizog,phizogs +phiz,phizzes +phlaeothripid,phlaeothripids +phleam,phleams +phlebitis,phlebitides +phlebobranch,phlebobranchs +phlebogram,phlebograms +phlebolite,phlebolites +phlebolith,phleboliths +phlebologist,phlebologists +phlebotomid,phlebotomids +phlebotomist,phlebotomists +phlebotomy,phlebotomies +phlebovirus,phleboviruses +phlegethontiid,phlegethontiids +phlegmagogue,phlegmagogues +phlegmatic,phlegmatics +phlegmatizer,phlegmatizers +phlegmon,phlegmons +phleme,phlemes +phliantid,phliantids +phlobaphene,phlobaphenes +phloem,phloems +phlΕ“m,phlΕ“ms +phlogistian,phlogistians +phlogistonist,phlogistonists +phlogosis,phlogoses +phlorotannin,phlorotannins +phlox worm,phlox worms +phlyctaeniid,phlyctaeniids +phlycten,phlyctens +phlyctenule,phlyctenules +pH meter,pH meters +phobia,phobias,phobiΓ¦ +phobic,phobics +phocacean,phocaceans +Phocaean,Phocaeans +PhocΓ¦an,PhocΓ¦ans +phoca,phocas,phocae +Phocean,Phoceans +phocenate,phocenates +phocid,phocids +phocine,phocines +phocoenid,phocoenids +phoebe,phoebes +Phoenician,Phoenicians +PhΕ“nician,PhΕ“nicians +phoenicochroite,phoenicochroites +phoenicococcid,phoenicococcids +phoenicopterid,phoenicopterids +phΕ“nicopter,phΕ“nicopters +phΕ“nix,phΕ“nices,phΕ“nixes +phoenix,phoenix,phoenixes +phΕ“nomenon,phΕ“nomena +phoetus,phoetuses,phoeti +phΕ“tus,phΕ“tuses,phΕ“ti +pholadid,pholadids +pholadomyid,pholadomyids +pholad,pholads +pholas,pholades +pholcid,pholcids +pholidichthyid,pholidichthyids +pholidophorid,pholidophorids +pholidosaurid,pholidosaurids +pholid,pholids +phonaestheme,phonaesthemes +phonautogram,phonautograms +phonautograph,phonautographs +phone bank,phone banks +phonebank,phonebanks +phone book,phone books +phonebook,phonebooks +phone booth,phone booths +phonebooth,phonebooths +phone box,phone boxes +phonebox,phoneboxes +phone call,phone calls +phonecall,phonecalls +phone card,phone cards +phonecard,phonecards +phoneidoscope,phoneidoscopes +phone-in,phone-ins +phone-in show,phone-in shows +phone line,phone lines +phoneline,phonelines +phonemark,phonemarks +phoneme,phonemes +phonemic merger,phonemic mergers +phonemic split,phonemic splits +phone monkey,phone monkeys +phonendoscope,phonendoscopes +phone number,phone numbers +'phone,'phones +phone,phones +phone,phones +phoner,phoners +phonestheme,phonesthemes +phonetic alphabet,phonetic alphabets +phonetician,phoneticians +phoneticist,phoneticists +phonetic,phonetics +phonetic symbol,phonetic symbols +phonetist,phonetists +phoneword,phonewords +phoney,phoneys,phonies +phonicator,phonicators +phoniness,phoninesses +phonino,phoninos +phonobreather,phonobreathers +phonocardiogram,phonocardiograms +phonocardiograph,phonocardiographs +phono cartridge,phono cartridges +phonodisc,phonodiscs +phonofiddle,phonofiddles +phonogramme,phonogrammes +phonogram,phonograms +phonographer,phonographers +phonographist,phonographists +phonograph,phonographs +phonograph record,phonograph records +phonolite,phonolites +phonologer,phonologers +phonologist,phonologists +phonologization,phonologizations +phonometer,phonometers +phonomotor,phonomotors +phonon,phonons +phonorecording,phonorecordings +phonorecord,phonorecords +phonoscope,phonoscopes +phonotype,phonotypes +phonotypist,phonotypists +phon,phons +phony,phonies +phorbol,phorbols +phorboxazole,phorboxazoles +phoresy,phoresies +phorid,phorids +phorminx,phorminxes,phorminges +phormium,phormiums +phoronid,phoronids +phorophyte,phorophytes +phoropter,phoropters +phorusrhacid,phorusrhacids +phosichthyid,phosichthyids +PHOSITA,PHOSITAs +phosphaadamantane,phosphaadamantanes +phosphagen,phosphagens +phospham,phosphams +phosphane,phosphanes +phosphanthridine,phosphanthridines +phosphanylidene,phosphanylidenes +phosphatase,phosphatases +phosphate,phosphates +phosphatidase,phosphatidases +phosphatidate,phosphatidates +phosphatide,phosphatides +phosphatidylcholine,phosphatidylcholines +phosphatidylethanolamine,phosphatidylethanolamines +phosphatidylglucose,phosphatidylglucoses +phosphatidylglycerol,phosphatidylglycerols +phosphatidylinositide,phosphatidylinositides +phosphatidylinositol,phosphatidylinositols +phosphatization,phosphatizations +phosphatome,phosphatomes +phosphatrane,phosphatranes +phosphaturia,phosphaturias +phosphazene,phosphazenes +phosphazine,phosphazines +phosphene,phosphenes +phosphepine,phosphepines +phosphide,phosphides +phosphinate,phosphinates +phosphindole,phosphindoles +phosphindolizine,phosphindolizines +phosphine imide,phosphine imides +phosphine oxide,phosphine oxides +phosphine sulfide,phosphine sulfides +phosphinic acid,phosphinic acids +phosphinidene,phosphinidenes +phosphinimide,phosphinimides +phosphinite,phosphinites +phosphinoline,phosphinolines +phosphinolizine,phosphinolizines +phosphinous acid,phosphinous acids +phosphinyl,phosphinyls +phosphite,phosphites +phosphoacceptor,phosphoacceptors +phosphoacetylglucosamine mutase,phosphoacetylglucosamine mutases +phosphoamidase,phosphoamidases +phosphoantigen,phosphoantigens +phosphocaseinate,phosphocaseinates +phosphocellulose,phosphocelluloses +phosphocholine,phosphocholines +phosphodiesterase,phosphodiesterases +phosphodiester,phosphodiesters +phosphoenol,phosphoenols +phosphoenoylpyruvate,phosphoenoylpyruvates +phosphoethanolamine,phosphoethanolamines +phosphofructokinase,phosphofructokinases +phosphofructotransferase,phosphofructotransferases +phosphoglucokinase,phosphoglucokinases +phosphoglucomutase,phosphoglucomutases +phosphogluconate,phosphogluconates +phosphogluconolactonase,phosphogluconolactonases +phosphoglucosamine mutase,phosphoglucosamine mutases +phosphoglucosamine,phosphoglucosamines +phosphoglyceraldehyde,phosphoglyceraldehydes +phosphoglycerate kinase,phosphoglycerate kinases +phosphoglyceratekinase,phosphoglyceratekinases +phosphoglyceratemutase,phosphoglyceratemutases +phosphoglycerate,phosphoglycerates +phosphoglyceric acid,phosphoglyceric acids +phosphoglyceride,phosphoglycerides +phosphoglycerolipid,phosphoglycerolipids +phosphoglyceromutase,phosphoglyceromutases +phosphoglycolate,phosphoglycolates +phosphoglycolipid,phosphoglycolipids +phosphohydrolase,phosphohydrolases +phosphoimager,phosphoimagers +phosphoinositol,phosphoinositols +phosphoketolase,phosphoketolases +phosphokinase,phosphokinases +phospholamban,phospholambans +phospholane,phospholanes +phosphole,phospholes +phospholipase,phospholipases +phospholipidome,phospholipidomes +phospholipidosis,phospholipidoses +phospholipid,phospholipids +phosphomannomutase,phosphomannomutases +phosphomimetic,phosphomimetics +phosphomolybdate,phosphomolybdates +phosphomonoesterase,phosphomonoesterases +phosphomutant,phosphomutants +phosphonate,phosphonates +phosphoneoepitope,phosphoneoepitopes +phosphonic acid,phosphonic acids +phosphonite,phosphonites +phosphonitrile,phosphonitriles +phosphonoacetate,phosphonoacetates +phosphonolipid,phosphonolipids +phosphonous acid,phosphonous acids +phosphonucleoside,phosphonucleosides +phosphopentomutase,phosphopentomutases +phosphopeptide,phosphopeptides +phosphophyllite,phosphophyllites +phosphoprotein,phosphoproteins +phosphoproteome,phosphoproteomes +phosphopyruvate,phosphopyruvates +phosphoramide,phosphoramides +phosphoramidite,phosphoramidites +phosphorane,phosphoranes +phosphoranyl,phosphoranyls +phosphoregulation,phosphoregulations +phosphorelay,phosphorelays +phosphorescent,phosphorescents +phosphorgummite,phosphorgummites +phosphoribomutase,phosphoribomutases +phosphoribosyl,phosphoribosyls +phosphoribosyltransferase,phosphoribosyltransferases +phosphoribulokinase,phosphoribulokinases +phosphorimager,phosphorimagers +phosphorine,phosphorines +phosphorist,phosphorists +phosphorite,phosphorites +phosphorodiamidate,phosphorodiamidates +phosphoroscope,phosphoroscopes +phosphorothioate,phosphorothioates +phosphor,phosphors +phosphorthioate,phosphorthioates +phosphorus cycle,phosphorus cycles +phosphorus ylide,phosphorus ylides +phosphorylase,phosphorylases +phosphorylcholine,phosphorylcholines +phosphorylome,phosphorylomes +phosphoserine,phosphoserines +phosphosite,phosphosites +phosphosugar,phosphosugars +phosphosulfate,phosphosulfates +phosphosulphate,phosphosulphates +phosphotransferase,phosphotransferases +phosphotransfer,phosphotransfers +phosphotungstate,phosphotungstates +phosphure,phosphures +phosphuret,phosphurets +phosphylene,phosphylenes +phosvitin,phosvitins +photichthyid,photichthyids +photid,photids +photinia,photinias +photino,photinos,photini +photism,photisms +photoablation,photoablations +photoacclimation,photoacclimations +photoacid,photoacids +photoactivation,photoactivations +photoaddition,photoadditions +photoadsorption,photoadsorptions +photoalidade,photoalidades +photoallergy,photoallergies +photoanaerobe,photoanaerobes +photoannulation,photoannulations +photoaquation,photoaquations +photo artist,photo artists +photoartist,photoartists +photoassimilate,photoassimilates +photoassociation,photoassociations +photoautotroph,photoautotrophs +photobacterium,photobacteria +photobeam,photobeams +photobiography,photobiographies +photobiologist,photobiologists +photobiont,photobionts +photobioreactor,photobioreactors +photoblank,photoblanks +photoblog,photoblogs +photobomb,photobombs +photobook,photobooks +photo booth,photo booths +photobooth,photobooths +photocage,photocages +photocall,photocalls +photocarcinogen,photocarcinogens +photocard,photocards +photocarrier,photocarriers +photocatalyst,photocatalysts +photocathode,photocathodes +photocell,photocells +photocenter,photocenters +photoceptor,photoceptors +photoceramic,photoceramics +photochemical reaction,photochemical reactions +photochemical smog,photochemical smogs +photochemist,photochemists +photochemotherapy,photochemotherapies +photochirogenesis,photochirogeneses +photochlorination,photochlorinations +photochromogen,photochromogens +photoclinometer,photoclinometers +photocoagulator,photocoagulators +photocolorimeter,photocolorimeters +photocomic,photocomics +photoconductance,photoconductances +photoconductor,photoconductors +photoconversion,photoconversions +photoconverter,photoconverters +photocopier,photocopiers +photocopy,photocopies +photocount,photocounts +photocoupler,photocouplers +photocoupling,photocouplings +photocrosslinking,photocrosslinkings +photo cube,photo cubes +photocuring,photocurings +photocurrent,photocurrents +photocycle,photocycles +photocyclization,photocyclizations +photocycloaddition,photocycloadditions +photocycloreversion,photocycloreversions +photodamage,photodamages +photodarlington,photodarlingtons +photodecarbonylation,photodecarbonylations +photodecarboxylation,photodecarboxylations +photodecolouration,photodecolourations +photodeconjugation,photodeconjugations +photodensitometer,photodensitometers +photodermatosis,photodermatoses +photodesorption,photodesorptions +photodetector,photodetectors +photodeterioration,photodeteriorations +photodevice,photodevices +photodifference,photodifferences +photodiode,photodiodes +photodisc,photodiscs +photodisintegration,photodisintegrations +photodisk,photodisks +photodistribution,photodistributions +photodocumentary,photodocumentaries +photodraft,photodrafts +photodrama,photodramas +photodrome,photodromes +photoduplicate,photoduplicates +photodynamic therapy,photodynamic therapies +photo echo,photo echoes +photoelasticity,photoelasticities +photoelectret,photoelectrets +photoelectric cell,photoelectric cells +photoelectrode,photoelectrodes +photoelectron,photoelectrons +photoelectrotype,photoelectrotypes +photoelement,photoelements +photoelimination,photoeliminations +photoemission,photoemissions +photoemitter,photoemitters +photoengraver,photoengravers +photoenlarger,photoenlargers +photoenolization,photoenolizations +photoentrainment,photoentrainments +photo essay,photo essays +photo-essay,photo-essays +photoessay,photoessays +photoevaporating,photoevaporatings +photoevaporation,photoevaporations +photoexchange,photoexchanges +photofading,photofadings +photofinisher,photofinishers +photo finish,photo finishes +photofit,photofits +photoflash,photoflashes +photoflood,photofloods +photofluorogram,photofluorograms +photofluorograph,photofluorographs +photofragment,photofragments +photogate,photogates +photogene,photogenes +photogen,photogens +photoglow,photoglows +photoglow tube,photoglow tubes +photogoniometer,photogoniometers +photog,photogs +photogrammetry,photogrammetries +photogram,photograms +photographeress,photographeresses +photographer,photographers +photographic artist,photographic artists +photographic interpretation,photographic interpretations +photographic memory,photographic memories +photographist,photographists +photographometer,photographometers +photograph,photographs +photoguide,photoguides +photoheliograph,photoheliographs +photoheterotroph,photoheterotrophs +photoholic,photoholics +photohydration,photohydrations +photohydrolysis,photohydrolyses +photoinactivation,photoinactivations +photoinduction,photoinductions +photoinhibition,photoinhibitions +photoinitiation,photoinitiations +photoinitiator,photoinitiators +photoinjector,photoinjectors +photointerpreter,photointerpreters +photoionization,photoionizations +photoion,photoions +photoisolator,photoisolators +photoisomerase,photoisomerases +photoisomerisation,photoisomerisations +photoisomerism,photoisomerisms +photoisomerization,photoisomerizations +photoisomer,photoisomers +photojournalist,photojournalists +photojunction,photojunctions +photolithographer,photolithographers +photolithograph,photolithographs +photolithotroph,photolithotrophs +photologist,photologists +photolyte,photolytes +photomacrograph,photomacrographs +photomanip,photomanips +photomap,photomaps +photomask,photomasks +photomeson,photomesons +photometer,photometers +photometrician,photometricians +photomicrograph,photomicrographs +photomicroscope,photomicroscopes +photomontage,photomontages +photomosaic,photomosaics +photomultiplier,photomultipliers +photomural,photomurals +photon belt,photon belts +photonephelometer,photonephelometers +photoneutrino,photoneutrinos +photoneutron,photoneutrons +photonic crystal,photonic crystals +photonovel,photonovels +photon,photons +photon sail,photon sails +photonuclear reaction,photonuclear reactions +photo-offset,photo-offsets +photo op,photo ops +photo opportunity,photo opportunities +photooxidation,photooxidations +photopeak,photopeaks +photoperiod,photoperiods +photoperturbation,photoperturbations +photophase,photophases +photophone,photophones +photophore,photophores +photo,photos +photophyte,photophytes +photopigment,photopigments +photopion,photopions +photoplay,photoplays +photoplethysmograph,photoplethysmographs +photoplotter,photoplotters +photopolarimeter,photopolarimeters +photopolymerization,photopolymerizations +photopolymer,photopolymers +photoprobe,photoprobes +photoproduction,photoproductions +photoproduct,photoproducts +photoprotector,photoprotectors +photoprotein,photoproteins +photoproton,photoprotons +photopsin,photopsins +photoreaction,photoreactions +photoreactor,photoreactors +photorealist,photorealists +photorearrangement,photorearrangements +photoreceiver,photoreceivers +photoreceptor,photoreceptors +photoreduction,photoreductions +photorefractive keratectomy,photorefractive keratectomies +photorelease,photoreleases +photorelief,photoreliefs +photoresistor,photoresistors +photoresist,photoresists +photoresponse,photoresponses +photoreversion,photoreversions +photo-romance,photo-romances +photoscanner,photoscanners +photoscience,photosciences +photoscope,photoscopes +photosculpture,photosculptures +photoselection,photoselections +photosensitizer,photosensitizers +photosensor,photosensors +photoserigraph,photoserigraphs +photoset,photosets +photo shoot,photo shoots +photoshoot,photoshoots +Photoshopper,Photoshoppers +photosite,photosites +photosphere,photospheres +photostability,photostabilities +photostabilizer,photostabilizers +photostat,photostats +photostimulation,photostimulations +photostimulus,photostimuli +photostory,photostories +photostream,photostreams +photosubstitution,photosubstitutions +photosurvey,photosurveys +photoswitching,photoswitchings +photoswitch,photoswitchs +photosynthate,photosynthates +photosynthesizer,photosynthesizers +photosystem,photosystems +phototautomerization,phototautomerizations +phototheodolite,phototheodolites +phototherapy,phototherapies +photothyristor,photothyristors +phototopographer,phototopographers +phototoxicity,phototoxicities +phototransect,phototransects +phototransformation,phototransformations +phototransistor,phototransistors +phototroph,phototrophs +phototropin,phototropins +phototube,phototubes +phototype,phototypes +phototypesetter,phototypesetters +photovaristor,photovaristors +photovoltage,photovoltages +photovoltaic cell,photovoltaic cells +photovore,photovores +photozincograph,photozincographs +phot,phots +phoxichilidiid,phoxichilidiids +PHPer,PHPers +pH,pHs +phractolaemid,phractolaemids +phragmites,phragmites +phragmoceratid,phragmoceratids +phragmocone,phragmocones +phragmoplast,phragmoplasts +phragmosome,phragmosomes +phrasal preposition,phrasal prepositions +phrasal verb,phrasal verbs +phrase book,phrase books +phrasebook,phrasebooks +phrasemaker,phrasemakers +phrasemonger,phrasemongers +phraseogram,phraseograms +phraseologist,phraseologists +phrase,phrases +phrasing,phrasings +phratry,phratries +phreaker,phreakers +phreak,phreaks +phreatogammarid,phreatogammarids +phreatoicid,phreatoicids +phreatophyte,phreatophytes +phrenesis,phreneses +phrenetic,phrenetics +phrenitis,phrenitides +phrenograph,phrenographs +phrenologer,phrenologers +phrenologist,phrenologists +phrensy,phrensies +phrenzy,phrenzies +phronimid,phronimids +phrontistery,phrontisteries +phryganeid,phryganeids +Phrygian,Phrygians +phrynosomatid,phrynosomatids +phthalate,phthalates +phthalazine,phthalazines +phthalein,phthaleins +phthalic acid,phthalic acids +phthalide,phthalides +phthalimide,phthalimides +phthalimido,phthalimidos +phthalimidyl,phthalimidyls +phthalocyanine,phthalocyanines +phthalonitrile,phthalonitriles +phthaloylation,phthaloylations +phthaloyl,phthaloyls +phthirapteran,phthirapterans +phthiriasis,phthiriases +phthisick,phthisicks +phthisic,phthisics +phthisis,phthises +phtisicid,phtisicids +phugoid,phugoids +phurba,phurbas +phycid,phycids +phycobilin,phycobilins +phycobilisome,phycobilisomes +phycocyanine,phycocyanines +phycodnavirus,phycodnaviruses +phycoerythrine,phycoerythrines +phycoerythrin,phycoerythrins +phycologist,phycologists +phycophyte,phycophytes +phycoplast,phycoplasts +phycosecid,phycosecids +phycotoxin,phycotoxins +phylacter,phylacters +phylactery,phylacteries +phylactocarp,phylactocarps +phylarch,phylarchs +phylarchy,phylarchies +phylax,phylaxes +phyle,phyles,phylae +phyllary,phyllaries +phyllidiid,phyllidiids +phyllid,phyllids +phylliid,phylliids +phyllite,phyllites +phyllobranchia,phyllobranchiae +phylloceratid,phylloceratids +phylloclade,phylloclades +phyllocladium,phyllocladia +phyllocnistid,phyllocnistids +phyllocyst,phyllocysts +phyllode,phyllodes +phyllodium,phyllodia +phyllodocid,phyllodocids +phyllody,phyllodies +phyllolepid,phyllolepids +phyllome,phyllomes +phyllophorid,phyllophorids +phylloplane,phylloplanes +phyllopod,phyllopods +phylloscopid,phylloscopids +phyllosoma,phyllosomas,phyllosomata +phyllosphere,phyllospheres +phyllostomatid,phyllostomatids +phyllostome,phyllostomes +phyllostomid,phyllostomids +phyllotactic arrangement,phyllotactic arrangements +phylloxanthin,phylloxanthins +phylloxeran,phylloxerans +phylloxera,phylloxerae +phylogenesis,phylogeneses +phylogeneticist,phylogeneticists +phylogenetic tree,phylogenetic trees +phylogeny,phylogenies +phylogram,phylograms +phylogroup,phylogroups +phylomarker,phylomarkers +phylome,phylomes +phylon,phyla +phylosopher,phylosophers +phylotype,phylotypes +phylum,phyla,phylums +phyma,phymas,phymata +phymatid,phymatids +physalin,physalins +physalis,physalises +physa,physas,physae +physeterid,physeterids +physeteroid,physeteroids +physeter,physeters +physiatrist,physiatrists +physible,physibles +physical break,physical breaks +physical constant,physical constants +physical examination,physical examinations +physical finger,physical fingers +physicalist,physicalists +physical law,physical laws +physical map,physical maps +physical,physicals +physical quantity,physical quantities +physical science,physical sciences +physical system,physical systems +physical therapist,physical therapists +physic finger,physic fingers +physician finger,physician fingers +physician,physicians +physicist,physicists +physicker,physickers +physic nut,physic nuts +physicomathematician,physicomathematicians +physico-theology,physico-theologies +physicotheology,physicotheologies +physics package,physics packages +physid,physids +physioball,physioballs +physiocrat,physiocrats +physiognomer,physiognomers +physiognomist,physiognomists +physiognotrace,physiognotraces +physiographer,physiographers +physiologer,physiologers +physiological density,physiological densities +physiologist,physiologists +physiome,physiomes +physiopathologist,physiopathologists +physio,physios +physiotherapist,physiotherapists +physiotherapy,physiotherapies +physiotope,physiotopes +physique,physiques +physisorption,physisorptions +physitian,physitians +physoclist,physoclists +physode,physodes +physog,physogs +physograde,physogrades +physopod,physopods +physostigmine,physostigmines +physostome,physostomes +phytagel,phytagels +phytanoyl,phytanoyls +phytanyl,phytanyls +phytase,phytases +phytate,phytates +phytoalexin,phytoalexins +phytobacterium,phytobacteria +phytobezoar,phytobezoars +phytobiologist,phytobiologists +phytocassane,phytocassanes +phytoceramide,phytoceramides +phytochelatin,phytochelatins +phytochemical,phytochemicals +phytochemist,phytochemists +phytochorion,phytochoria +phytochrome,phytochromes +phytocide,phytocides +phytoclast,phytoclasts +phytocoenose,phytocoenoses +phytocoenosis,phytocoenoses +phytocyanin,phytocyanins +phytoecdysone,phytoecdysones +phytoecdysteroid,phytoecdysteroids +phytoerythrin,phytoerythrins +phytoestrogen,phytoestrogens +phytogenesis,phytogeneses +phytogeographer,phytogeographers +phytohaemagglutinin,phytohaemagglutinins +phytohaemoagglutinin,phytohaemoagglutinins +phytohemagglutinin,phytohemagglutinins +phytoherm,phytoherms +phytohormone,phytohormones +phytolacca,phytolaccas +phytolite,phytolites +phytolith,phytoliths +phytologist,phytologists +phytomedicine,phytomedicines +phytomere,phytomeres +phytomer,phytomers +phytoncide,phytoncides +phyton,phytons +phytonutrient,phytonutrients +phytoparasite,phytoparasites +phytopathogen,phytopathogens +phytopathologist,phytopathologists +phytophage,phytophages +phytopharmaceutical,phytopharmaceuticals +phytophthora,phytophthoras +phytopigment,phytopigments +phytoplankter,phytoplankters +phytoplankton bloom,phytoplankton blooms +phytoplasma,phytoplasmas +phytoprostane,phytoprostanes +phytoremediation,phytoremediations +phytoreovirus,phytoreoviruses +phytosaurid,phytosaurids +phytosaur,phytosaurs +phytoseiid,phytoseiids +phytosiderophore,phytosiderophores +phytostabilisation,phytostabilisations +phytosteroid,phytosteroids +phytosterol,phytosterols +phytostimulation,phytostimulations +phytosymbiont,phytosymbionts +phytotelma,phytotelmas,phytotelmata +phytotomid,phytotomids +phytotomist,phytotomists +phytotoxicant,phytotoxicants +phytotoxin,phytotoxins +phytotransformation,phytotransformations +phytotron,phytotrons +phytotropin,phytotropins +phytovolatilization,phytovolatilizations +phytozoon,phytozoa +phytyl,phytyls +phyz,phyzes,phyzzes +piacle,piacles +piaffe,piaffes +piaffer,piaffers +pia mater,pia maters +pianet,pianets +pianette,pianettes +pianino,pianinos +pianissimo,pianissimos,pianissimi +pianist,pianists +piano accordion,piano accordions +piano bar,piano bars +piano bench,piano benches +pianoforte,pianofortes,pianoforti +pianola,pianolas +piano nobile,piano nobiles +pianophile,pianophiles +piano,pianos,piani +piano player,piano players +piano roll,piano rolls +piano stool,piano stools +piapec,piapecs +Piarist,Piarists +piassava,piassavas +piaster,piasters +piastre,piastres +piazza,piazzas,piazze +pibal,pibals +pibble,pibbles +pibcorn,pibcorns +pibroch,pibrochs +picador,picadors +picalilli,picalillis +picaninny,picaninnies +pica,picas +Picard,Picards +picaresque,picaresques +picaridine,picaridines +picaroon,picaroons +picaro,picaros +Picasso,Picassos +Picatinny rail,Picatinny rails +picayune,picayunes +piccadill,piccadills +piccadilly,picadillies +piccadil,piccadils +piccage,piccages +piccalilli,piccalillis +piccaninny,piccaninnies +piccanin,piccanins +piccoloist,piccoloists +piccolo,piccolos +PICC,PICCs +piccy,piccies +piceatannol,piceatannols +picene,picenes +Picene,Picenes,Picentes,Picentini +pice,pice,pices +pichey,picheys +pichiciago,pichiciagos +pichiciego,pichiciegos +Pichileminian,Pichileminians +pichiy,pichiys +pichurim bean,pichurim beans +pichvai,pichvais +picid,picids +pickage,pickages +pickaninny,pickaninnies +pick-axe,pick-axes +pickaxe,pickaxes +pickax,pickaxes +pickeerer,pickeerers +pickelhaube,pickelhaubes,pickelhauben +pickerel,pickerel,pickerels +pickerelweed,pickerelweeds +picker,pickers +picker-upper,picker-uppers +picker-up,pickers-up +pickery,pickeries +picketee,picketees +picketer,picketers +picket fence,picket fences +picket line,picket lines +picket,pickets +picket pool,picket pools +pickfest,pickfests +pickguard,pickguards +picking,pickings +pickled egg,pickled eggs +pickled onion,pickled onions +picklehead,pickleheads +pickle-herring,pickle-herrings +pickle,pickles +pickle,pickles +pickler,picklers +pickling,picklings +picklist,picklists +picklock,picklocks +pick-me-up,pick-me-ups +pickmire,pickmires +pickney,pickneys +picknick,picknicks +pick 'n' mix,pick 'n' mixes +pick off,pick offs +pickoff,pickoffs +pick of the litter,picks of the litter +pickpenny,pickpennies +pick,picks +pickpocketer,pickpocketers +pick-pocket,pick-pockets +pickpocket,pickpockets +pickpurse,pickpurses +pick six,pick sixes +pick-six,pick-sixes +pick stitch,pick stitches +picksy,picksies +pickthank,pickthanks +picktooth,picktooths +pickup artist,pickup artists +pick-up joint,pick-up joints +pick up line,pick up lines +pick-up line,pick-up lines +pick up,pick ups +pick-up,pick-ups +pickup,pickups +pick up truck,pick up trucks +pickup truck,pickup trucks +picky,pickies +picnic basket,picnic baskets +picnic egg,picnic eggs +picnicker,picnickers +picnic,picnics +picnic table,picnic tables +picoampere,picoamperes +pico-amp,pico-amps +picoamp,picoamps +picobarn,picobarns +picobirnavirus,picobirnaviruses +picocell,picocells +picocurie,picocuries +picocyanobacterium,picocyanobacteria +picoeucaryote,picoeucaryotes +picoeukaryote,picoeukaryotes +pico-farad,pico-farads +picofarad,picofarads +picogramme,picogrammes +picogram,picograms +pico-joule,pico-joules +picojoule,picojoules +picokatal,picokatals +picokelvin,picokelvins +picolinate,picolinates +picoline,picolines +picolinium,picoliniums +picoliter,picoliters +picolitre,picolitres +picometer,picometers +picometre,picometres +picomole,picomoles +picomol,picomols +piconet,piconets +piconewton,piconewtons +pico-ohm,pico-ohms +picoradian,picoradians +picornavirus,picornaviruses +picosatellite,picosatellites +picosat,picosats +picosecond,picoseconds +picotee,picotees +picotiter,picotiters +picotitre,picotitres +picot,picots +pico-volt,pico-volts +picovolt,picovolts +pico-watt,pico-watts +picowatt,picowatts +pic,pics +pic,pics,pix +picqueter,picqueters +picramate,picramates +picrate,picrates +picrotoxin,picrotoxins +picrylhydrazyl,picrylhydrazyls +picryl,picryls +pictel,pictels +pictogramme,pictogrammes +pictogram,pictograms +pictograph,pictographs +pictorial convention,pictorial conventions +pictorialist,pictorialists +pictorial,pictorials +Pict,Picts +pictural,picturals +pictura,picturae +picture book,picture books +picturebook,picturebooks +picture box,picture boxes +picture bride,picture brides +picture card,picture cards +picture dictionary,picture dictionaries +picturegoer,picturegoers +picture message,picture messages +picture molding,picture moldings +picture paper,picture papers +picture,pictures +picture rail,picture rails +picture rod,picture rods +picturer,picturers +picturization,picturizations +piculet,piculets +picul,piculs +PICU,PICUs +piddle,piddles +piddler,piddlers +piddock,piddocks +pidgeon,pidgeons +pidgin,pidgins +pidyon haben,pidyon habens +pidyon haBen,pidyon haBens +Pidyon Haben,Pidyon Habens +piebald,piebalds +pieboy,pieboys +piece de resistance,pieces de resistance +piΓ¨ce de rΓ©sistance,piΓ¨ces de rΓ©sistance +piΓ¨ce d'occasion,piΓ¨ces d'occasion +piecemeal,piecemeals +piΓ¨ce montΓ©e,piΓ¨ces montΓ©es +piecener,pieceners +piece of ass,pieces of ass +piece of clothing,pieces of clothing +piece of crap,pieces of crap +piece of crumpet,pieces of crumpet +piece of eight,pieces of eight +piece of furniture,pieces of furniture +piece of meat,pieces of meat +piece of paper,pieces of paper +piece of pork,pieces of pork +piece of shit,pieces of shit +piece of tail,pieces of tail +piece of work,pieces of work +piece,pieces +piece rate,piece rates +piecer,piecers +pieceworker,pieceworkers +pie chart,pie charts +piechart,piecharts +pie-chucker,pie-chuckers +pied-a-terre,pieds-a-terre +pied-Γ -terre,pieds-Γ -terre +Piedmontese,Piedmontese +piedmontite,piedmontites +piedmont,piedmonts +pied noir,pieds noirs +piedouche,piedouches +piΓ©douche,piΓ©douches +pied piper,pied pipers +pied wagtail,pied wagtails +pie-eater,pie-eaters +piefight,piefights +pie floater,pie floaters +pie graph,pie graphs +pie hole,pie holes +pie-hole,pie-holes +piehole,pieholes +pieing,pieings +piemaker,piemakers +pieman,piemen +pie menu,pie menus +piem,piems +piend,piends +pie pan,pie pans +pie,pie,pies +pie,pies +pieplant,pieplants +piepoudre,piepoudres +piepowder,piepowders +pierage,pierages +piercee,piercees +piercel,piercels +piercer,piercers +pier glass,pier glasses +pierglass,pierglasses +pierhead line,pierhead lines +pierhead,pierheads +pierid,pierids +piermaster,piermasters +pierogi,pierogi,pierogies,pierogis +pier,piers +pierrot,pierrots +pier table,pier tables +pie safe,pie safes +pie server,pie servers +pieshop,pieshops +piesmatid,piesmatids +pie supper,pie suppers +pieta,pietas +pietΓ ,pietΓ s +pietist,pietists +piet-my-vrou,piet-my-vrous +piet,piets +pie-wipe,pie-wipes +piewipe,piewipes +piewoman,piewomen +piezoceramic,piezoceramics +piezocoefficient,piezocoefficients +piezoelectric effect,piezoelectric effects +piezoelectric,piezoelectrics +piezoglypt,piezoglypts +piezometer,piezometers +piezophile,piezophiles +piezopolymer,piezopolymers +piezoresistive effect,piezoresistive effects +piezoresponse,piezoresponses +piezotransducer,piezotransducers +pifithrin,pifithrins +pIgA,pIgAs +pig dog,pig dogs +pigeoneer,pigeoneers +pigeongram,pigeongrams +pigeonhawk,pigeonhawks +pigeon hole,pigeon holes +pigeon-hole,pigeon-holes +pigeonhole,pigeonholes +pigeonholer,pigeonholers +pigeonholing,pigeonholings +pigeonite,pigeonites +pigeon pair,pigeon pairs +pigeon pea,pigeon peas +pigeon,pigeons +pigeonry,pigeonries +pigface,pigfaces +pigfish,pigfishes,pigfish +pig-footed bandicoot,pig-footed bandicoots +pigfoot,pigfoots +pig fucker,pig fuckers +pig-fucker,pig-fuckers +pigfucker,pigfuckers +piggery,piggeries +piggin,piggins +pigg,piggs +pIgG,pIgGs +PIgG,PIgGs +piggybacker,piggybackers +piggy bank,piggy banks +piggybank,piggybanks +piggy,piggies +piggy wiggy,piggy wiggies +piggy-wig,piggy wigs +pightel,pightels +pightle,pightles +pig in a poke,pigs in a poke,pigs in pokes +piglet,piglets +pigling,piglings +pigman,pigmen +pigmentation,pigmentations +pigmentocracy,pigmentocracies +pigment,pigments +pIgM,pIgMs +pigmy,pigmies +pignolia,pignolias +pignoration,pignorations +pig-nosed turtle,pig-nosed turtles +pig-nose turtle,pig-nose turtles +pignose turtle,pignose turtles +pignus,pignora +pignut,pignuts +pigopolist,pigopolists +pigopoly,pigopolies +pigout,pigouts +pigpen,pigpens +pig,pigs +pig,pigs +pig,pigs +pig run,pig runs +pig-run,pig-runs +pigskin,pigskins +pig-sticking,pig-stickings +pig's trotter,pigs' trotters +pigsty,pigsties +pigtail,pigtails +pigwidgeon,pigwidgeons +pihoihoi,pihoihoi +PI IgG,PI IgGs +PIIgG,PIIgGs +Pikachu,Pikachu,Pikachus +pika,pikas +pikehead,pikeheads +pikelet,pikelets +pikelin,pikelins +pikeman,pikemen +pikeminnow,pikeminnows +pikeperch,pikeperches,pikeperch +pike-perch,pike-perch,pike-perches +pike,pikes +pike,pikes +pike pole,pike poles +piker,pikers +pikestaff,pikestaffs +piketail,piketails +pikey,pikeys +pikey,pikeys +pikkie,pikkies +pikul,pikuls +pilaff,pilaffs +pilaf,pilafs +pilage,pilages +pilargid,pilargids +pilaster,pilasters +pilastre,pilastres +pilau,pilaus +pilaw,pilaws +pilchard,pilchard,pilchards +pilcher,pilchers +pilcher,pilchers +pilch,pilches +pilcrow,pilcrows +pileated gibbon,pileated gibbons +pileated woodpecker,pileated woodpeckers +pile driver,pile drivers +piledriver,piledrivers +pileipellis,pileipelles +pilekiid,pilekiids +pilement,pilements +pilentum,pilentums,pilenta +pileorhiza,pileorhizae +pile,piles +pile,piles +pile,piles +pile,piles +piler,pilers +pileum,pilea +pile-up,pile-ups +pileup,pileups +pileus,pilei +pileworm,pileworms +pilferer,pilferers +pilgarlick,pilgarlicks +pilgarlic,pilgarlics +pilgrimage,pilgrimages +pilgrim,pilgrims +Pilgrim,Pilgrims +pilicide,pilicides +pilidium,pilidia +pilid,pilids +piling,pilings +pilin,pilins +pili nut,pili nuts +pillager,pillagers +pillar-biter,pillar-biters +pillar block,pillar blocks +pillar box,pillar boxes +pillar-box red,pillar-box reds +pillaret,pillarets +pillarist,pillarists +pillar of the community,pillars of the community +pillar,pillars +pillau,pillaus +pillbox,pillboxes +pill bug,pill bugs +pillbug,pillbugs +piller,pillers +pillhead,pillheads +pilling,pillings +pillion,pillions +pill mill,pill mills +pillock,pillocks +pillory,pillories +pillowbeer,pillowbeers +pillow-biter,pillow-biters +pillow block,pillow blocks +pillowbook,pillowbooks +pillow box,pillow boxes +pillow case,pillow cases +pillowcase,pillowcases +pillow fight,pillow fights +pillow lava,pillow lavas +pillow,pillows +pillowslip,pillowslips +pill,pills +pill,pills +pill,pills +pill to swallow,pills to swallow +pillworm,pillworms +pillwort,pillworts +pilocarpine,pilocarpines +piloceratid,piloceratids +pilocyte,pilocytes +piloerection,piloerections +piloerector,piloerectors +pilomatrixoma,pilomatrixomas +pilosebaceous unit,pilosebaceous units +pilotage,pilotages +pilot balloon observation,pilot balloon observations +pilot balloon,pilot balloons +pilotfish,pilotfishes,pilotfish +pilot fish,pilot fish,pilot fishes +pilot hole,pilot holes +pilot-hole,pilot-holes +pilothouse,pilothouses +piloti,pilotis +pilot light,pilot lights +pilot officer,pilot officers +pilot,pilots +pilot plant,pilot plants +pilot vehicle,pilot vehicles +pilot whale,pilot whales +pilour,pilours +pilsener,pilseners +pilsner,pilsners +pilumnid,pilumnids +pilum,pila,pilums +pilus,pili +pilwe,pilwes +pimarate,pimarates +pimbina,pimbinas +pimelate,pimelates +pimelodid,pimelodids +pimeloyl,pimeloyls +pimenta,pimentas +pimento,pimentos,pimentoes +piment,piments +pi meson,pi mesons +pimiento,pimientos +pi-minus,pi-minuses +pimlico,pimlicos,pimlicoes +pimoid,pimoids +pimpdom,pimpdoms +pimpernel,pimpernels +PIM,PIMs +pimpinel,pimpinels +pimple,pimples +pimpmobile,pimpmobiles +pimp,pimps +pimp slap,pimp slaps +pimp-slap,pimp-slaps +pinacocyte,pinacocytes +pinacoderm,pinacoderms +pinacoid,pinacoids +piΓ±a colada,piΓ±a coladas +pinacolborane,pinacolboranes +pinacolin,pinacolins +pinacol,pinacols +pinacol rearrangement,pinacol rearrangements +pinacone,pinacones +pinacotheca,pinacothecas +pinacothek,pinacotheks +pinafore,pinafores +pinakone,pinakones +pinakothek,pinakotheks +pinanediol,pinanediols +pinaster,pinasters +pinata,pinatas +piΓ±ata,piΓ±atas +pinate,pinates +pinax,pinaces +Pinay,Pinays +pinballer,pinballers +pinball,pinballs +pinboard,pinboards +pin bone,pin bones +pince-nez,pince-nez +pincer attack,pincer attacks +pincer,pincers +pinch cake,pinch cakes +pinchcock,pinchcocks +pincher,pinchers +pinchfist,pinchfists +pinchforce,pinchforces +pinch hit,pinch hits +pinch hitter,pinch hitters +pinch-hitter,pinch-hitters +pinch of salt,pinches of salt +pinchpenny,pinchpennies +pinch,pinches +pinch point,pinch points +pinch runner,pinch runners +pincloth,pincloths +pincushioning,pincushionings +pin cushion,pin cushions +pincushion,pincushions +pindal,pindals +pinda,pindas +Pindaric flight,Pindaric flights +Pindarick,Pindaricks +Pindaric,Pindarics +Pindarist,Pindarists +pindar,pindars +pinder,pinders +pindick,pindicks +pinealectomy,pinealoctomies +pineal gland,pineal glands +pinealocyte,pinealocytes +pinealocytoma,pinealocytomas +pinealoma,pinealomas,pinealomata +pineal,pineals +pineapple guava,pineapple guavas +pineapple,pineapples +pineaster,pineasters +pine cone,pine cones +pinecone,pinecones +pinefinch,pinefinches +pine green,pine greens +pine marten,pine martens +pine needle,pine needles +pinene,pinenes +pine nut,pine nuts +pinenut,pinenuts +pineoblastoma,pineoblastomas,pineoblastomata +pineocytoma,pineocytomas +pine,pines +pinery,pineries +pinesap,pinesaps +pine terpene,pine terpenes +pine tree,pine trees +pinetum,pineta,pinetums +pine weevil,pine weevils +pine woods snake,pine woods snakes +pineyard,pineyards +pinfall,pinfalls +pinfeather,pinfeathers +pinfire,pinfires +pinfish,pinfishes,pinfish +pinfold,pinfolds +pingback,pingbacks +pingee,pingees +pinger,pingers +pingle,pingles +pingler,pinglers +pingo,pingos +ping,pings +ping pong ball,ping pong balls +ping-pongist,ping-pongists +ping pong show,ping pong shows +pinguecula,pingueculas +pinguescence,pinguescences +pinguicula,pinguiculas +pinguipedid,pinguipedids +pin-head,pin-heads +pinhead,pinheads +pinhold,pinholds +pinhole camera,pinhole cameras +pin-hole,pin-holes +pinhole,pinholes +pinid,pinids +pining,pinings +pinin,pinins +pinion,pinions +pinion,pinions +pink cigar,pink cigars +pinkeen,pinkeens +pink elephant,pink elephants +Pinkerton,Pinkertons +Pinkerton Syndrome,Pinkerton Syndromes +pink-eye,pink-eyes +pinkeye,pinkeyes +pink film,pink films +pink gin,pink gins +pinkie,pinkies +pinking iron,pinking irons +pink jersey,pink jerseys +pinko,pinkos +pink,pinks +pink,pinks +pink,pinks +pink,pinks +Pink,Pinks +pink salon,pink salons +pinkskin,pinkskins +pink slip,pink slips +pink snapper,pink snappers +pink spot,pink spots +pink stern,pink sterns +pink triangle,pink triangles +pink 'un,pink 'uns +pinky finger,pinky fingers +pinky,pinkies +pinky,pinkies +pinky promise,pinky promises +pinnace,pinnaces +pinnacle,pinnacles +pinna,pinnas,pinnae +pinnaplasty,pinnaplasties +pinnation,pinnations +pinnatiped,pinnatipeds +pinner,pinners +pinnet,pinnets +pinnid,pinnids +pinnigrade,pinnigrades +pinniped,pinnipeds +pinnock,pinnocks +pinnothere,pinnotheres +pinnotherid,pinnotherids +pinnula,pinnulae +pinnule,pinnules +PIN number,PIN numbers +pinny,pinnies +pin oak,pin oaks +Pinocchio,Pinocchios +pinon,pinons +pinophyte,pinophytes +pinopod,pinopods +pinosity,pinositys +pinosome,pinosomes +Pinot Noir,Pinot Noirs +pinot,pinots +pinout,pinouts +Pinoy,Pinoys +pinpatch,pinpatches +pin,pins +PIN,PINs +pinpointer,pinpointers +pin-point,pin-points +pinpoint,pinpoints +pin-prick,pin-pricks +pinprick,pinpricks +pinscher,pinschers +pinscreen,pinscreens +pinsel,pinsels +pinsetter,pinsetters +pinstripe,pinstripes +pinstriper,pinstripers +pintable,pintables +pintado,pintados +pintail comb,pintail combs +pintail,pintails +pinta,pintas +pintel,pintels +pinter,pinters +pint glass,pint glasses +pintglass,pintglasses +pintid,pintids +pintle,pintles +pintman,pintmen +pinto bean,pinto beans +pinto,pintos,pintoes +Pinto,Pintos,Pintoes +pint,pints +pint pot,pint pots +pintuck,pintucks +Pintupi,Pintupis,Pintupi +pintxo,pintxos +pinule,pinules +pin-up,pin-ups +pinup,pinups +pinus,pinuses +pinwale,pinwales +pinweed,pinweeds +pinwheel,pinwheels +pinworm,pinworms +pinxterbloom azalea,pinxterbloom azaleas +pinyin,pinyin +pinyon,pinyons +piolet,piolets +pioneer axon,pioneer axons +pioneer,pioneers +pioner,pioners +pionium,pioniums +pion,pions +piony,pionies +piophilid,piophilids +piopio,piopios +PIO,PIOs +piosity,piosities +piosphere,piospheres +piot,piots +pious fiction,pious fictions +pious fraud,pious frauds +pipal,pipals +pipa,pipas +pipe bomb,pipe bombs +pipebomb,pipebombs +pipe cleaner,pipe cleaners +pipecolate,pipecolates +pipecoline,pipecolines +pipe dream,pipe dreams +pipedream,pipedreams +pipefish,pipefishes,pipefish +pipefitter,pipefitters +pipeful,pipefuls,pipesful +pipelayer,pipelayers +pipeline,pipelines +pipeliner,pipeliners +Pipel,Pipels +pipeman,pipemen +pipemouth,pipemouths +pipe-opener,pipe-openers +pipe organ,pipe organs +pipe,pipes +piperade,piperades +pipΓ©rade,pipΓ©rades +piperazinone,piperazinones +piperazinyl,piperazinyls +piperidge,piperidges +piperidinedione,piperidinediones +piperidine,piperidines +piperidinyl,piperidinyls +piperidone,piperidones +piper longum,piper longums +piper,pipers +pipesmoker,pipesmokers +pipe snake,pipe snakes +pipestem,pipestems +pipe tong,pipe tongs +pipet,pipets +pipette,pipettes +pipettor,pipettors +pipe union,pipe unions +pipeworker,pipeworkers +pipewort,pipeworts +pipe wrench,pipe wrenches +piphat,piphats +pipid,pipids +piping bag,piping bags +pipi,pipis +pi,pis +pipistrelle,pipistrelles +pipistrel,pipistrels +pipit,pipits +pipkin,pipkins +pi-plus,pi-pluses +pippin,pippins +pip,pips +pip,pips +pip,pips +pip,pips +pip,pips +pippul,pippuls +pipra,pipras +piprid,piprids +pipsissewa,pipsissewas +pip-squeak,pip-squeaks +pipsqueak,pipsqueaks +pipunculid,pipunculids +piqueerer,piqueerers +pique,piques +pique,piques +piquΓ©,piquΓ©s +piquerist,piquerists +piquillo,piquillos +piragua,piraguas +pirai,pirais +pirameter,pirameters +piraΓ±a,piraΓ±as +piranha,piranhas +Pirani gauge,Pirani gauges +Pirani,Piranis +pirarucu,pirarucus +pirate,pirates +Pirate,Pirates +pirate radio,pirate radios +pirate round,pirate rounds +pirater,piraters +pirate ship,pirate ships +pirate spider,pirate spiders +piraya,pirayas +PIREP,PIREPs +PIRG,PIRGs +pirl,pirls +pirn,pirns +pirogi,pirogis,pirogies +pirogue,pirogues +piroplasma,piroplasmas +piroplasm,piroplasms +pirouette,pirouettes +pirozhok,pirozhki +pirrie,pirries +pisanka,pisanki,pisankas +Pisan,Pisans +pisaurid,pisaurids +piscary,piscaries +piscator,piscators +piscatory ring,piscatory rings +Piscean,Pisceans +Pisces,Pisces +piscetarian,piscetarians +pisciculture,piscicultures +pisciculturist,pisciculturists +piscina,piscinas +piscivore,piscivores +piscola,piscolas +pisco,piscos +pisco sour,pisco sours +pisΓ©,pisΓ©s +pisher,pishers +pishogue,pishogues +pish,pishes +pisidiid,pisidiids +pisiform bone,pisiform bones +pisiform,pisiforms +pismire,pismires +pisolite,pisolites +pisonia,pisonias +pissabed,pissabeds +piss ant,piss ants +piss-ant,piss-ants +pissant,pissants +piss artist,piss artists +piss-artist,piss-artists +pissboy,pissboys +pisser,pissers +pissery,pisseries +piss flap,piss flaps +piss-flap,piss-flaps +pisshead,pissheads +pisshole,pissholes +pisshouse,pisshouses +pissing contest,pissing contests +pissing war,pissing wars +piss lily,piss lilies +pissmire,pissmires +pissoir,pissoirs +piss pot,piss pots +pisspot,pisspots +piss-prophet,piss-prophets +piss-take,piss-takes +piss up,piss ups +piss-up,piss-ups +pisswhore,pisswhores +pissy bed,pissy beds +pistachio green,pistachio greens +pistachio,pistachios,pistachioes +pistacia,pistacias +pistacite,pistacites +pistareen,pistareens +pistazite,pistazites +piste,pistes +pistick,pisticks +pistillidium,pistillidia +pistil,pistils +pistle,pistles +pistolade,pistolades +pistoleer,pistoleers +pistole,pistoles +pistolet,pistolets +pistol grip,pistol grips +pistol,pistols +pistol shrimp,pistol shrimps +piston engine,piston engines +piston,pistons +piston ring,piston rings +piston rod,piston rods +pistosaurid,pistosaurids +pistrinum supper,pistrinum suppers +pit adder,pit adders +pit-adder,pit-adders +pitahaya,pitahayas +pit-a-pat,pit-a-pats +pitapat,pitapats +pita,pitas +pita,pitas +PITA,PITAs +pitaya,pitayas +pit bull,pit bulls +pit bull terrier,pit bull terriers +Pitcairner,Pitcairners +pitch accent,pitch accents +pitchblende,pitchblendes +pitch class,pitch classes +pitch count,pitch counts +pitched battle,pitched battles +pitched market,pitched markets +pitcher-bawd,pitcher-bawds +pitcherful,pitcherfuls,pitchersful +pitcher,pitchers +pitcher,pitchers +pitcher plant,pitcher plants +pitcher's count,pitcher's counts +pitchfest,pitchfests +pitchforkful,pitchforkfuls +pitchfork,pitchforks +pitching piece,pitching pieces +pitching,pitchings +pitching wedge,pitching wedges +pitch invasion,pitch invasions +pitchman,pitchmen +pitch mark,pitch marks +pitch out,pitch out +pitchout,pitchouts +pitch pine,pitch pines +pitch pipe,pitch pipes +pitch,pitches +pitch,pitches +pitch,pitches +pitchwoman,pitchwomen +pit-eye,pit-eyes +pitfall,pitfalls +pitful,pitfuls,pitsful +pithead,pitheads +pitheciid,pitheciids +pith helmet,pith helmets +pithivier,pithiviers +pithogue,pithogues +pitiamide,pitiamides +pitier,pitiers +PITI payment,PITI payments +pit lane,pit lanes +pitlane,pitlanes +pitman arm,pitman arms +pitman,pitmen +pitmaster,pitmasters +pit of the stomach,pits of the stomach +pitohui,pitohuis +pitomba,pitombas +piton,pitons +pitot head,pitot heads +pitot,pitots +pitot tube,pitot tubes +pitpan,pitpans +pit,pits +pit,pits +PIT,PITs +pit prop,pit props +pit stop,pit stops +pitta bread,pitta breads +pittance payment,pittance payments +pittance,pittances +pitta,pittas +pitta,pittas +pitted-shelled turtle,pitted-shelled turtles +pitted tubeshoulder,pitted tubeshoulders +pitter,pitters +pittid,pittids +pittite,pittites +pittosporum,pittosporums +Pittsburgher,Pittsburghers +pitty,pitties +pituicyte,pituicytes +pituicytoma,pituicytomas +pituita,pituitas +pituitary body,pituitary bodies +pituitary gland,pituitary glands +pituitary,pituitaries +pit viper,pit vipers +pitviper,pitvipers +pit-yacker,pit-yackers +pity guest,pity guests +pity party,pity parties +pityriasis,pityriases +pivalate,pivalates +pivaloyl,pivaloyls +pivanilide,pivanilides +pivotman,pivotmen +pivot,pivots +pixelation,pixelations +pixelation ratio,pixelation ratios +pixelization,pixelizations +pixel peeper,pixel peepers +pixel-peeper,pixel-peepers +pixel,pixels +pixel shader,pixel shaders +Pixie-Bob,Pixie-Bobs +pixie,pixies +pixmap,pixmaps +pix,pixes +pixy,pixies +pize,pizes +pizza bone,pizza bones +pizza box,pizza boxes +pizzaburger,pizzaburgers +pizza cutter,pizza cutters +pizza face,pizza faces +pizzaiolo,pizzaiolos,pizzaioli +pizzamaker,pizzamakers +pizza man,pizza men +pizzaman,pizzamen +pizza parlor,pizza parlors +pizza pie,pizza pies +pizza puff,pizza puffs +pizza sauce,pizza sauces +pizza shop,pizza shops +pizza store,pizza stores +pizza table,pizza tables +pizza wheel,pizza wheels +pizzella,pizzelle +pizzeria,pizzerias,pizzerie +pizzetta,pizzettas,pizzette +pizzette,pizzettes +pizzicato,pizzicatos +pizzle,pizzles +PKer,PKers +PK nail,PK nails +plaas,plaases +plaΓ§age,plaΓ§ages +placarder,placarders +placard,placards +placater,placaters +placationist,placationists +placation,placations +placeable,placeables +placeblog,placeblogs +placebo effect,placebo effects +placebo,placebos,placeboes +place card,place cards +placegetter,placegetters +place holder,place holders +placeholder,placeholders +placekicker,placekickers +place kick,place kicks +placekick,placekicks +placeman,placemen +placemark,placemarks +place mat,place mats +placement,placements +placement test,placement tests +place name,place names +place-name,place-names +placename,placenames +placental,placentals +placenta,placentae,placentas +placenticeratid,placenticeratids +place of articulation,places of articulation +place of decimals,places of decimals +place of worship,places of worship +place,places +placepot,placepots +placer,placers +placer,placers +place setting,place settings +placet,placets +place word,place words +placing,placings +placit,placits +placitum,placita +placket,plackets +plack,placks +placode,placodes +placoderm,placoderms +placodontid,placodontids +placoidian,placoidians +placoid,placoids +placozoan,placozoans +placozoa,placozoas +placunid,placunids +pladdy,pladdies +plagal cadence,plagal cadences +plaga,plagae +plage,plages +plagiariser,plagiarisers +plagiarist,plagiarists +plagiarizer,plagiarizers +plagiary,plagiaries +plagiaulacid,plagiaulacids +plagiocephaly,plagiocephalies +plagioclimax,plagioclimaxes +plagiopatagium,plagiopatagia +plagiosaurid,plagiosaurids +plagiosere,plagioseres +plagiostome,plagiostomes +plague,plagues +plaguer,plaguers +plagusiid,plagusiids +plaice,plaice,plaices +plaiding,plaidings +plaidoyer,plaidoyers +plaid,plaids +plainant,plainants +plainclothes man,plainclothes men +plainclothesman,plainclothesmen +plain dealer,plain dealers +plaining,plainings +plain Jane,plain Janes +plain line,plain lines +plain,plains +plain,plains +plainsman,plainsmen +plain-song,plain-songs +plainsong,plainsongs +plains-wanderer,plains-wanderers +plainswoman,plainswomen +plains zebra,plains zebras +plaintext,plaintexts +plaintiff,plaintiffs +plaint,plaints +plain-winged antshrike,plain-winged antshrikes +plaisance,plaisances +plaise,plaises +plaister,plaisters +plaiter,plaiters +plait,plaits +plakinid,plakinids +plakophilin,plakophilins +plamasser,plamassers +plamid,plamids +plamodel,plamodels +Planalto slaty antshrike,Planalto slaty antshrikes +plan A,plan As +planar graph,planar graphs +planarian,planarians +planariid,planariids +planar induction,planar inductions +planarium,planaria +planarization,planarizations +planarizing,planarizings +planaxid,planaxids +plan B,plan Bs +planche,planches +plancher,planchers +planchet,planchets +planchette,planchettes +planching,planchings +planch,planches +Planck area,Planck areas +Planck energy,Planck energies +Planck length,Planck lengths +Planck particle,Planck particles +Planck,Plancks +Planck time,Planck times +Planck unit,Planck units +planctomycete,planctomycetes +plane angle,plane angles +plane curve,plane curves +planeful,planefuls,planesful +planeload,planeloads +planemo,planemos +plane of ecliptic,planes of ecliptic +plane,planes +plane,planes +plane,planes +plane,planes +planer,planers +planer tree,planer trees +planespotter,planespotters +planeswalker,planeswalkers +plane table,plane tables +planetarian,planetarians +planetarium,planetariums,planetaria +planetary aberration,planetary aberrations +planetary body,planetary bodies +planetary nebula,planetary nebulas,planetary nebulae +planetary object,planetary objects +planetary ring,planetary rings +planetary system,planetary systems +planeteer,planeteers +planetesimal,planetesimals +planetessimal,planetessimals +planetoid,planetoids +planetologist,planetologists +planet,planets +plane tree,plane trees +planetree,planetrees +planet-ruler,planet-rulers +planetscape,planetscapes +planetule,planetules +planet wheel,planet wheels +planform,planforms +plangonologist,plangonologists +planigale,planigales +planimeter,planimeters +planing,planings +planisher,planishers +planishing roll,planishing rolls +planisphere,planispheres +planitia,planitias +plankboard,plankboards +plank,planks +plank-sheer,plank-sheers +plank spanker,plank spankers +plankter,plankters +planktivore,planktivores +planktologist,planktologists +plankway,plankways +planned economy,planned economies +planned language,planned languages +planner,planners +planoblast,planoblasts +planogram,planograms +planometer,planometers +planorbid,planorbids +planorbis,planorbises +planosol,planosols +plan,plans +plantacyanin,plantacyanins +Plantagenet,Plantagenets +plantain,plantains +plantain,plantains +planta,plantae +plantar fasciitis,plantar fasciitis +plantation nigger,plantation niggers +plantation,plantations +plant-cane,plant-canes +plant disease,plant diseases +planteater,planteaters +planter box,planter boxes +planter,planters +planthopper,planthoppers +plant hormone,plant hormones +planticle,planticles +plantigrade,plantigrades +planting,plantings +plantlet,plantlets +plantling,plantlings +plant milk,plant milks +plantocracy,plantocracies +plant,plants,plantΓ¦ +plant room,plant rooms +plantsman,plantsmen +plantule,plantules +planula,planulae +planum,plana +planxty,planxties +plaquet,plaquets +plaquette,plaquettes +plashet,plashets +plashing,plashings +plash,plashes +plash,plashes +plasma accelerator,plasma accelerators +plasmablast,plasmablasts +plasma cell,plasma cells +plasmacyte,plasmacytes +plasmacytoma,plasmacytomas +plasma display,plasma displays +plasma lamp,plasma lamps +plasmalemma,plasmalemmas,plasmalemmata +plasmalogen,plasmalogens +plasma membrane,plasma membranes +plasmapause,plasmapauses +plasmapheresis,plasmaphereses +plasma rifle,plasma rifles +plasma screen,plasma screens +plasmasphere,plasmaspheres +plasmatocyte,plasmatocytes +plasmator,plasmators +plasma TV,plasma TVs +plasma wakefield acceleration,plasma wakefield accelerations +plasma wakefield accelerator,plasma wakefield accelerators +plasmepsin,plasmepsins +plasmid,plasmids +plasmocyte,plasmocytes +plasmodesma,plasmodesmata +plasmodiid,plasmodiids +plasmodiocarp,plasmodiocarps +plasmodiophorid,plasmodiophorids +plasmoditrophoblast,plasmoditrophoblasts +plasmodium,plasmodia +plasmoid,plasmoids +plasmolyser,plasmolysers +plasmolysis,plasmolyses +plasmolyte,plasmolytes +plasmolyzer,plasmolyzers +plasmon,plasmons +plasm,plasms +plasson,plassons +plasterboard,plasterboards +plaster cast,plaster casts +plasterer bee,plasterer bees +plasterer,plasterers +plastering,plasterings +plastic art,plastic arts +plastic bag,plastic bags +plastic baton round,plastic baton rounds +plastic beauty,plastic beauties +plastic bullet,plastic bullets +plastic cheese,plastic cheeses +plastic deformation,plastic deformations +plastic explosive,plastic explosives +plastic flow,plastic flows +plastician,plasticians +plasticine,plasticines +Plasticine,Plasticines +plasticiser,plasticisers +plasticization,plasticizations +plasticizer,plasticizers +Plastic Paddy,Plastic Paddies +plastic,plastics +plastic surgeon,plastic surgeons +plastic surgery,plastic surgeries +plastide,plastides +plastid,plastids +plastidule,plastidules +plastifier,plastifiers +plastin,plastins +plastoglobule,plastoglobules,plastoglobuli +plastome,plastomes +plastron,plastrons +platacanthomyid,platacanthomyids +platane,platanes +platanistid,platanistids +platanistoid,platanistoids +platanna,platannas +platan,platans +plataspid,plataspids +platband,platbands +plat du jour,plats du jour +plate appearance,plate appearances +plateau effect,plateau effects +plateau,plateaus,plateaux +plateful,platefuls,platesful +plate girder,plate girders +plate-glass university,plate-glass universities +plateia,plateias +platelayer,platelayers +plateless turtle,plateless turtles +platelet function test,platelet function tests +platelet,platelets +platel,platels +platemaker,platemakers +plateman,platemen +platen,platens +plateosaurid,plateosaurids +plateosaurus,plateosauruses +plate,plates +plate reader,plate readers +plater,platers +plates of meat,plates of meat +plateway,plateways +platform boot,platform boots +platformer,platformers +platform game,platform games +platform,platforms +platform screen door,platform screen doors +platform shoe,platform shoes +platform ticket,platform tickets +plathelminth,plathelminths +platinate,platinates +plating carrier,plating carriers +plating,platings +platinochloride,platinochlorides +platinocyanate,platinocyanates +platinocyanide,platinocyanides +platinode,platinodes +platinoid,platinoids +platin,platins +platinum blonde,platinum blondes +platinumsmith,platinumsmiths +platinum sombrero,platinum sombreros +platitude,platitudes +platitudinarian,platitudinarians +platometer,platometers +Platonic dialogue,Platonic dialogues +Platonic hydrocarbon,Platonic hydrocarbons +platonic love,platonic loves +platonic relationship,platonic relationships +Platonic solid,Platonic solids +Platonic year,Platonic years +platonist,platonists +Platonist,Platonists +platonizer,platonizers +platoonmate,platoonmates +platoon,platoons +plat,plats +plat,plats +plat,plats +platterful,platterfuls,plattersful +platter,platters +platter,platters +platting,plattings +platycephalid,platycephalids +platyceratid,platyceratids +platyclade,platyclades +platycnemidid,platycnemidids +platycnemid,platycnemids +platyfish,platyfishes,platyfish +platygasterid,platygasterids +platygastrid,platygastrids +platyhelminth,platyhelminths +platyischnopid,platyischnopids +platymeter,platymeters +platynotan,platynotans +platypezid,platypezids +platy,platys,platies,platy +platypnea,platypneas +platypodid,platypodids +platypusary,platypusaries +platypussary,platypussaries +platyrhine,platyrhines +platyrhinid,platyrhinids +platyrrhine,platyrrhines +platysma,platysmas,platysmata +platysternid,platysternids +platystictid,platystictids +platystomatid,platystomatids +platytroctid,platytroctids +plaudite,plaudites +plaudit,plaudits +plausibility,plausibilities +plaw,plaws +playa,playas +playa,playas +playathon,playathons +playback,playbacks +playback singer,playback singers +playbill,playbills +playblast,playblasts +playboard,playboards +playbook,playbooks +playbox,playboxes +playboy,playboys +Playboy,Playboys +playbus,playbuses +playdate,playdates +playday,playdays +playdown,playdowns +player character,player characters +player-manager,player-managers +player piano,player pianos +player,players +playette,playettes +Playfair cipher,Playfair ciphers +playfeer,playfeers +playfellow,playfellows +playfield,playfields +play fight,play fights +playfight,playfights +playframe,playframes +playfriend,playfriends +playgirl,playgirls +playgoer,playgoers +playground,playgrounds +playground taunt,playground taunts +playgroup,playgroups +play house,play houses +playhouse,playhouses +playing card,playing cards +playing field,playing fields +playing,playings +playland,playlands +playleader,playleaders +playlet,playlets +playlist,playlists +playlot,playlots +playmaker,playmakers +Playmaster,Playmasters +playmate,playmates +playmat,playmats +playnt,playnts +playock,playocks +playoff beard,playoff beards +play-off,play-offs +playoff,playoffs +play on words,plays on words +playpen,playpens +playpipe,playpipes +playreading,playreadings +playright,playrights +playroom,playrooms +playscape,playscapes +playschool,playschools +playset,playsets +playsheet,playsheets +playsong,playsongs +playspace,playspaces +PlayStation,PlayStations +play street,play streets +play structure,play structures +playsuit,playsuits +playte,playtes +playtester,playtesters +playtext,playtexts +plaything,playthings +playthrough,playthroughs +playtime,playtimes +playtoy,playtoys +playworker,playworkers +playwright,playwrights +playwriter,playwriters +plaza,plazas +PLB,PLBs +PLCC,PLCCs +PLD,PLDs +plea bargain,plea bargains +plea-bargain,plea-bargains +plea deal,plea deals +pleader,pleaders +pleading,pleadings +plea in abatement,pleas in abatement +plea of the crown,pleas of the crown +plea,pleas +pleasance,pleasances +pleasant,pleasants +pleasantry,pleasantries +pleasaunce,pleasaunces +pleaser,pleasers +pleasing lacewing,pleasing lacewings +pleasure boat,pleasure boats +pleasurecraft,pleasurecraft +pleasure craft,pleasure crafts +pleasure dome,pleasure domes +pleasuredome,pleasuredomes +pleasure,pleasures +pleasurer,pleasurers +pleasurist,pleasurists +pleating,pleatings +pleat,pleats +plebeian,plebeians +plebe,plebes +plebian,plebians +plebicolist,plebicolists +plebiscite,plebiscites +plebiscitum,plebiscitums +pleb,plebs +pleck,plecks +plecoglossid,plecoglossids +pleco,plecos +plec,plecs +plectognath,plectognaths +plectoneme,plectonemes +plectostele,plectosteles +plectreurid,plectreurids +plectrum,plectrums,plectra +pledgee,pledgees +pledge,pledges +pledger,pledgers +pledgery,pledgeries +pledget,pledgets +pledgor,pledgors +pledg,pledges +Pleiadean,Pleiadeans +pleiad,pleiads +Pleiad,Pleiads +pleid,pleids +pleiopod,pleiopods,pleiopoda +pleiopus,pleiopodes +pleisiomorph,pleisiomorphs +plekton,plektons +PLEM,PLEMs +plenary court,plenary courts +plenary,plenaries +plenary session,plenary sessions +plenary speaker,plenary speakers +plenary talk,plenary talks +plenilune,plenilunes +plenipotentiary,plenipotentiaries +plenishing,plenishings +plenist,plenists +plenitude,plenitudes +plentitude,plentitudes +plenum chamber,plenum chambers +plenum,plenums,plena +pleochroic halo,pleochroic haloes +pleonaste,pleonastes +pleonast,pleonasts +pleonexia,pleonexias +pleonite,pleonites +pleopod,pleopods,pleopoda +pleopus,pleopodes +pleosomite,pleosomites +plerergate,plerergates +plerocercoid,plerocercoids +plerophory,plerophories +plesance,plesances +plesh,pleshes +plesiadapid,plesiadapids +plesiomorph,plesiomorphs +plesiomorphy,plesiomorphies +plesiopid,plesiopids +plesiosaurian,plesiosaurians +plesiosaurid,plesiosaurids +plesiosaur,plesiosaurs +plessimeter,plessimeters +plessite,plessites +plestor,plestors +plethodontid,plethodontids +plethora,plethoras +plethory,plethories +plethron,plethra +plethrum,plethra +plethysmograph,plethysmographs +plethysmometer,plethysmometers +pletzel,pletzels +pleural cavity,pleural cavities +pleural lobe,pleural lobes +pleurant,pleurants +pleura,pleurae +pleurapophysis,pleurapophyses +pleurisy,pleurisies +pleurite,pleurites +pleurobranchid,pleurobranchids +pleurobranch,pleurobranchs +pleurocarp,pleurocarps +pleurocentrum,pleurocentra +pleurocerid,pleurocerids +pleurocystidium,pleurocystidia +pleurodesis,pleurodeses +pleurodire,pleurodires +pleurodontid,pleurodontids +pleurodont,pleurodonts +pleurodynia,pleurodynias +pleuronectid,pleuronectids +pleuron,pleura +pleuroperipneumony,pleuroperipneumonies +pleuropneumonia,pleuropneumonias +pleurosaurid,pleurosaurids +pleurosteon,pleurostea +pleurotomariid,pleurotomariids +pleurotomy,pleurotomies +plevin,plevins +plewd,plewds +plew,plews +pleximeter,pleximeters +plexin,plexins +plexor,plexors +plex,plexes +plexus,plexus,plexuses +pleyt,pleyts +pliability,pliabilities +plica,plicas,plicae +plication,plications +plicatulid,plicatulids +plicature,plicatures +plicidentine,plicidentines +plier,pliers +plighter,plighters +plight,plights +plight,plights +plight,plights +plig,pligs +Plimsoll line,Plimsoll lines +Plimsoll mark,Plimsoll marks +plimsoll,plimsolls +pling,plings +plinking,plinkings +plink,plinks +plinth,plinths +pliomerid,pliomerids +pliopithecid,pliopithecids +plioplatecarpine,plioplatecarpines +pliosaurid,pliosaurids +pliosaur,pliosaurs +plipper,plippers +plip,plips +Plip,Plips +plisky,pliskies +plitt,plitts +ploceid,ploceids +ploce,ploces +plodder,plodders +plod,plods +ploidy,ploidies +plongΓ©e,plongΓ©es +plonker,plonkers +plonko,plonkos +plonk,plonks +plonk,plonks +ploop,ploops +ploot,ploots +ploot,ploots +plop,plops +plosion,plosions +plosive,plosives +plot bunny,plot bunnies +plotbunny,plotbunnies +plot device,plot devices +plot hole,plot holes +plothole,plotholes +plotid,plotids +Plotinist,Plotinists +plotland,plotlands +plotline,plotlines +plotopterid,plotopterids +plotosid,plotosids +plot,plots +plotter,plotters +plot twist,plot twists +ploughboy,ploughboys +plougher,ploughers +ploughgang,ploughgangs +ploughgate,ploughgates +ploughgirl,ploughgirls +ploughhead,ploughheads +ploughhorse,ploughhorses +ploughland,ploughlands +ploughman,ploughmen +ploughman's lunch,ploughman's lunches,ploughmen's lunches +ploughman's,ploughman's +plough,ploughs +ploughpoint,ploughpoints +ploughshare,ploughshares +plough stop,plough stops +ploughtail,ploughtails +ploughwoman,ploughwomen +ploughwright,ploughwrights +plover,plovers +plowboy,plowboys +plower,plowers +plowgate,plowgates +plowgirl,plowgirls +plowhead,plowheads +plowhorse,plowhorses +plowing,plowings +plowland,plowlands +plowman,plowmen +plowman's lunch,plowman's lunches +plow,plows +plowpoint,plowpoints +plowshare,plowshares +plow stop,plow stops +plowtail,plowtails +plowwoman,plowwomen +plowwright,plowwrights +ploy,ploys +plucker,pluckers +pluckiness,pluckinesses +plucking,pluckings +plucking post,plucking posts +plucot,plucots +pluff,pluffs +plugback,plugbacks +plugboard,plugboards +plugfest,plugfests +plugged nickel,plugged nickels +plugger,pluggers +plugging,pluggings +plug hat,plug hats +plughole,plugholes +plug-in,plug-ins +plugin,plugins +plug nickel,plug nickels +plug,plugs +pluma,plumae +plumassier,plumassiers +plumbate,plumbates +plumb bob,plumb bobs +plumb-bob,plumb-bobs +plumber block,plumber blocks +plumber,plumbers +plumber's friend,plumber's friends +plumber's helper,plumber's helpers +plumber's snake,plumber's snakes +plumbing,plumbings +plumbing snake,plumbing snakes +plumbite,plumbites +plumb line,plumb lines +plumbline,plumblines +plum blossom,plum blossoms +plumb,plumbs +plumbylene,plumbylenes +plumbylidene,plumbylidenes +plumcot,plumcots +plumed thistle,plumed thistles +plumelet,plumelets +plume moth,plume moths +plume nutmeg,plume nutmegs +plume,plumes +plumeria,plumerias +plumery,plumeries +plumicorn,plumicorns +pluming,plumings +plumiped,plumipeds +plummet,plummets +plumper,plumpers +plumpie,plumpies +plumping,plumpings +plum,plums +plump,plumps +plum pudding,plum puddings +plum tomato,plum tomatoes +plum tom,plum toms +plum tree,plum trees +plumula,plumulas,plumulae +plumularian,plumularians +plumularia,plumularias,plumulariae +plumule,plumules +plunderer,plunderers +plunderfish,plunderfishes,plunderfish +plundering,plunderings +plunge bra,plunge bras +plunge,plunges +plunge pool,plunge pools +plunger,plungers +plunge waterfall,plunge waterfalls +plunging,plungings +plunket,plunkets +pluot,pluots +pluperfect,pluperfects +plurale tantum,pluralia tantum +pluralisability,pluralisabilities +pluralisation,pluralisations +pluralism,pluralisms +pluralist,pluralists +pluralizability,pluralizabilities +pluralization,pluralizations +pluralizer,pluralizers +plural marriage,plural marriages +plural noun,plural nouns +plural,plurals +plurigenus,plurigenera +pluriliteral,pluriliterals +plurispore,plurispores +plushie,plushies +plush toy,plush toys +plus-minus sign,plus-minus signs +plus one,plus ones +plus-one,plus-ones +plus,pluses,plusses +plus sign,plus signs +plus size,plus sizes +Plutarch,Plutarchs +plutellid,plutellids +plute,plutes +pluteus,pluteuses,plutei +plutino,plutinos +plutocracy,plutocracies +plutocrat,plutocrats +plutodemocracy,plutodemocracies +plutoid,plutoids +Pluto monkey,Pluto monkeys +Plutonian,Plutonians +plutonist,plutonists +plutonomics,plutonomics +plutonomist,plutonomists +pluton,plutons +plutophile,plutophiles +Plutophile,Plutophiles +pluvial,pluvials +pluviameter,pluviameters +pluvian,pluvians +pluviograph,pluviographs +pluviometer,pluviometers +plycount,plycounts +plyer,plyers +plyght,plyghts +plyg,plygs +plynth,plynths +ply,plies +PMB,PMBs +PMI chart,PMI charts +PMO,PMOs +pneuma,pneumas,pneumata +pneumatic bone,pneumatic bones +pneumatic device,pneumatic devices +pneumatic,pneumatics +pneumatic trough,pneumatic troughs +pneumatique,pneumatiques +pneumatocele,pneumatoceles +pneumatocyst,pneumatocysts +pneumatogram,pneumatograms +pneumatograph,pneumatographs +pneumatologist,pneumatologists +pneumatolysis,pneumatolyses +pneumatometer,pneumatometers +pneumatophore,pneumatophores +pneumectomy,pneumectomies +pneumococcus,pneumococci +pneumoconiosis,pneumoconioses +pneumocyte,pneumocytes +pneumodermatid,pneumodermatids +pneumoencephalogram,pneumoencephalograms +pneumogastric,pneumogastrics +pneumogram,pneumograms +pneumograph,pneumographs +pneumology,pneumologies +pneumomediastinum,pneumomediastinums +pneumometer,pneumometers +pneumonectomy,pneumonectomies +pneumoniac,pneumoniacs +pneumonic device,pneumonic devices +pneumonic,pneumonics +pneumonitis,pneumonitides +pneumonoconiosis,pneumonoconioses +pneumonocyte,pneumonocytes +pneumonometer,pneumonometers +pneumonotomy,pneumonotomies +pneumonoultramicroscopicsilicovolcanoconiosis,pneumonoultramicroscopicsilicovolcanoconioses +pneumotomy,pneumotomies +pneumotonometer,pneumotonometers +pnicogen,pnicogens +pnictide,pnictides +pnictogenide,pnictogenides +pnictogen,pnictogens +p-n junction,p-n junctions +PNPase,PNPases +PN,PNs,PNe +poachard,poachards +poached egg,poached eggs +poacher,poachers +poachers gun,poachers guns +poacher turned gamekeeper,poachers turned gamekeepers +poaching,poachings +poa,poas +poast,poasts +pobblebonk,pobblebonks +poblano,poblanos +PO box,PO boxes +po' boy,po' boys +po'boy,po'boys +Pocahontas,Pocahontases +pochade,pochades +pochard,pochards +pochoir,pochoirs +pochtecatl,pochteca +pocilloporid,pocilloporids +pocket battleship,pocket battleships +pocket beer,pocket beers +pocket bike,pocket bikes +pocketbook,pocketbooks +pocket call,pocket calls +Pocket Cube,Pocket Cubes +pocket door,pocket doors +pocket flask,pocket flasks +pocket-flask,pocket-flasks +pocketful,pocketsful,pocketfuls +pocket gopher,pocket gophers +pocket handkerchief,pocket handkerchieves +pocket knife,pocket knives +pocketknife,pocketknives +pocket pair,pocket pairs +pocket park,pocket parks +pocketphone,pocketphones +pocket pistol,pocket pistols +pocket,pockets +pocket protector,pocket protectors +pocket rocket,pocket rockets +pocket square,pocket squares +pocket trumpet,pocket trumpets +pocket veto,pocket vetos +pocket watch,pocket watches +pocketwatch,pocketwatches +pockmark,pockmarks +pock,pocks +pock-pudding,pock-puddings +pococurante,pococurantes +pococurantism,pococurantisms +pocosin,pocosins +pocoson,pocosons +poculum,pocula +PodAd,PodAds +podagric,podagrics +podargid,podargids +podcaster,podcasters +podcast,podcasts +podcatcher,podcatchers +podcat,podcats +podder,podders +poddy,poddies +podesta,podestas +podetium,podetia +podge,podges +podge,podges +podhead,podheads +podiatrist,podiatrists +podicipedid,podicipedids +podium,podiums,podia +podlet,podlets +podley,podleys +podobranch,podobranchs +podocarp,podocarps +podocarpus,podocarpuses +podocerid,podocerids +podocinid,podocinids +podocnemidid,podocnemidids +podoctid,podoctids +podocyte,podocytes +podokesaurid,podokesaurids +podologist,podologists +podomere,podomeres +podophthalmite,podophthalmites +podophyllotoxin,podophyllotoxins +podophyllum,podophyllums +podoscaph,podoscaphs +podosome,podosomes +podosperm,podosperms +podosphere,podospheres +podotheca,podothecae +podovirus,podoviruses +podoxenoclavosis,podoxenoclavoses +pod person,pod people +pod,pods +pod,pods +pod shaver,pod shavers +podule,podules +podurid,podurids +podzol,podzols +poebird,poebirds +poecilid,poecilids +poeciliid,poeciliids +poecilonym,poecilonyms +poecilopod,poecilopods +poeme,poemes +poΓ«me,poΓ«mes +poem,poems +poΓ«m,poΓ«ms +pΕ“nalty,pΕ“nalties +pΕ“nitent,pΕ“nitents +poes,poeses +poesy,poesies +poetaster,poetasters +poete,poetes +poΓ«te,poΓ«tes +poetess,poetesses +poeticule,poeticules +poet laureate,poets laureate +poetling,poetlings +poetolatry,poetolatries +poet,poets +poetry slam,poetry slams +poet's daffodil,poet's daffodils +POETS day,POETS days +poggy,poggies +poghaden,poghaden +pogie,pogies +pogie,pogies +pogoer,pogoers +pogonophile,pogonophiles +pogonophoran,pogonophorans +pogonophore,pogonophores +pogo,pogos +pogo stick,pogo sticks +pogrom,pogroms +pogue,pogues +pogy,pogies +Pohnpeian,Pohnpeians +pohutukawa,pohutukawas +poid,poids +poiesis,poieses +poignance,poignances +poignard,poignards +poikiloblast,poikiloblasts +poikilocarynosis,poikilocarynoses +poikilocyte,poikilocytes +poikiloderma,poikilodermas +poikilotherm,poikilotherms +poilu,poilus +PoincarΓ© disk,PoincarΓ© disks +PoincarΓ© space,PoincarΓ© spaces +poinciana,poincianas +poinder,poinders +poindexter,poindexters +Poindexter,Poindexters +poind,poinds +poinsetta,poinsettas +poinsettia,poinsettias +pointal,pointals +point bar,point bars +pointclass,pointclasses +point cloud,point clouds +pointcut,pointcuts +pointee,pointees +pointel,pointels +pointer finger,pointer fingers +pointer,pointers +point function,point functions +point group,point groups +point guard,point guards +pointillΓ©,pointillΓ©s +pointillist,pointillists +pointing stick,pointing sticks +pointing-trowel,pointing-trowels +point-in-line,point-in-lines +point in time,points in time +pointlet,pointlets +pointling,pointlings +point man,point men +point mass,point masses +point mutation,point mutations +point of articulation,points of articulation +point of contact,points of contact +point of inflection,points of inflection +point of no return,points of no return +point of order,points of order +point of pride,points of pride +point of purchase,points of purchase +point of reference,points of reference +point of sail,points of sail +point of sale,points of sale +point of view,points of view +point,points +point release,point releases +pointrel,pointrels +points classification,points classifications +pointsettia,pointsettias +pointsman,pointsmen +point source,point sources +pointy,pointies +poioumenon,poioumena +poi,po +poiser,poisers +poisha,poishas +poison dart frog,poison dart frogs +poisoned chalice,poisoned chalices +poisoned pawn,poisoned pawns +poisoner,poisoners +poison gland,poison glands +poisoning,poisonings +poisonmonger,poisonmongers +poison pen letter,poison pen letters +poison-pen letter,poison-pen letters +poison pen,poison pens +poison pill,poison pills +poison,poisons +poison sumac,poison sumacs +Poisson distribution,Poisson distributions +Poissonian,Poissonians +poissonier,poissoniers +Poisson,Poissons +Poisson process,Poisson processes +poitrinaire,poitrinaires +poitrinal,poitrinals +poivoit,poivoits +poivrade,poivrades +poize,poizes +POJO,POJOs +pokal,pokals +Pokanoket,Pokanokets,Pokanoket +pokeberry,pokeberries +poke bonnet,poke bonnets +poke box,poke boxes +PokΓ©dollar,PokΓ©dollars +PokΓ©fan,PokΓ©fans +pokelogan,pokelogans +pokeloken,pokelokens +PokΓ©maniac,PokΓ©maniacs +poke,pokes +poke,pokes +poke,pokes +poker chip,poker chips +poker face,poker faces +poker machine,poker machines +poker,pokers +poker,pokers +poker,pokers +poker run,poker runs +poke salad,poke salads +pokeweed,pokeweeds +pokey,pokeys +pokickery,pokickeries +pokie machine,pokie machines +pokie,pokies +poking,pokings +poky,pokies +poky,pokies +polacanthid,polacanthids +polacca,polaccas +Polack,Polacks +polacre,polacres +Polander,Polanders +polar antonym,polar antonyms +polar bear,polar bears +polar body,polar bodies +polar cap,polar caps +polarchy,polarchies +polar circle,polar circles +polar cod,polar cod,polar cods +polar cone,polar cones +polar covalent bond,polar covalent bonds +polar equation,polar equations +polar fox,polar foxes +polarimeter,polarimeters +polarisation,polarisations +polariscope,polariscopes +polariser,polarisers +polariton,polaritons +polarity,polarities +polarizability,polarizabilities +polarization,polarizations +polarizer,polarizers +polar moment of inertia,polar moments of inertia +polar night,polar nights +polarogram,polarograms +polarograph,polarographs +polaroid,polaroids +Polaroid,Polaroids +polaron,polarons +polar opposite,polar opposites +polarpolymer,polarpolymers +polar question,polar questions +polar star,polar stars +polar stratospheric cloud,polar stratospheric clouds +polar vortex,polar vortexes,polar vortices +polaski,polaskis +polatouche,polatouches +polder model,polder models +polder,polders +polearm,polearms +pole-axe,pole-axes +poleaxe,poleaxes +poleax,poleaxes +pole building,pole buildings +polecat,polecats +pole dance,pole dances +pole dancer,pole dancers +poledavy,poledavies +pole face,pole faces +pole jam,pole jams +polemarch,polemarches +polemical,polemicals +polemicist,polemicists +polemick,polemicks +polemic,polemics +polemist,polemists +polemonium,polemoniums +polemoscope,polemoscopes +polepiece,polepieces +pole,poles +pole,poles +Pole,Poles +pole position,pole positions +poler,polers +poler,polers +pole-sitter,pole-sitters +polesitter,polesitters +pole-smoker,pole-smokers +pole star,pole stars +polestar,polestars +pole vaulter,pole vaulters +pole-vaulter,pole-vaulters +pole vault,pole vaults +polewig,polewigs +poleyn,poleyns +police baton,police batons +police beat,police beats +police blotter,police blotters +policeboat,policeboats +police box,police boxes +police car,police cars +police chief,police chiefs +police department,police departments +police dog,police dogs +police force,police forces +police line,police lines +policeman,policemen +police officer,police officers +policeperson,policepersons,policepeople +police power,police powers +police procedural,police procedurals +policer,policers +police service,police services +police state,police states +police station,police stations +policewoman,policewomen +policier,policiers +policlinic,policlinics +policy economy,policy economies +policyholder,policyholders +policy institute,policy institutes +policy maker,policy makers +policymaker,policymakers +policy,policies +policy,policies +policy wonk,policy wonks +poling boat,poling boats +poliovirus,polioviruses +polisher,polishers +polishing,polishings +polishment,polishments +Polish parliament,Polish parliaments +Polish plait,Polish plaits +Polish space,Polish spaces +polis,poleis,polises +polistine,polistines +politainer,politainers +politburo,politburos +polite fiction,polite fictions +politesse,politesses +political animal,political animals +political climate,political climates +political conservative,political conservatives +political economy,political economies +political machine,political machines +political opposition,political oppositions +political party,political parties +political,politicals +political prisoner,political prisoners +political scientist,political scientists +political system,political systems +politicaster,politicasters +politician,politicians +politicisation,politicisations +politicist,politicists +politicizer,politicizers +politicker,politickers +politicking,politickings +politico,politicos,politicoes +politic,politics +politique,politiques +politiquera,politiqueras +polititian,polititians +politruk,politruks +polity,polities +Politzer bag,Politzer bags +polive,polives +polje,poljes +polka dot,polka dots +polka-dot,polka-dots +polka jacket,polka jackets +polka-mazurka,polka-mazurkas +polka,polkas +pollack,pollacks +Pollack,Pollacks +pollage,pollages +pollam,pollams +pollan,pollans +pollard,pollards +pollax,pollaxes +pollee,pollees +pollen counter,pollen counters +pollen grain,pollen grains +pollen parent,pollen parents +pollen tube,pollen tubes +pollera,polleras +poller,pollers +poll evil,poll evils +pollex,pollices +pollicipedid,pollicipedids +pollicitation,pollicitations +pollie,pollies +pollinarium,pollinaria +pollination,pollinations +pollinator,pollinators +pollinctor,pollinctors +polling place,polling places +polling station,polling stations +pollinium,pollinia +polliwig,polliwigs +polliwog,polliwogs +Pollock,Pollocks +Pollock,Pollocks +pollock,pollocks,pollock +poll parrot,poll parrots +poll,polls +poll,polls +poll,polls +pollster,pollsters +poll tax,poll taxes +pollucite,pollucites +pollutant,pollutants +polluter,polluters +pollutician,polluticians +pollutionist,pollutionists +pollution,pollutions +Pollyanna,Pollyannas +pollywog,pollywogs +Polock,Polocks +polocyte,polocytes +poloid,poloids +poloist,poloists +Polo kinase,Polo kinases +polonaise,polonaises +polo neck,polo necks +polo-neck,polo-necks +polonese,poloneses +Polonisation,Polonisations +Polonization,Polonizations +polony,polonies +polony,polonies +polony,polonies +polo shirt,polo shirts +poloxamer,poloxamers +poloxamine,poloxamines +pol,pols +polron,polrons +poltergeist,poltergeists,poltergeister +polt foot,polt feet +poltfoot,poltfeet +poltinnik,poltinniks +polt,polts +poltroon,poltroons +Polwarth,Polwarths +polwig,polwigs +polyabolo,polyabolos,polyaboloes +polyabuser,polyabusers +polyacene,polyacenes +polyacetal,polyacetals +polyacetylene,polyacetylenes +polyache,polyaches +polyacid,polyacids +polyacoustic,polyacoustics +polyacrilamide,polyacrilamides +polyacron,polyacrons +polyacrylamide,polyacrylamides +polyacrylate,polyacrylates +polyacrylic acid,polyacrylic acids +polyacrylic,polyacrylics +polyacrylonitrile,polyacrylonitriles +polyaddition,polyadditions +polyadelphia,polyadelphias +polyadelphite,polyadelphites +polyadelph,polyadelphs +polyadenopathy,polyadenopathies +polyadenosine,polyadenosines +polyadenosis,polyadenoses +polyadenylate,polyadenylates +polyadenylation,polyadenylations +polyad,polyads +polyalcohol,polyalcohols +polyalgorithm,polyalgorithms +polyalkylation,polyalkylations +polyalkylimide,polyalkylimides +polyallomer,polyallomers +polyamidation,polyamidations +polyamide,polyamides +polyamine oxidase,polyamine oxidases +polyamine,polyamines +polyaminopolycarboxylate,polyaminopolycarboxylates +polyaminopolycarboxylic acid,polyaminopolycarboxylic acids +polyamorist,polyamorists +polyampholyte,polyampholytes +polyander,polyanders +polyandrion,polyandria +polyandrist,polyandrists +polyandrium,polyandria +polyandrum,polyandrums +polyangle,polyangles +polyaniline,polyanilines +polyanion,polyanions +polyantha,polyanthas +polyanthea,polyantheas +polyanth,polyanths +polyanthus,polyanthuses +polyaramid,polyaramids +polyarchist,polyarchists +polyarch,polyarchs,polyarches +polyarchy,polyarchies +polyarene,polyarenes +polyare,polyares +polyargite,polyargites +polyargyrite,polyargyrites +polyaromatic,polyaromatics +polyaspidid,polyaspidids +polyazide,polyazides +polybag,polybags +polybase,polybases +polybenzimidazole,polybenzimidazoles +polybetaine,polybetaines +polyblend,polyblends +polybromide,polybromides +polybrominated biphenyl,polybrominated biphenyls +polybutene,polybutenes +polybutylene,polybutylenes +polybutylene terephthalate,polybutylene terephthalates +polycaprolactone,polycaprolactones +polycarbonate,polycarbonates +polycarbosilane,polycarbosilanes +polycarboxylic acid,polycarboxylic acids +polycatenane,polycatenanes +polycation,polycations +polycell,polycells +polycentrid,polycentrids +polycentropodid,polycentropodids +polyceratid,polyceratids +polycerid,polycerids +polychaete,polychaetes +polychelid,polychelids +polychete,polychetes +polychloride,polychlorides +polychlorinated biphenyl,polychlorinated biphenyls +polychlorinated naphthalene,polychlorinated naphthalenes +polychlorobiphenyl,polychlorobiphenyls +polychloroprene,polychloroprenes +polychloroterphenyl,polychloroterphenyls +polychlorotrifluoroethylene,polychlorotrifluoroethylenes +polychord,polychords +polychoron,polychorons,polychora +polychotomy,polychotomies +polychrest,polychrests +polychromate,polychromates +polychromatic acid,polychromatic acids +polychromator,polychromators +polychrotid,polychrotids +polycistron,polycistrons +polyclad,polyclads +polyclinic,polyclinics +polyclinid,polyclinids +polyclone,polyclones +polycondensate,polycondensates +polycondensation,polycondensations +polyconjugate,polyconjugates +polycopid,polycopids +polycosanol,polycosanols +polycotton,polycottons +polycotyledon,polycotyledons +polycotylid,polycotylids +polycount,polycounts +polycracy,polycracies +polycrystal,polycrystals +polyctenid,polyctenids +polycube,polycubes +polyculture,polycultures +polycyclic,polycyclics +polycystid,polycystids +polycystine,polycystines +polycystin,polycystins +polydactylism,polydactylisms +polydactyl,polydactyls +polydactyly,polydactylies +polydeism,polydeisms +polydeist,polydeists +polydeoxynucleotide,polydeoxynucleotides +polydeoxyribonucleotide,polydeoxyribonucleotides +polyderivative,polyderivatives +polydesoxyribonucleotide,polydesoxyribonucleotides +polydiacetylene,polydiacetylenes +polydimethylsiloxane,polydimethylsiloxanes +polydioxanone,polydioxanones +polydispersion,polydispersions +polydisulfide,polydisulfides +polydnavirion,polydnavirions +polydnavirus,polydnaviruses +polydrafter,polydrafters +polyduct,polyducts +polyedron,polyedrons +polyelectrolyte,polyelectrolytes +polyelectronic atom,polyelectronic atoms +polyembryoma,polyembryomas +polyendocrinopathy,polyendocrinopathies +polyene,polyenes +polyenoic acid,polyenoic acids +polyenone,polyenones +polyenyl,polyenyls +polyepoxide,polyepoxides +polyesteramide,polyesteramides +polyesterase,polyesterases +polyesterification,polyesterifications +polyester,polyesters +polyester Protestant,polyester Protestants +polyetherimide,polyetherimides +polyether,polyethers +polyethersulfone,polyethersulfones +polyethersulphone,polyethersulphones +polyethylene glycol,polyethylene glycols +polyethyleneimine,polyethyleneimines +polyextremophile,polyextremophiles +polyfill,polyfills +polyflavonoid,polyflavonoids +polyfluorene,polyfluorenes +polyfluoroolefin,polyfluoroolefins +polyfoam,polyfoams +polyfoil,polyfoils +polyform,polyforms +polyfoto,polyfotos +polyfrob,polyfrobs +polyfunctionalization,polyfunctionalizations +polygalacturonase,polygalacturonases +polygalacturonate,polygalacturonates +polygala,polygalas +polygalic acid,polygalic acids +polygalin,polygalins +polygamist,polygamists +polygamy,polygamies +polygasoline,polygasolines +polygastrian,polygastrians +polygastric,polygastrics +polygene,polygenes +polygenesist,polygenesists +polygenist,polygenists +polyglactin,polyglactins +polyglotism,polyglotisms +polyglot,polyglots +polyglutamation,polyglutamations +polyglutamylation,polyglutamylations +polyglycolic acid,polyglycolic acids +polyglycolide,polyglycolides +polygonial,polygonials +polygonization,polygonizations +polygon mesh,polygon meshes +polygon of forces,polygons of forces +polygonometry,polygonometries +polygonoscope,polygonoscopes +polygon,polygons +polygonum,polygonums +polygony,polygonies +polygram,polygrams +polygrapher,polygraphers +polygraphist,polygraphists +polygraph,polygraphs +polygynist,polygynists +polygyn,polygyns +polygyny,polygynies +polygyrid,polygyrids +polyhaloalkane,polyhaloalkanes +polyhedrane,polyhedranes +polyhedrin,polyhedrins +polyhedroid,polyhedroids +polyhedron,polyhedra,polyhedrons +polyhedrosis,polyhedroses +polyhelicene,polyhelicenes +polyhe,polyhes +polyhex,polyhexes +polyhierarchy,polyhierarchies +polyhistor,polyhistors +polyhydric alcohol,polyhydric alcohols +polyhydride,polyhydrides +polyiamond,polyiamonds +polyimide,polyimides +polyiodide,polyiodides +polyion,polyions +polyisobutene,polyisobutenes +polyisobutylene,polyisobutylenes +polyisocyanate,polyisocyanates +polyisocyanurate,polyisocyanurates +polyisoprene,polyisoprenes +polyisoprenoid,polyisoprenoids +polykay,polykays +polyketide,polyketides +polyketone,polyketones +polyking,polykings +polykite,polykites +polylactic acid,polylactic acids +polylactide,polylactides +polylege,polyleges +polylemma,polylemmas +polyleucine,polyleucines +polyline,polylines +polylinguist,polylinguists +polylinker,polylinkers +polylithionite,polylithionites +polylith,polyliths +polylogarithm,polylogarithms +polylog,polylogs +polylog,polylogs +polylogue,polylogues +polylysine,polylysines +polymastiid,polymastiids +polymathist,polymathists +polymath,polymaths +polymatroid,polymatroids +polymerase chain reaction,polymerase chain reactions +polymerase,polymerases +polymercaptan,polymercaptans +polymeric methylene diphenyl diisocyanate,polymeric methylene diphenyl diisocyanates +polymeride,polymerides +polymerisation,polymerisations +polymerizate,polymerizates +polymerization,polymerizations +polymerizer,polymerizers +polymer,polymers +polymersome,polymersomes +polymethacrylate,polymethacrylates +polymethine,polymethines +polymethylene,polymethylenes +polymignite,polymignites +polymignyte,polymignytes +polymixiid,polymixiids +polymixin,polymixins +polymodality,polymodalities +polymolecule,polymolecules +polymorphid,polymorphids +polymorphonuclear,polymorphonuclears +polymorphonucleate,polymorphonucleates +polymorph,polymorphs +polymyalgia,polymyalgias +polymyxin,polymyxins +polynema,polynemas +polyneme,polynemes +polynemid,polynemids +polynemoid,polynemoids +Polynesian arrowroot,Polynesian arrowroots +Polynesian,Polynesians +polyneuropathy,polyneuropathies +polynia,polynias +polynitrogen,polynitrogens +polynoid,polynoids +polynome,polynomes +polynomial equation,polynomial equations +polynomial function,polynomial functions +polynomial,polynomials +polynomiograph,polynomiographs +polynorbornene,polynorbornenes +polynucleosome,polynucleosomes +polynucleotidase,polynucleotidases +polynucleotide,polynucleotides +polynya,polynyas +polynym,polynyms +polyoctenamer,polyoctenamers +polyodontid,polyodontids +polyodontoid,polyodontoids +polyodont,polyodonts +polyolefine,polyolefines +polyolefin,polyolefins +polyol,polyols +polyoma,polyomas +polyomavirus,polyomaviruses +polyomino,polyominoes +polyonym,polyonyms +polyopia,polyopias +polyopisthocotylean,polyopisthocotyleans +polyoptrum,polyoptrums +polyorama,polyoramas +polyose,polyoses +polyoxazoline,polyoxazolines +polyoxide,polyoxides +polyoxin,polyoxins +polyoxoanion,polyoxoanions +polyoxometalate,polyoxometalates +polyoxometallate,polyoxometallates +polyoxyethylene,polyoxyethylenes +polyparium,polyparia +polypary,polyparies +polypectomy,polypectomies +polype,polypes +polypeptidase,polypeptidases +polypeptide,polypeptides +polyphage,polyphages +polyphagid,polyphagids +polypharmaceutical,polypharmaceuticals +polypharmacist,polypharmacists +polyphase circuit,polyphase circuits +polyphemid,polyphemids +polyphene,polyphenes +polyphenolic,polyphenolics +polyphenol,polyphenols +poly-phenylalanine,poly-phenylalanines +polyphenylalanine,polyphenylalanines +polyphenylene,polyphenylenes +polyphone,polyphones +polyphonist,polyphonists +polyphon,polyphons +polyphore,polyphores +polyphosphate,polyphosphates +polyphosphonate,polyphosphonates +polyphosphoric acid,polyphosphoric acids +polyphthalocyanine,polyphthalocyanines +polyphyllin,polyphyllins +polyphyodont,polyphyodonts +polypiarian,polypiarians +polypide,polypides +polypidom,polypidoms +polypier,polypiers +polypifer,polypifers +polypill,polypills +polypite,polypites +polyplacid,polyplacids +polyplacophoran,polyplacophorans +polyplacophore,polyplacophores +polyplastid,polyplastids +polyplet,polyplets +polyplex,polyplexes +polyploidization,polyploidizations +polyploid,polyploids +poly pocket,poly pockets +polypode,polypodes +polypodium,polypodiums +polypod,polypods +polypody,polypodies +poly,polys +polypore,polypores +polyposis,polyposes +polyp,polyps +polyprenol,polyprenols +polyprionid,polyprionids +polypropionate,polypropionates +polyprotein,polyproteins +polypseudorotaxane,polypseudorotaxanes +polypterid,polypterids +polyptoton,polyptota,polyptotons +polyptych,polyptychs +polypurine,polypurines +polypus,polypi +polypyridene,polypyridenes +polypyridine,polypyridines +polypyrrole,polypyrroles +polyquaternium,polyquaterniums +polyquinane,polyquinanes +polyquinene,polyquinenes +polyradical,polyradicals +polyreaction,polyreactions +polyreme,polyremes +polyresin,polyresins +polyrhythm,polyrhythms +polyribonucleotide,polyribonucleotides +polyribosome,polyribosomes +polyrod,polyrods +polysaccharide,polysaccharides +polysaccharose,polysaccharoses +polysalt,polysalts +polyschematist,polyschematists +polyscope,polyscopes +polyselenide,polyselenides +polyseme,polysemes +polysexuality,polysexualities +polysilane,polysilanes +polysilicate,polysilicates +polysilicic acid,polysilicic acids +polysiloxane,polysiloxanes +polysome,polysomes +polysomic,polysomics +polysomnogram,polysomnograms +polysomnographer,polysomnographers +polysomnograph,polysomnographs +polysorbate,polysorbates +polyspast,polyspasts +polyspectrum,polyspectra +polyspike,polyspikes +polysporangiophyte,polysporangiophytes +polysporangium,polysporangia +polysporean,polysporeans +polyspore,polyspores +polysquaraine,polysquaraines +polysquare,polysquares +polystannane,polystannanes +polystick,polysticks +polystilbene,polystilbenes +polystoechotid,polystoechotids +polystome,polystomes +polystyle,polystyles +polystyrene,polystyrenes +polysulfane,polysulfanes +polysulfate,polysulfates +polysulfide,polysulfides +polysulfone,polysulfones +polysulphane,polysulphanes +polysulphide,polysulphides +polysulphone,polysulphones +polysulphuret,polysulphurets +polySUMOylation,polySUMOylations +polysyllabic,polysyllabics +polysyllabism,polysyllabisms +polysyllable,polysyllables +polysyllogism,polysyllogisms +polysyndeton,polysyndetons +polysynody,polysynodies +polysynthetic twinning,polysynthetic twinnings +polytan,polytans +polytechnic,polytechnics +polytech,polytechs +polytene,polytenes +polytenization,polytenizations +polyterpene,polyterpenes +polyterpenoid,polyterpenoids +polytetrafluoroethylene,polytetrafluoroethylenes +polytetrahedron,polytetrahedra +polytetrahydrofuran,polytetrahydrofurans +polytheism,polytheisms +polytheist,polytheists +polythiazyl,polythiazyls +polythionate,polythionates +polythionic acid,polythionic acids +polythiophene,polythiophenes +polytomy,polytomies +polytone,polytones +polytope,polytopes +polytree,polytrees +polytrichid,polytrichids +polytrope,polytropes +polytroph,polytrophs +polytungstate,polytungstates +polytungstic acid,polytungstic acids +polytunnel,polytunnels +polytype,polytypes +polyubiquitination,polyubiquitinations +polyubiquitin,polyubiquitins +polyubiquitylation,polyubiquitylations +polyunsaturated fat,polyunsaturated fats +polyunsaturated fatty acid,polyunsaturated fatty acids +polyunsaturate,polyunsaturates +polyurea,polyureas +polyurethane,polyurethanes +polyuronide,polyuronides +polyvalence,polyvalences +polyvalency,polyvalencies +polyvanadate,polyvanadates +polyve,polyves +polyvinylidene chloride,polyvinylidene chlorides +polyvinylidene,polyvinylidenes +polyvinyl resin,polyvinyl resins +polyword,polywords +polyyne,polyynes +polyzoan,polyzoans +polyzoarium,polyzoaria +polyzoary,polyzoaries,polyzoaria +polyzoic,polyzoics +polyzoon,polyzoa +polyzwitterion,polyzwitterions +pomacanthid,pomacanthids +pomacentrid,pomacentrids +pomace,pomaces +pomadasyid,pomadasyids +pomade,pomades +pomander,pomanders +pomatiasid,pomatiasids +pomatiid,pomatiids +pomatiopsid,pomatiopsids +pomatomid,pomatomids +pomatum,pomatums +pomegranate,pomegranates +pomelle,pomelles +pomello,pomelloes +pomelo,pomelos +pomel,pomels +pome,pomes +Pomeranian,Pomeranians +pomerium,pomeria +pomeron,pomerons +pomewater,pomewaters +pomey,pomeys +pomfret,pomfret,pomfrets +pomme blanche,pommes blanches +pommeler,pommelers +pommel horse,pommel horses +pommel,pommels +Pommie-basher,Pommie-bashers +Pommiebasher,Pommiebashers +pommie,pommies +pommie wash,pommie washes +Pommy-basher,Pommy-bashers +pommy,pommies +pomΕ“rium,pomΕ“ria +pomologist,pomologists +pomosexual,pomosexuals +pompador,pompadors +pompadour,pompadours +pompano,pompanos,pompanoes +Pompeian,Pompeians +Pompeian red,Pompeian reds +Pompeiian,Pompeiians +Pompeii worm,Pompeii worms +pompelmous,pompelmouses +pompet,pompets +pomphorhynchid,pomphorhynchids +pompier,pompiers +pompilid,pompilids +pompion,pompions +pompire,pompires +pompoleon,pompoleons +pom pom,pom poms +pom-pom,pom-poms +pompom,pompoms +pom,poms +pompon,pompons +pomposity,pomposities +pomset,pomsets +pomwater,pomwaters +ponceau,ponceaus +poncelet,poncelets +ponce,ponces +ponce wheel,ponce wheels +poncho,ponchos +pond damselfly,pond damselflies +ponderability,ponderabilities +ponderation,ponderations +ponderer,ponderers +pondering,ponderings +ponderosa,ponderosas +pondfish,pondfishes,pondfish +pondhawk,pondhawks +pond heron,pond herons +pondlily,pondlilies +pondokkie,pondokkies +pond,ponds +pond-skater,pond-skaters +pondskater,pondskaters +pond turtle,pond turtles +pondweed,pondweeds +pone,pones +pone,pones +pone,pones +pongee,pongees +ponghee,ponghees +pongid,pongids +pongo,pongos +pong,pongs +pong,pongs +pong,pongs +poniard,poniards +pons,pontes +pontee,pontees +Pontefract cake,Pontefract cakes +pontellid,pontellids +pontic,pontics +ponticulus,ponticuli +pontiff,pontiffs +pontificality,pontificalities +pontifical,pontificals +pontificate,pontificates +pontification,pontifications +pontificator,pontificators +pontifician,pontificians +pontil mark,pontil marks +pontil,pontils +pontogeneiid,pontogeneiids +ponton,pontons +pontoon bridge,pontoon bridges +pontoon,pontoons +pontoporeiid,pontoporeiids +pontoporiid,pontoporiids +pontosaur,pontosaurs +ponty,ponties +ponyboy,ponyboys +pony car,pony cars +ponyfish,ponyfishes,ponyfish +ponygirl,ponygirls +pony glass,pony glasses +pony in the barn,ponies in the barn +pony keg,pony kegs +pony,ponies +ponyskin,ponyskins +ponytail,ponytails +ponzi scam,ponzi scams +Ponzi scam,Ponzi scams +Ponzi scheme,Ponzi schemes +poo bah,poo bahs +poo-bah,poo-bahs +poobah,poobahs +Poo-Bah,Poo-Bahs +poochie,poochies +pooch,pooches +poodle-faker,poodle-fakers +poodlefaker,poodlefakers +poodle,poodles +poodle skirt,poodle skirts +pood,poods +pooer,pooers +poof,poofs,pooves +pooftah,pooftahs +poofta,pooftas +poofter,poofters +pooh bah,pooh bahs +pooh-bah,pooh-bahs +poohbah,poohbahs +Pooh-Bah,Pooh-Bahs +pooid,pooids +poojah,poojahs +pooka,pookas +pooka,pookas +pookoo,pookoos +pooler,poolers +pool hall,pool halls +poolhouse,poolhouses +Poolie,Poolies +poolish,poolishes +pool noodle,pool noodles +pool party,pool parties +pool,pools +pool,pools +poolroom,poolrooms +poolscape,poolscapes +pool table,pool tables +poonac,poonacs +poona kheera,poona kheeras +poon,poons +poop deck,poop decks +pooper,poopers +pooper scooper,pooper scoopers +pooper-scooper,pooper-scoopers +poopetrator,poopetrators +poop factory,poop factories +poophead,poopheads +poophole,poopholes +poopie,poopies +poo pirate,poo pirates +poop machine,poop machines +poo poo,poo poos +poo-poo,poo-poos +poop,poops +poop scoop,poop scoops +poopy,poopies +pooquaw,pooquaws +poor box,poor boxes +poorbox,poorboxes +poor boy,poor boys +poorboy,poorboys +poor cod,poor cods,poor cod +poor house,poor houses +poorhouse,poorhouses +poor-john,poor-johns +poor little rich girl,poor little rich girls +poor man's latte,poor man's lattes +poor metal,poor metals +poor relation,poor relations +poor sport,poor sports +poor thing,poor things +poorwill,poorwills +pooter,pooters +pootie,pooties +pootle,pootles +poot,poots +po'ouli,po'oulis +popadom,popadoms +popadum,popadums +popanoceratid,popanoceratids +popcorn ceiling,popcorn ceilings +popcorn movie,popcorn movies +popcorn popper,popcorn poppers +popedom,popedoms +pope hat,pope hats +popehead,popeheads +popeling,popelings +popemobile,popemobiles +Popemobile,Popemobiles +pope,popes +pope,popes +Pope,Popes +poperetta,poperettas +popeship,popeships +pope's nose,popes' noses +Pope's Pear,Pope's Pears +popess,popesses +Popess,Popesses +popet,popets +popeye blacksmelt,popeye blacksmelts +pop group,pop groups +pop gun,pop guns +popgun,popguns +pophole,popholes +popinjay,popinjays +poplar,poplars +poplin,poplins +popliteus,poplitei +pop musician,pop musicians +popodom,popodoms +popo,popos +po,pos +po,pos +poposaurid,poposaurids +popout,popouts +popover,popovers +poppadom,poppadoms +poppadum,poppadums +poppa,poppas +Popperian,Popperians +popper,poppers +popper,poppers +poppet,poppets +poppet valve,poppet valves +popping crease,popping creases +popple,popples +popple,popples +poppodom,poppodoms +poppodum,poppodums +pop,pops +Pop,Pops +Pop,Pops +poppy head,poppy heads +poppyhead,poppyheads +poppy,poppies +poppy seed,poppy seeds +poppyseed,poppyseeds +pop quiz,pop quizzes +pop rivet,pop rivets +pop shield,pop shields +pop shop,pop shops +pop shot,pop shots +pop shove-it,pop shove-its +popsicle,popsicles +Popsicle,Popsicles +popsmith,popsmiths +popsock,popsocks +pop sock,pop socks,pop sox +pop star,pop stars +popstar,popstars +popster,popsters +popstrel,popstrels +popstress,popstresses +popsy,popsies +pop tart,pop tarts +pop tart,pop tarts +popular assembly,popular assemblies +popular beat combo,popular beat combos +popular etymology,popular etymologies +popularisation,popularisations +populariser,popularisers +popularization,popularizations +popularizer,popularizers +population inversion,population inversions +population mean,population means +population,populations +populator,populators +populicide,populicides +populist,populists +populizer,populizers +pop-under,pop-unders +pop-up advertisement,pop-up advertisements +popup blocker,popup blockers +pop-up menu,pop-up menus +popup menu,popup menus +pop-up,pop-ups +popup,popups +porage,porages +poration,porations +porbeagle,porbeagles +porcelain bus,porcelain buses +porcelain god,porcelain gods +porcelain shell,porcelain shells +porcelanite,porcelanites +porcellanid,porcellanids +porcellanite,porcellanites +Porcellian,Porcellians +porcelliid,porcelliids +porcellionid,porcellionids +porch monkey,porch monkeys +porch,porches +porchway,porchways +porcini,porcini +porcupine,porcupines +porcupine puffer,porcupine puffers +pore,pores +porer,porers +pore space,pore spaces +porewater,porewaters +porgie,porgies +porgy,porgies +poriferan,poriferans +poriferologist,poriferologists +porifer,porifers +porime,porimes +porin,porins +porion,poria +porism,porisms +porite,porites +poritid,poritids +pork barrel,pork barrels +porkbarrel,porkbarrels +pork belly,pork bellies +porkburger,porkburgers +porker,porkers +porket,porkets +porketta,porkettas +porkling,porklings +pork loin,pork loins +pork pie hat,pork pie hats +pork pie,pork pies +porkpie,porkpies +pork rind,pork rinds +pork sword,pork swords +porky pie,porky pies +porky,porkies +pornie,pornies +porno-copia,porno-copias +pornocopia,pornocopias +pornocracy,pornocracies +pornographer,pornographers +pornographist,pornographists +pornograph,pornographs +pornograph,pornographs +porno mag,porno mags +pornophobe,pornophobes +pornophobia,pornophobias +porno,pornos +pornotopia,pornotopias +porn shop,porn shops +pornstache,pornstaches +porn star,porn stars +pornstar,pornstars +pornucopia,pornucopias +porocyte,porocytes +porocytosis,porocytoses +porogen,porogens +poroma,poromas +poromyid,poromyids +pororoca,pororocas +porosimeter,porosimeters +porosome,porosomes +porotic,porotics +porpentine,porpentines +porpesse,porpesses +porphine,porphines +porphin,porphins +porphycene,porphycenes +porphyria,porphyrias +porphyrinogen,porphyrinogens +porphyrin,porphyrins +porphyrite,porphyrites +porphyroblast,porphyroblasts +porphyrogenite,porphyrogenites +porphyrogenitus,porphyrogeniti +porphyry shell,porphyry shells +porpita,porpitas +porpitid,porpitids +porpoise,porpoises +porpus,porpuses +porrection,porrections +porret,porrets +porringer,porringers +Porro prism,Porro prisms +Porsche,Porsches +portabella,portabellas +portabello,portabellos +portable computer,portable computers +portable executable,portable executables +portable,portables +portable toilet,portable toilets +portacabin,portacabins +portace,portaces +portafilter,portafilters +Portagee,Portagees +portage,portages +portague,portagues +portajohn,portajohns +portaloo,portaloos +portal,portals +portal site,portal sites +portal vein,portal veins +portamento,portamentos,portamenti +porta,portae +porta-potty,porta-potties +portapotty,portapotties +portass,portasses +portastudio,portastudios +portatif,portatifs +portative organ,portative organs +portativ,portativs +port city,port cities +portcluse,portcluses +portcrayon,portcrayons +portcullis,portcullises +porte cochΓ¨re,porte cochΓ¨res +portegue,portegues +porte-monnaie,porte-monnaies +portemonnaie,portemonnaies +portension,portensions +portent,portents +porteous,porteouses +porteress,porteresses +porterhouse,porterhouses +porterhouse steak,porterhouse steaks +porter,porters +porter,porters +portfire,portfires +portfolio,portfolios +portgrave,portgraves +portgreve,portgreves +porthole,portholes +portico,porticos,porticoes +portiere,portieres +portiΓ¨re,portiΓ¨res +portigue,portigues +Portingal,Portingals +portioner,portioners +portionist,portionists +portion,portions +portise,portises +portland,portlands +portlast,portlasts +portlet,portlets +portman,portmen +portmanteau film,portmanteau films +portmanteau,portmanteaus,portmanteaux +portmanteau,portmanteaus,portmanteaux +portmanteau word,portmanteau words +portmantle,portmantles +portmantua,portmantuas +portmapper,portmappers +portmote,portmotes +portobello,portobellos +port of call,ports of call +portogram,portograms +portoir,portoirs +portoise,portoises +port-o-john,port-o-johns +portolan,portolans +port-o-potty,port-o-potties +Portosan,Portosans +portpass,portpasses +port,ports +port,ports +port,ports +port,ports +port,ports +portraitist,portraitists +portrait,portraits +portraiture,portraitures +portrayal,portrayals +portrayer,portrayers +portreeve,portreeves +portress,portresses +Port-Royalist,Port-Royalists +portsale,portsales +portscanner,portscanners +portscan,portscans +portside,portsides +portsider,portsiders +portuary,portuaries +Portugall,Portugalls +Portugal,Portugals +Portugee,Portugees +Portugeezer,Portugeezers +Portuguese man-of-war,Portuguese men-of-war +Portuguese oak,Portuguese oaks +Portuguese,Portuguese +Portuguese roll,Portuguese rolls +Portuguese Water Dog,Portuguese Water Dogs +portulaca,portulacas +portunid,portunids +port wine,port wines +porwigle,porwigles +posada,posadas +posedown,posedowns +posek,poseks,poskim +pose,poses +pose,poses +poser,posers +poset,posets +poseur,poseurs +posho,poshos,poshoes +posie ring,posie rings +posish,posishes +posistor,posistors +positional isomer,positional isomers +positional notation,positional notations +position argument,position arguments +positioner,positioners +positioning,positionings +position paper,position papers +position,positions +positive assortative mating,positive assortative matings +positive column,positive columns +positive crystal,positive crystals +positive displacement pump,positive displacement pumps +positive edge,positive edges +positive linear functional,positive linear functionals +positive measure,positive measures +positive,positives +positive zero,positive zeroes +positivist,positivists +positon,positons +posit,posits +positron emission tomography,positron emission tomographies +positronium,positroniums,positronia +positron,positrons +positure,positures +posnet,posnets +posole,posoles +pospiviroid,pospiviroids +pos pron,pos prons +posse,posses +posser,possers +possessee,possessees +possesser,possessers +possessioner,possessioners +possession,possessions +possessive adjective,possessive adjectives +possessive case,possessive cases +possessive determiner,possessive determiners +possessive pronoun,possessive pronouns +possessive suffix,possessive suffixes +possessor,possessors +possessour,possessours +posset,possets +possibilism,possibilisms +possibility of reverter,possibilities of reverter +possibility,possibilities +possibilium,possibilia +possible,possibles +possibles bag,possibles bags +possie,possies +possum,possums +postabdomen,postabdomens +postadolescent,postadolescents +postage meter,postage meters +postage,postages +postage stamp,postage stamps +postal address,postal addresses +postal authority,postal authorities +postal ballot,postal ballots +postal box,postal boxes +postal code,postal codes +postal forgery,postal forgeries +postal order,postal orders +postalveolar,postalveolars +postal vote,postal votes +postanarchist,postanarchists +post-apocalyptic,post-apocalyptics +postathon,postathons +postback,postbacks +postbag,postbags +postbase,postbases +postboomer,postboomers +post box,post boxes +postbox,postboxes +postboy,postboys +postcanine,postcanines +postcapillary,postcapillaries +post-captain,post-captains +post card,post cards +postcard,postcards +postcareer,postcareers +postcart,postcarts +postcava,postcavae +post chaise,post chaises +post-chaise,post-chaises +postclavicle,postclavicles +postclypeus,postclypei +postcode lottery,postcode lotteries +postcode,postcodes +postcolonialist,postcolonialists +postcommissure,postcommissures +postcommunion,postcommunions +postcommunist,postcommunists +postcondition,postconditions +postcornu,postcornua +post count,post counts +postcount,postcounts +postcranium,postcrania +post-decrement,post-decrements +postdeterminer,postdeterminers +postdiluvian,postdiluvians +postdoc,postdocs +postea,posteas +postempiricist,postempiricists +postentry,postentries +poster boy,poster boys +poster child,poster children +poster girl,poster girls +posterior auricular muscle,posterior auricular muscles +posterior chamber,posterior chambers +posteriorization,posteriorizations +posterior,posteriors +posteriour,posteriours +postern,posterns +posteroflexid,posteroflexids +posterolophid,posterolophids +posteroloph,posterolophs +posteroseptum,posterosepta +posterostyle,posterostyles +posterostylid,posterostylids +poster,posters +poster,posters +postface,postfaces +postfeminist,postfeminists +post-fine,post-fines +postfixation,postfixations +postfix,postfixes +postfossette,postfossettes +postfoundationalist,postfoundationalists +postfrontal,postfrontals +postfurca,postfurcae +post game,post games +postgame,postgames +postgender,postgenders +postgirl,postgirls +postgrad,postgrads +postgraduate,postgraduates +post hoc,post hocs +postholder,postholders +posthole,postholes +post horn,post horns +posthorn,posthorns +posthorse,posthorses +posthouse,posthouses +posthumanist,posthumanists +posthuman,posthumans +posthumous execution,posthumous executions +posthypnotic suggestion,posthypnotic suggestions +postiche,postiches,postiche +postie,posties +postilion,postilions +postilla,postillas +postillator,postillators +postiller,postillers +postillion,postillions +postil,postils +post-impressionism,post-impressionisms +postimpressionist,postimpressionists +post-increment,post-increments +postindian,postindians +postinfection,postinfections +posting,postings +postintegration,postintegrations +post-it note,post-it notes +post-it,post-its +postjudice,postjudices +postlarva,postlarvae +postliminium,postliminia +postliminy,postliminies +postlude,postludes +postman,postmen +postmark,postmarks +Postmaster General,Postmasters General +postmaster,postmasters +postmastership,postmasterships +postminimalist,postminimalists +postmistress,postmistresses +postmix,postmixes +postmodernist,postmodernists +postmodern,postmoderns +postmodification,postmodifications +postmodifier,postmodifiers +post mold,post molds +post mortem,post mortems +post-mortem,post-mortems +postmortem,postmortems +postnaris,postnares +post-nasal drip,post-nasal drips +postnasal drip,postnasal drips +postnasal,postnasals +postnominal,postnominals +post note,post notes +post-noun,post-nouns +postnoun,postnouns +postnup,postnups +post oak bluff,post oak bluffs +post oak,post oaks +post-obit,post-obits +postobservation,postobservations +postocular,postoculars +post-office box,post-office boxes +post office,post offices +postoffice,postoffices +post-op,post-ops +postop,postops +postorbital,postorbitals +postorbitofrontal,postorbitofrontals +postperovskite,postperovskites +postperson,postpersons,postpeople +postponement,postponements +postponer,postponers +postpositional,postpositionals +postposition,postpositions +postpositive,postpositives +postpositivist,postpositivists +post,posts +post,posts +post,posts +postprecipitation,postprecipitations +postprocessor,postprocessors +postpubis,postpubes +postpunker,postpunkers +postrider,postriders +postroad,postroads +postroom,postrooms +post script,post scripts +postscript,postscripts +postscutellum,postscutella +postseason,postseasons +postsecondary school,postsecondary schools +postsectarian,postsectarians +poststructuralist,poststructuralists +postsynapse,postsynapses +postteen,postteens +posttemporal,posttemporals +posttest,posttests +post-tragus,post-tragi +posttranslational modification,posttranslational modifications +postulant,postulants +postulate,postulates +postulation,postulations +postulator,postulators +postulatum,postulata +posture,postures +posturer,posturers +posturing,posturings +postvelar,postvelars +postvention,postventions +postwhore,postwhores +postwoman,postwomen +postzionist,postzionists +Post-Zionist,Post-Zionists +postzygapophysis,postzygapophyses +posy,posies +potabilizer,potabilizers +potable,potables +potager,potagers +potamian,potamians +potamidid,potamidids +potamid,potamids +potamonautid,potamonautids +potamonid,potamonids +potamotrygonid,potamotrygonids +potash kettle,potash kettles +potassium-argon dating,potassium-argon datings +potassium bitartrate,potassium bitartrates +potassium channel,potassium channels +potassium chromate,potassium chromates +potassium dichromate,potassium dichromates +potassium feldspar,potassium feldspars +potassium iodide,potassium iodides +potassium niobate,potassium niobates +potassium nitrate,potassium nitrates +potassium nitrite,potassium nitrites +potassium permanganate,potassium permanganates +potassium selective electrode,potassium selective electrodes +potassium sorbate,potassium sorbates +potation,potations +potato beetle,potato beetles +potato bug,potato bugs +potato cake,potato cakes +potato chaser,potato chasers +potato chip,potato chips +potato cod,potato cod,potato cods +potato crisp,potato crisps +potato head,potato heads +potato in its jacket,potatoes in their jackets +potato masher,potato mashers +potato-masher,potato-mashers +potato onion,potato onions +potato pancake,potato pancakes +potato,potatoes +potator,potators +potato salad,potato salads +potato starch,potato starches +Potawatomi,Potawatomis,Potawatomi +potbellied pig,potbellied pigs +potbellied stove,potbellied stoves +potbelly,potbellies +potbelly stove,potbelly stoves +pot boiler,pot boilers +potboiler,potboilers +pot boy,pot boys +potboy,potboys +pot brownie,pot brownies +potbrownie,potbrownies +potcher,potchers +pot-companion,pot-companions +potecary,potecaries +Potemkin village,Potemkin villages +potence,potences +potency,potencies +potender,potenders +potentate,potentates +potential difference,potential differences +potentiality,potentialities +potentially hazardous object,potentially hazardous objects +potential,potentials +potential temperature,potential temperatures +potential vorticity,potential vorticities +potential well,potential wells +potentiation,potentiations +potentiator,potentiators +potentilla,potentillas +potentiogalvanostat,potentiogalvanostats +potentiometer,potentiometers +potentiometre,potentiometres +potentiostat,potentiostats +potent,potents +pote,potes +poteriid,poteriids +potestate,potestates +potexvirus,potexviruses +potful,potfuls,potsful +pot-girl,pot-girls +potgun,potguns +pothead,potheads +pothecary,pothecaries +potherb,potherbs +pother,pothers +potholder,potholders +pot-hole,pot-holes +pothole,potholes +pothole,potholes +potholer,potholers +pothook,pothooks +pothos,pothos,pothoses +pot-house,pot-houses +pothouse,pothouses +pothunter,pothunters +potion,potions +potjiekos,potjiekos +potlatcher,potlatchers +potlatch,potlatches +potlid,potlids +pot life,pot lives +potline,potlines +pot luck,pot lucks +potluck,potlucks +pot man,pot men +potman,potmen +pot marigold,pot marigolds +potoo,potoos +potorid,potorids +potoroid,potoroids +potoroo,potoroos +pot pie,pot pies +potpie,potpies +pot plant,pot plants +potplant,potplants +pot,pots +potpourri,potpourris +potrero,potreros +pot roast,pot roasts +pot scrubber brush,pot scrubber brushes +pot scrubber,pot scrubbers +potshard,potshards +potshare,potshares +potsherd,potsherds +pot shot,pot shots +potshot,potshots +potsticker,potstickers +pot still,pot stills +pot stirrer,pot stirrers +pottage,pottages +potteen,potteens +potterer,potterers +potteress,potteresses +Potterhead,Potterheads +potter,potters +Potter,Potters +potter's clay,potter's clays +potter's field,potter's fields +potter's wheel,potter's wheels +potter wasp,potter wasps +pottle,pottles +potto,pottos +pott,potts +potty mouth,potty mouths +pottymouth,pottymouths +potty,potties +pot-walloper,pot-wallopers +potyvirid,potyvirids +potyvirus,potyviruses +pouched egg,pouched eggs +pouchful,pouchfuls +pouchong,pouchongs +pouch,pouches +pouffe,pouffes +pouf,poufs +poulaine,poulaines +pouldron,pouldrons +poule,poules +poule,poules +poulpe,poulpes +poulp,poulps +poulterer,poulterers +poulter,poulters +poulter's measure,poulter's measures +poultice,poultices +poult,poults +poultryman,poultrymen +poultrywoman,poultrywomen +pouncehug,pouncehugs +pounce,pounces +pouncer,pouncers +pouncet-box,pouncet-boxes +pouncing,pouncings +poundal,poundals +pound cake,pound cakes +poundcake,poundcakes +pounder,pounders +pounder,pounders +pound-force,pound-forces +pounding,poundings +poundkeeper,poundkeepers +poundmaster,poundmasters +pound of flesh,pounds of flesh +pound,pounds +pound,pounds +pound,pounds +pound shop,pound shops +pound sign,pound signs +pound sterling,pounds sterling +Poupart's ligament,Poupart's ligaments +poupeton,poupetons +pourcuttle,pourcuttles +pourer,pourers +pouring,pourings +pourlieu,pourlieus +pour-over will,pour-over wills +pourparler,pourparlers +pourparty,pourparties +pourpoint,pourpoints +pour,pours +pourpresture,pourprestures +poursuivant,poursuivants +pourtraict,pourtraicts +pourveyance,pourveyances +pousada,pousadas +pous,podes +poussette,poussettes +poussin,poussins +poustinia,poustinias +poustinik,poustiniki +pouter,pouters +poutinerie,poutineries +pouting,poutings +pout,pouts +pout,pouts +pout,pouts +poverty line,poverty lines +poverty trap,poverty traps +povidone,povidones +POV,POVs +povvo,povvos +powan,powans +powder blue,powder blues +powder cap,powder caps +powderer,powderers +powderflask,powderflasks +powder horn,powder horns +powderhorn,powderhorns +powderhound,powderhounds +powder hoy,powder hoys +powdering,powderings +powdering tub,powdering tubs +powder keg,powder kegs +powderkeg,powderkegs +powder mill,powder mills +powdermill,powdermills +powder monkey,powder monkeys +powderpost beetle,powderpost beetles +powder puff,powder puffs +powder room,powder rooms +powdike,powdikes +powen,powens +power-associative algebra,power-associative algebras +power ballad,power ballads +powerband,powerbands +power bar,power bars +power base,power bases +power behind the throne,powers behind the throne +power board,power boards +powerboard,powerboards +powerboater,powerboaters +powerboat,powerboats +powerbomb,powerbombs +power bottom,power bottoms +powerbottom,powerbottoms +power box,power boxes +powerbox,powerboxes +power brick,power bricks +power broker,power brokers +power-broker,power-brokers +powerbroker,powerbrokers +power center,power centers +powerchair,powerchairs +power chord,power chords +power cut,power cuts +powercut,powercuts +power domain,power domains +powerdomain,powerdomains +power factor,power factors +power forward,power forwards +power function,power functions +power gamer,power gamers +powerhead,powerheads +power hitter,power hitters +powerhouse,powerhouses +power inverter,power inverters +power jam,power jams +power law,power laws +powerlaw,powerlaws +powerlifter,powerlifters +power line communication,power line communications +power-line communication,power-line communications +power line,power lines +power-line,power-lines +powerline,powerlines +power loom,power looms +power lunch,power lunches +power mic,power mics +power mike,power mikes +powermonger,powermongers +power nap,power naps +power of appointment,powers of appointment +power of attorney,powers of attorney +power of termination,powers of termination +power pack,power packs +power pill,power pills +power plant,power plants +powerplant,powerplants +power play,power plays +powerplay,powerplays +power point,power points +powerpoint,powerpoints +PowerPoint,PowerPoints +Power,Powers +power rack,power racks +power saw,power saws +power series,power series +power set,power sets +powerset,powersets +power slide,power slides +powerslide,powerslides +power snack,power snacks +power source,power sources +power station,power stations +power strip,power strips +powerstrip,powerstrips +powerstructure,powerstructures +power suit,power suits +power supply,power supplies +power surge,power surges +power take-off,power take-offs +power tap,power taps +power tool,power tools +power toothbrush,power toothbrushes +power top,power tops +powertop,powertops +power tower,power towers +power train,power trains +powertrain,powertrains +power trip,power trips +powertrip,powertrips +power-up,power-ups +powerup,powerups +power user,power users +power vacuum,power vacuums +power wall,power walls +powerwasher,powerwashers +power word,power words +Powhatan,Powhatans,Powhatan +powldron,powldrons +pow,pows +pow,pows +POW,POWs +powre,powres +powter,powters +pow wow,pow wows +pow-wow,pow-wows +powwow,powwows +Pow wow,Pow wows +Pow Wow,Pow Wows +Pow-Wow,Pow-Wows +pox,poxes +poxvirus,poxviruses +poynado,poynados,poynadoes +poynard,poynards +Poynting vector,Poynting vectors +poy,poys +poyson,poysons +pozole,pozoles +pozzie,pozzies +pozzolana,pozzolanas +pozzolan,pozzolans +pozzuolana,pozzuolanas +pozzy,pozzies +PPI,PPIs +P-plate,P-plates +p.,pp. +PPPoA,PPPoAs +PPPoE,PPPoEs +PPP,PPPs +PPP,PPPs +P,Ps +PPTP,PPTPs +praam,praams +pracademic,pracademics +practicability,practicabilities +practicality,practicalities +practical joke,practical jokes +practical joker,practical jokers +practical number,practical numbers +practical nurse,practical nurses +practical,practicals +practice,practices +practicer,practicers +practice run,practice runs +practician,practicians +practick,practicks +practic,practics +practicum,practicums,practica +practisant,practisants +practiser,practisers +practisour,practisours +practitioner,practitioners +pradhan,pradhans +prΓ¦amble,prΓ¦ambles +praecava,praecavae +prΓ¦cedent,prΓ¦cedents +prΓ¦centor,prΓ¦centors +prΓ¦ceptor,prΓ¦ceptors +prΓ¦cept,prΓ¦cepts +prΓ¦cinct,prΓ¦cincts +praecipe,praecipes +prΓ¦cipice,prΓ¦cipices +prΓ¦cipitate,prΓ¦cipitates +praecoracoid,praecoracoids +prΓ¦cordium,prΓ¦cordia +praecornu,praecornua +prΓ¦cursor,prΓ¦cursors +prΓ¦dator,prΓ¦dators +prΓ¦decessor,prΓ¦decessors +prΓ¦destination,prΓ¦destinations +prΓ¦dicament,prΓ¦dicaments +prΓ¦dicate,prΓ¦dicates +prΓ¦dicative,prΓ¦dicatives +prΓ¦diction,prΓ¦dictions +prΓ¦dilection,prΓ¦dilections +prΓ¦-emption,prΓ¦-emptions +prΓ¦emption,prΓ¦emptions +prΓ¦face,prΓ¦faces +prΓ¦fect,prΓ¦fects +prΓ¦fecture,prΓ¦fectures +prΓ¦ference,prΓ¦ferences +prΓ¦figuration,prΓ¦figurations +prΓ¦fix,prΓ¦fixes +prΓ¦fixum,prΓ¦fixa +prΓ¦lection,prΓ¦lections +prΓ¦liminary,prΓ¦liminaries +prΓ¦lude,prΓ¦ludes +praemaxilla,praemaxillae +prΓ¦mise,prΓ¦mises +prΓ¦miss,prΓ¦misses +prΓ¦mium,prΓ¦mia +prΓ¦monition,prΓ¦monitions +prΓ¦munire,prΓ¦munires +praenaris,praenares +praenomen,praenomens,praenomina +praenuculid,praenuculids +praeoperculum,praeopercula +prΓ¦position,prΓ¦positions +prΓ¦positor,prΓ¦positors +praepostor,praepostors +prΓ¦puce,prΓ¦puces +prΓ¦putium,prΓ¦putia +prΓ¦rogative,prΓ¦rogatives +prΓ¦scription,prΓ¦scriptions +praescutum,praescuta +prΓ¦sence,prΓ¦sences +prΓ¦sentation,prΓ¦sentations +prΓ¦sent,prΓ¦sents +prΓ¦serve,prΓ¦serves +prΓ¦sidency,prΓ¦sidencies +prΓ¦sident,prΓ¦sidents +prΓ¦-Socratic,prΓ¦-Socratics +prΓ¦s.,prΓ¦s.,prΓ¦s's +praesternum,praesterna +prΓ¦sumption,prΓ¦sumptions +prΓ¦tense,prΓ¦tenses +praeterist,praeterists +praeteritio,praeteritios +praetexta,praetextas,praetextae +praetorian,praetorians +Praetorian,Praetorians +praetorium,praetoria +praetor,praetors,praetores +prΓ¦tor,prΓ¦tors,prΓ¦tores +praetorship,praetorships +prΓ¦vision,prΓ¦visions +praezygapophysis,praezygapophyses +pragmalinguist,pragmalinguists +pragma,pragmas +pragmaticist,pragmaticists +pragmatic sanction,pragmatic sanctions +pragmatist,pragmatists +pragmat,pragmats +Praguian,Praguians +prahu,prahus +prairie chicken,prairie chickens +prairie clover,prairie clovers +prairie dog,prairie dogs +prairie nigger,prairie niggers +prairie oyster,prairie oysters +prairie,prairies +prairie schooner,prairie schooners +prairie turnip,prairie turnips +praisement,praisements +praise,praises +praiser,praisers +praize,praizes +pralaya,pralayas +praline,pralines +prame,prames +pram face,pram faces +pram-face,pram-faces +pramface,pramfaces +pram,prams +pram,prams +prana,pranas +pranayama,pranayamas +prance,prances +prancer,prancers +prang,prangs +prank call,prank calls +prankee,prankees +pranker,prankers +prank,pranks +prankster,pranksters +pranny,prannies +pranotherapist,pranotherapists +prasine,prasines +prasinophyte,prasinophytes +prat digger,prat diggers +prate,prates +prater,praters +pratfall,pratfalls +pratie,praties +pratincole,pratincoles +pratique,pratiques +prat,prats +prat,prats +prattler,prattlers +pratt,pratts +pratylenchid,pratylenchids +praty,praties +prau,praus +prawn cocktail,prawn cocktails +prawn cracker,prawn crackers +prawner,prawners +prawn,prawns +praxeologist,praxeologists +praxinoscope,praxinoscopes +praxis,praxes +prayer book,prayer books +prayerbook,prayerbooks +prayer mat,prayer mats +prayermat,prayermats +prayer,prayers +prayer,prayers +prayer rope,prayer ropes +prayer rug,prayer rugs +prayer shawl,prayer shawls +prayer wheel,prayer wheels +prayid,prayids +praying mantid,praying mantids +praying mantis,praying mantises,praying mantes +pr*ck,pr*cks +preabsorption,preabsorptions +preaccelerator,preaccelerators +preacheress,preacheresses +preacher,preachers +preachership,preacherships +preaching cross,preaching crosses +preaching,preachings +preachman,preachmen +preachment,preachments +preach,preaches +preactivation,preactivations +pre-Adamite,pre-Adamites +Preadamite,Preadamites +preadaptation,preadaptations +preadipocyte,preadipocytes +preadjustment,preadjustments +preadolescent,preadolescents +preadult,preadults +preaggregation,preaggregations +prealgebra,prealgebras +pre-alpha version,pre-alpha versions +preamble,preambles +preambulation,preambulations +preamplifier,preamplifiers +preamp,preamps +preantepenultimate,preantepenultimates +preantepenult,preantepenults +preapprehension,preapprehensions +pre-apprenticeship,pre-apprenticeships +pre-approval letter,pre-approval letters +prearrangement,prearrangements +preaspiration,preaspirations +preassociation,preassociations +prebendary,prebendaries +prebendaryship,prebendaryships +prebend,prebends +prebendship,prebendships +prebooking,prebookings +prebuttal,prebuttals +Pre-Cana,Pre-Canas +precancel,precancels +precancerosis,precanceroses +precancer,precancers +precandidate,precandidates +precapitalist,precapitalists +precap,precaps +precatalyst,precatalysts +precation,precations +precautionary,precautionaries +precaution,precautions +precava,precavae +precedence,precedences +precedency,precedencies +precedent,precedents +precede,precedes +precell,precells +precentor,precentors +precentour,precentours +preception,preceptions +preceptor,preceptors +preceptory,preceptories +preceptour,preceptours +precept,precepts +preceptress,preceptresses +precessor,precessors +prechondroblast,prechondroblasts +precibarium,precibaria +precinct committeeman,precinct committeemen +precinct,precincts +precious metal,precious metals +precious,preciouses +precious stone,precious stones +precipe,precipes +precipice,precipices +precipitancy,precipitancies +precipitant,precipitants +precipitate,precipitates +precipitation reaction,precipitation reactions +precipitator,precipitators +precipitin,precipitins +precipitin test,precipitin tests +precisianist,precisianists +precisian,precisians +precising definition,precising definitions +precisionist,precisionists +precis,precis +prΓ©cis,prΓ©cis +preclamping,preclampings +preclear,preclears +precoder,precoders +precognitive,precognitives +precog,precogs +precollection,precollections +precommitment,precommitments +precompiler,precompilers +precomplexation,precomplexations +precompression,precompressions +preconceit,preconceits +preconcentration,preconcentrations +preconception,preconceptions +preconcert,preconcerts +preconditioner,preconditioners +precondition,preconditions +precongruence,precongruences +preconization,preconizations +precontract,precontracts +pre-cooler,pre-coolers +precooler,precoolers +precoracoid,precoracoids +precordium,precordia +precorrection,precorrections +precrystallization,precrystallizations +preculture,precultures +precuneus,precunei +precurrer,precurrers +precurse,precurses +precursor,precursors +precursor tip,precursor tips +precursory,precursories +predacean,predaceans +predate,predates +predation,predations +predator bug,predator bugs +Predator drone,Predator drones +predator,predators +predawn,predawns +predecease,predeceases +predeceaser,predeceasers +predecessoress,predecessoresses +predecessor,predecessors +predecessour,predecessours +pre-decrement,pre-decrements +predefined function,predefined functions +predeliberation,predeliberations +predelineation,predelineations +predelinquent,predelinquents +predella,predellas +predentary,predentaries +predessert,predesserts +predestinarian,predestinarians +predestinator,predestinators +predestiny,predestinies +predeterminant,predeterminants +predetermination,predeterminations +predeterminer,predeterminers +prediabetic,prediabetics +prediagnosis,prediagnoses +predicable,predicables +predicament,predicaments +predicand,predicands +predicant,predicants +predicate logic,predicate logics +predicate,predicates +predicatid,predicatids +predication,predications +predicative adjective,predicative adjectives +predicative case,predicative cases +predicative,predicatives +predicator,predicators +predictability,predictabilities +predictand,predictands +prediction market,prediction markets +prediction,predictions +predictive market,predictive markets +predictive parser,predictive parsers +predictor,predictors +predictor variable,predictor variables +predict,predicts +predikant,predikants,predikante +predilection,predilections +predilution,predilutions +predisagreement,predisagreements +prediscovery,prediscoveries +predisponent,predisponents +predisposition,predispositions +predissociation,predissociations +predistribution,predistributions +preditor,preditors +predjudice,predjudices +predoc,predocs +predominance,predominances +predominant,predominants +predomination,predominations +pred,preds +pre-dreadnought,pre-dreadnoughts +pre-echo,pre-echoes +preemie,preemies +preem,preems +preemptioner,preemptioners +preΓ«mptioner,preΓ«mptioners +pre-emption,pre-emptions +preemption,preemptions +preΓ«mption,preΓ«mptions +preemptive right,preemptive rights +preemptive strike,preemptive strikes +preemptor,preemptors +preΓ«mptor,preΓ«mptors +preener,preeners +preengagement,preengagements +preening,preenings +preen,preens +pre-exponent,pre-exponents +preexponent,preexponents +preΓ«xponent,preΓ«xponents +prefab,prefabs +preface,prefaces +Preface,Prefaces +prefacer,prefacers +prefactor,prefactors +prefect,prefects +prefectship,prefectships +prefecture,prefectures +preference,preferences +preferences,preferences +preferer,preferers +preferist,preferists +preferment,preferments +preferred creditor,preferred creditors +preferred,preferreds +preferred stock,preferred stocks +preferrer,preferrers +prefetcher,prefetchers +prefetch,prefetches +prefiguration,prefigurations +prefiguring,prefigurings +prefilter,prefilters +prefinition,prefinitions +prefixation,prefixations +prefixation,prefixations +prefixoid,prefixoids +prefix,prefixes +prefixum,prefixa +preflight,preflights +preflower,preflowers +preformation,preformations +preformative,preformatives +preform,preforms +prefractionation,prefractionations +prefrontal,prefrontals +prefrosh,prefrosh +pre-game,pre-games +pregame,pregames +pregap,pregaps +preggo,preggos +pregnadiene,pregnadienes +pregnancy,pregnancies +pregnancy school,pregnancy schools +pregnancy test,pregnancy tests +pregnane,pregnanes +pregnanolone,pregnanolones +pregnant chad,pregnant chads +pregnant construction,pregnant constructions +pregnant pause,pregnant pauses +pregnant,pregnants +pregnatriene,pregnatrienes +pregnene,pregnenes +prego roll,prego rolls +preg,pregs +prehadron,prehadrons +prehallux,prehalluxes +preheader,preheaders +preheater,preheaters +prehension,prehensions +preheritance,preheritances +prehilbert space,prehilbert spaces +pre-Hilbert space,pre-Hilbert spaces +prehistorian,prehistorians +prehistoric age,prehistoric ages +prehormone,prehormones +prehuman,prehumans +prehybridisation,prehybridisations +prehybridization,prehybridizations +prehypertensive,prehypertensives +preignition,preignitions +preimage,preimages +preimmunization,preimmunizations +pre-increment,pre-increments +preincubation,preincubations +preinfection,preinfections +preinflation,preinflations +preinfusion,preinfusions +preinitiation,preinitiations +preintimation,preintimations +preionization,preionizations +prejudgement,prejudgements +prejudgment,prejudgments +prekindergartener,prekindergarteners +prekindergarten,prekindergartens +prekindergartner,prekindergartners +prelacy,prelacies +prelamin,prelamins +prelate,prelates +prelatess,prelatesses +prelation,prelations +prelatist,prelatists +prelature,prelatures +prelease,preleases +prelection,prelections +prelector,prelectors +prelibation,prelibations +preliminary examination,preliminary examinations +preliminary injunction,preliminary injunctions +preliminary,preliminaries +prelim,prelims +preliterate,preliterates +preloader,preloaders +prelocalization,prelocalizations +prelude,preludes +preluder,preluders +premature antifascist,premature antifascists +premature birth,premature births +premature ejaculation,premature ejaculations +premaxilla,premaxillae +premaxillary,premaxillaries +premedication,premedications +premeditation,premeditations +premed,premeds +premetric,premetrics +premie,premies +premie,premies +premier danseur,premiers danseurs +premiere danseuse,premiere danseuses +premiΓ¨re danseuse,premiΓ¨res danseuses +premiere,premieres +premiΓ¨re,premiΓ¨res +premier,premiers +premiership,premierships +premise,premises +premiss,premisses +premium,premiums,premia +premium-rate telephone number,premium-rate telephone numbers +premixing,premixings +premix,premixes +premixture,premixtures +premmie,premmies +premodification,premodifications +premodifier,premodifiers +premolar,premolars +premonition,premonitions +premonitor,premonitors +Premonstrant,Premonstrants +Premonstratensian,Premonstratensians +premonstration,premonstrations +premonstrator,premonstrators +premortem,premortems +prem,prems +premunire,premunires +premunition,premunitions +prename,prenames +prenasal,prenasals +prenate,prenates +prenex,prenexes +prenol,prenols +prenomen,prenomens,prenomina +prenomination,prenominations +prenotion,prenotions +prenticehood,prenticehoods +'prentice,'prentices +prentice,prentices +prenticeship,prenticeships +prenunciation,prenunciations +prenup,prenups +prenuptial agreement,prenuptial agreements +prenuptual agreement,prenuptual agreements +prenylation,prenylations +prenylome,prenylomes +preobservation,preobservations +preoccupation,preoccupations +preoccupied name,preoccupied names +preocular,preoculars +preon,preons +preopercle,preopercles +preopercular,preoperculars +preoperculum,preoperculums,preopercula +pre-op,pre-ops +preop,preops +preoptimization,preoptimizations +preoption,preoptions +preorder,preorders +preordinance,preordinances +preorganization,preorganizations +preosteoblast,preosteoblasts +pre-owned vehicle,pre-owned vehicles +pre-packaged bankruptcy,pre-packaged bankruptcies +preparationist,preparationists +preparation room,preparation rooms +preparative,preparatives +preparator,preparators +preparer,preparers +preparty,preparties +prepattern,prepatterns +prepayer,prepayers +prepayment,prepayments +prepenetration,prepenetrations +prephenate,prephenates +preplanetary nebula,preplanetary nebulae,preplanetary nebulas +preplanetesimal,preplanetesimals +prepollent,prepollents +prepoll,prepolls +prepolymer,prepolymers +preponderation,preponderations +prepositional article,prepositional articles +prepositional case,prepositional cases +prepositional phrase,prepositional phrases +prepositional,prepositionals +prepositional pronoun,prepositional pronouns +preposition of place,prepositions of place +preposition,prepositions +prepositive,prepositives +prepositor,prepositors +prepositure,prepositures +prepossession,prepossessions +prepossessor,prepossessors +prepostor,prepostors +prepotency,prepotencys +prepotential,prepotentials +prepper,preppers +preppie,preppies +preppy,preppies +preprint,preprints +preprocessor,preprocessors +pre-production,pre-productions +preprofessional,preprofessionals +preproglucagon,preproglucagons +preprohormone,preprohormones +preprolactin,preprolactins +prep room,prep rooms +preprophase,preprophases +prep school,prep schools +prepster,prepsters +prepubis,prepubes +prepuce,prepuces +prepulse,prepulses +prequark,prequarks +prequel,prequels +preraphaelite,preraphaelites +Pre-Raphaelite,Pre-Raphaelites +preread,prereads +prerecording,prerecordings +prereduction,prereductions +preregistration,preregistrations +preregnant,preregnants +prereq,prereqs +prerequisite,prerequisites +prerogative,prerogatives +prerogative writ,prerogative writs +prerun,preruns +presagement,presagements +presage,presages +presager,presagers +presale,presales +presbyope,presbyopes +presbyornithid,presbyornithids +presbyterate,presbyterates +presbyteress,presbyteresses +Presbyterian,Presbyterians +presbyterium,presbyteria +presbyter,presbyters +presbytership,presbyterships +presbytery,presbyteries +preschooler,preschoolers +preschool,preschools +prescience,presciences +prescriber,prescribers +prescription bottle,prescription bottles +prescription drug,prescription drugs +prescription,prescriptions +prescriptivist,prescriptivists +prescript,prescripts +prescutum,prescuta +preseason,preseasons +preseeding,preseedings +preseed,preseeds +preselector,preselectors +presence,presences +presenilin,presenilins +presensation,presensations +presentation,presentations +presentee,presentees +presenter,presenters +present historic tense,present historic tenses +presentience,presentiences +presentiment,presentiments +presention,presentions +presentism,presentisms +presentity,presentities +presentment,presentments +presentoir,presentoirs +present participle,present participles +present,presents +present,presents +present sense impression,present sense impressions +present tense,present tenses +preservationist,preservationists +preservation,preservations +preservative,preservatives +preservatory,preservatories +preserver,preservers +pre-shared key,pre-shared keys +preshave,preshaves +presheaf,presheaves +preshow,preshows +presidary,presidaries +presidency,presidencies +president-elect,presidents-elect +president,presidents +President,Presidents +presidentship,presidentships +presider,presiders +presidio,presidios +presidium,presidia,presidiums +presignature,presignatures +presignification,presignifications +presoak,presoaks +pre-Socratic,pre-Socratics +Presocratic,Presocratics +preso,presos +presphenoid,presphenoids +pres.,pres,pres's +press agency,press agencies +press agent,press agents +press availability,press availabilities +press avail,press avails +pressback,pressbacks +press box,press boxes +pressbox,pressboxes +press brake,press brakes +press card,press cards +press conference,press conferences +presser,pressers +presser,pressers +press gaggle,press gaggles +press-gang,press-gangs +pressgang,pressgangs +pressie,pressies +pressing,pressings +pressiometer,pressiometers +pression,pressions +press kit,press kits +presskit,presskits +pressman,pressmen +pressmaster,pressmasters +press office,press offices +pressoreceptor,pressoreceptors +pressor,pressors +pressperson,presspersons,presspeople +press release,press releases +press roll,press rolls +pressroom,pressrooms +press stud,press studs +press time,press times +presstime,presstimes +presstitute,presstitutes +press-up,press-ups +pressurage,pressurages +pressurant,pressurants +pressure bandage,pressure bandages +pressure cooker,pressure cookers +pressure-cooker,pressure-cookers +pressure gauge,pressure gauges +pressure gradient force,pressure gradient forces +pressure gradient,pressure gradients +pressure group,pressure groups +pressuremeter,pressuremeters +pressure point,pressure points +pressure ulcer,pressure ulcers +pressure valve,pressure valves +pressure vessel,pressure vessels +pressure washer,pressure washers +pressurisation,pressurisations +pressurization,pressurizations +pressurized water reactor,pressurized water reactors +pressurizer,pressurizers +prestart,prestarts +presternum,presterna +prester,presters +prester,presters +prestezza,prestezzas +prestidigitation,prestidigitations +prestidigitator,prestidigitators +prestigiation,prestigiations +prestigiator,prestigiators +prestimony,prestimonies +prestimulation,prestimulations +prestosuchid,prestosuchids +prest,prests +prestudy,prestudies +presubiculum,presubicula +presulfiding,presulfidings +presumer,presumers +presumption,presumptions +presupposition,presuppositions +presurmise,presurmises +presynapse,presynapses +pre-syncope,pre-syncopes +presyncope,presyncopes +preta,pretas +pretarsus,pretarsi +pretectum,pretecta +preteenager,preteenagers +pre-teen,pre-teens +preteen,preteens +pretence,pretences +pretendant,pretendants +pretender,pretenders +pretendress,pretendresses +pretense,pretenses +pretension,pretensions +pretention,pretentions +preterimperfect,preterimperfects +preterist,preterists +preterite-present,preterite-presents +preterite-present verb,preterite-present verbs +preterite,preterites +pretermission,pretermissions +pretermitted child,pretermitted children +pretermitted heir,pretermitted heirs +pretermitted spouse,pretermitted spouses +preterm,preterms +preterperfect,preterperfects +pre-test,pre-tests +pretest,pretests +pretext,pretexts +pretextuality,pretextualitys +pretexture,pretextures +prethermalization,prethermalizations +pretilt,pretilts +pretoddler,pretoddlers +pretorian,pretorians +pretorium,pretoriums +pretor,pretors,pretores +pretour,pretours +pretranslator,pretranslators +pretreatment,pretreatments +pretrial,pretrials +pretrigger,pretriggers +prettification,prettifications +prettifier,prettifiers +pretty boy,pretty boys +pretty-faced wallaby,pretty-faced wallabies +pretty penny,pretty pennies +pretty,pretties +pretzel knot,pretzel knots +pretzel link,pretzel links +pretzel,pretzels +preux chevalier,preux chevaliers +prevailing party,prevailing parties +prevarication,prevarications +prevaricator,prevaricators +prevelar,prevelars +prevenience,preveniences +preventative,preventatives +preventer,preventers +preventive,preventives +preventral,preventrals +preverb,preverbs +previewer,previewers +preview,previews +prevision,previsions +Prevost reaction,Prevost reactions +Prevost's squirrel,Prevost's squirrels +prewash,prewashes +prewellordering,prewellorderings +prewrite,prewrites +prewriting,prewritings +prexie,prexies +prex,prexes +prexy,prexies +preyer,preyers +prezone,prezones +prez,prezzes +prezygapophysis,prezygapophyses +prezzie,prezzies +priacanthid,priacanthids +prial,prials +Priapean,Priapeans +priapulid,priapulids +priapus,priapi +priar,priars +Pribnow box,Pribnow boxes +Pricasso,Pricassos +price bubble,price bubbles +price-earnings ratio,price-earnings ratios +price floor,price floors +price gouger,price gougers +price index,price indices +price level,price levels +price list,price lists +pricelist,pricelists +price on one's head,prices on ones' heads +price point,price points +pricepoint,pricepoints +price,prices +pricer,pricers +price tag,price tags +pricetag,pricetags +pricker,prickers +pricket,prickets +pricking,prickings +prickleback,pricklebacks +prickle cell,prickle cells +pricklefish,pricklefishes,pricklefish +prickle,prickles +pricklouse,pricklice +prickly oak,prickly oaks +prickly pear,prickly pears +prick,pricks +prickpunch,prickpunches +prickshaft,prickshafts +pricksong,pricksongs +prickteaser,prickteasers +prick test,prick tests +prie-dieu,prie-dieus,prie-dieux +priedieu,priedieus,priedieux +prier,priers +priestcap,priestcaps +priestdom,priestdoms +priestess,priestesses +priest hole,priest holes +priest,priests +priggery,priggeries +prig,prigs +prile,priles +prilling tower,prilling towers +prill,prills +prill,prills +prill,prills +prima ballerina,prima ballerinas +primacy effect,primacy effects +primadonna,primadonnas +prima donna,prima donnas,primae donnae +primage,primages +primage,primages +primal cut,primal cuts +primal horde,primal hordes +primal scream,primal screams +primal therapy,primal therapies +primary alcohol,primary alcohols +primary amine,primary amines +primary cell wall,primary cell walls +primary cilium,primary cilia +primary color,primary colors +primary colour,primary colours +primary election,primary elections +primary energy,primary energies +primary immunodeficiency,primary immunodeficiencies +primary industry,primary industries +primarying,primaryings +primary key,primary keys +primary market,primary markets +primary offense,primary offenses +primary,primaries +primary producer,primary producers +primary rate interface,primary rate interfaces +primary reinforcement,primary reinforcements +primary research,primary researchs +primary residence,primary residences +primary school,primary schools +primary sector,primary sectors +primary source,primary sources +primary structure,primary structures +primary tooth,primary teeth +primary transcript,primary transcripts +primary valence,primary valences +primase,primases +primatal,primatals +primate,primates +primatologist,primatologists +Primat,Primats +prime constellation,prime constellations +prime contract,prime contracts +prime decomposition,prime decompositions +prime directive,prime directives +prime factorization,prime factorizations +prime factor,prime factors +prime formula,prime formulas +prime implicant,prime implicants +prime minister,prime ministers +Prime Minister,Prime Ministers +prime ministership,prime ministerships +prime mover,prime movers +prime number,prime numbers +prime,primes +primerole,primeroles +primer,primers +prime suspect,prime suspects +primeval forest,primeval forests +primibrachial,primibrachials +primibrach,primibrachs +primigravida,primigravidas +primigravid,primigravids +primine,primines +priming,primings +primipara,primiparas,primiparae +primip,primips +primitia,primitias,primitiae +primitive concept,primitive concepts +Primitive Methodist,Primitive Methodists +primitive,primitives +primitive root,primitive roots +primitive streak,primitive streaks +primitive type,primitive types +primitivist,primitivists +primocane,primocanes +primogenitor,primogenitors +primo,primos +primordiality,primodialities +primordial,primordials +primordian,primordians +primordium,primordia +primorial,primorials +primosome,primosomes +primper,primpers +primrose path,primrose paths +primrose,primroses +primula,primulas +Prince Albert,Prince Alberts +prince bishop,prince bishops +prince-bishop,prince-bishops +Prince Charlie jacket,Prince Charlie jackets +Prince Charming,Prince Charmings +prince consort,prince consorts +princedom,princedoms +Prince Edward Islander,Prince Edward Islanders +princekin,princekins +princelet,princelets +princeling,princelings +princely state,princely states +prince,princes +prince regent,prince regents,princes regent +princess cut,princess cuts +princesse dress,princesse dresses +princessipality,princessipalities +princess,princesses +Princess Royal,Princesses Royal +Princetonian,Princetonians +Prince Valiant,Prince Valiants +principal ideal domain,principal ideal domains +principal ideal,principal ideals +principal ideal ring,principal ideal rings +principalist,principalists +principality,principalities +principal quantum number,principal quantum numbers +principalship,principalships +principal ultrafilter,principal ultrafilters +principiation,principiations +principle,principles +principlist,principlists +princock,princocks +princox,princoxes +Pringle,Pringles +prinker,prinkers +prink,prinks +printed circuit board,printed circuit boards +printer buffer,printer buffers +printer,printers +printer's apostrophe,printer's apostrophes +printer's devil,printer's devils,printers' devils +printery,printeries +print head,print heads +printhead,printheads +printing form,printing forms +printing house,printing houses +printing press,printing presses +printing roll,printing rolls +printing shop,printing shops +printmaker,printmakers +print out,print outs +printout,printouts +print,prints +Print Screen,Print Screens +printseller,printsellers +print server,print servers +printshop,printshops +printworker,printworkers +prionoceratid,prionoceratids +prionocerid,prionocerids +prionopid,prionopids +prion,prions +prion,prions +prion protein,prion proteins +priorate,priorates +prioress,prioresses +prioritarian,prioritarians +prioritisation,prioritisations +prioritization,prioritizations +prioritizer,prioritizers +priority,priorities +prior,priors +priory,priories +priour,priours +prisage,prisages +Priscillianist,Priscillianists +prise de fer,prises de fer +prise,prises +priser,prisers +prismane,prismanes +prismatic compass,prismatic compasses +prismatoid,prismatoids +prismoid,prismoids +prism,prisms +prison bitch,prison bitches +prison cell,prison cells +prison chaser,prison chasers +prisoner of conscience,prisoner of consciences +prisoner of war,prisoners of war +prisoner,prisoners +prisoness,prisonesses +prison gang,prison gangs +prison guard,prison guards +prisonguard,prisonguards +prisonhouse,prisonhouses +priss,prisses +pristella,pristellas +pristid,pristids +pristigasterid,pristigasterids +pristiglomid,pristiglomids +pristinamycine,pristinamycines +pristinamycin,pristinamycins +pristiophorid,pristiophorids +pritchel hole,pritchel holes +pritchel,pritchels +pritch,pritches +privacy policy,privacy policies +privacy seal,privacy seals +privado,privados,privadoes +privat-docent,privat-docents +privatdozent,privatdozents +private candidate,private candidates +private detective,private detectives +private dick,private dicks +private enterprise number,private enterprise numbers +privateer,privateers +privateersman,privateersmen +private eye,private eyes +private first class,privates first class +private investigator,private investigators +private investment banker,private investment bankers +private joke,private jokes +private key,private keys +private limited liability company,private limited liability companies +private member's bill,private member's bills +private,privates +private school,private schools +private sector,private sectors +private-wire house,private-wire houses +privatisation,privatisations +privatiser,privatisers +privatissimum,privatissima +privative a,privative as +privative,privatives +privatizer,privatizers +privatopia,privatopias +priveledge,priveledges +privet,privets +priviledg,priviledges +privileged debt,privileged debts +privilege,privileges +privity,privities +privy council,privy councils +privy,privies +Privy Purse,Privy Purses +privy seal,privy seals +prix fixe,prix fixes +prizefighter,prizefighters +prizefight,prizefights +prizeman,prizemen +prize,prizes +prizer,prizers +prize winner,prize winners +prizewinner,prizewinners +prizing,prizings +prizzly,prizzlies +PRNG,PRNGs +pro-abortionist,pro-abortionists +proabortionist,proabortionists +pro-abort,pro-aborts +proadjective,proadjectives +proadverb,proadverbs +pro-am,pro-ams +proansamycin,proansamycins +proanthocyanidin,proanthocyanidins +proanthocyanin,proanthocyanins +proa,proas +proatlas,proatlases +proavian,proavians +proazaphosphatrane,proazaphosphatranes +probabiliorist,probabiliorists +probabilistically checkable proof,probabilistically checkable proofs +probabilist,probabilists +probability amplitude,probability amplitudes +probability density function,probability density functions +probability density,probability densities +probability distribution,probability distributions +probability mass function,probability mass functions +probability measure,probability measures +probability,probabilities +probability space,probability spaces +probability theory,probability theories +probainognathid,probainognathids +proband,probands +probang,probangs +probate court,probate courts +probate,probates +probationer,probationers +probationership,probationerships +probation officer,probation officers +probation,probations +probator,probators +probe,probes +prober,probers +probeset,probesets +probie,probies +probing,probings +probiotic,probiotics +probit,probits +probity,probities +problematic,problematics +problematist,problematists +problematization,problematizations +problem child,problem children +probleme,problemes +problemo,problemos +problem,problems,problemata +problemsolver,problemsolvers +problem space,problem spaces +probole,proboles +proborhyaenid,proborhyaenids +proboscidean,proboscideans +proboscidian,proboscidians +proboscis,proboscises,proboscides,probosci +prob,probs +procambium,procambia +procapitalist,procapitalists +procapsid,procapsids +procarboxypeptidase,procarboxypeptidases +procarcinogen,procarcinogens +procaridid,procaridids +procaryote,procaryotes +procaspase,procaspases +procathedral,procathedrals +procaviid,procaviids +procedendo,procedendos +proceduralist,proceduralists +procedural,procedurals +procedure division,procedure divisions +procedure mask,procedure masks +proceeder,proceeders +proceeding,proceedings +proceleusmatic,proceleusmatics +procellarian,procellarians +procellarid,procellarids +procellariid,procellariids +procentriole,procentrioles +proceptivity,proceptivities +proceratosaurid,proceratosaurids +procerebrum,procerebra +procerite,procerites +procerithiid,procerithiids +procerodid,procerodids +procerus,proceri +processability,processabilities +process color,process colors +processer,processers +processibility,processibilities +processid,processids +processionalist,processionalists +processional,processionals +processionary,processionaries +processioner,processioners +processioning,processionings +procession,processions +processivity,processivities +process oil,process oils +processome,processomes +processor,processors +process,processes +process server,process servers +processualist,processualists +process window index,process window indices +prochaetodermatid,prochaetodermatids +prochilodontid,prochilodontids +prochirality,prochiralities +pro-choicer,pro-choicers +prochronism,prochronisms +proclaimer,proclaimers +proclamation,proclamations +proclitic,proclitics +proclivity,proclivities +procoagulant,procoagulants +procoele,procoeles +procoelian,procoelians +procofactor,procofactors +procollagen,procollagens +procolophonid,procolophonids +proconservator,proconservators +proconsulate,proconsulates +proconsulid,proconsulids +proconsul,proconsuls +proc,procs +procrastinator,procrastinators +procreant,procreants +procreator,procreators +procrustean bed,procrustean beds +proctectomy,proctectomies +proctocolectomy,proctocolectomies +proctodaeum,proctodaea +proctodΓ¦um,proctodΓ¦ums,proctodΓ¦a +proctodeum,proctodeums,proctodea +proctologist,proctologists +proctophyllodid,proctophyllodids +proctor,proctors +proctoscope,proctoscopes +proctoscopy,proctoscopies +proctosigmoidoscopy,proctosigmoidoscopies +proctotomy,proctotomies +proctour,proctours +procuracy,procuracies +procuration,procurations +procuratorate,procuratorates +procurator fiscal,procurators fiscal +procurator,procurators +procuratorship,procuratorships +procuratour,procuratours +procurer,procurers +procuress,procuresses +procuticle,procuticles +procyanidin,procyanidins +procyclicality,procyclicalities +procyclin,procyclins +procynosuchid,procynosuchids +procyonid,procyonids +prodder,prodders +prodding,proddings +prodd,prodds +Proddy,Proddies +prodefensin,prodefensins +prodelision,prodelisions +prodidomid,prodidomids +prodigality,prodigalities +prodigal,prodigals +prodigal son,prodigal sons +prodiginine,prodiginines +prodigy,prodigies +proditor,proditors +prodoxid,prodoxids +prod,prods +Prod,Prods +prodrome,prodromes +prodromitid,prodromitids +prodromos,prodromoi +prodromus,prodromuses,prodromi +pro-drop language,pro-drop languages +prodrug,prodrugs +producent,producents +producerist,producerists +producer milk,producer milks +producer only market,producer only markets +producer price index,producer price indexes +producer,producers +producibility,producibilities +productid,productids +production line,production lines +production model,production models +production,productions +production record,production records +production value,production values +productisation,productisations +productivist,productivists +productivity,productivities +product peak,product peaks +product placement,product placements +productress,productresses +product topology,product topologies +product variance,product variances +proedria,proedrias +proembryo,proembryos +proemium,proemia +proem,proems +proenzyme,proenzymes +proepicardium,proepicardia +proerythroblast,proerythroblasts +proetid,proetids +profanation,profanations +profane,profanes +profaner,profaners +profanity delay,profanity delays +profeminist,profeminists +proferens,proferentes +profert,proferts +professional class,professional classes +professional foul,professional fouls +professionalist,professionalists +professional politician,professional politicians +professional,professionals +professional sport,professional sports +professional wrestler,professional wrestlers +profession,professions +professorate,professorates +professoriate,professoriates +professor,professors +professorship,professorships +professour,professours +profferer,profferers +proffer,proffers +proffre,proffres +proficiency,proficiencies +proficient,proficients +profiler,profilers +profilist,profilists +profilometer,profilometers +profilometry,profilometries +profitability,profitabilities +profit center,profit centers +profiteer,profiteers +profiterole,profiteroles +profiting,profitings +profit margin,profit margins +profit monger,profit mongers +profitmonger,profitmongers +profit,profits +profits warning,profits warnings +profit taking,profit takings +profit-taking,profit-takings +profit warning,profit warnings +profligate,profligates +profluvium,profluvia +pro-form,pro-forms +proform,proforms +prof,profs +profundity,profundities +profundulid,profundulids +profusion,profusions +progenate,progenates +progenitor,progenitors +progenitour,progenitours +progenitress,progenitresses +progeniture,progenitures +progestagen,progestagens +progesterone,progesterones +progestogen,progestogens +progger,proggers +progie,progies +proglottid,proglottids +proglottis,proglottides +proglucagon,proglucagons +prognosis,prognoses +prognostication,prognostications +prognosticator,prognosticators +prognostick,prognosticks +prognostic,prognostics +prognostification,prognostifications +prog,progs +program counter,program counters +programer,programers +program guide,program guides +programmability,programmabilities +programmable logic array,programmable logic arrays +programmable logic controller,programmable logic controllers +programma,programmata +programmed function key,programmed function keys +programme,programmes +programmer,programmers +programming language,programming languages +programming principle,programming principles +programming,programmings +programmist,programmists +program,programs +program slicer,program slicers +progranulocyte,progranulocytes +progress bar,progress bars +progressionist,progressionists +progression,progressions +progressist,progressists +Progressive Conservative,Progressive Conservatives +progressive dinner,progressive dinners +progressive,progressives +Progressive,Progressives +progressive verb,progressive verbs +progressivist,progressivists +progressor,progressors +progue,progues +prohaptor,prohaptors +proheme,prohemes +prohemocyte,prohemocytes +prohibiter,prohibiters +prohibitin,prohibitins +prohibitionist,prohibitionists +prohibition sign,prohibition signs +prohibitive,prohibitives +prohormone,prohormones +proinflammatory,proinflammatories +projapygid,projapygids +project engineer,project engineers +projectile point,projectile points +projectile,projectiles +projectionist,projectionists +projection,projections +projective Hilbert space,projective Hilbert spaces +projective plane,projective planes +projectivization,projectivizations +project manager,project managers +projectment,projectments +projector,projectors +projectour,projectours +project,projects +projecture,projectures +projet,projets +projicient,projicients +prokaryote,prokaryotes +prokineticin,prokineticins +prokinetic,prokinetics +prolactinoma,prolactinomas,prolactinomata +prolamine,prolamines +prolamin,prolamins +prolapse,prolapses +prolapsion,prolapsions +prolation,prolations +prolative case,prolative cases +prolative,prolatives +prolegate,prolegates +prolegomenon,prolegomena +proleg,prolegs +prole,proles +prolepsis,prolepses +proletarian,proletarians +proletary,proletaries +proliferator,proliferators +pro-lifer,pro-lifers +prolification,prolifications +prolinate,prolinates +proller,prollers +prolobitid,prolobitids +prolocution,prolocutions +prolocutor,prolocutors +prologomenon,prologomena +prolog,prologs +prologue,prologues +prolongational reduction,prolongational reductions +prolongation,prolongations +prolonged abortion,prolonged abortions +prolonge,prolonges +prolonger,prolongers +prolonging,prolongings +prolongment,prolongments +prolotherapist,prolotherapists +prolusion,prolusions +prolylpeptide,prolylpeptides +prolyl,prolyls +prolymphocyte,prolymphocytes +promastigote,promastigotes +promegakaryocyte,promegakaryocytes +promenade,promenades +promenader,promenaders +promeropid,promeropids +prometaphase,prometaphases +Promethean,Prometheans +promgoer,promgoers +prominency,prominencies +prominent moth,prominent moths +prominin,prominins +promiscuity,promiscuities +promised land,promised lands +Promised Land,Promised Lands +promisee,promisees +promise,promises +promiser,promisers +promisor,promisors +promissory note,promissory notes +prom king,prom kings +prommer,prommers +promonocyte,promonocytes +promontory,promontories +promont,promonts +promo,promos +promotee,promotees +promoter,promoters +promotion,promotions +promover,promovers +prom-posal,prom-posals +promposal,promposals +prom,proms +PROM,PROMs +promptbook,promptbooks +prompter,prompters +prompt,prompts +promptuary,promptuaries +prompture,promptures +prom queen,prom queens +promulgation,promulgations +promulgator,promulgators +promulger,promulgers +promyelination,promyelinations +promyelocyte,promyelocytes +promythium,promythia +promzilla,promzillas +Promzilla,Promzillas +pronaos,pronaoi,pronaoses +pronase,pronases +pronatalism,pronatalisms +pronatalist,pronatalists +pronator,pronators +pronephros,pronephroi +prongbuck,prongbucks +pronghorn,pronghorns +prong,prongs +pronity,pronities +pronk,pronks +pronominal adverb,pronominal adverbs +pronominal verb,pronominal verbs +pronormoblast,pronormoblasts +pronotary,pronotaries +pronotum,pronota +pronouncement,pronouncements +pronouncer,pronouncers +pronoun,pronouns +pron,prons +pronucleus,pronuclei +pronunciamiento,pronunciamientos,pronunciamientoes +pronunciation dictionary,pronunciation dictionaries +pronunciation guide,pronunciation guides +pronunciator,pronunciators +proΕ“mion,proΕ“mia +proΕ“mium,proΕ“mia +proof by example,proofs by example +proof by exhaustion,proofs by exhaustion +proofer,proofers +proof-of-concept,proofs-of-concept +proof of concept,proofs of concepts,proofs of concept +proof reader,proof readers +proof-reader,proof-readers +proofreader,proofreaders +proofreading,proofreadings +proof spirit,proof spirits +proof system,proof systems +prooftext,prooftexts +proostracum,proostraca +prootic,prootics +prooxidant,prooxidants +propadienyl,propadienyls +propaedeutic,propaedeutics +propagandist,propagandists +propagator,propagators +propagule,propagules +propagulum,propagula +propalticid,propalticids +propanediol,propanediols +propanoate,propanoates +propanolamine,propanolamines +propanol,propanols +propargylamide,propargylamides +propargylation,propargylations +propargylglycine,propargylglycines +propargyl,propargyls +proparoxytone,proparoxytones +propatagium,propatagia +prop blast,prop blasts +prop comedian,prop comedians +prop comedy,prop comedies +prop comic,prop comics +propeamussiid,propeamussiids +propedeuse,propedeuses +propellane,propellanes +propellant,propellants +propellent,propellents +propeller head,propeller heads +propeller-head,propeller-heads +propellerhead,propellerheads +propeller,propellers +propeller shaft,propeller shafts +propelling pencil,propelling pencils +propellor head,propellor heads +propellor,propellors +propelment,propelments +propenamide,propenamides +propenoate,propenoates +propenone,propenones +propension,propensions +propensity,propensities +propenyl,propenyls +pro-peptide,pro-peptides +propeptide,propeptides +proper acceleration,proper accelerations +proper adjective,proper adjectives +proper class,proper classes +proper fraction,proper fractions +properispomenon,properispomenons,properispomena +properispome,properispomes +proper motion,proper motions +proper name,proper names +proper noun,proper nouns +proper subset,proper subsets +propertie,properties +property tax,property taxes +proper value,proper values +propfan,propfans +prophage,prophages +prophalangopsid,prophalangopsids +prophase,prophases +prophases,prophases,prophaseis +prophecy,prophecies +prophenoloxidase,prophenoloxidases +prophesier,prophesiers +prophetess,prophetesses +prophetic week,prophetic weeks +prophet of doom,prophets of doom +prophet,prophets +prophetship,prophetships +prophragma,prophragmata +prophylactic,prophylactics +prophylaxis,prophylaxes +prophyll,prophylls +prophy,prophies +propine,propines +propine,propines +propinquity,propinquities +propinyl,propinyls +propiolate,propiolates +propionate,propionates +propionibacterium,propionibacteria +propionyl,propionyls +propiophenone,propiophenones +propitiation,propitiations +propitiator,propitiators +propjet,propjets +proplanetary disk,proplanetary disks +proplasm,proplasms +proplastid,proplastids +proplatelet,proplatelets +propleg,proplegs +proplet,proplets +propliner,propliners +proplyd,proplyds +propmaker,propmakers +propmaster,propmasters +propodite,propodites +propodium,propodia +proponent,proponents +proporid,proporids +proportional analogy,proportional analogies +proportionator,proportionators +proposal,proposals +propose,proposes +proposer,proposers +proposita,propositae +propositional attitude,propositional attitudes +propositional calculus,propositional calculi +propositional function,propositional functions +propositionalization,propositionalizations +propositional logic,propositional logics +propositional variable,propositional variables +propositus,proposituses +propounder,propounders +proppant,proppants +propper,proppers +prop,props +prop,props +prop,props +prop,props +propraetor,propraetors +proprΓ¦tor,proprΓ¦tors +propraetorship,propraetorships +proprΓ¦torship,proprΓ¦torships +propretie,propreties +propretor,propretors +proprietary eponym,proprietary eponyms +proprietary,proprietaries +proprietor,proprietors +proprietorship,proprietorships +proprietress,proprietresses +proprietrix,proprietrixes,proprietrices +propriety,proprieties +proprioceptor,proprioceptors +proprochirality,proprochiralities +proproctor,proproctors +pro,pros +pro,pros +pro,pros +proprotease,proproteases +pro-protein,pro-proteins +proprotein,proproteins +prop shaft,prop shafts +propterygium,propterygia +propugnacle,propugnacles +propugner,propugners +propwash deflection unit,propwash deflection units +prop wash,prop washes +propylaeum,propylaea,propylaeums +propylamine,propylamines +propylammonium,propylammoniums +propylbenzene,propylbenzenes +propylene oxide,propylene oxides +propylidene,propylidenes +propylitization,propylitizations +propylon,propylons,propyla +propyl,propyls +propyne,propynes +prorastomid,prorastomids +proration,prorations +prorectorate,prorectorates +prorector,prorectors +prore,prores +prorogation,prorogations +proruption,proruptions +prosaicness,prosaicnesses +prosaist,prosaists +prosauropod,prosauropods +proscΓ¦nium,proscΓ¦nia +proscenium arch,proscenium arches +proscenium,prosceniums,proscenia +prosciutto,prosciutti,prosciuttos +proscolex,proscolices +proscriber,proscribers +proscriptionist,proscriptionists +proscription,proscriptions +proscript,proscripts +proscylliid,proscylliids +Prosecco,Proseccos +prosection,prosections +prosector,prosectors +prosector's wart,prosector's warts +prosecution history,prosecution histories +prosecution,prosecutions +prosecutive case,prosecutive cases +prosecutor,prosecutors +prosecutorship,prosecutorships +prosecutrix,prosecutrixes +prosegment,prosegments +proselyte,proselytes +proselyter,proselyters +proselytiser,proselytisers +proselytizer,proselytizers +proselytute,proselytutes +proseman,prosemen +proseminar,proseminars +proseminary,proseminaries +prosencephalon,prosencephalons +pro-sentence,pro-sentences +prose poem,prose poems +prose-poem,prose-poems +proserpinid,proserpinids +proser,prosers +prosign,prosigns +prosimian,prosimians +prosiphon,prosiphons +pro skirt,pro skirts +proslaver,proslavers +prosobranch,prosobranchs +prosocialist,prosocialists +prosocoele,prosocoeles +prosodian,prosodians +prosodification,prosodifications +prosodist,prosodists +prosody,prosodies +prosoma,prosomata +prosopagnosic,prosopagnosics +prosopalgia,prosopalgias +prosopography,prosopographies +prosoponology,prosoponologies +prosopopoeia,prosopopoeias,prosopopoeiae +prospection,prospections +prospective,prospectives +prospector,prospectors +prospect,prospects +prospectus,prospectuses,prospecti +prosperity gospel,prosperity gospels +prospermatogonium,prospermatogonia +prosphora,prosphoras +prosphysis,prosphyses +prospicience,prospiciences +prossie,prossies +prossy,prossies +prostacyclin,prostacyclins +prostaglandin,prostaglandins +prostanoid,prostanoids +prostatectomy,prostatectomies +prostate gland,prostate glands +prostate,prostates +prostatic utricle,prostatic utricles +prostatism,prostatisms +prostatotomy,prostatotomies +prosternation,prosternations +prosternum,prosterna +prosthaphΓ¦resis,prosthaphΓ¦reses +prosthesis,prostheses +prosthetic group,prosthetic groups +prostheticist,prostheticists +prosthetic,prosthetics +prosthetist,prosthetists +prosthion,prosthions +prosthodontist,prosthodontists +prosthogonimid,prosthogonimids +prosthologist,prosthologists +prosti-tot,prosti-tots +prostitot,prostitots +prostitute,prostitutes +prostitutor,prostitutors +prostomid,prostomids +prostomium,prostomia +prostration,prostrations +prostyle,prostyles +prosty,prosties +prosumer,prosumers +prosumer,prosumers +pro-sumti,pro-sumti +prosyllogism,prosyllogisms +protagonist,protagonists +protamine,protamines +protanope,protanopes +protanopia,protanopias +protasis,protases +protaspid,protaspids +protaspis,protaspides +protea,proteas +protease inhibitor,protease inhibitors +protease,proteases +proteasome,proteasomes +protectant,protectants +protected area,protected areas +protected membrane roof,protected membrane roofs +protected title,protected titles +protectee,protectees +protecting group,protecting groups +protectin,protectins +protection course,protection courses +protectionist,protectionists +protection proxy,virtual proxies +protective,protectives +protectorate,protectorates +protector,protectors +protectorship,protectorships +protectour,protectours +protectress,protectresses +protectrix,protectrices +protegee,protegees +protΓ©gΓ©e,protΓ©gΓ©es +protege,proteges +protegΓ©,protegΓ©s +protΓ©gΓ©,protΓ©gΓ©s +protegrin,protegrins +proteid,proteids +proteinase,proteinases +protein complex,protein complexes +protein domain,protein domains +protein kinase,protein kinases +proteinoid,proteinoids +proteinomimetic,proteinomimetics +proteinopathy,proteinopathies +proteinoplast,proteinoplasts +protein shake,protein shakes +protein subunit,protein subunits +proteinuria,proteinurias +protelid,protelids +protension,protensions +protentomid,protentomids +proteobacterium,proteobacteria +proteoceratid,proteoceratids +proteoform,proteoforms +proteoglycan,proteoglycans +proteolipid,proteolipids +proteoliposome,proteoliposomes +proteome,proteomes +proteomicist,proteomicists +proteomimetic,proteomimetics +proteoplast,proteoplasts +proteorhodopsin,proteorhodopsins +proteose,proteoses +proteosome,proteosomes +proteotoxicity,proteotoxicities +proterhinid,proterhinids +proterochampsid,proterochampsids +proteroglyph,proteroglyphs +proterogyrinid,proterogyrinids +proterosuchid,proterosuchids +proterotheriid,proterotheriids +proter,proters +protervity,protervities +protestant,protestants +Protestant,Protestants +Protestant work ethic,Protestant work ethics +protestation,protestations +protestator,protestators +protester,protesters +protestor,protestors +protest,protests +proteus,protei +Proteus syndrome,Proteus syndromes +prothalamion,prothalamions,prothalamia +prothalamium,prothalamiums,prothalamia +prothallium,prothallia +prothallus,prothalli +prothese,protheses +prothesis,protheses +prothesis,protheses +Proth number,Proth numbers +prothonotary,prothonotaries +prothonotaryship,prothonotaryships +prothonotary warbler,prothonotary warblers +prothoracic gland,prothoracic glands +prothoracicotropic hormone,prothoracicotropic hormones +prothorax,prothoraxes,prothoraces +prothrombin,prothrombins +prothymocyte,prothymocytes +prothymosin,prothymosins +protide,protides +protip,protips +protistologist,protistologists +protiston,protista +protist,protists +protium,protiums +protoatmosphere,protoatmospheres +protobacterium,proteobacteria +protobiont,protobionts +protobird,protobirds +protoboard,protoboards +protobrosis,protobroses +protocadherin,protocadherins +protocapitalist,protocapitalists +protocatechuate,protocatechuates +protocell,protocells +protoceratid,protoceratids +protoceratopsid,protoceratopsids +protocerebrum,protocerebra +protocetid,protocetids +protochloride,protochlorides +protochlorophyllide,protochlorophyllides +protochordate,protochordates +protocluster,protoclusters +protocoel,protocoels +protocolist,protocolists +protocol,protocols +protoconch,protoconches +protocone,protocones +protoconid,protoconids +protocontinent,protocontinents +protoconversation,protoconversations +protocorm,protocorms +protoctistan,protoctistans +protoctist,protoctists +protoculture,protocultures +protocycloceratid,protocycloceratids +protodeacon,protodeacons +protoderm,protoderms +protodesilylation,protodesilylations +protofeather,protofeathers +protofibril,protofibrils +protofilament,protofilaments +protoflexid,protoflexids +protoform,protoforms +protogalaxy,protogalaxies +protogine,protogines +protogrammar,protogrammars +protograph,protographs +protohalo,protohalos,protohaloes +protoheme,protohemes +protohemin,protohemins +protohominid,protohominids +protohuman,protohumans +Proto-Indo-European,Proto-Indo-Europeans +proto-industry,proto-industries +Proto-Iranian,Proto-Iranians +proto-language,proto-languages +protolanguage,protolanguages +protolith,protoliths +protologism,protologisms +protologue,protologues +protolophule,protolophules +protolophulid,protolophulids +protolysis,protolyses +protomammal,protomammals +protomartyr,protomartyrs +protome,protomes +protomerite,protomerites +protomer,protomers +protomer,protomers +protomicrocotylid,protomicrocotylids +protomitochondrion,protomitochondria +protomodernist,protomodernists +proto-mullet,proto-mullets +protomullet,protomullets +protonation,protonations +protoncogene,protoncogenes +protonema,protonemata +protoneurid,protoneurids +protoneutron star,protoneutron stars +protonitrate,protonitrates +protonium,protoniums +proton number,proton numbers +protonolysis,protonolyses +protonophore,protonophores +protonotary,protonotaries +proton,protons +proton pump,proton pumps +protonym,protonyms +proto-oncogene,proto-oncogenes +protooncogene,protooncogenes +protopapas,protopapases +protophyte,protophytes +protoplanetary disc,protoplanetary discs +protoplanetary nebula,protoplanetary nebulae,protoplanetary nebulas +protoplanet,protoplanets +protoplasm,protoplasms +protoplastid,protoplastids +protoplast,protoplasts +protopodite,protopodites +protopope,protopopes +protoporphyrinogen,protoporphyrinogens +protoporphyrin,protoporphyrins +protopterid,protopterids +protoreceptor,protoreceptors +protorothyridid,protorothyridids +protosalt,protosalts +protoscience,protosciences +protoscolex,protoscoleces +protoscripture,protoscriptures +protosilicate,protosilicates +protosirenid,protosirenids +protosome,protosomes +protosomite,protosomites +protostane,protostanes +protostar,protostars +protostegid,protostegids +protostele,protosteles +protostelid,protostelids +protostoma,protostomata +protostome,protostomes +protostomian,protostomians +protostyle,protostyles +protostylid,protostylids +protosuchid,protosuchids +protosulphate,protosulphates +protosulphide,protosulphides +protosulphuret,protosulphurets +prototheme,protothemes +prototheorid,prototheorids +prototherian,prototherians +protothread,protothreads +prototile,prototiles +prototroph,prototrophs +prototype pattern,prototype patterns +prototype,prototypes +prototyper,prototypers +protovertebra,protovertebrae +protoxide,protoxides +protoxin,protoxins +protoxylem,protoxylems +protozoan,protozoa +protozoologist,protozoologists +protozoology,protozoologies +protozoon,protozoa +protracter,protracters +protractor,protractors +protreptic,protreptics +protruberance,protruberances +protryptase,protryptases +protuberance,protuberances +protuberation,protuberations +proturan,proturans +proudling,proudlings +proundling,proundlings +provannid,provannids +provection,provections +proveditor,proveditors +provedore,provedores +provenance,provenances +provend,provends +provenience,proveniences +proventricle,proventricles +proventriculus,proventriculi +proverbialism,proverbialisms +proverbialist,proverbialists +proverbial,proverbials +proverbiologist,proverbiologists +proverbiology,proverbiologies +proverb,proverbs +prover,provers +provider,providers +providore,providores +province,provinces +provincial capital,provincial capitals +provincialism,provincialisms +provincialist,provincialists +provincial,provincials +proving ground,proving grounds +proving,provings +provirus,proviruses +provisional job,provisional jobs +provisional,provisionals +Provisional,Provisionals +provisioner,provisioners +provisioning,provisionings +provision,provisions +proviso,provisos,provisoes +provisor,provisors +provisour,provisours +provitamin,provitamins +provocateur,provocateurs +provocation,provocations +provocative,provocatives +provokement,provokements +provoker,provokers +Provo,Provos +provost,provosts +provostship,provostships +provosty,provosties +prowfish,prowfishes,prowfish +prowl car,prowl cars +prowler,prowlers +prowl,prowls +prow,prows +prow,prows +proxenetism,proxenetisms +proxenet,proxenets +proxenos,proxenoi +proxenus,proxeni +proxeny,proxenies +proxigean spring tide,proxigean spring tides +proximal convoluted tubule,proximal convoluted tubules +proximal phalange,proximal phalanges +proximate cause,proximate causes +proximate,proximates +proximity fuse,proximity fuses +proximity fuze,proximity fuzes +proximity mine,proximity mines +proximity,proximities +prox,proxes +proxygene,proxygenes +proxy in blank,proxies in blank +proxy mine,proxy mines +proxy pattern,proxy patterns +proxy,proxies +proxy,proxies +proxy server,proxy servers +proxy war,proxy wars +prozine,prozines +prozone,prozones +prozzie,prozzies +PrP,PrPs +prudentialist,prudentialists +prudent man rule,prudent man rules +prude,prudes +prud'-homme,prud'-hommes +prudhomme,prudhommes +prunella,prunellas +prunelle,prunelles +prunello,prunellos,prunelloes +prune,prunes +pruner,pruners +pruning hook,pruning hooks +pruninghook,pruninghooks +prunt,prunts +prurition,pruritions +prusik,prusiks +Prussian blue,Prussian blues +Prussian,Prussians +prussiate,prussiates +prutah,prutahs,prutot,prutoth +prybar,prybars +pryde,prydes +pryer,pryers +prymnesiophyte,prymnesiophytes +pry,pries +prytane,prytanes +prytaneum,prytanea +prytanis,prytaneis +prytany,prytanies +Przewalski's horse,Przewalski's horses +psalmbook,psalmbooks +psalmist,psalmists +psalmodist,psalmodists +psalmographer,psalmographers +psalm,psalms +psalmwriter,psalmwriters +psalterium,psalteria +psalter,psalters +psaltery,psalteries +psamment,psamments +psammobiid,psammobiids +psammoma,psammomas,psammomata +psammophile,psammophiles +psammophyte,psammophytes +psammosere,psammoseres +psammosteid,psammosteids +psarolite,psarolites +pschent,pschents +PSD,PSDs +psechrid,psechrids +pselaphid,pselaphids +psephenid,psephenids +psephism,psephisms +psephologist,psephologists +psettodid,psettodids +pseudanthessiid,pseudanthessiids +pseudanthium,pseudanthiums,pseudanthia +pseudarthrosis,pseudarthroses +pseudembryo,pseudembryos +pseudepigraphy,pseudepigraphies +pseudoadaptation,pseudoadaptations +pseudoaneurysm,pseudoaneurysms +pseudo-anglicism,pseudo-anglicisms +pseudo anime,pseudo animes +pseudobezoar,pseudobezoars +pseudoblock,pseudoblocks +pseudobond,pseudobonds +pseudobranch,pseudobranchs +pseudobulb,pseudobulbs +pseudobulge,pseudobulges +pseudocaeciliid,pseudocaeciliids +pseudocapacitor,pseudocapacitors +pseudocarchariid,pseudocarchariids +pseudocarp,pseudocarps +pseudocastle,pseudocastles +pseudocelebrity,pseudocelebrities +pseudocereal,pseudocereals +pseudocerotid,pseudocerotids +pseudocheirid,pseudocheirids +pseudochromid,pseudochromids +pseudocide,pseudocides +pseudo-city code,pseudo-city codes +pseudoclass,pseudoclasses +pseudococcid,pseudococcids +pseudococculinid,pseudococculinids +pseudococcus,pseudococci +pseudocodeword,pseudocodewords +pseudocoelomate,pseudocoelomates +pseudocoel,pseudocoels +pseudocolor,pseudocolors +pseudocolour,pseudocolours +pseudocoma,pseudocomas +pseudo-complement,pseudo-complements +pseudocone,pseudocones +pseudocopolymer,pseudocopolymers +pseudocorrelation,pseudocorrelations +pseudocrater,pseudocraters +pseudocrystal,pseudocrystals +pseudocyclopiid,pseudocyclopiids +pseudocyphella,pseudocyphellae +pseudocyst,pseudocysts +pseudodemocracy,pseudodemocracies +pseudodevice,pseudodevices +pseudodiadematid,pseudodiadematids +pseudodifferential operator,pseudodifferential operators +pseudodigraph,pseudodigraphs +pseudodipeptide,pseudodipeptides +pseudodiphtheria,pseudodiphtherias +pseudo-discipline,pseudo-disciplines +pseudodiscipline,pseudodisciplines +pseudodistomin,pseudodistomins +pseudodocumentary,pseudodocumentaries +pseudodomain,pseudodomains +pseudodox,pseudodoxes +pseudo-edge,pseudo-edges +pseudoelement,pseudoelements +pseudoenvironmentalist,pseudoenvironmentalists +pseudoexfoliation,pseudoexfoliations +pseudoexon,pseudoexons +pseudofeminist,pseudofeminists +pseudofermion,pseudofermions +pseudofilaria,pseudofilariae +pseudofluid,pseudofluids +pseudoforest,pseudoforests +pseudofossil,pseudofossils +pseudofracture,pseudofractures +pseudogame,pseudogames +pseudogap,pseudogaps +pseudogarypid,pseudogarypids +pseudogene,pseudogenes +pseudoglyptodont,pseudoglyptodonts +pseudogovernment,pseudogovernments +pseudograph,pseudographs +pseudogroup,pseudogroups +pseudohalide,pseudohalides +pseudohallucination,pseudohallucinations +pseudohalogen,pseudohalogens +pseudohaloritid,pseudohaloritids +pseudohaltere,pseudohalteres +pseudoheart,pseudohearts +pseudohermaphrodite,pseudohermaphrodites +pseudohistorian,pseudohistorians +pseudohistory,pseudohistories +pseudohomolog,pseudohomologs +pseudohypertrophy,pseudohypertrophies +pseudohypha,pseudohyphae +pseudoideal,pseudoideals +pseudointellectual,pseudointellectuals +pseudoinverse,pseudoinverses +pseudokinase,pseudokinases +pseudoknot,pseudoknots +pseudolanguage,pseudolanguages +pseudolivid,pseudolivids +pseudolobule,pseudolobules +pseudologist,pseudologists +pseudologue,pseudologues +pseudomelaniid,pseudomelaniids +pseudomembrane,pseudomembranes +pseudome,pseudomes +pseudomessiah,pseudomessiahs +pseudometallophyte,pseudometallophytes +pseudometaloph,pseudometalophs +pseudomomentum,pseudomomentums +pseudomonad,pseudomonads +pseudomonas,pseudomonades +pseudomorph,pseudomorphs +pseudomugilid,pseudomugilids +pseudonamespace,pseudonamespaces +pseudonavicella,pseudonavicellae +pseudonavicula,pseudonaviculas,pseudonaviculae +pseudonull,pseudonulls +pseudonym,pseudonyms +pseudo-octave,pseudo-octaves +pseudooligomer,pseudooligomers +pseudooligosaccharide,pseudooligosaccharides +pseudopalate,pseudopalates +pseudoparticle,pseudoparticles +pseudopatient,pseudopatients +pseudopenis,pseudopenes +pseudopetiole,pseudopetioles +pseudophilosopher,pseudophilosophers +pseudophorid,pseudophorids +pseudophotograph,pseudophotographs +pseudophotosphere,pseudophotospheres +pseudopimelodid,pseudopimelodids +pseudoplasmodium,pseudoplasmodia +pseudopocket,pseudopockets +pseudopodium,pseudopodia +pseudopod,pseudopods,pseudopodia +pseudopolynomial,pseudopolynomials +pseudopolyp,pseudopolyps +pseudopomyzid,pseudopomyzids +pseudopotential,pseudopotentials +pseudopregnancy,pseudopregnancies +pseudoprime,pseudoprimes +pseudoprofession,pseudoprofessions +pseudoprotocol,pseudoprotocols +pseudo,pseudos +pseudopupa,pseudopupae +pseudoracemate,pseudoracemates +pseudoradical,pseudoradicals +pseudorandom number generator,pseudorandom number generators +pseudorapidity,pseudorapidities +pseudorecombination,pseudorecombinations +pseudoreplicate,pseudoreplicates +pseudoresponse,pseudoresponses +pseudorhabdite,pseudorhabdites +pseudo-Riemannian manifold,pseudo-Riemannian manifolds +pseudorosette,pseudorosettes +pseudorotation,pseudorotations +pseudorotaxane,pseudorotaxanes +pseudorthoceratid,pseudorthoceratids +pseudorutile,pseudorutiles +pseudosacrifice,pseudosacrifices +pseudoscalar,pseudoscalars +pseudo-science,pseudo-sciences +pseudoscience,pseudosciences +pseudoscientist,pseudoscientists +pseudosclerosis,pseudoscleroses +pseudoscope,pseudoscopes +pseudoscorpion,pseudoscorpions +pseudosecret,pseudosecrets +pseudoseizure,pseudoseizures +pseudoselector,pseudoselectors +pseudosibling,pseudosiblings +pseudoslave,pseudoslaves +pseudosphere,pseudospheres +pseudospin,pseudospins +pseudospore,pseudospores +pseudostar,pseudostars +pseudostate,pseudostates +pseudostellarin,pseudostellarins +pseudostem,pseudostems +pseudostigmatid,pseudostigmatids +pseudostipule,pseudostipules +pseudostoma,pseudostomata +pseudosubstrate,pseudosubstrates +pseudosurface,pseudosurfaces +pseudosymmetry,pseudosymmetries +pseudotachylite,pseudotachylites +pseudotachylyte,pseudotachylytes +pseudotensor,pseudotensors +pseudoterminal,pseudoterminals +pseudothecium,pseudothecia +pseudothelphusid,pseudothelphusids +pseudotirolitid,pseudotirolitids +pseudotrajectory,pseudotrajectories +pseudotriakid,pseudotriakids +pseudotriangle,pseudotriangles +pseudotriangulation,pseudotriangulations +pseudotrichonotid,pseudotrichonotids +pseudotrunk,pseudotrunks +pseudotumor,pseudotumors +pseudotumour,pseudotumours +pseudoturbinal,pseudoturbinals +pseudotype,pseudotypes +pseudourea,pseudoureas +pseudouridine,pseudouridines +pseudovariable,pseudovariables +pseudovarium,pseudovaria +pseudovary,pseudovaries +pseudovector,pseudovectors +pseudovirgin,pseudovirgins +pseudovirion,pseudovirions +pseudovirus,pseudoviruses +pseudovitamin,pseudovitamins +pseudovum,pseudova +pseudowire,pseudowires +pseudoword,pseudowords +pseudozygopleurid,pseudozygopleurids +pseud,pseuds +psicose,psicoses +psidium,psidiums +psi function,psi functions +psilanthropist,psilanthropists +psilid,psilids +psilophyte,psilophytes +psilorhynchid,psilorhynchids +psilosopher,psilosophers +psilostomatid,psilostomatids +psilostrophe,psilostrophes +psilotophyte,psilotophytes +p'simmon,p'simmons +psion,psions +psittacid,psittacids +psittacine,psittacines +psittacosaurid,psittacosaurids +psittacosaur,psittacosaurs +psittacosaurus,psittacosauruses +psittacosis,psittacoses +psittaculid,psittaculids +psivamp,psivamps +PSM,PSMs +psoas,psoae,psoai,psoas +psocid,psocids +psocopteran,psocopterans +psolid,psolids +psophiid,psophiids +psoralen,psoralens +psoroptid,psoroptids +psorosperm,psorosperms +PSPO,PSPOs +psRNA,psRNAs +PSR,PSRs +PSTN,PSTNs +PSU,PSUs +psychagogue,psychagogues +psychedelic circus,psychedelic circuses +psychedelic crisis,psychedelic crises +psychedelic,psychedelics +Psyche knot,Psyche knots +psyche,psyches +psychiatric condition,psychiatric conditions +psychiatric nurse,psychiatric nurses +psychiatrist,psychiatrists +psychic,psychics +psychid,psychids +psychoactivity,psychoactivities +psychoanalyser,psychoanalysers +psychoanalyst,psychoanalysts +psychoanalyzer,psychoanalyzers +psychobabbler,psychobabblers +psychobiographer,psychobiographers +psychobiography,psychobiographies +psychobiologist,psychobiologists +psychobitch,psychobitches +psychocidarid,psychocidarids +psychodid,psychodids +psychodrama,psychodramas +psychogeneticist,psychogeneticists +psychogeographer,psychogeographers +psychogeriatrician,psychogeriatricians +psychognosy,psychognosys +psychographer,psychographers +psychographist,psychographists +psychograph,psychographs +psychoheresy,psychoheresies +psychohistorian,psychohistorians +psycholeptic,psycholeptics +psycholinguist,psycholinguists +psychological injury,psychological injuries +psychological refractory period,psychological refractory periods +psychologist,psychologists +psychologue,psychologues +psychomachia,psychomachias +psychomachy,psychomachies +psychometrician,psychometricians +psychometrist,psychometrists +psychometry,psychometries +psychomyiid,psychomyiids +psychonaut,psychonauts +psychoneuroendocrinologist,psychoneuroendocrinologists +psychoneurosis,psychoneuroses +psychoneurotic,psychoneurotics +psychon,psychons +psychopathist,psychopathists +psychopathologist,psychopathologists +psychopath,psychopaths +psychopathy,psychopathies +psychophant,psychophants +psychopharmaceutical,psychopharmaceuticals +psychopharmacologist,psychopharmacologists +psychophony,psychophonys +psychophysiologist,psychophysiologists +psychopomp,psychopomps +psychopsid,psychopsids +psycho,psychos +psychosine,psychosines +psychosis,psychoses +psychosomatician,psychosomaticians +psychosomaticist,psychosomaticists +psychostimulant,psychostimulants +psychosurgery,psychosurgeries +psychotherapist,psychotherapists +psychotherapy,psychotherapies +psychothriller,psychothrillers +psychotic,psychotics +psychotomimesis,psychotomimeses +psychotomimetic,psychotomimetics +psychotropic,psychotropics +psych,psychs +psychrolutid,psychrolutids +psychrometer,psychrometers +psychrometre,psychrometres +psychrometric chart,psychrometric charts +psychrometry,psychrometries +psychrophile,psychrophiles +psychrophyte,psychrophytes +psychroplanet,psychroplanets +psychrosphere,psychrospheres +psychroteuthid,psychroteuthids +psychrotherapy,psychrotherapies +psykter,psykters +psylla,psyllas +psyllid,psyllids +psyop,psyops +ptarmic,ptarmics +ptarmigan,ptarmigan,ptarmigans +PTBNL,PTBNLs +pteranodon,pteranodons +pteranodontid,pteranodontids +pteraspid,pteraspids +ptereleotrid,ptereleotrids +pteridine,pteridines +pteridologist,pteridologists +pteridophyte,pteridophytes +pteridosperm,pteridosperms +pteriid,pteriids +pterion,pterions +pterocarpan,pterocarpans +pteroclid,pteroclids +pterodactylane,pterodactylanes +pterodactylid,pterodactylids +pterodactyl,pterodactyls +pteromalid,pteromalids +pteronarcyid,pteronarcyids +pteronyssid,pteronyssids +pterophore,pterophores +pterophorid,pterophorids +pterophyte,pterophytes +pteropid,pteropids +pteropine,pteropines +pteropodid,pteropodids +pteropodine,pteropodines +pteropod,pteropods +pteroptochid,pteroptochids +pterosaurian,pterosaurians +pterosaur,pterosaurs +pterostigma,pterostigmata +pterostilbene,pterostilbenes +pterothecid,pterothecids +pterotic,pterotics +pterotracheid,pterotracheids +pteroyl,pteroyls +pterygium,pterygiums,pterygia +pterygoid,pterygoids +pterygometopid,pterygometopids +pterygopodium,pterygopodia +pterygote,pterygotes +pterygotid,pterygotids +pteryla,pterylas,pterylae +pterylosis,pteryloses +ptilichthyid,ptilichthyids +ptiliid,ptiliids +ptilinum,ptilina +ptilodontid,ptilodontids +ptilogonatid,ptilogonatids +ptilonorhynchid,ptilonorhynchids +ptinid,ptinids +ptisane,ptisanes +ptisan,ptisans +ptochologist,ptochologists +Ptolemaist,Ptolemaists +ptomaine,ptomaines +ptosis,ptoses +ptosyl,ptosyls +PTW,PTWs +ptyalagogue,ptyalagogues +ptyalogogue,ptyalogogues +ptychaspidid,ptychaspidids +ptychitid,ptychitids +ptychoderid,ptychoderids +ptychodontid,ptychodontids +ptychopariid,ptychopariids +ptychopterid,ptychopterids +ptyctodontid,ptyctodontids +ptyctodont,ptyctodonts +pua,puas +pubber,pubbers +pubcaster,pubcasters +pubco,pubcos +pub crawler,pub crawlers +pub crawl,pub crawls +pub-crawl,pub-crawls +pube-cut,pube-cuts +pubedresser,pubedressers +pube,pubes +pube style,pube styles +pube stylist,pube stylists +pubgoer,pubgoers +pubic boot,pubic boots +pubic louse,pubic lice +pubic region,pubic regions +pubic symphysis,pubic symphyses +pubiotomy,pubiotomies +pubis,pubes +pubkeeper,pubkeepers +public address system,public address systems +publican,publicans +publication bias,publication biases +public authority,public authorities +public comment,public comments +public enemy,public enemies +public figure,public figures +public holiday,public holidays +public house,public houses +public-house,public-houses +public intellectual,public intellectuals +publicist,publicists +publicity hound,publicity hounds +publicity-hound,publicity-hounds +publicity stunt,publicity stunts +publicization,publicizations +publicizer,publicizers +publickation,publickations +public key certificate,public key certificates +public key,public keys +public library,public libraries +public limited company,public limited companies +Public Limited Liability Company,Public Limited Liability Companies +public office,public offices +public officer,public officers +public opinion,public opinions +public policy,public policies +public private partnership,public private partnerships +public-private partnership,public-private partnerships +public/private partnership,public/private partnerships +public,publics +public purse,public purses +public school,public schools +public sector,public sectors +public servant,public servants +public service announcement,public service announcements +public service,public services +public telephone,public telephones +public trustee,public trustees +public woman,public women +publique,publiques +publishee,publishees +publisher,publishers +publishing house,publishing houses +pub,pubs +pub,pubs +pub quiz,pub quizzes +puccoon,puccoons +pucelage,pucelages +pucelle,pucelles +pucel,pucels +puce,puces +puceron,pucerons +puchito,puchitos +puck bunny,puck bunnies +puckerer,puckerers +puckering,puckerings +pucker,puckers +puckfist,puckfists +puckle,puckles +puckout,puckouts +puck palace,puck palaces +puck,pucks +puck,pucks +puckster,pucksters +pudder,pudders +pudding basin haircut,pudding basin haircuts +pudding basin,pudding basins +pudding,puddings +puddingstone,puddingstones +puddle ball,puddle balls +puddle bar,puddle bars +puddle jumper,puddle jumpers +puddle-jumper,puddle-jumpers +puddle,puddles +puddler,puddlers +puddling,puddlings +puddock,puddocks +pudend,pudends +pudendum muliebre,pudenda muliebria +pudendum,pudenda +pudendum virile,pudenda virilia +pudge,pudges +pudicity,pudicities +pudina,pudinas +pudknocker,pudknockers +pud,puds +pud,puds +pud,puds +pudu,pudus,pudu +Pueblan,Pueblans +Puebloan,Puebloans +pueblo,pueblos +puefellow,puefellows +puella publica,puellae publicae +puerperal fever,puerperal fevers +puerperium,puerperia +Puerto Rican,Puerto Ricans +Puestow procedure,Puestow procedures +puet,puets +puff adder,puff adders +puffadder,puffadders +puffball,puffballs +puffbird,puffbirds +pufferbelly,pufferbellies +pufferfish,pufferfish,pufferfishes +puffer,puffers +puffery,pufferies +puffet,puffets +puffin crossing,puffin crossings +puffinet,puffinets +puffing pig,puffing pigs +puffin,puffins +puffinry,puffinries +puff-leg,puff-legs +puffleg,pufflegs +puffling,pufflings +puff piece,puff pieces +puftaloon,puftaloons +pugeranian,pugeranians +puggaree,puggarees +pugger,puggers +puggle,puggles +puggle,puggles +puggree,puggrees +puggry,puggries +pugilist,pugilists +pugillare,pugillares +pugil,pugils +pugil stick,pugil sticks +pugio,pugios +pugmark,pugmarks +pug mill,pug mills +pugmill,pugmills +pugnellid,pugnellids +pug nose,pug noses +pug,pugs +puits,puits +puja,pujas +pujari,pujaris +Pukapukan,Pukapukans +puka,pukas +pukeface,pukefaces +pukeko,pukeko +pΕ«keko,pΕ«keko +puker,pukers +puku,pukus +pulaski,pulaskis +pule,pules +puler,pulers +pulicid,pulicids +Pulinda,Pulindas +puling,pulings +puli,pulik,pulis +Puli,Pulik,Pulis,Puli +Pulitzer Prize,Pulitzer Prizes +Pulitzer,Pulitzers +pulka,pulkas +pulkha,pulkhas +pulk,pulks +pulla,pullas +pull-back,pull-backs +pullback,pullbacks +pullcord,pullcords +pull-down,pull-downs +pulldown,pulldowns +puller-outer,puller-outers +puller,pullers +pullet,pullets +pulley,pulleys +pull factor,pull factors +pullicate,pullicates +pullicat,pullicats +pull-in,pull-ins +Pullman car,Pullman cars +Pullman loaf,Pullman loaves +Pullman,Pullmans +pullout,pullouts +pullover,pullovers +pull,pulls +pull quote,pull quotes +pull-quote,pull-quotes +pull station,pull stations +pull through,pull throughs +pullulanase,pullulanases +pullulan,pullulans +pull-up,pull-ups +pullup,pullups +pullus,pulli +pully,pullies +pulmometer,pulmometers +pulmonaria,pulmonarias +pulmonary alveolus,pulmonary alveoli +pulmonary artery,pulmonary arteries +pulmonary circulation,pulmonary circulations +pulmonary edema,pulmonary edemas +pulmonary embolism,pulmonary embolisms +pulmonary emphysema,pulmonary emphysemas +pulmonary function test,pulmonary function tests +pulmonary oedema,pulmonary oedemas +pulmonary vein,pulmonary veins +pulmonate,pulmonates +pulmonologist,pulmonologists +pulpatoon,pulpatoons +pulpectomy,pulpectomies +pulpiteer,pulpiteers +pulpiter,pulpiters +pulpit,pulpits +pulp magazine,pulp magazines +pulp mill,pulp mills +pulpotomy,pulpotomies +pul,pul +pulque,pulques +pulsar,pulsars +pulsatance,pulsatances +pulsatility,pulsatilities +pulsatilla,pulsatillas +pulsation,pulsations +pulsator,pulsators +pulse demodulator,pulse demodulators +pulse detonation engine,pulse detonation engines +pulse jet,pulse jets +pulsejet,pulsejets +pulse modulation,pulse modulations +pulse modulator,pulse modulators +pulse oximeter,pulse oximeters +pulse,pulses +pulsetrain,pulsetrains +pulsimeter,pulsimeters +pulsion,pulsions +pulsometer,pulsometers +pulverisation,pulverisations +pulveriser,pulverisers +pulverizer,pulverizers +pulvillus,pulvilli +pulvinar,pulvinars +pulvinitid,pulvinitids +pulvinoid,pulvinoids +pulvinulus,pulvinuli +pulvinus,pulvinae,pulvini +puma,pumas +pumice stone,pumice stones +pummeler,pummelers +pummeling,pummelings +pummeller,pummellers +pummelling,pummellings +pump action,pump actions +pump and dump,pump and dumps +pumpellyite,pumpellyites +pumper,pumpers +pumpet,pumpets +pump fake,pump fakes +pump-fake,pump-fakes +pumphouse,pumphouses +pumping lemma,pumping lemmas,pumping lemmata +pumpion,pumpions +pumpjack,pumpjacks +pump-jet,pump-jets +pumpjet,pumpjets +pumpkineer,pumpkineers +pumpkin head,pumpkin heads +pumpkin pie,pumpkin pies +pumpkin,pumpkins +pumpkinseed,pumpkinseeds +pump,pumps +pump,pumps +pump room,pump rooms +pump-room,pump-rooms +pumproom,pumprooms +Pump Room,Pump Rooms +pump trolley,pump trolleys +pump truck,pump trucks +pumy stone,pumy stones +punani,punanis +puna,punas +Puna tinamou,Puna tinamous +puncept,puncepts +Punch and Judy,Punch and Judies +punchbag,punchbags +punchboard,punchboards +punch bowl,punch bowls +punchbowl,punchbowls +punch bowl waterfall,punch bowl waterfalls +punch card,punch cards +punchcard,punchcards +punch clock,punch clocks +punchcutter,punchcutters +punched card,punched cards +punchee,punchees +puncheon,puncheons +puncher,punchers +punching bag,punching bags +punching,punchings +punchin,punchins +punch line,punch lines +punchline,punchlines +punch list,punch lists +Punchman,Punchmen +punch out,punch outs +punch,punches +punch up,punch ups +punch-up,punch-ups +punchup,punchups +punctation,punctations +punctator,punctators +punctid,punctids +punctiliar,punctiliars +punctilio,punctilios +punction,punctions +punctist,punctists +puncto,punctos,punctoes +punctualist,punctualists +punctuated equilibrium,punctuated equilibria +punctuationist,punctuationists +punctuation mark,punctuation marks +punctuator,punctuators +punctuist,punctuists +punctum delens,puncta delentia +punctum,puncta +punctured interval,punctured intervals +punctured neighborhood,punctured neighborhoods +puncture,punctures +puncturer,puncturers +pundette,pundettes +punditocracy,punditocracies +pundit,pundits +pundle,pundles +punese,puneses +pungency,pungencies +pung,pungs +pungwe,pungwes +pungy,pungies +Punic apple,Punic apples +Punic War,Punic Wars +punim,punims +punishability,punishabilities +punishee,punishees +punisher,punishers +punishment,punishments +Punjabi,Punjabis +punji stick,punji sticks +punkah,punkahs +punkahwallah,punkahwallahs +punka,punkas +punker,punkers +punkette,punkettes +punkie,punkies +punkling,punklings +punk rocker,punk rockers +punkster,punksters +punky,punkies +punk zine,punk zines +punkzine,punkzines +punnai,punnais +punner,punners +punnet,punnets +Punnett square,Punnett squares +punning,punnings +pun,puns +punster,punsters +puntel,puntels +punte,punties +punter,punters +punt gun,punt guns +puntilla,puntillas +puntil,puntils +punt,punts +punt,punts +punt,punts +punt,punts +punt returner,punt returners +punty,punties +puny,punies +puoy,puoys +pupa,pupas,pupae,pupΓ¦ +pupariation,pupariations +puparium,puparia +pupation,pupations +pupe,pupes +pupiless,pupilesses +pupillage,pupillages +pupillarity,pupillarities +pupillary space,pupillary spaces +pupillid,pupillids +pupillometer,pupillometers +pupil,pupils +pupil,pupils +pupinid,pupinids +puplican,puplicans +puppadum,puppadums +puppet army,puppet armies +puppeteer,puppeteers +puppet government,puppet governments +puppetman,puppetmen +puppetmaster,puppetmasters +puppet,puppets +puppet show,puppet shows +puppet-show,puppet-shows +puppet state,puppet states +puppet valve,puppet valves +puppodum,puppodums +pup,pups +puppy dog,puppy dogs +puppy love,puppy loves +puppy mill,puppy mills +puppy,puppies +puppyship,puppyships +pup tent,pup tents +pupusa,pupusas +pupylation,pupylations +purcelane,purcelanes +purchase order,purchase orders +purchase price,purchase prices +purchase price variance,purchase price variances +purchaser,purchasers +purchasing agent,purchasing agents +purdahnashin,purdahnashins +purdah,purdahs +pure-bred,pure-breds +purebred,purebreds +pure ego,pure egos +puree,purees +puree,purees +pure finder,pure finders +pure laine,pure laines +purely imaginary number,purely imaginary numbers +pure name,pure names +pur et dur,pur et durs +purey,pureys +purfile,purfiles +purfle,purfles +purfling,purflings +purgament,purgaments +purgation,purgations +purgative,purgatives +purgatorian,purgatorians +purgatoric,purgatorics +purgatoriid,purgatoriids +purge,purges +purger,purgers +purgery,purgeries +purging,purgings +purification,purifications +purificator,purificators +purifier,purifiers +purine,purines +purinergic receptor,purinergic receptors +purinoceptor,purinoceptors +purinoreceptor,purinoreceptors +puri,puris +purist,purists +puritanical,puritanicals +puritan,puritans +Puritan,Puritans +Puritan work ethic,Puritan work ethics +purity,purities +purity ring,purity rings +Purkinje cell,Purkinje cells +Purkinje fiber,Purkinje fibers +Purkinje fibre,Purkinje fibres +Purkinje image,Purkinje images +Purkinje neuron,Purkinje neurons +purle,purles +purler,purlers +purler,purlers +purlicue,purlicues +purlieu,purlieus,purlieux +purline,purlines +purling,purlings +purlin,purlins +purloiner,purloiners +purloinment,purloinments +purl,purls +purl,purls +purl,purls +purl,purls +puro,puros +purparty,purparties +purple coral,purple corals +purple dye murex,purple dye murexes,purple dye murices +purple emperor,purple emperors +purple hairstreak,purple hairstreaks +purple heart,purple hearts +purpleheart,purplehearts +Purple Heart,Purple Hearts +purple heron,purple herons +purple loosestrife,purple loosestrifes +purple nurple,purple nurples +purple patch,purple patches +purple,purples +purple sandpiper,purple sandpipers +purple state,purple states +purple swamphen,purple swamphens +purple triangle,purple triangles +purplewood,purplewoods +purple yam,purple yams +purport,purports +purpose,purposes +purposer,purposers +purpose statement,purpose statements +purpresture,purprestures +purprise,purprises +purpurate,purpurates +purpurinid,purpurinids +pur,purs +purre,purres +purrer,purrers +purring,purrings +purrock,purrocks +purr,purrs +purseful,pursefuls +purselane,purselanes +purse,purses +purser,pursers +pursership,purserships +purse seine,purse seines +pursestring,pursestrings +purset,pursets +purseweb spider,purseweb spiders +pursing,pursings +purslain,purslains +pursual,pursuals +pursuance,pursuances +pursuee,pursuees +pursuer,pursuers +pursuite,pursuites +pursuiter,pursuiters +pursuit,pursuits +pursuivant,pursuivants +purtenance,purtenances +purulence,purulences +purulency,purulencies +purveyance,purveyances +purveyor,purveyors +purveyour,purveyours +purview,purviews +Puseyite,Puseyites +push back,push backs +push-back,push-backs +push-bike,push-bikes +pushbike,pushbikes +push broom,push brooms +push bunt,push bunts +push-button,push-button +pushbutton,pushbuttons +pushcart,pushcarts +pushchair,pushchairs +push dagger,push daggers +pushdown automaton,pushdown automata,pushdown automatons +pusherman,pushermen +pusher,pushers +push factor,push factors +pushing school,pushing schools +pushing-school,pushing-schools +pushknee,pushknees +pushlet,pushlets +push mower,push mowers +pushmower,pushmowers +pushout,pushouts +pushover,pushovers +pushpin,pushpins +pushpit,pushpits +push poll,push polls +push-pull amplifier,push-pull amplifiers +push,pushes +push,pushes +pushrod,pushrods +push scooter,push scooters +pushscooter,pushscooters +push shot,push shots +push-through,push-throughs +Pushtun,Pushtuns +push-up bra,push-up bras +push-up,push-ups +pushup,pushups +puss,pusses +puss,pusses +pussy bow,pussy bows +pussy-boy,pussy-boys +pussyboy,pussyboys +pussy cat,pussy cats +pussy-cat,pussy-cats +pussycat,pussycats +pussygirl,pussygirls +pussyhole,pussyholes +pussy juice,pussy juices +pussy magnet,pussy magnets +pussyman,pussymen +pussy pump,pussy pumps +pussy,pussies +pussytoe,pussytoes +pusta,pustas +pustulant,pustulants +pustule,pustules +puszta,pusztas +putamen,putamens +putback,putbacks +putchamin,putchamins +putcheon,putcheons +put down,put downs +put-down,put-downs +putdown,putdowns +puteal,puteals +'puter,'puters +puter,puters +putlog,putlogs +putoid,putoids +put-on,put-ons +putour,putours +put out,put outs +put-out,put-outs +putout,putouts +put,puts +put,puts +put,puts +putrefaction,putrefactions +putrescene,putrescenes +putrescin,putrescins +putschist,putschists +putsch,putsches +puttee,puttees +putterer,putterers +putter,putters +putter,putters +puttier,puttiers +putting green,putting greens +puttock,puttocks +putto,putti +putt,putts +putt,putts +putty medal,putty medals +putty,putties +put-up job,put-up jobs +putz,putzes +puukko,puukkos,puukot +puya,puyas +puya,puyas +Puy lentil,Puy lentils +puy,puys +puzzel,puzzels +puzzlefest,puzzlefests +puzzlehunt,puzzlehunts +puzzle,puzzles +puzzler,puzzlers +puzzlewit,puzzlewits +puzzling,puzzlings +puzzlist,puzzlists +puzzolana,puzzolanas +puzzolan,puzzolans +p-value,p-values +PVR,PVRs +P wave,P waves +P-wave,P-waves +PWB,PWBs +pwnage,pwnages +p-word,p-words +pyΓ¦mia,pyΓ¦miΓ¦ +pyaemia,pyaemias +pya,pyas +pyaster,pyasters +pycnidiospore,pycnidiospores +pycnidium,pycnidia +pycnocline,pycnoclines +pycnodontiform,pycnodontiforms +pycnodont,pycnodonts +pycnodysostosis,pycnodysostoses +pycnogenol,pycnogenols +pycnogonid,pycnogonids +pycnometer,pycnometers +pycnonotid,pycnonotids +pycnostyle,pycnostyles +pyelogram,pyelograms +pyelolithotomy,pyelolithotomies +pyeloplasty,pyeloplasties +pyemia,pyemias +pye,pyes +pyet,pyets +pygarg,pygargs +pygidicranid,pygidicranids +pygidium,pygidia,pygidiums +pygmalion,pygmalions +pygmy chimpanzee,pygmy chimpanzees +pygmy giant panda,pygmy giant pandas +pygmy hippopotamus,pygmy hippopotamuses,pygmy hippopotami,pygmy hippopotamus +pygmy marmoset,pygmy marmosets +pygmy,pygmies +pygmy sperm whale,pygmy sperm whales +pygofer,pygofers +pygophile,pygophiles +pygopodid,pygopodids +pygopod,pygopods +pygostyle,pygostyles +pygostylian,pygostylians +pykar,pykars +pyke,pykes +pyknic,pyknics +pyknometer,pyknometers +pyknon,pyknons,pykna,pyknomata,pyknoma +pylagore,pylagores +pylangium,pylangia +pyla,pylas,pylae +pyllour,pyllours +pylochelid,pylochelids +pylon,pylons +pyloric sphincter,pyloric sphincters +pyloric valve,pyloric valves +pyloroplasty,pyloroplasties +pylorus,pylori,pyloruses +pyne,pynes +pynoun,pynouns +pyoderma,pyodermas,pyodermata +pyorrhoea,pyorrhoeas +pyosalpinx,pyosalpinxes,pyosalpinges +pyot,pyots +pyow,pyows +pyracantha,pyracanthas +pyracanth,pyracanths +pyralid,pyralids +pyramidalization,pyramidalizations +pyramidal neuron,pyramidal neurons +pyramidal number,pyramidal numbers +pyramidal,pyramidals +pyramidal tract,pyramidal tracts +pyramidellid,pyramidellids +pyramidion,pyramidia,pyramidions +pyramidoid,pyramidoids +pyramidologist,pyramidologists +pyramid,pyramids +pyramid scheme,pyramid schemes +pyramis,pyramides +pyramoid,pyramoids +pyranoglucoside,pyranoglucosides +pyranometer,pyranometers +pyranonaphthoquinone,pyranonaphthoquinones +pyranone,pyranones +pyranopterin,pyranopterins +pyranose,pyranoses +pyranoside,pyranosides +pyran,pyrans +pyrargyrite,pyrargyrites +pyrate,pyrates +pyrazine,pyrazines +pyrazin,pyrazins +pyrazinyl,pyrazinyls +pyrazole,pyrazoles +pyrazoline,pyrazolines +pyrazolone,pyrazolones +pyrazolopyridine,pyrazolopyridines +pyrazolopyrimidine,pyrazolopyrimidines +pyrazolyl,pyrazolyls +pyrazyl,pyrazyls +pyrectic,pyrectics +pyree,pyrees +pyrena,Pyrenae +pyrene,pyrenes +pyrene,pyrenes +pyrenoid,pyrenoids +pyre,pyres +pyrethrine,pyrethrines +pyrethrin,pyrethrins +pyrethroid,pyrethroids +pyrethrum,pyrethrums +pyretotherapy,pyretotherapies +pyrgomorphid,pyrgomorphids +pyrgotid,pyrgotids +pyrheliometer,pyrheliometers +pyribole,pyriboles +pyridazine,pyridazines +pyridinamine,pyridinamines +pyridinediyl,pyridinediyls +pyridine,pyridines +pyridinium,pyridiniums +pyridinyl,pyridinyls +pyridone,pyridones +pyridopyrimidine,pyridopyrimidines +pyridoxal,pyridoxals +pyridyl,pyridyls +pyrimidinedione,pyrimidinediones +pyrimidine,pyrimidines +pyrimidinone,pyrimidinones +pyrimidinylpiperazine,pyrimidinylpiperazines +pyrindene,pyrindenes +pyrite,pyrites +pyritization,pyritizations +pyritohedron,pyritohedra +pyritoid,pyritoids +pyroacetic ether,pyroacetic ethers +pyroacetic spirit,pyroacetic spirits +pyroacid,pyroacids +pyroantimonate,pyroantimonates +pyroarsenate,pyroarsenates +pyrocarbonate,pyrocarbonates +pyrocatechin,pyrocatechins +pyrochroid,pyrochroids +pyroclastic flow,pyroclastic flows +pyroclastic,pyroclastics +pyroclastic rock,pyroclastic rocks +pyroclastic surge,pyroclastic surges +pyroclast,pyroclasts +pyrocumulus,pyrocumuli +pyroelectric effect,pyroelectric effects +pyroelectric,pyroelectrics +pyrogen,pyrogens +pyroglutamate,pyroglutamates +pyroglutamic acid,pyroglutamic acids +pyroglyphid,pyroglyphids +pyrographer,pyrographers +pyrograph,pyrographs +pyrohy,pyrohies +pyrolator,pyrolators +pyrolizer,pyrolizers +pyrologist,pyrologists +pyrolysate,pyrolysates +pyrolyser,pyrolysers +pyrolysis,pyrolyses +pyrolyzer,pyrolyzers +pyromalate,pyromalates +pyromancer,pyromancers +pyromaniac,pyromaniacs +pyromantic,pyromantics +pyrometallurgy,pyrometallurgies +pyrometer,pyrometers +pyromucate,pyromucates +pyrone,pyrones +pyronine,pyronines +pyropeltid,pyropeltids +pyrope,pyropes +pyrophile,pyrophiles +pyrophone,pyrophones +pyrophore,pyrophores +pyrophoric alloy,pyrophoric alloys +pyrophosphatase,pyrophosphatases +pyrophosphate,pyrophosphates +pyrophosphohydrolase,pyrophosphohydrolases +pyrophosphorolysis,pyrophosphorolyses +pyrophosphorylase,pyrophosphorylases +pyrophyllite,pyrophyllites +pyrophyte,pyrophytes +pyroptosis,pyroptoses +pyroptosome,pyroptosomes +pyro,pyros +pyroscope,pyroscopes +pyrosequencer,pyrosequencers +pyrosome,pyrosomes,pyrosoma +pyrostat,pyrostats +pyrosulfate,pyrosulfates +pyrosulfite,pyrosulfites +pyrosulphate,pyrosulphates +pyrosulphite,pyrosulphites +pyrotag,pyrotags +pyrotartrate,pyrotartrates +pyrotechnician,pyrotechnicians +pyrotechnic initiator,pyrotechnic initiators +pyrotechnist,pyrotechnists +pyroteuthid,pyroteuthids +pyrotherapy,pyrotherapies +pyrothere,pyrotheres +pyrotheriid,pyrotheriids +pyrotic,pyrotics +pyrotoxin,pyrotoxins +pyroxene,pyroxenes +pyroxenoid,pyroxenoids +pyrrhicist,pyrrhicists +pyrrhic,pyrrhics +Pyrrhic victory,Pyrrhic victories +pyrrhocorid,pyrrhocorids +Pyrrhonist,Pyrrhonists +pyrrhuloxia,pyrrhuloxias +pyrrole,pyrroles +pyrrolidine,pyrrolidines +pyrrolidinium,pyrrolidiniums +pyrrolidinone,pyrrolidinones +pyrrolidinyl,pyrrolidinyls +pyrrolidone,pyrrolidones +pyrroline,pyrrolines +pyrrolizidine,pyrrolizidines +pyrrolizine,pyrrolizines +pyrrolocarbazole,pyrrolocarbazoles +pyrroloindoline,pyrroloindolines +pyrrolone,pyrrolones +pyrrol,pyrrols +pyrrolyl,pyrrolyls +pyrrolysine,pyrrolysines +pyrrolysyl,pyrrolysyls +pyrromethene,pyrromethenes +pyruvate,pyruvates +pyruvyl,pyruvyls +pyrylium,pyryliums +pysanka,pysanky +Pythagorean,Pythagoreans +Pythagoric,Pythagorics +pythiad,pythiads +pythid,pythids +pythoness,pythonesses +pythoness,pythonesses +Pythoness,Pythonesses +pythonid,pythonids +Pythonista,Pythonistas +pythonist,pythonists +pythonomorph,pythonomorphs +python,pythons +pyuria,pyurias +pyurid,pyurids +pyxidium,pyxidia +pyxis,pyxides +pyx,pyxes +qaaf,qaafs +qabalist,qabalists +Qadarite,Qadarites +qadar,qadars +Qaddafist,Qaddafists +Qadiani,Qadianis +qadi,qadis +qafilah,qafilahs +qafila,qafilas +qafiz,qafizes +qaganate,qaganates +qagan,qagans +qaghanate,qaghanates +qaghan,qaghans +qaid,qaids +qaimaqam,qaimaqams +qalamdan,qalamdans +qalandar,qalandars +qallunaaq,qallunaaqs +Qallunaaq,Qallunaaqs,Qallunaat +qamutik,qamutiks +qanat,qanats +qanāt,qanāts +qango,qangos +qanon,qanons +qantar,qantars +qanun,qanuns +qapik,qapiks +Qaraite,Qaraites +qargi,qargis +qari,qaris +Qarmathian,Qarmathians +Qarmatian,Qarmatians +QAR,QARs +qasgiq,qasgiqs +qasida,qasidas +qaαΉ£Δ«da,qaαΉ£Δ«das +Qatabanian,Qatabanians +Qatari,Qataris +qat,qats +qawwal,qawwals +qazi,qazis +Q-ball,Q-balls +Q-car,Q-cars +Q code,Q codes +Q-code,Q-codes +qepik,qepiks +qΙ™pik,qΙ™piks +qepiq,qepiqs +qero,qeros +QIC,QICs +qilin,qilins +qindarkΓ«,qindarka +qindar,qindars +qinghaosu,qinghaosus +qingheiite,qingheiites +qing,qings +qin,qins +qintar,qindarka,qintars +qipao,qipaos +Qipchak,Qipchaks +Qipchaq,Qipchaqs +qiran,qirans +Q meter,Q meters +qoph,qophs +qoppa,qoppas +qorma,qormas +QPC,QPCs +qPCR,qPCRs +Q quotient,Q quotients +QR code,QR codes +QRS complex,QRS complexes +QSL bureau,QSL bureaus,QSL bureaux +QSL card,QSL cards +QSO,QSOs +QSR,QSRs +QSS,QSSs +Q-tip,Q-tips +QTL,QTLs +q-tof,q-tofs +q.t.,q.t.s +qt,qts +Quaalude,Quaaludes +qua-bird,qua-birds +quab,quabs +quacha,quachas +quacker,quackers +quacking,quackings +quackism,quackisms +quackmire,quackmires +quack,quacks +quack,quacks +quack-salver,quack-salvers +quacksalver,quacksalvers +quad bike,quad bikes +quadbit,quadbits +quadcopter,quadcopters +quaddie,quaddies +quadfecta,quadfectas +Quadi,Quadis,Quadi +quadlet,quadlets +quad play,quad plays +quadplay,quadplays +quadplex,quadplexes +quadpod,quadpods +quadpot,quadpots +quad,quads +quad,quads +quadragenarian,quadragenarians +quadragene,quadragenes +quadragenerian,quadragenerians +quadragesimo-octavo,quadragesimo-octavos +quadragintireme,quadragintiremes +quadrain,quadrains +quadrangle,quadrangles +quadrangulation,quadrangulations +quadrans,quadrantes +quadrantal,quadrantals +quadrantanopia,quadrantanopias +quadrantanopsia,quadrantanopsias +Quadrantid,Quadrantids +quadrant plate,quadrant plates +quadrant,quadrants +quadra,quadrae +quadrate,quadrates +quadrathlon,quadrathlons +quadratic equation,quadratic equations +quadratic field,quadratic fields +quadratic formula,quadratic formulas +quadratic function,quadratic functions +quadratic integer,quadratic integers +quadratick,quadraticks +quadratic mean,quadratic means +quadratic,quadratics +quadratojugal,quadratojugals +quadrat,quadrats +quadrat,quadrats +quadratrix,quadratrices,quadratrixes +quadrature amplitude modulation,quadrature amplitude modulations +quadrature,quadratures +quadrefoil,quadrefoils +quadrella,quadrellas +quadrel,quadrels +quadrennium,quadrenniums,quadrennia +quadriad,quadriads +quadricepsplasty,quadricepsplasties +quadriceps,quadriceps +quadriceps tendon,quadriceps tendons +quadricorn,quadricorns +quadric,quadrics +quadricycle,quadricycles +quadrigamist,quadrigamists +quadriga,quadrigae,quadrigas +quadrigatus,quadrigati +quadrilateral,quadrilaterals +quadriliteral,quadriliterals +quadrille,quadrilles +quadrille,quadrilles +quadrillion,quadrillions +quadrillionth,quadrillionths +quadrilogy,quadrilogies +quadrimer,quadrimers +quadrine,quadrines +quadringenary,quadringenaries +quadringentenary,quadringentaries +quadrinomial,quadrinomials +quadrin,quadrins +quadripara,quadriparas +quadriparesis,quadripareses +quadripartition,quadripartitions +quadriplegia,quadriplegias +quadriplegic,quadriplegics +quadripoint,quadripoints +quadripole,quadripoles +quadriporticus,quadriportici +quadriptych,quadriptychs +quadrireme,quadriremes +quadrisection,quadrisections +quadrisyllable,quadrisyllables +quadrium,quadriums +quadrivalent,quadrivalents +quadrivalve,quadrivalves +quadrivial,quadrivials +quadrivium,quadrivia +quadrocopter,quadrocopters +quadrominium,quadrominiums +quadroon,quadroons +quadrotor,quadrotors +quadroxide,quadroxides +quadrumane,quadrumanes +quadrumvirate,quadrumvirates +quadrumvir,quadrumvirs,quadrumviri +quadruped,quadrupeds +quadruple bluff,quadruple bluffs +quadruple-click,quadruple-clicks +quadruple scull,quadruple sculls +quadruple star,quadruple stars +quadruple star system,quadruple star systems +quadruplet,quadruplets +quadruplexing,quadruplexings +quadruplex,quadruplexes +quadruplicate,quadruplicates +quadruplication,quadruplications +quadrupole,quadrupoles +quad skate,quad skates +quadtree,quadtrees +quadword,quadwords +quaere,quaeres +quΓ¦re,quΓ¦res +quaeritater,quaeritaters +quΓ¦ry,quΓ¦ries +quΓ¦stion,quΓ¦stions +quaestio,quaestiones +quaestor,quaestors +quΓ¦stor,quΓ¦stors +quaffer,quaffers +quaffing wine,quaffing wines +quaff,quaffs +quagga,quaggas +quagha,quaghas +quagmire,quagmires +quag,quags +quahaug,quahaugs +quahogger,quahoggers +quahog,quahogs +quaich,quaichs +quaigh,quaighs +quail-dove,quail-doves +quailer,quailers +quail hawk,quail hawks +quail pipe,quail pipes +quail-pipe,quail-pipes +quail,quail,quails +quaily,quailies +quaint,quaints +quaintrelle,quaintrelles +quakebuttock,quakebuttocks +quake lake,quake lakes +quake,quakes +quakerbird,quakerbirds +Quakeress,Quakeresses +quaker gun,quaker guns +Quaker gun,Quaker guns +Quaker,Quakers +quaketail,quaketails +quaking aspen,quaking aspens +quaking pudding,quaking puddings +quaking,quakings +quakka,quakkas +quale,qualia +qualification,qualifications +qualificative,qualificatives +qualificator,qualificators +qualified fee,qualified fees +qualified majority,qualified majorities +qualifier,qualifiers +qualifying position,qualifying positions +qualimeter,qualimeters +qualisign,qualisigns +qualitative analysis,qualitative analyses +qualitative,qualitatives +QualitΓ€tswein,QualitΓ€tsweins +quality-adjusted life year,quality-adjusted life years +quality circle,quality circles +quality magazine,quality magazines +quality of life,qualities of life +qualm,qualms +qualophile,qualophiles +qual,quals +Qual,Quals +QUAL,QUALs +quamash,quamashes +quandary,quandaries +quandong,quandongs +quandy,quandies +quangocracy,quangocracies +quangocrat,quangocrats +quango,quangos +quannet,quannets +quantasome,quantasomes +quant fund,quant funds +quantic,quantics +quantifiable,quantifiables +quantification,quantifications +quantifier,quantifiers +quantile,quantiles +quantion,quantions +quantitative analysis,quantitative analyses +quantitative analyst,quantitative analysts +quantitative metathesis,quantitative metatheses +quantity,quantities +quantity surveyor,quantity surveyors +quantivalence,quantivalences +quantized electronic structure,quantized electronic structures +quantized vortex,quantized vortexs +quantizer,quantizers +quanton,quantons +quantophrenia,quantophrenias +quant pole,quant poles +quant,quants +quantronium,quantroniums +quantum anomaly,quantum anomalies +quantum bit,quantum bits +quantum cascade laser,quantum cascade lasers +quantum computer,quantum computers +quantum dot,quantum dots +quantum entanglement,quantum entanglements +quantum ferrofluid,quantum ferrofluids +quantum fluctuation,quantum fluctuations +quantum Hall effect,quantum Hall effects +quantum leap,quantum leaps +quantum limit,quantum limits +quantum logic,quantum logics +quantum number,quantum numbers +quantum onion,quantum onions +quantum,quanta +quantum solid,quantum solids +quantum soup,quantum soups +quantum spin liquid,quantum spin liquids +quantum state,quantum states +quantum teleportation,quantum teleportations +quantum theory,quantum theories +quantum well,quantum wells +Quapaw,Quapaws +quarantine flag,quarantine flags +quarantine,quarantines +quarantine,quarantines +quarantiner,quarantiners +quarkonium,quarkoniums,quarkonia +quark,quarks +quark star,quark stars +quarl,quarls +quarreler,quarrelers +quarreller,quarrellers +quarrel,quarrels +quarrel,quarrels +quarrier,quarriers +quarrion,quarrions +quarrons,quarronses +quarrying,quarryings +quarry light,quarry lights +quarryman,quarrymen +quarry,quarries +quarry,quarries +quarry,quarries +quarry tile,quarry tiles +quartan,quartans +quarterage,quarterages +quarterback,quarterbacks +quarter bathroom,quarter bathrooms +quarter blanket,quarter blankets +quarter bottle,quarter bottles +quarterboy,quarterboys +quarter-century,quarter-centuries +quarter crack,quarter cracks +quarter day,quarter days +quarter-day,quarter-days +quarter deck,quarter decks +quarter-deck,quarter-decks +quarterdeck,quarterdecks +quarter farthing,quarter farthings +quarter-finalist,quarter-finalists +quarterfinalist,quarterfinalists +quarter final,quarter finals +quarter-final,quarter-finals +quarterfinal,quarterfinals +quarterfoil,quarterfoils +quarter glass,quarter glasses +quarter horse,quarter horses +quarterhorse,quarterhorses +quartering block,quartering blocks +quartering,quarterings +quarterland,quarterlands +quarter light,quarter lights +quarterlight,quarterlights +quarterly court,quarterly courts +quarterly,quarterlies +quartermaster,quartermasters +quartermastership,quartermasterships +quartermistress,quartermistresses +quarter moon,quarter moons +quarternary structure,quarternary structures +quarter note,quarter notes +quartern,quarterns +quarter of an hour,quarters of an hour +quarteron,quarterons +quarteroon,quarteroons +quarter-pipe,quarter-pipes +quarterpipe,quarterpipes +quarter-pounder,quarter-pounders +quarterpounder,quarterpounders +quarter rest,quarter rests +quarterstaff,quarterstaffs,quarterstaves +quartertone,quartertones +quarter waiter,quarter waiters +quarter-wave plate,quarter-wave plates +quartet,quartets +quartette,quartettes +quartic function,quartic functions +quartic,quartics +quartile,quartiles +quartino,quartinos +Quartodeciman,Quartodecimans +quarto,quartos +quart-pot,quart-pots +quart,quarts +quartz arenite,quartz arenites +quartz clock,quartz clocks +quartz crusher,quartz crushers +quartz-crystal clock,quartz-crystal clocks +quartz halogen lamp,quartz halogen lamps +quartzine,quartzines +quartzite,quartzites +quartzoid,quartzoids +quaruba,quarubas +quasar,quasars +Quashee,Quashees +quasher,quashers +quashing,quashings +quasi-adjective,quasi-adjectives +quasiboson,quasibosons +quasicondensate,quasicondensates +quasicondensation,quasicondensations +quasicontinuum,quasicontinuums +quasi-contract,quasi-contracts +quasicrystal,quasicrystals +quasicycle,quasicycles +quasideterminant,quasideterminants +quasielectron,quasielectrons +quasienantiomer,quasienantiomers +quasienergy,quasienergies +quasiferromagnet,quasiferromagnets +quasigluon,quasigluons +quasigroup,quasigroups +quasihemidemisemiquaver,quasihemidemisemiquavers +quasihole,quasiholes +quasiidentity,quasiidentities +quasimode,quasimodes +Quasimodo,Quasimodos +Quasimodo,Quasimodos +quasimomentum,quasimomentums,quasimomenta +quasineutron,quasineutrons +quasiorder,quasiorders +quasiparticle,quasiparticles +quasi partner,quasi partners +quasipolynomial,quasipolynomials +quasipotential,quasipotentials +quasi-probability,quasi-probabilities +quasiprobability,quasiprobabilities +quasiproton,quasiprotons +quasirape,quasirapes +quasi-rent,quasi-rents +quasirent,quasirents +quasi-reorganization,quasi-reorganizations +quasistar,quasistars +quasivacuum,quasivacua +quasivariety,quasivarieties +quassia,quassias +quassinoid,quassinoids +quata,quatas +quatercentenary,quatercentenaries +quaternarist,quaternarists +quaternarization,quaternarizations +quaternary ammonium compound,quaternary ammonium compounds +quaternary structure,quaternary structures +quaternation,quaternations +quaternionist,quaternionists +quaternion,quaternions +quaternization,quaternizations +quateron,quaterons +quaterpolymer,quaterpolymers +quatorzain,quatorzains +quatorze,quatorzes +quat,quats +quatrain,quatrains +quatrayle,quatrayles +quatreble,quatrebles +quatrefoil,quatrefoils +quatre,quatres +quatrin,quatrins +quatrumvirate,quatrumvirates +quattuordecangle,quattuordecangles +quatuorvirate,quatuorvirates +quavemire,quavemires +quave,quaves +quaverer,quaverers +quaver,quavers +quayman,quaymen +quay,quays +quayside,quaysides +qubitope,qubitopes +qubit,qubits +qubyte,qubytes +qudit,qudits +queach,queaches +queane,queanes +quean,queans +Quebecer,Quebecers +Quebecism,Quebecisms +Quebecker,Quebeckers +Quebecois,Quebecois +QuΓ©becois,QuΓ©becois +QuΓ©bΓ©cois,QuΓ©bΓ©cois +Quebracho crested tinamou,Quebracho crested tinamous +quebracho,quebrachos +Quechan,Quechans +Quechuan,Quechuans +Quechua,Quechuas,Quechua +quede,quedes +queeb,queebs +queef,queefs +queem,queems +queen bee,queen bees +queen bishop pawn,queen bishop pawns +queen consort,queens consort +queene,queenes +queenfish,queenfishes,queenfish +queenie,queenies +queening,queenings +queen knight pawn,queen knight pawns +queen mother,queen mothers +queen of clubs,queens of clubs +queen of diamonds,queens of diamonds +queen of hearts,queens of hearts +Queen of Hearts,Queens of Hearts +Queen of Sheba,Queens of Sheba +queen of spades,queens of spades +queen palm,queen palms +queen pawn,queen pawns +queen post,queen posts +queen,queens +queen regnant,queens regnant +queen rook pawn,queen rook pawns +Queenslander,Queenslanders +Queensland Heeler,Queensland Heelers +Queensland nut,Queensland nuts +queen snake,queen snakes +Queen's speech,Queen's speeches +queen truss,queen trusses +queerdo,queerdos +queer fish,queer fish +queermo,queermos +queer,queers +queest,queests +quegh,queghs +queller,quellers +quellio,quellios +quell,quells +quellung,quellungs +queme,quemes +quenchant,quenchants +quencher,quenchers +quench,quenches +quenda,quendas +quenelle,quenelles +quenepa,quenepas +quercypsittid,quercypsittids +querele,quereles +querencia,querencias +querent,querents +querent,querents +querida,queridas +querier,queriers +querimony,querimonies +querist,querists +querl,querls +quern,querns +quernstone,quernstones +quero,queros +querquedule,querquedules +querry,querries +querulant,querulants +querulent,querulents +querulousness,querulousnesses +query language,query languages +query,queries +quesadilla,quesadillas +quesal,quesals +queso fresco,quesos frescos +questant,questants +quester,questers +questionary,questionaries +questioner,questioners +questioning,questionings +questionist,questionists +question mark,question marks +question-master,question-masters +questionnaire,questionnaires +question period,question periods +Question Period,Question Periods +question,questions +question word,question words +questman,questmen +questmonger,questmongers +questor,questors +quest,quests +questrist,questrists +questuary,questuaries +quetsch,quetsches +quetzalcoatlus,quetzalcoatluses +quetzal,quetzals +queue-jumper,queue-jumpers +queue,queues +queuer,queuers +quey,queys +qugate,qugates +quibble,quibbles +quibbler,quibblers +quib,quibs +quica,quicas +quice,quices +quiche-eater,quiche-eaters +quiche lorraine,quiches lorraines +quiche,quiches +quich,quiches +quick-and-dirty,quick-and-dirties +quickbeam,quickbeams +quick-change artist,quick-change artists +quick-draw,quick-draws +quickdraw,quickdraws +quickener,quickeners +quickening,quickenings +quicken,quickens +quick-freeze,quick-freezes +quickhatch,quickhatches +quickie,quickies +quick light,quick lights +quick match,quick matches +quick,quicks +quickset,quicksets +quicksort,quicksorts +quickstart,quickstarts +quickstep,quicksteps +quick study,quick studies +quickthorn,quickthorns +quick time event,quick time events +quicky,quickies +quiddany,quiddanies +quiddit,quiddits +quiddity,quiddities +quiddler,quiddlers +quidlet,quidlets +quidnunc,quidnuncs +quid pro quo,quid pro quos,quae pro quibus,quid pro quibus +quid,quid,quids +quid,quids +quid,quids +quiescin,quiescins +quiet coach,quiet coaches +quietener,quieteners +quieter,quieters +quietist,quietists +quiet move,quiet moves +quietness,quietnesses +quiet,quiets +quiff,quiffs +quiff,quiffs +quiff,quiffs +quiff,quiffs +quillback,quillbacks +quiller,quillers +quillet,quillets +quillet,quillets +quillion,quillions +quillon,quillons +quillow,quillows +quill pig,quill pigs +quill,quills +quillwort,quillworts +quilombo,quilombos +quilter,quilters +quilting bee,quilting bees +quiltmaker,quiltmakers +quilt,quilts +quilt show,quilt shows +quimp,quimps +quim,quims +quinacridone,quinacridones +quinarene,quinarenes +quinarian,quinarians +quinate,quinates +quinazoline,quinazolines +quinazolinone,quinazolinones +quinazolinyl,quinazolinyls +quinceanera,quinceaneras +quinceaΓ±era,quinceaΓ±eras +quincentenary,quincentenaries +quincentennium,quincentennia +quince,quinces +quincewort,quinceworts +quincunx,quincunxes +quindecagon,quindecagons +Quindecemvir,Quindecemvirs,Quindecemviri +quindecuplet,quindecuplets +quindoline,quindolines +quinella,quinellas +quine,quines +quinhydrone,quinhydrones +quinible,quinibles +quinindoline,quinindolines +quinizine,quinizines +Quinkan,Quinkans +quink,quinks +quinnat,quinnats +quinoid,quinoids +quinolinemethanethiol,quinolinemethanethiols +quinoline,quinolines +quinolinone,quinolinones +quinolinyl,quinolinyls +quinolizine,quinolizines +quinologist,quinologists +quinolone,quinolones +quinol,quinols +quinomethane,quinomethanes +quinomethide,quinomethides +quinoneoxime,quinoneoximes +quinone,quinones +quinonimine,quinonimines +quinonoxime,quinonoximes +quinoprotein,quinoproteins +quinotoxine,quinotoxines +quinovopyranose,quinovopyranoses +quinoxaline,quinoxalines +quinoxalinone,quinoxalinones +quinoxalinyl,quinoxalinyls +quinquagenarian,quinquagenarians +Quinquatria,Quinquatrias +quinquennial,quinquennials +quinquennium,quinquenniums,quinquennia +quinquereme,quinqueremes +quinquesyllable,quinquesyllables +quinquethiophene,quinquethiophenes +quinquevirate,quinquevirates +quinquevir,quinquevirs,quinqueviri +quin,quins +quin,quins +quinsy,quinsies +quintagenarian,quintagenarians +quintain,quintains +quintal,quintals +quintan fever,quintan fevers +quintate,quintates +quinternion,quinternions +quintet,quintets +quintette,quintettes +quintetto,quintettos +quintic function,quintic functions +quinticlave,quinticlaves +quintic,quintics +quintile,quintiles +quintillion,quintillions +quintillionth,quintillionths +quintipara,quintiparas +quintole,quintoles +quintolet,quintolets +quintom,quintoms +quint,quints +quintuple-click,quintuple-clicks +quintuple double,quintuple doubles +quintuple,quintuples +quintuplet,quintuplets +quintuplicate,quintuplicates +quinuclidine,quinuclidines +quinuclidinyl,quinuclidinyls +quinumvirate,quinumvirates +quinzaine,quinzaines +quinzee,quinzees +quin-zhee,quin-zhees +quinzhee,quinzhees +quipo,quipos +quipper,quippers +quip,quips +quipster,quipsters +quipucamayoc,quipucamayocs +quipu,quipus +quire,quires +quire,quires +quirister,quiristers +Quirite,Quirites +quirk,quirks +quirkyalone,quirkyalones +quirky subject,quirky subjects +quirley,quirleys +quirn,quirns +quirpele,quirpeles +quirt,quirts +quisling,quislings +quism,quisms +quisqualate,quisqualates +quisset,quissets +quist,quists +qui tam,qui tams +quit claim deed,quit claim deeds +quitclaim,quitclaims +quite,quites +quitline,quitlines +quit,quits +quit rent,quit rents +quit-rent,quit-rents +quitrent,quitrents +quittance,quittances +quitter,quitters +quitting time,quitting times +quittor,quittors +quiverful,quiverfuls,quiversful +quivering,quiverings +quiver,quivers +quivertip,quivertips +Quixote,Quixotes +quizbook,quizbooks +quizmaster,quizmasters +quizmistress,quizmistresses +quiz,quizzes +quiz show,quiz shows +quizshow,quizshows +quizzer,quizzers +quizzing glass,quizzing glasses +qulfi,qulfis +qulliq,qulliqs +quoddy,quoddies +quodlibetarian,quodlibetarians +quodlibet,quodlibets +quod,quods +quohog,quohogs +quoif,quoifs +quoil,quoils +quoin post,quoin posts +quoin,quoins +quoiter,quoiters +quoit,quoits +quokka,quokkas +quoll,quolls +quomodo,quomodos +quondong,quondongs +Quonset hut,Quonset huts +Quonset,Quonsets +quorate,quorates +quormone,quormones +quorum,quorums,quora +quota,quotas +quotationist,quotationists +quotation mark,quotation marks +quotation,quotations +quotative,quotatives +quotebook,quotebooks +quotee,quotees +quote mark,quote marks +quotemark,quotemarks +quote,quotes +quoter,quoters +quotidian,quotidians +quotient,quotients +quotient space,quotient spaces +quotity,quotities +quot.,quots. +Quotron,Quotrons +quotum,quota +quo warranto,quo warrantos +quoy,quoys +Quran-aloner,Quran-aloners +quran bashing,quran bashings +Quran believer,Quran believers +quran belt,quran belts +Quranic movement,Quranic movements +Quranist,Quranists +Quranite,Quranites +Qur'aniyun,Qur'aniyuns +quran thumping,quran thumpings +Qurbana,Qurbanas +qursh,qurshes +qutrit,qutrits +qux,quxes +quylthulg,quylthulgs +qvestion,qvestions +q.v.,qq.v. +QVT,QVTs +Q-wave,Q-waves +qword,qwords +Qypchaq,Qypchaqs +raajmahal,raajmahals +rabab,rababs +rabato,rabatos +rabat,rabats +rabbet joint,rabbet joints +rabbet plane,rabbet planes +rabbet,rabbets +rabbi,rabbis +rabbit board,rabbit boards +rabbit ear mite,rabbit ear mites +rabbit ear,rabbit ears +rabbit fever,rabbit fevers +rabbitfish,rabbitfish,rabbitfishes +rabbit foot,rabbit feet +rabbit-foot,rabbit-feet +rabbit hole,rabbit holes +rabbit hutch,rabbit hutches +rabbit moth,rabbit moths +rabbit-oh,rabbit-ohs +rabbit-o,rabbit-os +rabbit punch,rabbit punches +rabbit,rabbits +rabbitry,rabbitries +rabbit's foot,rabbits' feet +rabbit stick,rabbit sticks +rabbit warren,rabbit warrens +rabblement,rabblements +rabble,rabbles +rabble rouser,rabble rousers +rabble-rouser,rabble-rousers +rabdomyo sarcoma,rabdomyo sarcomas +rabid wolf spider,rabid wolf spiders +rabi,rabis +raccoon dog,raccoon dogs +raccoon,raccoons +raccroc stitch,raccroc stitches +race against time,races against time +race-baiter,race-baiters +racebike,racebikes +race card,race cards +race car driver,race car drivers +race car,race cars +racecar,racecars +race condition,race conditions +racecourse,racecourses +race glass,race glasses +racegoer,racegoers +race hazard,race hazards +racehorse,racehorses +racemase,racemases +racemate,racemates +race meeting,race meetings +race memory,race memories +raceme,racemes +racemization,racemizations +racemule,racemules +racephedrine,racephedrines +race queen,race queens +race,races +racer,racers +racetam,racetams +race track,race tracks +racetrack,racetracks +racewalker,racewalkers +race walk,race walks +raceway,raceways +rache,raches +rachet,rachets +rachicerid,rachicerids +rachilla,rachillae +rachiometer,rachiometers +rachiotomy,rachiotomies +rachis,rachises,rachides +rachitome,rachitomes +Rachmanism,Rachmanisms +rach,raches +rachycentrid,rachycentrids +racialism,racialisms +racialist,racialists +racialization,racializations +racial slur,racial slurs +racial supremacy,racial supremacies +racing car,racing cars +racing-car,racing-cars +racing certainty,racing certainties +racing crab,racing crabs +racing form,racing forms +racing jack,racing jacks +racino,racinos +racism,racisms +racist,racists +rackabones,rackabones +rack and pinion,rack and pinions,racks and pinions +rack and snail,rack and snails +rackan,rackans +racker,rackers +racketball,racketballs +racketeer,racketeers +racketer,racketers +racket,rackets +racket,rackets +racket-tail,racket-tails +rackett,racketts +rackie,rackies +racking bend,racking bends +rack jobber,rack jobbers +rackle,rackles +rackmount,rackmounts +rack,racks +rack,racks +rack,racks +rack rate,rack rates +rack-renter,rack-renters +rack rent,rack rents +rack time,rack times +rackwork,rackworks +raclette,raclettes +racon,racons +raconteur,raconteurs +racoon,racoons +Racovian,Racovians +racquetballer,racquetballers +racquetball,racquetballs +racquet,racquets +racquet-tail,racquet-tails +radande,radandes +rada,radas +radar dome,radar domes +radargram,radargrams +radar gun,radar guns +radar image,radar images +radarman,radarmen +radar reflector,radar reflectors +radarscope,radarscopes +radar trap,radar traps +raddleman,raddlemen +raddle,raddles +raddle,raddles +raddock,raddocks +radeau,radeaus +rade,rades +radfem,radfems +radgepacket,radgepackets +radge,radges +radgie gadgie,radgie gadgies +radgie,radgies +radial arm saw,radial arm saws +radial artery,radial arteries +radial canal,radial canals +radial curve,radial curves +radial distribution function,radial distribution functions +radialene,radialenes +radial engine,radial engines +radiale,radialia +radial gate,radial gates +radial glial cell,radial glial cells,radial glia +radial nerve,radial nerves +radial,radials +radial saw,radial saws +radial shield,radial shields +radial symmetry,radial symmetries +radial tire,radial tires +radial tyre,radial tyres +radial vein,radial veins +radial velocity,radial velocities +radiancy,radiancies +radian,radians +radiansphere,radianspheres +radiant energy,radiant energies +radiant,radiants +radiary,radiaries +radiata pine,radiata pines +radiate,radiates +radiation belt,radiation belts +radiation dose,radiation doses +radiation fog,radiation fogs +radiation pressure,radiation pressures +radiation pyrometer,radiation pyrometers +radiation,radiations +radiation sickness,radiation sicknesses +radiation sign,radiation signs +radiative forcing,radiative forcings +radiative transfer,radiative transfers +radiator,radiators +radical anion,radical anions +radical axis,radical axes +radical cation,radical cations +radical center,radical centers +radical ion,radical ions +radicality,radicalities +radicalization,radicalizations +radicalizer,radicalizers +radical line,radical lines +radical plane,radical planes +radical,radicals +radicand,radicands +radicchio,radicchios +radicel,radicels +radicle,radicles +radiclib,radiclibs +radicofunctional name,radicofunctional names +radicule,radicules +radiculopathy,radiculopathies +radioactive fallout,radioactive fallouts +radioactive tracer,radioactive tracers +radioactivity,radioactivities +radio alarm clock,radio alarm clocks +radio alarm,radio alarms +radio amateur,radio amateurs +radioanalysis,radioanalyses +radioassay,radioassays +radio astronomer,radio astronomers +radioautogram,radioautograms +radio beacon,radio beacons +radiobioassay,radiobioassays +radiobroadcast,radiobroadcasts +radio burst,radio bursts +radio button,radio buttons +radiocarbon dating,radiocarbon datings +radiocarbon,radiocarbons +radiocardiogram,radiocardiograms +radio cassette player,radio cassette players +radio cassette,radio cassettes +radiocassette,radiocassettes +radio cassette recorder,radio cassette recorders +radiochemical,radiochemicals +radiochemist,radiochemists +radiochemotherapy,radiochemotherapies +radiochromatograph,radiochromatographs +radio clock,radio clocks +radio collar,radio collars +radiocolloid,radiocolloids +radiocommunication,radiocommunications +radiocomplexation,radiocomplexations +radiocomplex,radiocomplexes +radiodensity,radiodensities +radiodiagnosis,radiodiagnoses +radioelement,radioelements +radioembolization,radioembolizations +radioemitter,radioemitters +radio energy,radio energies +radio fix,radio fixes +radio frequency integrated circuit,radio frequency integrated circuits +radio galaxy,radio galaxies +radiogalaxy,radiogalaxies +radiogoniometer,radiogoniometers +radiogramophone,radiogramophones +radiogram,radiograms +radiogram,radiograms +radiogram,radiograms +radiographer,radiographers +radiographist,radiographists +radiograph,radiographs +radiohalogenation,radiohalogenations +radiohalogen,radiohalogens +radio halo,radio halos +radiohalo,radiohalos +radioheliograph,radioheliographs +radiohumeral joint,radiohumeral joints +radioimmunity,radioimmunities +radioimmunoassay,radioimmunoassays +radioimmunoconjugate,radioimmunoconjugates +radio interferometer,radio interferometers +radioiodination,radioiodinations +radioisotope,radioisotopes +radio jet,radio jets +radio jockey,radio jockeys +radio jock,radio jocks +radio knife,radio knives +radiolabel,radiolabels +radiolarian,radiolaria,radiolarians +radiolarite,radiolarites +radiole,radioles +radiolesion,radiolesions +radioligand,radioligands +radiolite,radiolites +radiolitid,radiolitids +radiological weapon,radiological weapons +radiologist,radiologists +radiolus,radioli +radiolyse,radiolyses +radiolysis,radiolyses +radioman,radiomen +radiomarker,radiomarkers +radiometal,radiometals +radiometer,radiometers +radiometric dating,radiometric datings +radiometric magnitude,radiometric magnitudes +radiomicrometer,radiomicrometers +radio modem,radio modems +radiomutation,radiomutations +radio nebula,radio nebulas,radio nebulae +radionebula,radionebulas,radionebulae +radionecrosis,radionecroses +radionovela,radionovelas +radionucleotide,radionucleotides +radionuclide,radionuclides +radio officer,radio officers +radiopacity,radiopacities +radiopeptide,radiopeptides +radiopharmaceutical,radiopharmaceuticals +radiophone,radiophones +radiophotograph,radiophotographs +radiophotoluminescence,radiophotoluminescences +radiophoto,radiophotos +radiophysicist,radiophysicists +radioprotectant,radioprotectants +radioprotective,radioprotectives +radioprotector,radioprotectors +radiopulsar,radiopulsars +radiopurity,radiopurities +radioracemization,radioracemizations +radioreceptor,radioreceptors +radiorelease,radioreleases +radioresponse,radioresponses +radioscan,radioscans +radioscopy,radioscopies +radiosensitisation,radiosensitisations +radiosensitivity,radiosensitivities +radiosensitization,radiosensitizations +radiosensitizer,radiosensitizers +radio shack,radio shacks +radiosonde,radiosondes +radio sounding,radio soundings +radiosounding,radiosoundings +radio source,radio sources +radiosphere,radiospheres +radio station,radio stations +radiostrontium,radiostrontiums +radiosynovectomy,radiosynovectomies +radio tag,radio tags +radio-tag,radio-tags +radiotag,radiotags +radiotelecommunication,radiotelecommunications +radiotelegrapher,radiotelegraphers +radiotelegraphist,radiotelegraphists +radiotelegraph,radiotelegraphs +radio-telephone,radio-telephones +radiotelephone,radiotelephones +radio telescope,radio telescopes +radiotelescope,radiotelescopes +radioteletype,radioteletypes +radioteletypewriter,radioteletypewriters +radiotherapist,radiotherapists +radiotherapy,radiotherapies +radiothon,radiothons +radio tower,radio towers +radiotracer,radiotracers +radio wave,radio waves +radish,radishes +radium dial,radium dials +radius of curvature,radii of curvature +radius,radii,radiuses +radius vector,radius vectors +radix complement,radix complements +radix point,radix points +radix,radixes,radices +radix sort,radix sorts +Radnor,Radnors +radome,radomes +Radon measure,Radon measures +radon seed,radon seeds +rad,rads +radula,radulae +radun,raduns +radzimir,radzimirs +Raelian,Raelians +RaΓ«lian,RaΓ«lians +Raelism,Raelisms +Raelist,Raelists +rafale,rafales +raffia,raffias +raffinate,raffinates +raffishness,raffishnesses +raffle,raffles +raffler,rafflers +rafflesia,rafflesias +rafie,rafies +rafsi,rafsi +rafter,rafters +rafter,rafters +raftmate,raftmates +raft,rafts +raft,rafts +raftsman,raftsmen +raft-up,raft-ups +ragabash,ragabashes +ragabrash,ragabrashes +ragamuffin,ragamuffins +Ragamuffin,Ragamuffins +rag and bone man,rag and bone men +rag-and-bone shop,rag-and-bone shops +raga,ragas +ragazine,ragazines +rag bagger,rag baggers +rag-bagger,rag-baggers +ragbag,ragbags +rag day,rag days +rag doll,rag dolls +ragdoll,ragdolls +Ragdoll,Ragdolls +rageaholic,rageaholics +rageholic,rageholics +ragequitter,ragequitters +rage,rages +rager,ragers +raggamuffin,raggamuffins +raggare,raggares,raggare +ragged robin,ragged robins +raggle,raggles +raghead,ragheads +raghorn,raghorns +raglan,raglans +ragman,ragmen +ragman roll,ragman rolls +ragout,ragouts +ragpicker,ragpickers +rag,rags +rag,rags +rag,rags +rag,rags +rag rug,rag rugs +ragtimer,ragtimers +ragtop,ragtops +Raguileo alphabet,Raguileo alphabets +Ragusan,Ragusans +ragweed,ragweeds +rag week,rag weeks +ragworm,ragworms +rahoonery,rahooneries +rah,rahs +rah-rah skirt,rah-rah skirts +Rai Bahadur,Rai Bahadurs +raider,raiders +raid,raids +raie ultime,raies ultimes +Raie Ultime,Raies Ultimes +raik,raiks +railbank,railbanks +railbed,railbeds +railbird,railbirds +railbuff,railbuffs +railbus,railbuses +railcard,railcards +rail car,rail cars +railcar,railcars +rail-carriage,rail-carriages +railer,railers +railfan,railfans +railful,railfuls +rail gun,rail guns +railgun,railguns +rail head,rail heads +railhead,railheads +railing,railings +raillery,railleries +railleur,railleurs +railman,railmen +rail,rails +rail,rails +rail,rails +railroad car,railroad cars +railroad crossing,railroad crossings +railroader,railroaders +railroad gun,railroad guns +railroad,railroads +railroad spike,railroad spikes +railroad station,railroad stations +railroad switch,railroad switches +railroad tie,railroad ties +railroad track,railroad tracks +railroad tramp,railroad tramps +railroad truck,railroad trucks +railroad worm,railroad worms +rail shooter,rail shooters +rail vehicle,rail vehicles +railway carriage,railway carriages +railway gun,railway guns +railway line,railway lines +railwayman,railwaymen +railway,railways +railway sleeper,railway sleepers +railway station,railway stations +railway tie,railway ties +railway track,railway tracks +railway train,railway trains +railway vehicle,railway vehicles +rail yard,rail yards +railyard,railyards +raiment,raiments +rainbird,rainbirds +rainboot,rainboots +rainbow coalition,rainbow coalitions +rainbowfish,rainbowfishes,rainbowfish +rainbow party,rainbow parties +rainbow,rainbows +Rainbow,Rainbows +rainbow runner,rainbow runners +rainbow table,rainbow tables +rainbow trout,rainbow trouts +raincape,raincapes +rain check,rain checks +rain cheque,rain cheques +rain cloud,rain clouds +raincloud,rainclouds +raincoater,raincoaters +raincoat,raincoats +rain crow,rain crows +rain dance,rain dances +rain day,rain days +raindeer,raindeers,raindeer +rain delay,rain delays +raindrift,raindrifts +raindrop,raindrops +rainer,rainers +rain forest,rain forests +rainforest,rainforests +rain gauge,rain gauges +rain gutter,rain gutters +rain hat,rain hats +rainjacket,rainjackets +rainmaker,rainmakers +rain man,rain men +rainout,rainouts +rainscape,rainscapes +rainshade,rainshades +rain shadow,rain shadows +rainshadow,rainshadows +rain shower,rain showers +rainshower,rainshowers +rainstorm,rainstorms +raintop,raintops +rain tree,rain trees +rainworm,rainworms +rainy day,rainy days +rainy season,rainy seasons +raion,raions +raip,raips +Rai,Rai +Rai Sahib,Rai Sahibs +raise borer,raise borers +raised point,raised points +raise,raises +raiser,raisers +raising agent,raising agents +raising,raisings +raisin,raisins +raison d'etre,raisons d'etre +raison d'Γͺtre,raisons d'Γͺtre,raison d'Γͺtre,raison d'Γͺtres +raisonneur,raisonneurs +rais,raises +rai stone,rai stones +raiyat,raiyats,raiyat +rajadhiraja,rajadhirajas +rajah,rajahs +rajahship,rajahships +rajanigandha,rajanigandhas +raja,rajas +rajbari,rajbaris +rajid,rajids +Rajkumari,Rajkumaris +Rajneeshee,Rajneeshees +Rajpoot,Rajpoots +Rajput,Rajputs +rakali,rakalis +rak'a,rak'at +rakehell,rakehells +rakemaker,rakemakers +rake-off,rake-offs +rake,rakes +rake,rakes +rake,rakes +raker,rakers +rakeshame,rakeshames +rakestale,rakestales +rakhi,rakhis +rakia,rakias +raking,rakings +raki,rakis +rakshasa,rakshasas +rakshasi,rakshasis +rakshas,rakshasas +rakyat,rakyats +rale,rales +ralid,ralids +rallid,rallids +rallier,ralliers +rally cap,rally caps +rallygoer,rallygoers +rallying point,rallying points +rally,rallies +raloxifene,raloxifenes +ralphie,ralphies +ramada,ramadas +ramapithecine,ramapithecines +rambade,rambades +ramberge,ramberges +Rambino,Rambinos +ramble,rambles +rambler,ramblers +rambling,ramblings +Rambo knife,Rambo knifes +rambutan,rambutans +ram cichlid,ram cichlids +ramdisk,ramdisks +RAM disk,RAM disks +Ramean,Rameans +ramekin,ramekins +ramen,ramen +rament,raments +ramentum,ramenta +ramequin,ramequins +ramet,ramets +ramie,ramies +ramier,ramiers +ramification,ramifications +Ramist,Ramists +ramjet,ramjets +ramline,ramlines +rammelsbergite,rammelsbergites +rammer,rammers +Ramos gin fizz,Ramos gin fizzes +RAM pack,RAM packs +rampage,rampages +rampager,rampagers +rampallian,rampallians +rampart,ramparts +ramp ceremony,ramp ceremonies +ramphastid,ramphastids +rampier,rampiers +rampike,rampikes +rampion,rampions +rampire,rampires +ramp,ramps +ramp,ramps +ramp-up,ramp-ups +ramraiding,ramraidings +ram raid,ram raids +ram-raid,ram-raids +ramraid,ramraids +ram,rams +Ram,Rams +ramrod,ramrods +ramscoop,ramscoops +Ramsey number,Ramsey numbers +ramson,ramsons +ramulus,ramuli +ramuscule,ramuscules +ramus,rami +ranarium,ranariums +ranavirus,ranaviruses +rance,rances +ranchburger,ranchburgers +ranchera,rancheras +ranchero,rancheros,rancheroes +rancher,ranchers +ranchette,ranchettes +ranchhand,ranchhands +ranching,ranchings +ranchman,ranchmen +rancho,ranchos,ranchoes +ranch,ranches +ranchwoman,ranchwomen +rancidification,rancidifications +rancidness,rancidnesses +rancour,rancours +randan,randans +randkluft,randklufts +randomer,randomers +random function,random functions +randomisation,randomisations +randomiser,randomisers +randomization,randomizations +randomized algorithm,randomized algorithms +randomizer,randomizers +randomness,randomnesses +random number generator,random number generators +random number,random numbers +random,randoms +random sample,random samples +random seed,random seeds +random sequence,random sequences +random variable,random variables +random walker,random walkers +random walk,random walks +rand,rands +rand,rands,rand +Randroid,Randroids +randy,randys +ranee,ranees +ranelate,ranelates +ranellid,ranellids +ranga,rangas +rangatira,rangatiras +ranged weapon,ranged weapons +range finder,range finders +rangefinder,rangefinders +range hood,range hoods +rangehood,rangehoods +rangement,rangements +range of motion,ranges of motion +rangeomorph,rangeomorphs +range pole,range poles +range,ranges +ranger,rangers +Ranger,Rangers +ranger vest,ranger vests +Rangoonese,Rangoonese +rango,rangoes +rangpur,rangpurs +ranicipitid,ranicipitids +ranid,ranids +raninid,raninids +rani,ranis +ranker,rankers +ranking,rankings +rank,ranks +rankshift,rankshifts +rannel,rannels +rann,ranns +ranny,rannies +ransacker,ransackers +ranseur,ranseurs +ransomer,ransomers +rantallion,rantallions +ranter,ranters +Ranter,Ranters +rantipole,rantipoles +rant,rants +ranula,ranulas +ranunculid,ranunculids +ranunculus,ranunculuses,ranunculi +raoellid,raoellids +rapalog,rapalogs +Rapanui,Rapanui +Rapa Nui,Rapa Nui +raparee,raparees +rape blossom,rape blossoms +rapee,rapees +rapefest,rapefests +rape kit,rape kits +rape,rape +rape,rapes +rape,rapes +rape,rapes +rape,rapes +raper,rapers +rape shield,rape shields +rape van,rape vans +rape whistle,rape whistles +raphane,raphanes +raphe,raphae +raphia,raphias +raphide,raphides +raphidian,raphidians +raphidophyte,raphidophytes +raphid,raphids +raphistomatid,raphistomatids +rapidity,rapidities +rapid,rapids +rapid unplanned disassembly,rapid unplanned disassemblies +rapier,rapiers +raping,rapings +rapismatid,rapismatids +rapist,rapists +rapmeister,rapmeisters +rapophile,rapophiles +rappa,rappas +rapparee,rapparees +rappeler,rappelers +rappeller,rappellers +rappel,rappels +rappel,rappels +rapper,rappers +rapping,rappings +rapporteur,rapporteurs +rapprochement,rapprochements +rap,raps +rapscallion,rapscallions +rapscal,rapscals +rap sheet,rap sheets +rapter,rapters +raptor,raptors +raptor,raptors +rapt,rapts +rapture,raptures +rapturist,rapturists +raptus,raptuses +Raquel Welch,Raquel Welches +rara avis,rara avises,rarae aves +Ra,Ras +rare bird,rare birds +rarebit,rarebits +rare earth element,rare earth elements +rare earth magnet,rare earth magnets +rare earth metal,rare earth metals +rare earth mineral,rare earth minerals +rare earth,rare earths +raree show,raree shows +rarefaction,rarefactions +rarefication,rarefications +rareripe,rareripes +rare spring-sedge,rare spring-sedges +rarety,rareties +rarf,rarfs +raritie,rarities +rarity,rarities +rark up,rark ups +raro,raros +Rarotongan,Rarotongans +rasbora,rasboras +rascaless,rascalesses +rascalion,rascalions +rascality,rascalities +rascallion,rascallions +rascal,rascals +rascalry,rascalries +rascette,rascettes +Rascolnik,Rascolniks +rase,rases +rasher,rashers +rashguard,rashguards +rashie,rashies +rashling,rashlings +Rashomon effect,Rashomon effects +rash,rashes +rash vest,rash vests +Raskolnik,Raskolniks +rasorite,rasorites +rasour,rasours +raspatorium,raspatoria +raspatory,raspatories +raspberry,raspberries +raspberry,raspberries +raspberry ripple,raspberry ripples +raspberry tart,raspberry tarts +rasper,raspers +rasping,raspings +raspis,raspises +rasp palm,rasp palms +rasp,rasps +ras,rases +rassemblement,rassemblements +rasse,rasses +Rastafarian,Rastafarians +rastaman,rastamen +Rastaman,Rastamen +rastaquouΓ¨re,rastaquouΓ¨res +rasta,rastas +rasterisation,rasterisations +rasterization,rasterizations +rasterizer,rasterizers +raster,rasters +rastodentid,rastodentids +rastra,rastras +rasure,rasures +ratafia,ratafias +ratan,ratans +rataplan,rataplans +rata,ratas +ratardid,ratardids +rat-a-tat-tat,rat-a-tat-tats +ratava,ratavas +ratbag,ratbags +ratcastle,ratcastles +ratcatcher,ratcatchers +ratchet jack,ratchet jacks +ratchet,ratchets +ratchet wheel,ratchet wheels +ratchet wrench,ratchet wrenches +ratch,ratches +rateable value,rateable values +ratel,ratels +ratemeter,ratemeters +rate of climb indicator,rate of climb indicators +rate-of-climb indicator,rate-of-climb indicators +rate of climb,rates of climb +ratepayer,ratepayers +ratepayers group,ratepayers groups +rate,rates +rater,raters +rate tart,rate tarts +ratface,ratfaces +rat fink,rat finks +ratfink,ratfinks +ratfish,ratfishes,ratfish +Rathke's cleft,Rathke's clefts +Rathke's pouch,Rathke's pouches +rathole,ratholes +rathouisiid,rathouisiids +rath,raths +rathripe,rathripes +rathskeller,rathskellers +ratification,ratifications +ratifier,ratifiers +ratihabition,ratihabitions +rating,ratings +ratiocination,ratiocinations +ratio decidendi,rationes decidendi +rational egoist,rational egoists +rationale,rationales +rational function,rational functions +rational horizon,rational horizons +rationalist,rationalists +rationalizer,rationalizers +rational number,rational numbers +rational,rationals +ration card,ration cards +rationer,rationers +rationing,rationings +ration,rations +ration stamp,ration stamps +ratio,ratios +ratio scale,ratio scales +ratio variable,ratio variables +ratissage,ratissages +ratite,ratites +rat kangaroo,rat kangaroos +rat king,rat kings +ratline,ratlines +ratling,ratlings +ratlin,ratlins +ratoon,ratoons +rato,ratos +rat printing office,rat printing offices +rat,rats +rat rod,rat rods +rat runner,rat runners +rat run,rat runs +ratsbane,ratsbane +rat shot,rat shot +ratskin,ratskins +rat-tail,rat-tails +rattail,rattails +rattan,rattans +ratteen,ratteens +rattener,ratteners +ratter,ratters +rattery,ratteries +ratticide,ratticides +rattinet,rattinets +rattleback,rattlebacks +rattlebox,rattleboxes +rattlebrain,rattlebrains +rattlehead,rattleheads +rattlemouse,rattlemice +rattlepate,rattlepates +rattlepod,rattlepods +rattle,rattles +rattler,rattlers +rattle snake,rattle snakes +rattlesnake,rattlesnakes +rattle trap,rattle traps +rattletrap,rattletraps +rattleweed,rattleweeds +rattlewings,rattlewings +rattling,rattlings +rat trap,rat traps +rattrap,rattraps +rat wall,rat walls +raucousness,raucousnesses +rauisuchid,rauisuchids +raunchfest,raunchfests +raunchiness,raunchinesses +rauwolfia,rauwolfias +ravage,ravages +ravager,ravagers +raveler,ravelers +ravelin,ravelins +ravel,ravels +ravenala,ravenalas +ravener,raveners +ravening,ravenings +Ravennan,Ravennans +raven,ravens +raven,ravens +rave,raves +rave,raves +raver,ravers +ravier,raviers +ravinement,ravinements +ravine,ravines +raving,ravings +ravin,ravins +raviolo,ravioli +ravisher,ravishers +ravishment,ravishments +raw deal,raw deals +rawk,rawks +rawl plug,rawl plugs +raw material,raw materials +raw,raws +raw sienna,raw siennas +rax,rax +rayah,rayahs +Rayburn,Rayburns +raycaster,raycasters +ray gun,ray guns +ray-gun,ray-guns +raygun,rayguns +rayleigh,rayleighs +Raynaud's phenomenon,Raynaud's phenomena +ray of light,rays of light +rayograph,rayographs +ray,rays +ray,rays +ray,rays +ray,rays +ray tracer,ray tracers +raytracer,raytracers +razee,razees +razer,razers +razoo,razoos +razorback,razorbacks +razorbill,razorbills +razor blade,razor blades +razorblade,razorblades +razor bump,razor bumps +razor clam,razor clams +razorfish,razorfishes,razorfish +razor,razors +razor shell,razor shells +razorshell,razorshells +razor strap,razor straps +razor strop,razor strops +razour,razours +razure,razures +razzberry,razzberries +razzia,razzias +Razzie,Razzies +RBI,RBIs +RBT,RBTs +RCC,RCCs +RCH,RCHs +R-coloured vowel,R-coloured vowels +r'coon,r'coons +RCT,RCTs +RCW,RCWs +RDF,RDFs +RD,RDs +reabsorption,reabsorptions +re-abuse,re-abuses +reacceleration,reaccelerations +reacceptance,reacceptances +reaccess,reaccesses +reaccumulation,reaccumulations +reach-around,reach-arounds +reacharound,reacharounds +reache,reaches +reacher,reachers +reaching,reachings +reach,reaches +reacidification,reacidifications +reacquisition,reacquisitions +reactant,reactants +reactionary,reactionaries +reaction engine,reaction engines +reactionist,reactionists +reaction mechanism,reaction mechanisms +reaction mixture,reaction mixtures +reaction,reactions +reΓ€ction,reΓ€ctions +reaction save,reaction saves +reaction time,reaction times +reaction turbine,reaction turbines +reaction vessel,reaction vessels +reactivator,reactivators +reactive intermediate,reactive intermediates +reactive power,reactive powers +reactor,reactors +reactor scram,reactor scrams +readaholic,readaholics +readaptation,readaptations +readathon,readathons +readback,readbacks +read dating,read datings +readdition,readditions +readee,readees +readerboard,readerboards +readerdom,readerdoms +reader,readers +Reader,Readers +Reader's Digest version,Reader's Digest versions +readership,readerships +read-eval-print loop,read-eval-print loops +read head,read heads +readier,readiers +reading frame,reading frames +reading room,reading rooms +reading stone,reading stones +reading week,reading weeks +readjuster,readjusters +readjustment,readjustments +readme,readmes +readmission,readmissions +readmittance,readmittances +read-out,read-outs +readout,readouts +read,reads +readsorption,readsorptions +read-through,read-throughs +readthrough,readthroughs +read/write head,read/write heads +ready-made,ready-mades +readymade,readymades +ready meal,ready meals +ready reckoner,ready reckoners +ready room,ready rooms +reaffirmation,reaffirmations +reaf,reafs,reaves +Reaganite,Reaganites +reagant,reagants +reagent,reagents +re-aggravation,re-aggravations +reaggravation,reaggravations +reak,reaks +reak,reaks +real axis,real axes +real capital,real capitals +real deal,real deals +real function,real functions +realigner,realigners +realignment,realignments +real image,real images +realisation,realisations +realiser,realisers +realist,realists +reality distortion field,reality distortion fields +reality show,reality shows +realization,realizations +realizer,realizers +realliance,realliances +real life,real lives +real line,real lines +reallocation,reallocations +reallocator,reallocators +realme,realmes +realm,realms +real number line,real number lines +real number,real numbers +real number system,real number systems +real part,real parts +real plane,real planes +realpolitician,realpoliticians +realpolitiker,realpolitikers +real,reais,reals +real,reales +real,reals +real,reis,rΓ©is,reals +real superhero,real superheroes +realtor,realtors +realty,realties +real vector space,real vector spaces +reamer,reamers +reamplification,reamplifications +ream,reams +ream,reams +reanalysis,reanalyses +reanimation,reanimations +reanimator,reanimators +reaper,reapers +reap hook,reap hooks +reaping hook,reaping hooks +reappearance,reappearances +reapplicant,reapplicants +reapplication,reapplications +reappointee,reappointees +reappointment,reappointments +reapportionment,reapportionments +reapposition,reappositions +reappraisal,reappraisals +reap,reaps +rear admiral (lower half),rear admirals (lower half) +rear admiral,rear admirals +rear admiral (upper half),rear admirals (upper half) +rear double biceps,rear double biceps +reard,reards +rea,reas +rear echelon,rear echelons +rear-ender,rear-enders +rear end,rear ends +rearer,rearers +rearguard,rearguards +rear gunner,rear gunners +rear-horse,rear-horses +rearing bit,rearing bits +rearing,rearings +rearmouse,rearmice +rearomatization,rearomatizations +rear projection,rear projections +rearrangement reaction,rearrangement reactions +rearrangement,rearrangements +rearranger,rearrangers +rear,rears +rearseat,rearseats +rear-view mirror,rear-view mirrors +rearview mirror,rearview mirrors +rear vision mirror,rear vision mirrors +rearward,rearwards +rear window,rear windows +reascent,reascents +reasonable doubt,reasonable doubts +reasonable person,reasonable people +reasoner,reasoners +reasoning,reasonings +reasonist,reasonists +reason,reasons +reassertion,reassertions +reassessment,reassessments +reassignment,reassignments +reassimilation,reassimilations +reassociation,reassociations +reassortant,reassortants +reassortment,reassortments +reassurance,reassurances +reassurer,reassurers +reata,reatas +reattachment,reattachments +reattempt,reattempts +reattender,reattenders +reaudit,reaudits +reaugmentation,reaugmentations +reauthorization,reauthorizations +reaver,reavers +rebab,rebabs +rebagger,rebaggers +rebalancing,rebalancings +rebaptisation,rebaptisations +rebaptizer,rebaptizers +rebatement,rebatements +rebate plane,rebate planes +rebate,rebates +rebato,rebatos +rebbachisaurid,rebbachisaurids +rebbe,rebbes +rebbetzin,rebbetzins +rebeck,rebecks +rebec,rebecs +rebeller,rebellers +rebellion,rebellions +rebel,rebels +Rebel,Rebels +rebetiko,rebetika +rebidder,rebidders +rebinding,rebindings +rebiopsy,rebiopsies +rebirth,rebirths +rebit,rebits +rebleed,rebleeds +reblochon,reblochons +Reblochon,Reblochons +reblogger,rebloggers +rebloomer,rebloomers +rebluff,rebluffs +reboation,reboations +rebolter,rebolters +reboot,reboots +reborrowing,reborrowings +rebottler,rebottlers +rebounder,rebounders +rebound,rebounds +rebound relationship,rebound relationships +rebozo,rebozos +rebrander,rebranders +rebranding,rebrandings +rebrand,rebrands +rebreather,rebreathers +reb,rebs +rebrightening,rebrightenings +rebroadcaster,rebroadcasters +rebuffer,rebuffers +rebuff,rebuffs +rebuilder,rebuilders +rebuilding,rebuildings +rebuild,rebuilds +rebuke,rebukes +rebuker,rebukers +reburial,reburials +rebus,rebuses +rebutia,rebutias +rebuttal,rebuttals +rebutter,rebutters +rebuyer,rebuyers +rebuy,rebuys +recalcitrant,recalcitrants +recalcitration,recalcitrations +recalculation,recalculations +recalescence,recalescences +recalibration,recalibrations +recallist,recallists +recamier,recamiers +recanalisation,recanalisations +recanalization,recanalizations +recantation,recantations +recanter,recanters +recanvass,recanvasses +recapitalisation,recapitalisations +recapitalization,recapitalizations +recapitulationist,recapitulationists +recapitulation,recapitulations +recapitulator,recapitulators +recapper,recappers +recapping,recappings +recap,recaps +recaptive,recaptives +recaptor,recaptors +recapture,recaptures +recaster,recasters +recast,recasts +recategorization,recategorizations +recatholicization,recatholicizations +recce,recces +reccy,reccies +receiptor,receiptors +receipt,receipts +receivable,receivables +receiveable,receiveables +receive,receives +receiver,receivers +receivership,receiverships +receiving blanket,receiving blankets +receiving line,receiving lines +receiving reservoir,receiving reservoirs +recellularization,recellularizations +recensionist,recensionists +recension,recensions +recensus,recensuses +receptacle,receptacles +receptaculitid,receptaculitids +receptaculum,receptacula +receptary,receptaries +reception center,reception centers +reception desk,reception desks +reception room,reception rooms +receptive language,receptive languages +receptor,receptors +receptory,receptories +receptosome,receptosomes +receptour,receptours +recertification,recertifications +recess appointment,recess appointments +recessional,recessionals +recessionista,recessionistas +recession,recessions +recess,recesses +Rechabite,Rechabites +rechallenge,rechallenges +rechargeable,rechargeables +recharger,rechargers +recharging,rechargings +recharter,recharters +recheat,recheats +recheck,rechecks +rechristening,rechristenings +recidivist,recidivists +recipe,recipes +recipiangle,recipiangles +recipient,recipients +reciprocal altruism,reciprocal altruisms +reciprocal pronoun,reciprocal pronouns +reciprocal,reciprocals +reciprocating engine,reciprocating engines +reciprocating saw,reciprocating saws +reciprocation,reciprocations +reciprocator,reciprocators +recission,recissions +recitalist,recitalists +recital,recitals +recitation,recitations +recitative,recitatives +recitativo,recitativos,recitativoes +recitement,recitements +reciter,reciters +reckling,recklings +reckmaster,reckmasters +reckoner,reckoners +reckoning,reckonings +reclaimant,reclaimants +reclaimer,reclaimers +reclaim,reclaims +reclamation,reclamations +reclassification,reclassifications +recline,reclines +recliner,recliners +recloser,reclosers +recluse,recluses +recluse spider,recluse spiders +reclusory,reclusories +recoat,recoats +recoding,recodings +recognin,recognins +recognisance,recognisances +recogniser,recognisers +recognitor,recognitors +recognizance,recognizances +recognization,recognizations +recognized component,recognized components +recognizee,recognizees +recognizer,recognizers +recognizor,recognizors +recoiler,recoilers +recoiling,recoilings +recoilless rifle,recoilless rifles +recoil,recoils +recoining,recoinings +Recollect,Recollects +Recollet,Recollets +recollimation,recollimations +recollision,recollisions +recolonisation,recolonisations +recolonization,recolonizations +recombinant,recombinants +recombinase,recombinases +recombination energy,recombination energies +recombination,recombinations +recombining,recombinings +recommencement,recommencements +recommendation,recommendations +recommendative,recommendatives +recommender,recommenders +recommittal,recommittals +recompensation,recompensations +recompense,recompenses +recompenser,recompensers +recompensing,recompensings +recompile,recompiles +recompiler,recompilers +recomposer,recomposers +reconception,reconceptions +reconcilable,reconcilables +reconciler,reconcilers +reconciliation,reconciliations +recondensation,recondensations +reconditioner,reconditioners +reconditory,reconditories +reconfiguration,reconfigurations +reconfirmation,reconfirmations +reconnection,reconnections +reconnexion,reconnexions +reconnoissance,reconnoissances +reconnoitering,reconnoiterings +reconnoiter,reconnoiters +reconnoitre,reconnoitres +reconquest,reconquests +recon,recons +recon,recons +reconsecration,reconsecrations +reconsideration,reconsiderations +reconstitution,reconstitutions +reconstructed language,reconstructed languages +reconstructionist,reconstructionists +reconstruction,reconstructions +reconstructivist,reconstructivists +reconstructor,reconstructors +recontraction,recontractions +reconvention,reconventions +reconversion,reconversions +reconvert,reconverts +recooper,recoopers +recopier,recopiers +recordation,recordations +record chart,record charts +record deal,record deals +recorder,recorders +recorder,recorders +recordership,recorderships +recording artist,recording artists +recording,recordings +recordist,recordists +recordkeeper,recordkeepers +record label,record labels +record locator,record locators +record,records +recordset,recordsets +reco-reco,reco-recos +recorrection,recorrections +recosting,recostings +recounter,recounters +recounting,recountings +recountment,recountments +recount,recounts +recouper,recoupers +recoupling,recouplings +recoupment,recoupments +recoveree,recoverees +recoverer,recoverers +recoveror,recoverors +recover,recovers +recovery boiler,recovery boilers +recovery CD,recovery CDs +recovery position,recovery positions +recovery,recoveries +recovery truck,recovery trucks +recovre,recovres +recreancy,recreancies +recreant,recreants +recreational drug,recreational drugs +recreational pharmaceutical,recreational pharmaceuticals +recreational vehicle,recreational vehicles +recreationist,recreationists +re-creation,re-creations +recreation,recreations +recreation,recreations +recreator,recreators +recrement,recrements +recrimination,recriminations +recriminator,recriminators +recriticality,recriticalities +rec room,rec rooms +recrossing,recrossings +recross,recrosses +recruitee,recruitees +recruiter,recruiters +recruit,recruits +recrystallisation,recrystallisations +recrystallization,recrystallizations +rectal varicosity,rectal varicosities +rectangle,rectangles +rectangular number,rectangular numbers +rectification,rectifications +rectificator,rectificators +rectifier,rectifiers +rectilinearization,rectilinearizations +rectocele,rectoceles +rectopexy,rectopexies +rectorate,rectorates +recto,rectos +rectoress,rectoresses +rector,rectors +rectorship,rectorships +rectory,rectories +rectoscope,rectoscopes +rectosigmoid,rectosigmoids +rectour,rectours +rectress,rectresses +rectrix,rectrices +rectum,recta,rectums +rectus,recti +recumbent,recumbents +recuperator,recuperators +recurrence,recurrences +recurrence relation,recurrence relations +recurrency,recurrencies +recursion,recursions +recursive acronym,recursive acronyms +recursive definition,recursive definitions +recursive function,recursive functions +recursiveness,recursivenesses +recursivity,recursivities +recurve-billed bushbird,recurve-billed bushbirds +recurve bow,recurve bows +recurvirostrid,recurvirostrids +recusal,recusals +recusancy,recusancies +recusant,recusants +recusation,recusations +recyclability,recyclabilities +recyclable,recyclables +recyclate,recyclates +recycle bin,recycle bins +recycle man,recycle men +recycler,recyclers +recycle truck,recycle trucks +recycling bin,recycling bins +recycling,recyclings +recycling symbol,recycling symbols +recyclist,recyclists +redactor,redactors +red admiral,red admirals +red alder,red alders +red alga,red algae +redan,redans +red ant,red ants +redargution,redargutions +Red Army man,Red Army men +Red Armyman,Red Armymen +red-backed hawk,red-backed hawks +red-backed shrike,red-backed shrikes +redback,redbacks +redback,redbacks +red-baiter,red-baiters +redbaiter,redbaiters +redbait,redbait +red ball,red balls +red-banded sand wasp,red-banded sand wasps +red bandfish,red bandfish,red bandfishes +Red Baron,Red Barons +red bayberry,red bayberries +red bay,red bays +red bean,red beans +redbed,redbeds +redbelly,redbellies +redberry,redberries +red biddy,red biddys +redbird,redbirds +red-black tree,red-black trees +red blood cell cast,red blood cell casts +red blood cell,red blood cells +redbone,redbones +Redbone,Redbones +red-breasted merganser,red-breasted mergansers +redbreast,redbreasts +red brick university,red brick universities +redbrick university,redbrick universities +redbud,redbuds +redbug,redbugs +redbush,redbushes +red cap,red caps +redcap,redcaps +red card,red cards +red carpet,red carpets +red car,red cars +red cedar,red cedars +redcedar,redcedars +red cell,red cells +red cent,red cents +red chip,red chips +red chokeberry,red chokeberrys +red clover,red clovers +red coat,red coats +redcoat,redcoats +red corpuscle,red corpuscles +red cotton tree,red cotton trees +red cotton-tree,red cotton-trees +red-crested pochard,red-crested pochards +red cunt hair,red cunt hairs +red currant,red currants +redcurrant,redcurrants +red deer,red deer,red deers +reddendum,reddendums +reddener,reddeners +reddening,reddenings +Red Devil,Red Devils +red diaper baby,red diaper babies +reddleman,reddlemen +reddle,reddles +red dog,red dogs +redd,redds +red drum,red drums +red dwarf,red dwarfs +Reddy,Reddies +redeal,redeals +red-eared slider,red-eared sliders +red-eared terrapin,red-eared terrapins +red-eared turtle,red-eared turtles +redeclaration,redeclarations +redecoration,redecorations +redecorator,redecorators +redeco,redecos +redeemer,redeemers +redefault,redefaults +redefiner,redefiners +redefinition,redefinitions +redemptionary,redemptionaries +redemptioner,redemptioners +redemption game,redemption games +redemptionist,redemptionists +redemptorist,redemptorists +red envelope,red envelopes +redeployment,redeployments +rederivation,rederivations +redesigner,redesigners +redesign,redesigns +redetermination,redeterminations +redeveloper,redevelopers +redevelopment,redevelopments +redex,redexes +red-eye,red-eyes +redeye,redeyes +Red Eye,Red Eyes +red-faced cormorant,red-faced cormorants +red face test,red face tests +redfella,redfellas +Redfella,Redfellas +red fescue,red fescues +redfinch,redfinches +redfin,redfins +redfish,redfish,redfishes +red flag,red flags +red flower,red flowers +red fox,red foxes +red giant,red giants +red grouse,red grouse +red guard,red guards +red gum,red gums +redgum,redgums +redheaded Eskimo,redheaded Eskimos +redhead,redheads +red herring,red herrings +redhorse,redhorses +red hot,red hots +red-hot,red-hots +red huckleberry,red huckleberries +redia,rediae +redifferentiation,redifferentiations +Red Indian,Red Indians +redingote,redingotes +redingot,redingots +red-inker,red-inkers +redintegration,redintegrations +redirection,redirections +redirector,redirectors +redirect,redirects +redisclosure,redisclosures +rediscount,rediscounts +rediscovery,rediscoveries +redisseisin,redisseisins +redisseizin,redisseizins +redisseizor,redisseizors +redist,redists +redistributable,redistributables +redistributionist,redistributionists +redistribution of wealth,redistributions of wealth +redistribution,redistributions +redistributor,redistributors +redivider,redividers +red kangaroo,red kangaroos,red kangaroo +red kite,red kites +red knot,red knots +red-legged partridge,red-legged partridges +red-legged tinamou,red-legged tinamous +red-leg,red-legs +redleg,redlegs +red lemonade,red lemonades +red letter day,red letter days +red-letter day,red-letter days +red-letter edition,red-letter editions +red letter law,red letter laws +redlichiid,redlichiids +red-light camera,red-light cameras +red-light district,red-light districts +red light,red lights +red line,red lines +redline,redlines +red link,red links +redlink,redlinks +red lion,red lions +red-lipped batfish,red-lipped batfish +red maple,red maples +red mist,red mists +red-necked buzzard,red-necked buzzards +red-necked grebe,red-necked grebes +redneck,rednecks +red-nose tetra,red-nose tetras +redoer,redoers +red onion,red onions +redophile,redophiles +redo,redos +redouble,redoubles +redoubt,redoubts +redowa,redowas +redoxcline,redoxclines +redox indicator,redox indicators +redox potential,redox potentials +redox reaction,redox reactions +red panda,red pandas +red pepper,red peppers +red pine,red pines +redpole,redpoles +redpoll,redpolls +red poppy,red poppies +red pudding,red puddings +red pussy hair,red pussy hairs +redrafting,redraftings +redraft,redrafts +red-ragger,red-raggers +red rag,red rags +red rag to a bull,red rags to a bull +red rail,red rails +red rattle,red rattles +redrawer,redrawers +redraw,redraws +Red,Reds +redresser,redressers +redressment,redressments +redress,redresses +redress,redresses +red ribbon,red ribbons +red rice,red rices +red ring of death,red rings of death +red rocket,red rockets +redroot,redroots +red route,red routes +red sauce,red sauces +red-shanked douc,red-shanked doucs +redshank,redshanks +red shift,red shifts +redshift,redshifts +redshirt,redshirts +redshirt,redshirts +redshirt,redshirts +red-shouldered hawk,red-shouldered hawks +redskin,redskins +redskirt,redskirts +red slender loris,red slender lorises +red snapper,red snappers +red snow,red snows +red sprite,red sprites +red squirrel,red squirrels +redstart,redstarts +red state,red states +redstreak,redstreaks +red supergiant,red supergiants +red tag,red tags +red-tailed hawk,red-tailed hawks +redtail,redtails +red-tapism,red-tapisms +red-tapist,red-tapists +red-throated diver,red-throated divers +red-throated loon,red-throated loons +red-throated pipit,red-throated pipits +red-throat,red-throats +redthroat,redthroats +red tide,red tides +red tiger,red tigers +redtop grass,redtop grasses +red top,red tops +red-top,red-tops +redub,redubs +reducant,reducants +reduced cat,reduced cats +reduced mass,reduced masses +reducement,reducements +reducent,reducents +reducer,reducers +reducing agent,reducing agents +reducing flame,reducing flames +reducing sugar,reducing sugars +reductant,reductants +reductase,reductases +reduction division,reduction divisions +reduction furnace,reduction furnaces +reductionist,reductionists +reduction,reductions +reductivism,reductivisms +reductivist,reductivists +reductoisomerase,reductoisomerases +reductone,reductones +reduct,reducts +rΓ©duit,rΓ©duits +redundance,redundances +redundancy,redundancies +redundant colon,redundant colons +red under the bed,reds under the bed +reduplicant,reduplicants +reduplication,reduplications +reduvid,reduvids +reduviid,reduviids +red valerian,red valerians +red-veined darter,red-veined darters +red-veined dock,red-veined docks +red velvet cake,red velvet cakes +red velvet,red velvets +red week,red weeks +red wiggler,red wigglers +red-winged tinamou,red-winged tinamous +redwing,redwings +Red Wolf,Red Wolves +redwood,redwoods +red worm,red worms +redworm,redworms +redyeing,redyeings +red zone,red zones +Reeb component,Reeb components +reebok,reeboks +re-echo,re-echos,re-echoes +reecho,reechos,reechoes +reed bed,reed beds +reedbed,reedbeds +reedbird,reedbirds +reedbuck,reedbucks,reedbuck +reed bunting,reed buntings +reed instrument,reed instruments +reedist,reedists +re-edit,re-edits +reedling,reedlings +reedmace,reedmaces +reedman,reedmen +reed,reeds +Reed-Sternberg cell,Reed-Sternberg cells +reed stop,reed stops +reeducator,reeducators +reef-band,reef-bands +reefer jacket,reefer jackets +reefer,reefers +reefer,reefers +reefer,reefers +reefer's nut,reefer's nuts +reefing bowsprit,reefing bowsprits +reefing,reefings +reef knot,reef knots +reef line,reef lines +reef point,reef points +reefpoint,reefpoints +reef rash,reef rashes +reef,reefs +reef,reefs +reef triggerfish,reef triggerfish,reef triggerfishes +reeker,reekers +reek,reeks +re-election,re-elections +reelection,reelections +reΓ«lection,reΓ«lections +reeler,reelers +reeler,reelers +reel oven,reel ovens +reel,reels +reel-to-reel,reel-to-reels +reel-to-reel tape recorder,reel-to-reel tape recorders +reel to reel tape,reel to reel tapes +reel-to-reel tape,reel-to-reel tapes +reemergence,reemergences +reΓ«mergence,reΓ«mergences +reemission,reemissions +re-enactment,re-enactments +reenactment,reenactments +reenactor,reenactors +re-encounter,re-encounters +reencounter,reencounters +reenforcement,reenforcements +reΓ«nforcement,reΓ«nforcements +reengagement,reengagements +re-engineering,re-engineerings +reengineering,reengineerings +reen,reens +reenthronement,reenthronements +reentrance,reentrances +reentrant,reentrants +re-entrustment,re-entrustments +reentrustment,reentrustments +re-entry,re-entries +reentry,reentries +reenvisioning,reenvisionings +reepithelialisation,reepithelialisations +reepithelialization,reepithelializations +ree,rees +ree,rees +REE,REEs +reestablisher,reestablishers +reesterification,reesterifications +re-evaluation,re-evaluations +reevaluation,reevaluations +reeve,reeves +reeve,reeves +re-examination,re-examinations +reexamination,reexaminations +reΓ«xamination,reΓ«xaminations +reexchange,reexchanges +reexhumation,reexhumations +reexperience,reexperiences +reexposure,reexposures +reexpression,reexpressions +refactoring,refactorings +refactorisation,refactorisations +refactorization,refactorizations +refashioner,refashioners +refashioning,refashionings +refback,refbacks +refcode,refcodes +refection,refections +refective,refectives +refectory,refectories +refectory table,refectory tables +referee assistant,referee assistants +refereeing,refereeings +referee,referees +reference angle,reference angles +reference book,reference books +reference electrode,reference electrodes +reference implementation,reference implementations +reference list,reference lists +reference point,reference points +reference,references +reference variable,reference variables +reference work,reference works +referendary,referendaries +referendum,referenda,referendums +referent,referents +referer,referers +refermentation,refermentations +referral,referrals +referrer,referrers +reffo,reffos,reffoes +refidex,refidexes +refiling,refilings +refiller,refillers +refilling,refillings +refill,refills +refiltration,refiltrations +refinancer,refinancers +refinancing,refinancings +refinement,refinements +refiner,refiners +refinery,refineries +refining,refinings +refinisher,refinishers +refiring,refirings +refitment,refitments +refit,refits +refitter,refitters +refitting,refittings +refixation,refixations +reflation,reflations +reflectance,reflectances +reflecting circle,reflecting circles +reflecting microscope,reflecting microscopes +reflecting,reflectings +reflecting telescope,reflecting telescopes +reflection nebula,reflection nebulas,reflection nebulae +reflection,reflections +reflectivist,reflectivists +reflectogram,reflectograms +reflectograph,reflectographs +reflectometer,reflectometers +reflector,reflectors +reflectron,reflectrons +reflex arc,reflex arcs +reflex hammer,reflex hammers +reflexion,reflexions +reflexive possessive pronoun,reflexive possessive pronouns +reflexive pronoun,reflexive pronouns +reflexive,reflexives +reflexive statement,reflexive statements +reflexive verb,reflexive verbs +reflexivity,reflexivities +reflexmate,reflexmates +reflexograph,reflexographs +reflexologist,reflexologists +reflex,reflexes,reflices +reflex response,reflex responses +reflooring,refloorings +refluxate,refluxates +reflux condenser,reflux condensers +refluxer,refluxers +reflux,refluxes +reforger,reforgers +reformade,reformades +reformado,reformados,reformadoes +reformate,reformates +re-formation,re-formations +reformation,reformations +reformatory,reformatories +Reformatsky reaction,Reformatsky reactions +reformatter,reformatters +reformatting,reformattings +reformer,reformers +reforming,reformings +reformist,reformists +reform,reforms +reform school,reform schools +reformulated gasoline,reformulated gasolines +reformulation,reformulations +refounder,refounders +refracting telescope,refracting telescopes +refraction,refractions +refractive index,refractive indices +refractometer,refractometers +refractor,refractors +refractory metal,refractory metals +refractory period,refractory periods +refractory,refractories +refractory rhyme,refractory rhymes +refracture,refractures +refrainer,refrainers +refrain,refrains +reframer,reframers +reframing,reframings +ref,refs +refrein,refreins +refrenation,refrenations +refreshaholic,refreshaholics +refresher,refreshers +refreshing,refreshings +refreshment,refreshments +refresh,refreshes +refret,refrets +refried bean,refried beans +refried,refrieds +refrigerant,refrigerants +refrigerative,refrigeratives +refrigerator mom,refrigerator moms +refrigerator mother,refrigerator mothers +refrigerator,refrigerators +refrigerator truck,refrigerator trucks +refrigeratory,refrigeratories +refringence,refringences +reft,refts +refueler,refuelers +refueller,refuellers +refugee camp,refugee camps +refugee,refugees +Refugee Regatta,Refugee Regattas +refuge island,refuge islands +refuge,refuges +refugium,refugia +refujew,refujews +refundee,refundees +refunder,refunders +refund,refunds +refurbisher,refurbishers +refurbishing,refurbishings +refurbishment,refurbishments +refurb,refurbs +refurb,refurbs +refusal,refusals +refusenik,refuseniks +refuser,refusers +refusnik,refusniks +refutal,refutals +refutation,refutations +refuter,refuters +regainer,regainers +regalecid,regalecids +regalement,regalements +regale,regales +regaler,regalers +regal horned lizard,regal horned lizards +regalia,regalias +regality,regalities +regall,regalls +regal,regals +regarde,regardes +regarder,regarders +regard,regards +regas,regasses +regatta,regattas,regatte +regelation,regelations +regendering,regenderings +regenerator,regenerators +regenerome,regeneromes +regen,regens +regentess,regentesses +regent,regents +Regent,Regents +regentship,regentships +regest,regests +regexp,regexps +regex,regexes +reggaetonero,reggaetoneros +regian,regians +regicide,regicides +regidor,regidors,regidores +regifter,regifters +regift,regifts +regimen,regimens,regimina +regimental sergeant major,regimental sergeants major,regimental sergeant majors +regiment,regiments +regime,regimes +rΓ©gime,rΓ©gimes +Reginan,Reginans +regioisomer,regioisomers +regiolect,regiolects +regionalisation,regionalisations +regionalist,regionalists +regionality,regionalities +regionalization,regionalizations +regional jet,regional jets +regional lockout,regional lockouts +regional,regionals +region code,region codes +region,regions +regio,regiones +regioregularity,regioregularities +regiospecificity,regiospecificities +registered bond,registered bonds +registered email,registered emails +registered nurse,registered nurses +registered trademark,registered trademarks +register office,register offices +register,registers +register ton,register tons +register variable,register variables +registrability,registrabilities +registrant,registrants +registrar,registrars +registrary,registraries +registrator,registrators +registree,registrees +registre,registres +registry,registries +reglet,reglets +reglucosylation,reglucosylations +regmaglypt,regmaglypts +regma,regmata +regnal name,regnal names +regnal number,regnal numbers +regnal year,regnal years +regnum,regnums,regna +regolith,regoliths +regosol,regosols +regrading,regradings +regraft,regrafts +regrant,regrants +regrater,regraters +regrator,regrators +regreet,regreets +reg,regs +reg,regs +regressand,regressands +regression,regressions +regression to the mean,regressions to the mean +regression tree,regression trees +regressor,regressors +regretter,regretters +regroover,regroovers +regrouping,regroupings +reguarde,reguardes +reguard,reguards +regular coffee,regular coffees +regular dividend,regular dividends +regular expression,regular expressions +regular function,regular functions +regularisation,regularisations +regularization,regularizations +regularizer,regularizers +regular polygon,regular polygons +regular prime,regular primes +regular,regulars +regular space,regular spaces +regular star macromolecule,regular star macromolecules +regular tessellation,regular tessellations +regular verb,regular verbs +regulator,regulators +regulid,regulids +regulon,regulons +regulus,reguli +regurgitalith,regurgitaliths +regurgitation,regurgitations +regurgitator,regurgitators +rehabber,rehabbers +rehabilitationist,rehabilitationists +rehabilitation,rehabilitations +rehabilitator,rehabilitators +rehabilitee,rehabilitees +rehab,rehabs +reharmonization,reharmonizations +rehashing,rehashings +rehash,rehashes +rehearing,rehearings +rehearsal,rehearsals +rehearser,rehearsers +reheater,reheaters +reheat,reheats +rehibition,rehibitions +rehiring,rehirings +rehoboam,rehoboams +Rehoboam,Rehoboams +rehomer,rehomers +rehospitalisation,rehospitalisations +rehospitalization,rehospitalizations +rehybridization,rehybridizations +rehydrator,rehydrators +rehydrogenation,rehydrogenations +rehypothecation,rehypothecations +Reichian,Reichians +Reichism,Reichisms +Reichskanzler,Reichskanzlers,Reichskanzler +reichsmark,reichsmarks +reification,reifications +reifier,reifiers +reiglement,reiglements +reigle,reigles +reigner,reigners +reignition,reignitions +reign,reigns +reimaginer,reimaginers +reimagining,reimaginings +reimbursal,reimbursals +reimbursement,reimbursements +reimburser,reimbursers +reimplantation,reimplantations +reimplementation,reimplementations +reimportation,reimportations +reimporter,reimporters +reimport,reimports +reimposition,reimpositions +reimpression,reimpressions +reim,reims +reincarnationist,reincarnationists +reincarnation,reincarnations +reindeer,reindeer +reinette,reinettes +reinfarction,reinfarctions +reinfection,reinfections +reinfestation,reinfestations +reinforcer,reinforcers +reinitialization,reinitializations +reinitiation,reinitiations +reinjury,reinjuries +reinking,reinkings +reinnervation,reinnervations +rein,reins +rein,reins +reinsertion,reinsertions +reinsman,reinsmen +reinspection,reinspections +reinstallation,reinstallations +reinstalment,reinstalments +reinstatement,reinstatements +reinstation,reinstations +reinsurance,reinsurances +reinsurer,reinsurers +reintegrative shaming,reintegrative shamings +reinteraction,reinteractions +reinterpreter,reinterpreters +reintroducer,reintroducers +reintroduction,reintroductions +reinvasion,reinvasions +reinvention,reinventions +reinventor,reinventors +reinvestigation,reinvestigations +reinvestor,reinvestors +reionisation,reionisations +reionization,reionizations +rei,reis +reis,reises +Reissner-NordstrΓΆm black hole,Reissner-NordstrΓΆm black holes +Reissner's membrane,Reissner's membranes +reissue,reissues +reissuer,reissuers +reissuing,reissuings +reiteration,reiterations +reiterator,reiterators +reiter,reiters +reiver,reivers +Rejang,Rejangs +rejected takeoff,rejected takeoffs +rejectee,rejectees +rejecter,rejecters +rejectionist,rejectionists +rejection letter,rejection letters +rejection,rejections +rejectment,rejectments +rejector,rejectors +reject,rejects +rejigging,rejiggings +rejoicer,rejoicers +rejoicing,rejoicings +rejoinder,rejoinders +rejoiner,rejoiners +rejolt,rejolts +rejoneador,rejoneadors +rejuvenation,rejuvenations +rejuvenator,rejuvenators +rejuvenile,rejuveniles +rekick,rekicks +rekindler,rekindlers +rekindling,rekindlings +relaminarization,relaminarizations +relaparotomy,relaparotomies +relapse,relapses +relapser,relapsers +relapsing,relapsings +relascope,relascopes +relatedness,relatednesses +relater,relaters +relating,relatings +relational antonym,relational antonyms +relational database,relational databases +relational model,relational models +relationist,relationists +relation,relations +relationship,relationships +relative address,relative addresses +relative adjective,relative adjectives +relative clause,relative clauses +relative complement,relative complements +relative dating,relative datings +relative density,relative densities +relative future tense,relative future tenses +relative humidity,relative humidities +relative key,relative keys +relative pin,relative pins +relative price,relative prices +relative pronoun,relative pronouns +relative pseudo-complement,relative pseudo-complements +relative,relatives +relative superlative,relative superlatives +relative topology,relative topologies +relativism,relativisms +relativist,relativists +relativization,relativizations +relativizer,relativizers +relator,relators +relatrix,relatrices +relatum,relata +relaunch,relaunches +relaxant,relaxants +relaxase,relaxases +relaxation,relaxations +relaxation time,relaxation times +relaxative,relaxatives +relaxer,relaxers +relaxivity,relaxivities +relaxor,relaxors +relaxosome,relaxosomes +relayer,relayers +relay race,relay races +relay,relays +relearner,relearners +release candidate,release candidates +releasee,releasees +releasement,releasements +release mode,release modes +release,releases +releaser,releasers +release version,release versions +releasing hormone,releasing hormones +releasor,releasors +relegate,relegates +relegation,relegations +relegation zone,relegation zones +relenter,relenters +relentment,relentments +relent,relents +relessee,relessees +relessor,relessors +relet,relets +relexification,relexifications +relexifier,relexifiers +reliabilist,reliabilists +reliable,reliables +relick,relicks +relic,relics +Relic Sunday,Relic Sundays +reliction,relictions +relict,relicts +relief agency,relief agencies +relief map,relief maps +relief pitcher,relief pitchers +relief printing,relief printings +relief,reliefs +relief,reliefs +relief valve,relief valves +relief worker,relief workers +relier,reliers +reliever,relievers +relievo,relievos +religation,religations +relighter,relighters +religieuse,religieuses +religionary,religionaries +religioner,religioners +religionist,religionists +religion,religions +religiophobe,religiophobes +religiosity,religiosities +religious leader,religious leaders +religious naturalist,religious naturalists +religious order,religious orders +religious,religious +religious service,religious services +religitard,religitards +relik,reliks +relinquent,relinquents +relinquisher,relinquishers +relinquishment,relinquishments +reliquary,reliquaries +relique,reliques +relish,relishes +rellie,rellies +relly,rellies +reloader,reloaders +reloading,reloadings +reloan,reloans +relocalisation,relocalisations +relocalization,relocalizations +relocatable power tap,relocatable power taps +relocatee,relocatees +relocation,relocations +relocator,relocators +relook,relooks +relo,relos +reluctance motor,reluctance motors +reluctation,reluctations +relvar,relvars +remagnetization,remagnetizations +remailer,remailers +remainderer,remainderers +remainder-man,remainder-men +remainderman,remaindermen +remainder,remainders +remainder trust,remainder trusts +remaining,remainings +remain,remains +remake,remakes +remaker,remakers +remandment,remandments +remanence,remanences +remanent,remanents +remanet,remanets +remanufacturer,remanufacturers +remapper,remappers +remapping,remappings +remarkable pine,remarkable pines +remarker,remarkers +remark,remarks +remark,remarks +remarriage,remarriages +remarried,remarrieds +remasterer,remasterers +remastering,remasterings +rematch,rematches +remberge,remberges +remblai,remblais +Rembrandt,Rembrandts +remediation,remediations +remediator,remediators +remedy,remedies +rememberer,rememberers +remembrance,remembrances +remembrancer,remembrancers +Remembrancer,Remembrancers +remembraunce,remembraunces +rememorization,rememorizations +remenant,remenants +remethylation,remethylations +remex,remiges +reminder,reminders +remineralisation,remineralisations +remineralization,remineralizations +remingtonocetid,remingtonocetids +reminiscence,reminiscences +reminiscent,reminiscents +remipede,remipedes +remiped,remipeds +remise,remises +remission,remissions +remissness,remissnesses +remit,remits +remittal,remittals +remittance man,remittance men +remittance,remittances +remittee,remittees +remitter,remitters +remittitur,remittiturs +remittor,remittors +remixer,remixers +remix,remixes +remixture,remixtures +remizid,remizids +remnant,remnants +remnaunt,remnaunts +remobilisation,remobilisations +remobilization,remobilizations +remodeler,remodelers +remodeling,remodelings +remodeller,remodellers +remonetisation,remonetisations +remonstrance,remonstrances +remonstrant,remonstrants +remonstration,remonstrations +remonstrator,remonstrators +remontoir,remontoirs +remora,remora,remoras +remorid,remorids +remorselessness,remorselessnesses +remortgage,remortgages +remortgager,remortgagers +remote control,remote controls +remote desktop,remote desktops +remote keyless entry,remote keyless entries +remote method invocation,remote method invocations +remote procedure call,remote procedure calls +remote proxy,virtual proxies +remote,remotes +remote sensing scientist,remote sensing scientists +remote surgery,remote surgeries +remote viewer,remote viewers +remotion,remotions +rΓ©moulade,rΓ©moulades +remount,remounts +removalist,removalists +removal,removals +remove,removes +remover,removers +rem,rems +rem,rems +remuda,remudas +remuneration,remunerations +remunerator,remunerators +Renaissance fair,Renaissance fairs +renaissance man,renaissance men +Renaissance man,Renaissance men +renaissance,renaissances +renal angle,renal angles +renalase,renalases +renal cell carcinoma,renal cell carcinomas,renal cell carcinomata +renal clearance,renal clearances +renal corpuscle,renal corpuscles +renal cortex,renal cortexes,renal cortices +renal medulla,renal medullas +rename,renames +renamer,renamers +renaming,renamings +renanthera,renantheras +renascence,renascences +renate,renates +renationalisation,renationalisations +renativization,renativizations +renaturalization,renaturalizations +renaturation,renaturations +rencontre,rencontres +rencounter,rencounters +renderer,renderers +rendering,renderings +render,renders +render,renders +rendevous,rendevous +rendezvous,rendezvouses,rendezvous +rendition,renditions +rendoll,rendolls +rendzina,rendzinas +renegade,renegades +renegado,renegados,renegadoes +renegation,renegations +reneger,renegers +renegotiation,renegotiations +renewable,renewables +renewable resource,renewable resources +renewalist,renewalists +renewal,renewals +renewer,renewers +renewing,renewings +Ren fair,Ren fairs +renga,rengas,renga +renin-angiotensin system,renin-angiotensin systems +renneting,rennetings +rennet,rennets +rennet stomach,rennet stomachs +renogram,renograms +Renoir,Renoirs +renomination,renominations +renopathy,renopathies +renormalisation,renormalisations +renormalization,renormalizations +renormalon,renormalons +renouncement,renouncements +renounce,renounces +renouncer,renouncers +renovation,renovations +renovator,renovators +renovelance,renovelances +renoviction,renovictions +renowme,renowmes +renowner,renowners +ren,renes +ren,rens +rent-a-cop,rent-a-cops +rent-a-crowd,rent-a-crowds +rental,rentals +rent-a-quote,rent-a-quotes +rent boy,rent boys +rentboy,rentboys +rent control,rent controls +rentee,rentees +rente,rentes +renterer,renterers +renter,renters +rentier,rentiers +rentor,rentors +rent,rents +rent,rents +rent seeker,rent seekers +rent strike,rent strikes +renumberer,renumberers +renumbering,renumberings +renunciant,renunciants +renunciate,renunciates +renunciation,renunciations +renversement,renversements +reoccurrence,reoccurrences +re-odorant,re-odorants +reodorant,reodorants +reoffence,reoffences +reoffender,reoffenders +reoffense,reoffenses +reoffer,reoffers +reometer,reometers +reopener,reopeners +reoperation,reoperations +reorderer,reorderers +reordering,reorderings +reorganisation,reorganisations +reorganization,reorganizations +reorg,reorgs +reorientation,reorientations +reorthogonalization,reorthogonalizations +reostat,reostats +reotrope,reotropes +reovirus,reoviruses +reoxidation,reoxidations +repackager,repackagers +repackaging,repackagings +repacker,repackers +repaint,repaints +repairer,repairers +repair heddle,repair heddles +repairing,repairings +repairman,repairmen +repairperson,repairpersons,repairpeople +repair,repairs +repair,repairs +repairwoman,repairwomen +repapering,repaperings +reparability,reparabilities +reparameterization,reparameterizations +reparametrization,reparametrizations +reparation,reparations +reparative,reparatives +reparative therapy,reparative therapies +reparse point,reparse points +repartee,repartees +repartimiento,repartimientos +repartition,repartitions +repaste,repastes +repaster,repasters +repat,repats +repatriate,repatriates +repatriation,repatriations +repaver,repavers +repayer,repayers +repayment,repayments +repdigit,repdigits +repealer,repealers +repeal,repeals +repeater,repeaters +repeating decimal,repeating decimals +repeat offender,repeat offenders +repeat,repeats +repeat unit,repeat units +repechage,repechages +repΓͺchage,repΓͺchages +repedation,repedations +repellant,repellants +repellent,repellents +repeller,repellers +repellor,repellors +repentant,repentants +repenter,repenters +repentista,repentistas +repercussion,repercussions +repercussive,repercussives +reperforator,reperforators +repertoire,repertoires +rΓ©pertoire,rΓ©pertoires +repertory,repertories +repetency,repetencies +repetend,repetends +repetiteur,repetiteurs +repetitioner,repetitioners +repetition,repetitions +repetitor,repetitors +repfigit number,repfigit numbers +rephasing,rephasings +rephosphorylation,rephosphorylations +rephotographer,rephotographers +rephrasing,rephrasings +repiner,repiners +repining,repinings +replacee,replacees +replacement,replacements +replacer,replacers +replanner,replanners +replanning,replannings +replantation,replantations +replastering,replasterings +replay attack,replay attacks +replayer,replayers +replay,replays +repleader,repleaders +replenisher,replenishers +replenishment,replenishments +replete,repletes +replevinger,replevingers +replevin,replevins +replicant,replicants +replica,replicas +replicated worker,replicated workers +replicate,replicates +replication fork,replication forks +replication,replications +replicator,replicators +replicon,replicons +replier,repliers +replisome,replisomes +replum,replums +replyer,replyers +reply,replies +repmobile,repmobiles +repogle,repogles +repointing,repointings +repolarisation,repolarisations +repolarization,repolarizations +repo man,repo men +repopulation,repopulations +repopulator,repopulators +repo,repos +report card,report cards +reporter,reporters +reporting,reportings +reporting verb,reporting verbs +reportor,reportors +reportour,reportours +report,reports +reposado,reposados +reposal,reposals +reposer,reposers +repositioner,repositioners +repositioning,repositionings +repositor,repositors +repository,repositories +repossessor,repossessors +reposting,repostings +repost,reposts +repoussoir,repoussoirs +reprehender,reprehenders +reprehensible,reprehensibles +reprehension,reprehensions +repreparation,repreparations +rep,reps +rep,reps +representable functor,representable functors +representamen,representamina,representamens +representant,representants +representationalist,representationalists +representation,representations +representation term,representation terms +representation theorist,representation theorists +representative democracy,representative democracies +representative element,representative elements +representative fraction,representative fractions +representative government,representative governments +representative,representatives +representer,representers +representment,representments +representor,representors +represser,repressers +repressilator,repressilators +repressing,repressings +repression,repressions +repressor,repressors +repreve,repreves +repricing,repricings +reprieval,reprievals +reprieve,reprieves +reprimander,reprimanders +reprimand,reprimands +reprimer,reprimers +reprinter,reprinters +reprinting,reprintings +reprint,reprints +reprioritisation,reprioritisations +reprioritization,reprioritizations +reprisal,reprisals +reprise,reprises +reprivatization,reprivatizations +reproacher,reproachers +reproach,reproaches +reprobate,reprobates +reprobater,reprobaters +reprobationer,reprobationers +reprobation,reprobations +reprocessor,reprocessors +reproducer,reproducers +reproductive organ,reproductive organs +reproductive,reproductives +reprogrammer,reprogrammers +reproof,reproofs +repro,repros +reproval,reprovals +reprover,reprovers +reptile,reptiles +reptile room,reptile rooms +reptilian,reptilians,reptilia +reptilium,reptilia +reptiloid,reptiloids +reptoid,reptoids +Reptonian,Reptonians +repton,reptons +republicanist,republicanists +republican marriage,republican marriages +Republican Marriage,Republican Marriages +republican,republicans +Republican,Republicans +republication,republications +republick,republicks +Republicrat,Republicrats +republic,republics +republique,republiques +republisher,republishers +repudiation,repudiations +repudiator,repudiators +repugnance,repugnances +repugnaunce,repugnaunces +repugner,repugners +repulse,repulses +repulser,repulsers +repulsion motor,repulsion motors +repulsion,repulsions +repumping,repumpings +repunit,repunits +repurchase,repurchases +repurchaser,repurchasers +reputation,reputations +requalification,requalifications +requel,requels +requester,requesters +request for admission,requests for admission +request for production,requests for production +request for proposal,requests for proposal +requestor,requestors +request,requests +requiem,requiems +requiem shark,requiem sharks +requiescat,requiescats +requietory,requietories +requin,requins +requinto,requintos +requirement,requirements +requirements contract,requirements contracts +requirer,requirers +requisite,requisites +requisitioner,requisitioners +requisitionist,requisitionists +requisition,requisitions +requisitive,requisitives +requisitor,requisitors +requital,requitals +requiter,requiters +reradiation,reradiations +rerage,rerages +rerailer,rerailers +reraise,reraises +rereader,rereaders +rereading,rereadings +rerebrace,rerebraces +rerecording,rerecordings +re-record,re-records +rerecord,rerecords +reredemain,reredemains +reredos,reredoses +rerefief,rerefiefs +re-release,re-releases +rerelease,rereleases +reremain,reremains +reremouse,reremice +rere,reres +re-restitution,re-restitutions +rerestitution,rerestitutions +rereviewer,rereviewers +rereward,rerewards +rerouter,rerouters +rerouting,reroutings +re-run,re-runs +rerun,reruns +resale,resales +resaler,resalers +resampler,resamplers +resampling,resamplings +rescaling,rescalings +rescattering,rescatterings +rescheduler,reschedulers +rescinder,rescinders +rescindment,rescindments +rescission,rescissions +rescreening,rescreenings +rescript,rescripts +rescue dog,rescue dogs +rescuee,rescuees +rescueman,rescuemen +rescue mission,rescue missions +rescue,rescues +rescuer,rescuers +rescussor,rescussors +researcher,researchers +research octane number,research octane numbers +research paper,research papers +resectability,resectabilities +resection,resections +resectoscope,resectoscopes +reseda,resedas +reselection,reselections +reseller,resellers +resel,resels +resemblance,resemblances +resemblaunce,resemblaunces +resembler,resemblers +resensitization,resensitizations +resenter,resenters +resentfulness,resentfulnesses +resentiment,resentiments +resequestration,resequestrations +reservance,reservances +reservationist,reservationists +reservation,reservations +reservatory,reservatories +reserve bank,reserve banks +reserve currency,reserve currencies +reservedness,reservednesses +reserved word,reserved words +reservee,reservees +reserve price,reserve prices +reserve,reserves +reserver,reservers +reservist,reservists +reservoir,reservoirs +reservor,reservors +reset button,reset buttons +reset,resets +reset,resets +Reset,Resets +resetter,resetters +resettler,resettlers +reshaper,reshapers +reshaping,reshapings +resharpening,resharpenings +reshipper,reshippers +reshipping,reshippings +reshoot,reshoots +reshowing,reshowings +reshuffle,reshuffles +reshuffler,reshufflers +reshuffling,reshufflings +resiant,resiants +resiaunt,resiaunts +residence,residences +residence time,residence times +residency,residencies +resident alien,resident aliens +residenter,residenters +residentiary,residentiaries +resident,residents +resider,residers +residual power,residual powers +residual,residuals +residual risk,residual risks +residual volume,residual volumes +residuary clause,residuary clauses +residuary devise,residuary devises +residuary estate,residuary estates +residuary legatee,residuary legatees +residue class,residue classes +residue,residues +residuum,residua +resighting,resightings +resignation,resignations +resignee,resignees +resigner,resigners +resimulation,resimulations +resin acid,resin acids +resinate,resinates +resistance distance,resistance distances +resistant,resistants +resistaunce,resistaunces +resister,resisters +resistin,resistins +resistome,resistomes +resistor,resistors +resist,resists +resit,resits +resitting,resittings +resizer,resizers +res judicata,res judicatae +resoling,resolings +resolutioner,resolutioners +resolutionist,resolutionists +resolution,resolutions +resolvase,resolvases +resolvent,resolvents +resolve,resolves +resolver,resolvers +resolving power,resolving powers +resolvin,resolvins +resomation,resomations +resonance energy,resonance energies +resonance hybrid,resonance hybrids +resonating chamber,resonating chambers +resonation,resonations +resonator,resonators +resorption,resorptions +resorter,resorters +resort fee,resort fees +resort,resorts +resort,resorts +resort,resorts +resounding,resoundings +resource energy,resource energies +resourcefulness,resourcefulnesses +resource,resources +resowing,resowings +respacing,respacings +respecification,respecifications +respeck,respecks +respec',respec's +respecter,respecters +respectfulness,respectfulnesses +respeller,respellers +respelling,respellings +respersion,respersions +respiration,respirations +respirator,respirators +respiratory pigment,respiratory pigments +respiratory practitioner,respiratory practitioners +respiratory rate,respiratory rates +respiratory syncytial virus,respiratory syncytial viruses +respiratory system,respiratory systems +respiratory tract,respiratory tracts +respire,respires +respirocyte,respirocytes +respirologist,respirologists +respirometer,respirometers +respite,respites +respit,respits +resplendency,resplendencies +respondee,respondees +respondence,respondences +respondentia,respondentias +respondent,respondents +responder,responders +responding variable,responding variables +respond,responds +responsal,responsals +response,responses +response time,response times +responsibility,responsibilities +responsion,responsions +responsivity,responsivities +responsorial,responsorials +responsory,responsories +respotted black,respotted blacks +respraying,resprayings +respray,resprays +RESP,RESPs +res,reses +ressaldar,ressaldars +restaging,restagings +rest area,rest areas +restarter,restarters +restart,restarts +restatement,restatements +Restatement,Restatements +restaurant car,restaurant cars +restauranteer,restauranteers +restauranter,restauranters +restauranteur,restauranteurs +restaurantgoer,restaurantgoers +restaurant,restaurants +restaurateur,restaurateurs +rest energy,rest energies +restenosis,restenoses +rester,resters +restframe,restframes +restharrow,restharrows +resthold,restholds +rest home,rest homes +resthouse,resthouses +restiff,restiffs +restimulation,restimulations +resting-place,resting-places +resting potential,resting potentials +resting spore,resting spores +restitute,restitutes +restitutor,restitutors +restless leg syndrome,restless leg syndromes +rest mass,rest masses +restmass,restmasses +restocker,restockers +restocking,restockings +restoral,restorals +Restorationer,Restorationers +restorationist,restorationists +restoration,restorations +restorative,restoratives +restorator,restorators +restore,restores +restorer,restorers +resto,restos +restrainer,restrainers +restraining order,restraining orders +restraint of trade,restraints of trade +restreak,restreaks +restricted function,restricted functions +restriction enzyme,restriction enzymes +restrictionist,restrictionists +restriction,restrictions +restrictive covenant,restrictive covenants +restrictor,restrictors +restrike,restrikes +restringent,restringents +rest room,rest rooms +restroom,restrooms +restructuration,restructurations +restructurer,restructurers +restructuring,restructurings +restyler,restylers +resubmission,resubmissions +resultant,resultants +resultate,resultates +resulting trust,resulting trusts +result,results +resultset,resultsets +resume,resumes +resumΓ©,resumΓ©s +rΓ©sumΓ©,rΓ©sumΓ©s +resumption,resumptions +resumptive pronoun,resumptive pronouns +resurfacer,resurfacers +resurgence,resurgences +resurgent,resurgents +resurging,resurgings +resurrectee,resurrectees +resurrectionist,resurrectionists +resurrection,resurrections +resurrector,resurrectors +re-surveillance,re-surveillances +resuscitant,resuscitants +resuscitation,resuscitations +resuscitator,resuscitators +resuspension,resuspensions +resynchronisation,resynchronisations +resync,resyncs +resynthesis,resyntheses +retable,retables +retablo,retablos +retagger,retaggers +retailer,retailers +retailor,retailors +retail pharmacy,retail pharmacies +retainer,retainers +retaining wall,retaining walls +retainment,retainments +retake,retakes +retaker,retakers +retaliator,retaliators +retardant,retardants +retardate,retardates +retardation,retardations +retarder,retarders +retardment,retardments +retard,retards +retch,retches +retcon,retcons +retection,retections +retection,retections +reteller,retellers +retelling,retellings +rete mirabile,retia mirabilia +rete mirabilis,retia mirabilia +retem,retems +retentate,retentates +retention line,retention lines +retention,retentions +retentive,retentives +retentivity,retentivities +retentor,retentors +retentostat,retentostats +retent,retents +retepore,retepores +rete,retia +retest,retests +rete testis,retia testes +retexture,retextures +rethinker,rethinkers +rethinking,rethinkings +rethink,rethinks +rethor,rethors +retiarius,retiari,retiarii +retiary,retiaries +reticle,reticles +reticular formation,reticular formations +reticularian,reticularians +reticulated python,reticulated pythons +reticulated water,reticulated waters +reticulation,reticulations +reticule,reticules +reticulin,reticulins +reticuloceratid,reticuloceratids +reticulocyte,reticulocytes +reticuloendotheliosis,reticuloendothelioses +reticulon,reticulons +reticulopodium,reticulopodia +reticulorumen,reticulorumens +reticulum,reticula +retinaculum,retinacula +retinal,retinals +retinamide,retinamides +retina,retinas,retinae,retinΓ¦ +retinene,retinenes +retineum,retinea +retinite,retinites +retinitis,retinitides +retinoate,retinoates +retinoblastoma protein,retinoblastoma proteins +retinoblastoma,retinoblastomas,retinoblastomata +retinoblast,retinoblasts +retinoid,retinoids +retinopathy,retinopathies +retinophora,retinophorae +retinoscope,retinoscopes +retinotomy,retinotomies +retinue,retinues +retinula,retinulas,retinulae +retinyl,retinyls +retirade,retirades +retiral,retirals +retiree,retirees +retirement home,retirement homes +retire,retires +retirer,retirers +retooler,retoolers +retooling,retoolings +retorsion,retorsions +retortamonad,retortamonads +retorter,retorters +retortion,retortions +retort,retorts +retort,retorts +retort stand,retort stands +retoucher,retouchers +retouching,retouchings +retouch,retouches +retracement,retracements +retrace,retraces +retracing,retracings +retractable,retractables +retraction,retractions +retractive,retractives +retractor,retractors +retrainee,retrainees +retrainer,retrainers +retrait,retraits +retrait,retraits +retranscription,retranscriptions +retranslator,retranslators +retransmitter,retransmitters +retransplantation,retransplantations +retraversal,retraversals +retraxit,retraxits +retread,retreads +retread,retreads +retreatant,retreatants +re-treatment,re-treatments +retreatment,retreatments +retreat,retreats +retrenchment,retrenchments +retrial,retrials +retributer,retributers +retributionist,retributionists +retribution,retributions +retributivist,retributivists +retrieval,retrievals +retrievement,retrievements +retrieve,retrieves +retriever,retrievers +retriment,retriments +retroaction,retroactions +retroactive law,retroactive laws +retroaddition,retroadditions +retrochoir,retrochoirs +retrocopy,retrocopies +retrocycloaddition,retrocycloadditions +retrodismutation,retrodismutations +retroelement,retroelements +retrofit,retrofits +retrofitter,retrofitters +retroflection,retroflections +retroflector,retroflectors +retroflex,retroflexes +retrogamer,retrogamers +retrogene,retrogenes +retrograde amnesia,retrograde amnesias +retrograde inversion,retrograde inversions +retrograde motion,retrograde motions +retrograde neurotransmitter,retrograde neurotransmitters +retrograde,retrogrades +retrogression,retrogressions +retroinhibition,retroinhibitions +retrojet,retrojets +retromingent,retromingents +retromoderator,retromoderators +retronym,retronyms +retropepsin,retropepsins +retrophile,retrophiles +retropinnid,retropinnids +retroplumid,retroplumids +retroposition,retropositions +retroposon,retroposons +retropseudogene,retropseudogenes +retroreflector,retroreflectors +retro,retros,retroes +retrorocket,retrorockets +retroscape,retroscapes +retrosexual,retrosexuals +retrospection,retrospections +retrospective determinism,retrospective determinisms +retrospective memory,retrospective memorys +retrospective,retrospectives +retrospect,retrospects +retrotort,retrotorts +retrotranscript,retrotranscripts +retrotranslocation,retrotranslocations +retrotransposon,retrotransposons +retrovirus,retroviruses +retry,retries +retter,retters +rettery,retteries +retting,rettings +retubing,retubings +retuning,retunings +returnable,returnables +return ace,return aces +return ball,return balls +return crease,return creases +return demonstration,return demonstrations +returnee,returnees +returner,returners +returning officer,returning officers +return pass,return passes +return,returns +returnship,returnships +return spring,return springs +return ticket,return tickets +return to form,returns to form +retusid,retusids +retweet,retweets +Reuben,Reubens +Reuleaux triangle,Reuleaux triangles +reule,reules +reume,reumes +reunification,reunifications +Reunionese,Reunioneses +re-union,re-unions +reunion,reunions +reΓΌnion,reΓΌnions +reuniter,reuniters +reupholsterer,reupholsterers +reusability,reusabilities +re-use,re-uses +reuse,reuses +re-user,re-users +reuser,reusers +revaccination,revaccinations +revalidation,revalidations +revalorising,revalorisings +revalorization,revalorizations +revalorizing,revalorizings +revaluation,revaluations +revaluer,revaluers +revamper,revampers +revamping,revampings +revanche,revanches +revanchist,revanchists +revascularisation,revascularisations +revascularization,revascularizations +revealed check,revealed checks +revealer,revealers +revealment,revealments +reveal,reveals +reveille,reveilles +revelationist,revelationists +revelation,revelations +revelator,revelators +reveler,revelers +reveling,revelings +reveller,revellers +revelling,revellings +revelment,revelments +revel,revels +revel,revels +revelry,revelries +revenant,revenants +revengement,revengements +revenger,revengers +revenooer,revenooers +revenue bill,revenue bills +revenue cutter,revenue cutters +revenue,revenues +revenuer,revenuers +revenue sharing grant,revenue sharing grants +revenue stamp,revenue stamps +reverberation,reverberations +reverberator,reverberators +reverberatory furnace,reverberatory furnaces +reverberatory,reverberatories +reverencer,reverencers +reverend,reverends +Reverend,Reverends +revere,reveres +reverer,reverers +reve,reves +reverie,reveries +reveromycin,reveromycins +rever,revers +reversal,reversals +reverse 911 call,reverse 911 calls +reverse cascade,reverse cascades +reverse commute,reverse commutes +reverse commuter,reverse commuters +reverse cowgirl position,reverse cowgirl positions +reverse dowry,reverse dowries +reverse-dowry,reverse-dowries +reverse dunk,reverse dunks +reverse-engineer,reverse-engineers +reverse fault,reverse faults +reverse ferret,reverse ferrets +reverse intaglio,reverse intaglios +reverse jinx,reverse jinxes +reverse layup,reverse layups +reverse link,reverse links +reverse mortgage,reverse mortgages +reverse pass,reverse passes +reverse pickpocket,reverse pickpockets +reverse proxy,reverse proxies +reverse question,reverse questions +reverse,reverses +reverser,reversers +reverse shot,reverse shots +reverse sweep,reverse sweeps +reversionary,reversionaries +reversioner,reversioners +reversionist,reversionists +revers,revers +revertee,revertees +revertent,revertents +reverter,reverters +revert,reverts +revert war,revert wars +revery,reveries +revestiary,revestiaries +revestry,revestries +revetment,revetments +revhead,revheads +revictimization,revictimizations +reviewal,reviewals +reviewee,reviewees +reviewer,reviewers +reviewing,reviewings +review,reviews +revilement,revilements +reviler,revilers +reviling,revilings +revisal,revisals +revise,revises +reviser,revisers +revisionist,revisionists +revisitor,revisitors +revisit,revisits +revisor,revisors +revitalisation,revitalisations +revitalization,revitalizations +revitalizer,revitalizers +revivability,revivabilities +revivalist,revivalists +revival,revivals +reviver,revivers +revivifier,revivifiers +revivor,revivors +revocation,revocations +revoke,revokes +revoker,revokers +revolter,revolters +revolt,revolts +revolutionary,revolutionaries +revolutioner,revolutioners +revolutionist,revolutionists +revolutionizer,revolutionizers +revolution,revolutions +revolver,revolvers +revolving door,revolving doors +revolving loan,revolving loans +revote,revotes +rev,revs +revue,revues +revulsive,revulsives +revver,revvers +revving,revvings +rewakening,rewakenings +rewarder,rewarders +reward,rewards +rewash,rewashes +rewet,rewets +rewetting,rewettings +rewinder,rewinders +rewinding,rewindings +rewind,rewinds +rewiring,rewirings +rewording,rewordings +reworker,reworkers +reworking,reworkings +rew,rews +rewriteman,rewritemen +rewrite,rewrites +rewriter,rewriters +rewriting,rewritings +Rexed lamina,Rexed laminae +rexinoid,rexinoids +Rexist,Rexists +rex-pat,rex-pats +rex-patriate,rex-patriates +rex,rexes +Reykjaviker,Reykjavikers +Reykjavikian,Reykjavikians +reynard,reynards +reyn,reyns +rezoning,rezonings +rez,rezes +RFID chip,RFID chips +RFID,RFIDs +RFLP,RFLPs +RG,RGs +RGY laser,RGY lasers +rhabdite,rhabdites +rhabditid,rhabditids +rhabdodontid,rhabdodontids +rhabdolith,rhabdoliths +rhabdomantist,rhabdomantists +rhabdomere,rhabdomeres +rhabdom,rhabdoms +rhabdomyoblast,rhabdomyoblasts +rhabdomyolysis,rhabdomyolyses +rhabdomyosarcoma,rhabdomyosarcomas,rhabdomyosarcomata +rhabdophane,rhabdophanes +rhabdopholist,rhabdopholists +rhabdopleurid,rhabdopleurids +rhabdosome,rhabdosomes +rhabdosphere,rhabdospheres +rhabdosphincter,rhabdosphincters +rhabdovirus,rhabdoviruses +rhachiberothid,rhachiberothids +rhachilla,rhachillas,rhachillae +rhachis,rhachises +rhacophorid,rhacophorids +Rhadamanthus,Rhadamanthuses +rhadinorhynchid,rhadinorhynchids +rhadinovirus,rhadinoviruses +Rhaetian,Rhaetians +RhΓ¦tian,RhΓ¦tians +rhagade,rhagades +rhagionid,rhagionids +rhaita,rhaitas +rhamnogalacturonan,rhamnogalacturonans +rhamnopyranose,rhamnopyranoses +rhamnose,rhamnoses +rhamnoside,rhamnosides +rhamnosyl,rhamnosyls +rhamnulokinase,rhamnulokinases +rhamnulose,rhamnuloses +rhamnus,rhamnuses +rhamphastid,rhamphastids +rhamphichthyid,rhamphichthyids +rhamphorhynchid,rhamphorhynchids +rhamphorhynchoid,rhamphorhynchoids +rhamphotheca,rhamphothecae +rhandir,rhandirs +rhaphe,rhaphes +rhaphide,rhaphides +rhaphidophorid,rhaphidophorids +rhapsode,rhapsodes +rhapsoder,rhapsoders +rhapsodist,rhapsodists +rhapsody,rhapsodies +rhason,rhasons +rhea,rheas +rhebok,rheboks +rhedarium,rhedariums +rhegma,rhegmas +rheid,rheids +rheinberry,rheinberries +rheme,rhemes +rhenate,rhenates +rheobase,rheobases +rheochord,rheochords +rheoencephalograph,rheoencephalographs +rheogoniometer,rheogoniometers +rheological lithosphere,rheological lithospheres +rheologist,rheologists +rheology,rheologies +rheometer,rheometers +rheomode,rheomodes +rheomotor,rheomotors +rheophile,rheophiles +rheophore,rheophores +rheophyte,rheophytes +rheoplethysmograph,rheoplethysmographs +rheoscope,rheoscopes +rheostat,rheostats +rheotome,rheotomes +rheotrope,rheotropes +Rhesus factor,Rhesus factors +rhesus macaque,rhesus macaques +rhesus monkey,rhesus monkeys +rhesus,rhesuses +rhetorical device,rhetorical devices +rhetorical mode,rhetorical modes +rhetorical question,rhetorical questions +rhetorication,rhetorications +rhetorician,rhetoricians +rhetoritian,rhetoritians +rhetoritician,rhetoriticians +rhetor,rhetors +rheumatic,rheumatics +rheumatoid arthritis,rheumatoid arthritides +rheumatologist,rheumatologists +rhexia,rhexias +RHIB,RHIBs +rhime,rhimes +rhinarium,rhinariums +rhinaster,rhinasters +rhinatrematid,rhinatrematids +rhincodontid,rhincodontids +rhinectomy,rhinectomies +Rhinegrave,Rhinegraves +rhinencephalon,rhinencephala +rhine,rhines +rhinestone,rhinestones +rhinesuchid,rhinesuchids +rhineurid,rhineurids +rhinid,rhinids +rhinitis,rhinitides +rhinobatid,rhinobatids +rhinoceros beetle,rhinoceros beetles +rhinoceros,rhinoceros,rhinoceroses,rhinoceri,rhinocerotes +rhinocerote,rhinocerotes +rhinocerotid,rhinocerotids +rhinocerot,rhinocerots,rhinocerotes +rhinochimaerid,rhinochimaerids +rhinocryptid,rhinocryptids +rhinodermatid,rhinodermatids +rhinolith,rhinoliths +rhinologist,rhinologists +rhinolophid,rhinolophids +rhinomanometer,rhinomanometers +rhinonyssid,rhinonyssids +rhinophid,rhinophids +rhinophore,rhinophores +rhinophorid,rhinophorids +rhinophrynid,rhinophrynids +rhinophyma,rhinophymas,rhinophymata +rhinoplasty,rhinoplasties +rhinopomatid,rhinopomatids +rhinopome,rhinopomes +rhino,rhinos +rhinorrhagia,rhinorrhagias +rhinorrhea,rhinorrheas +rhinoscleroma,rhinoscleromas,rhinoscleromata +rhinoscope,rhinoscopes +rhinoscopist,rhinoscopists +rhinotermitid,rhinotermitids +rhinotorid,rhinotorids +rhinovirus,rhinoviruses +rhipiphorid,rhipiphorids +rhizine,rhizines +rhizobacterium,rhizobacteria +rhizobium,rhizobia +rhizodeposit,rhizodeposits +rhizodontid,rhizodontids +rhizodont,rhizodonts +rhizogen,rhizogens +rhizoid,rhizoids +rhizolite,rhizolites +rhizolith,rhizoliths +rhizoma,rhizomas +rhizome,rhizomes +rhizomorph,rhizomorphs +rhizomyid,rhizomyids +rhizopathy,rhizopathies +rhizoplane,rhizoplanes +rhizopod,rhizopods +rhizosphere,rhizospheres +rhizostome,rhizostomes +rhizotomist,rhizotomists +rhizotomy,rhizotomies +rhizotron,rhizotrons +rhodacarid,rhodacarids +rhodamine,rhodamines +rhodamin,rhodamins +rhodanate,rhodanates +rhodation,rhodations +Rhode Islander,Rhode Islanders +Rhodesian,Rhodesians +Rhodesian Ridgeback,Rhodesian Ridgebacks +Rhodian,Rhodians +Rhodie bar,Rhodie bars +Rhodie,Rhodies +rhodizite,rhodizites +rhodizonate,rhodizonates +rhodocene,rhodocenes +rhododendron,rhododendrons +rhodolite,rhodolites +rhodomontade,rhodomontades +rhodomontader,rhodomontaders +rhodophyte,rhodophytes +rhodopid,rhodopids +rhodosperm,rhodosperms +rhodplumsite,rhodplumsites +rhomaleosaurid,rhomaleosaurids +rhombencephalon,rhombencephalons +rhombicosidodecahedron,rhombicosidodecahedrons +rhombicuboctahedron,rhombicuboctahedrons,rhombicuboctahedra +rhombihexahedron,rhombihexahedrons +rhombitruncated icosidodecahedron,rhombitruncated icosidodecahedrons +rhomboganoid,rhomboganoids +rhombogene,rhombogenes +rhombohedron,rhombohedra,rhombohedrons +rhomboid protease,rhomboid proteases +rhomboid,rhomboids +rhombomere,rhombomeres +rhomb,rhombs +rhombus,rhombi,rhombuses +rhonchus,rhonchi +rhone,rhones +rhopalid,rhopalids +rhopalium,rhopalia +rhopalosomatid,rhopalosomatids +rhoptry,rhoptries +rho,rhos +Rho,Rhos +rhumb line,rhumb lines +rhumb-line,rhumb-lines +rhumbline,rhumblines +rhumb,rhumbs +RHU,RHUs +rhyacichthyid,rhyacichthyids +rhyacophilid,rhyacophilids +rhyacotritonid,rhyacotritonids +rhykenologist,rhykenologists +rhyku,rhykus +rhyme royal,rhymes royal +rhymer,rhymers +rhyme scheme,rhyme schemes +rhymester,rhymesters +rhymist,rhymists +rhynchitid,rhynchitids +rhynchobatid,rhynchobatids +rhynchocephalian,rhynchocephalians +rhynchocinetid,rhynchocinetids +rhynchodipterid,rhynchodipterids +rhyncholite,rhyncholites +rhynchonella,rhynchonellas +rhynchopid,rhynchopids +rhynchosaurid,rhynchosaurids +rhynchosaur,rhynchosaurs +rhynchosporium,rhynchosporia +rhyne,rhynes +rhyniophyte,rhyniophytes +rhyparochromid,rhyparochromids +rhyphid,rhyphids +rhysimeter,rhysimeters +rhysodid,rhysodids +rhythmer,rhythmers +rhythm guitar,rhythm guitars +rhythmic gesture,rhythmic gestures +rhythmicity,rhythmicities +rhythmicon,rhythmicons +rhythmic unit,rhythmic units +rhythmite,rhythmites +rhythm method,rhythm methods +rhythmometer,rhythmometers +rhythm,rhythms +rhythm section,rhythm sections +rhythm stick,rhythm sticks +rhytidectomy,rhytidectomies +rhytide,rhytides +rhytidid,rhytidids +rhytidoplasty,rhytidoplasties +rhytidosteid,rhytidosteids +rhytid,rhytids +rhytina,rhytinas +rhyton,rhytons,rhyta +riad,riads +rial,rials +ria,rias +riata,riatas +ribaldo,ribaldos +ribald,ribalds +ribaldry,ribaldries +riband,ribands +riban,ribans +ribat,ribats +ribaudequin,ribaudequins +ribaud,ribauds +ribauld,ribaulds +ribband,ribbands +ribband,ribbands +ribbed vault,ribbed vaults +ribber,ribbers +ribbie,ribbies +ribbit,ribbits +ribbok,ribboks +ribbonfish,ribbonfishes,ribbonfish +Ribbonman,Ribbonmen +ribbon representation,ribbon representations +ribbon,ribbons +ribbon seal,ribbon seals +ribbonwood,ribbonwoods +rib cage,rib cages +rib-cage,rib-cages +ribcage,ribcages +riberry,riberries +ribeye,ribeyes +rib eye steak,rib eye steaks +ribeye steak,ribeye steaks +ribgrass,ribgrasses +ribibe,ribibes +ribible,ribibles +ribin,ribins +ribityl,ribityls +riblet,riblets +ribofuranose,ribofuranoses +ribofuranoside,ribofuranosides +ribofuranosyl,ribofuranosyls +ribokinase,ribokinases +ribolyser,ribolysers +ribonuclease,ribonucleases +ribonucleoparticle,ribonucleoparticles +ribonucleoprotein,ribonucleoproteins +ribonucleoside,ribonucleosides +ribonucleotide,ribonucleotides +ribophorin,ribophorins +ribopolymer,ribopolymers +riboprobe,riboprobes +ribopyranose,ribopyranoses +ribopyranoside,ribopyranosides +riboregulator,riboregulators +ribose nucleic acid,ribose nucleic acids +riboside,ribosides +ribosome,ribosomes +ribosomopathy,ribosomopathies +riboswitch,riboswitches +ribosylation,ribosylations +ribosylhydrolase,ribosylhydrolases +ribosyl,ribosyls +ribosyltransferase,ribosyltransferases +ribotide,ribotides +ribotoxin,ribotoxins +ribotype,ribotypes +ribovirus,riboviruses +ribozyme,ribozymes +rib,ribs +RIB,RIBs +ribroast,ribroasts +Ribston pippin,Ribston pippins +rib-tickler,rib-ticklers +ribulokinase,ribulokinases +ribwort,ribworts +ricaniid,ricaniids +Rican,Ricans +Ricardian,Ricardians +ricasso,ricassos +rice ball,rice balls +riceball,riceballs +ricebird,ricebirds +rice bowl,rice bowls +riceburger,riceburgers +rice burner,rice burners +rice cake,rice cakes +rice car,rice cars +rice chaser,rice chasers +rice cooker,rice cookers +ricefish,ricefishes,ricefish +rice flour,rice flours +ricegrower,ricegrowers +rice king,rice kings +Rice Krispie square,Rice Krispie squares +rice malt,rice malts +rice noodle,rice noodles +rice paddy,rice paddies +rice queen,rice queens +rice-queen,rice-queens +rice rat,rice rats +ricercare,ricercares +ricercar,ricercars +rice,rices +rice rocket,rice rockets +ricer,ricers +rice shell,rice shells +rice vinegar,rice vinegars +rice weevil,rice weevils +richardiid,richardiids +Richard Snary,Richard Snaries +rich client,rich clients +richdom,richdoms +riche,riches +rich Internet application,rich Internet applications +rich tea biscuit,rich tea biscuits +richterite,richterites +Richter scale,Richter scales +richweed,richweeds +ricinoleate,ricinoleates +ricinolein,ricinoleins +ricker,rickers +rickettsia,rickettsias,rickettsiae +rickettsiosis,rickettsioses +rickey,rickeys +Rickey,Rickeys +rickle o' banes,rickles o' banes +rickle o' bones,rickles o' bones +rickle of banes,rickles of banes +rickle of bones,rickles of bones +rickle,rickles +rickrack,rickracks +rick,ricks +rick,ricks +ricksha,rickshas +rickshaw,rickshaws +rickstand,rickstands +ricochet,ricochets +Rico Suave,Rico Suaves +ricture,rictures +rictus,rictuses +riddance,riddances +ridder,ridders +riddim,riddims +riddle,riddles +riddle,riddles +riddler,riddlers +riddle stick,riddle sticks +ride along,ride alongs +ridealong,ridealongs +ride cymbal,ride cymbals +ride height,ride heights +ride,rides +rider,riders +rideshare,rideshares +ridesharer,ridesharers +ride up,ride ups +ridgeback,ridgebacks +ridge beam,ridge beams +ridgebone,ridgebones +ridge course,ridge courses +ridgehead,ridgeheads +ridgelet,ridgelets +ridgeline,ridgelines +ridgeling,ridgelings +ridgel,ridgels +Ridgen's penguin,Ridgen's penguins +ridgepiece,ridgepieces +ridgeplate,ridgeplates +ridgepole,ridgepoles +ridge,ridges +ridgerope,ridgeropes +ridge-runner,ridge-runners +ridgeside,ridgesides +ridgetop,ridgetops +ridge vent,ridge vents +ridgeway,ridgeways +ridgling,ridglings +ridiculer,ridiculers +ridiculosity,ridiculosities +riding crop,riding crops +riding habit,riding habits +riding halter,riding halters +riding hood,riding hoods +riding,ridings +riding,ridings +riding whip,riding whips +ridley,ridleys +ridotto,ridottos,ridottoes +riebeckite,riebeckites +riel,riels +Riemannian manifold,Riemannian manifolds +Riemann integral,Riemann integrals +Riemann space,Riemann spaces +Riemann sphere,Riemann spheres +Riemann surface,Riemann surfaces +Rieske protein,Rieske proteins +riesling,rieslings +Riesling,Rieslings +rifamycin,rifamycins +riffage,riffages +riffle,riffles +riffler,rifflers +riff,riffs +riflebird,riflebirds +rifled slug,rifled slugs +rifle green,rifle greens +rifleman,riflemen +rifle pit,rifle pits +rifle range,rifle ranges +rifle,rifles +rifler,riflers +riflery,rifleries +riflescope,riflescopes +riflewoman,riflewomen +rifling,riflings +riflip,riflips +rifter,rifters +rift,rifts +rift valley,rift valleys +rigadoon,rigadoons +Riga fir,Riga firs +Rigan,Rigans +rigaudon,rigaudons +Rigellian,Rigellians +rigger,riggers +rigging,riggings +riggle,riggles +riggot,riggots +right-about,right-abouts +rightabout,rightabouts +right-angled triangle,right-angled triangles +right angle,right angles +rightard,rightards +right ascension,right ascensions +right back,right backs +right-back,right-backs +right bank,right banks +right bracket,right brackets +right brain,right brains +right coset,right cosets +right cross,right crosses +right eigenvalue,right eigenvalues +right eigenvector,right eigenvectors +righter,righters +right fielder,right fielders +right field,right fields +right-footer,right-footers +right-hander,right-handers +righthander,righthanders +right-hand man,right-hand men +right-hand woman,right-hand women +right ideal,right ideals +right identity,right identities +rightie,righties +right inverse,right inverses +rightism,rightisms +rightist,rightists +right of entry,rights of entry +right of first refusal,rights of first refusal +right of publicity,rights of publicity +right of reentry,rights of reentry +right-of-way,rights-of-way +Rightpondian,Rightpondians +right,rights +rightsholder,rightsholders +right-to-die,rights-to-die +right-to-lifer,right-to-lifers +right triangle,right triangles +right whale,right whales +right-winger,right-wingers +rightwinger,rightwingers +righty,righties +rigid body,rigid bodies +rigidification,rigidifications +rigidity modulus,rigidity moduli +rigidness,rigidnesses +riglet,riglets +rigolet,rigolets +rigoll,rigolls +rigol,rigols +rigorism,rigorisms +rigorist,rigorists +rigourist,rigourists +rigour,rigours +rig pig,rig pigs +rig,rigs +rig,rigs +rig,rigs +rigsdaler,rigsdalers +rijstaffel,rijstaffels +rijsttafel,rijsttafels +rike,rikes +riksdaler,riksdalers +rilievo,rilievos,rilievi +rille,rilles +rillet,rillets +rill,rills +rima,rimae +rimaye,rimayes +rimbase,rimbases +rime riche,rimes riches +rime,rimes +rime,rimes +rime,rimes +rime royal,rimes royal +rimer,rimers +rimester,rimesters +rimfire,rimfires +rim job,rim jobs +rim-job,rim-jobs +rimland,rimlands +rim lock,rim locks +rimmer,rimmers +rimming,rimmings +rimple,rimples +rim,rims +rimrock,rimrocks +rim shot,rim shots +rimshot,rimshots +rimu,rimu +rincΓ³n,rincons,rincones +rindle,rindles +rind,rinds +rind,rinds +rine,rines +rine,rines +ringbearer,ringbearers +ringbill,ringbills +ring binder,ring binders +ringbird,ringbirds +ringbolt,ringbolts +ring cadence,ring cadences +ring chart,ring charts +ring dove,ring doves +ringdove,ringdoves +ringdown,ringdowns +ringed dove,ringed doves +ringed plover,ringed plovers +ringed seal,ringed seals +ringer equivalence number,ringer equivalence numbers +ringer,ringers +ringer,ringers +ringer,ringers +ringer,ringers +ring field,ring fields +ring finger,ring fingers +ring-finger,ring-fingers +ringfort,ringforts +ring gag,ring gags +ring game,ring games +ringgit,ringgit,ringgits +ringhals,ringhalses +ringhead,ringheads +ringhole,ringholes +ringiculid,ringiculids +ringing engine,ringing engines +ringing,ringings +ring-in,ring-ins +ring laser,ring lasers +ring leader,ring leaders +ringleader,ringleaders +ringlestone,ringlestones +ringlet,ringlets +ringmail,ringmails +ring-man,ring-mans +ringman,ringmen +ringmaster,ringmasters +ringneck dove,ringneck doves +ring-necked parakeet,ring-necked parakeets +ringneck,ringnecks +ring of steel,rings of steel +ringpiece,ringpieces +ring pull,ring pulls +ring-pull,ring-pulls +ring rat,ring rats +ring,rings +ring,rings +ring,rings +ring road,ring roads +ringsail,ringsails +ringsider,ringsiders +ringside seat,ringside seats +ring species,ring species +ring stand,ring stands +ringster,ringsters +ring system,ring systems +ring-tailed lemur,ring-tailed lemurs +ring-tailed macauco,ring-tailed macaucos +ringtail,ringtail,ringtails +ring theorist,ring theorists +ring tone,ring tones +ringtone,ringtones +ring topology,ring topologies +ringwall,ringwalls +ringwoodite,ringwoodites +ringwork,ringworks +ringworld,ringworlds +ringwraith,ringwraiths +rinker,rinkers +rinkhals,rinkhalses +rink,rinks +rink,rinks +rinkside,rinksides +rink skate,rink skates +RINO,RINOs +rinpoche,rinpoches +rinsate,rinsates +rinse,rinses +rinser,rinsers +rinsing,rinsings +riodinid,riodinids +rioja,riojas +Rioja,Riojas +RIO,RIOs +rioter,rioters +rioting,riotings +riotour,riotours +riot,riots +riparian right,riparian rights +rip box,rip boxes +ripcord,ripcords +rip current,rip currents +ripener,ripeners +ripeness,ripenesses +ripe,ripes +ripe,ripes +ripidolite,ripidolites +ripienist,ripienists +ripiphorid,ripiphorids +rip-off merchant,rip-off merchants +rip-off,rip-offs +ripoff,ripoffs +riposte,ripostes +ripost,riposts +Ripperologist,Ripperologists +ripper,rippers +ripper,rippers +ripple effect,ripple effects +ripple,ripples +ripplet,ripplets +ripple voltage,ripple voltages +rippling,ripplings +ripplon,ripplons +riprap,ripraps +rip,rips +rip,rips +RIP,RIPs +rip saw,rip saws +ripsaw,ripsaws +ripsnorter,ripsnorters +rip tide,rip tides +riptide,riptides +Ripuarian,Ripuarians +RIQ,RIQs +risedronate,risedronates +risedronic acid,risedronic acids +rise form,rise forms +riseform,riseforms +rise,rises +riser,risers +rishi,rishis +rishon,rishons +rising action,rising actions +rising main,rising mains +rising of the moon,risings of the moon +rising,risings +rising star,rising stars +risk appetite,risk appetites +risk assessment,risk assessments +risker,riskers +riskiness,riskinesses +risk,risks +risktaker,risktakers +risk tolerance,risk tolerances +risk universe,risk universes +risograph,risographs +risotto,risottos +rissaldar,rissaldars +rissoellid,rissoellids +rissoid,rissoids +rissole,rissoles +ristorante,ristorantes +ristretto,ristrettos +rite de passage,rites de passage +rite of passage,rites of passage +rite,rites +ritornelle,ritornelles +ritornello,ritornellos,ritornelli +ritratto,ritrattos,ritrattoes +ritter,ritters +ritual abuse,ritual abuses +ritualisation,ritualisations +ritualism,ritualisms +ritualist,ritualists +ritualization,ritualizations +rituall,ritualls +ritual,rituals +riuer,riuers +rivage,rivages +rivaless,rivalesses +rival,rivals +rivalry,rivalries +rivalship,rivalships +riveling,rivelings +riveling,rivelings +rivel,rivels +river bank,river banks +riverbank,riverbanks +river basin,river basins +river bed,river beds +riverbed,riverbeds +riverboarder,riverboarders +riverboard,riverboards +riverboatman,riverboatmen +riverboat queen,riverboat queens +riverboat,riverboats +river crab,river crabs +river crab,river crabs +riveret,riverets +riverfront,riverfronts +river god,river gods +river horse,river horses +riverine rabbit,riverine rabbits +rive,rives +riverkeeper,riverkeepers +river lamprey,river lampreys +riverling,riverlings +riverman,rivermen +riverport,riverports +river rat,river rats +river,rivers +river,rivers +river runner,river runners +river-runner,river-runners +riverscape,riverscapes +riverside,riversides +river turtle,river turtles +riverwalk,riverwalks +river way,river ways +river-way,river-ways +riverway,riverways +riverwoman,riverwomen +rivet counter,rivet counters +riveter,riveters +rivethead,rivetheads +riveting,rivetings +rivet,rivets +riviera,rivieras +rivulet,rivulets +rivulid,rivulids +rixatrix,rixatrices +rix-baron,rix-barons +rixdaler,rixdalers +rix-dollar,rix-dollars +rixdollar,rixdollars +riyal,riyals +rizla,rizlas +RLQ,RLQs +RL,RLs +RLV,RLVs +rmgroup,rmgroups +R-module,R-modules +RNA,RNAs +RNase,RNases +RNA virus,RNA viruses +RNA world,RNA worlds +rng,rngs +RNG,RNGs +roach clip,roach clips +roach coach,roach coaches +roach motel,roach motels +roach,roaches +road accident,road accidents +road agent,road agents +road-agent,road-agents +road apple,road apples +roadbase,roadbases +roadbed,roadbeds +roadblock,roadblocks +road burn,road burns +road car,road cars +road case,road cases +roadcrew,roadcrews +roadcut,roadcuts +roadeo,roadeos +road film,road films +road fund licence,road fund licences +road game,road games +road gang,road gangs +road hog,road hogs +road-hog,road-hogs +roadhog,roadhogs +roadhouse,roadhouses +roadie,roadies +roadmaker,roadmakers +roadman,roadmen +road map,road maps +roadmap,roadmaps +roadmaster,roadmasters +roadmender,roadmenders +road movie,road movies +roadometer,roadometers +road picture,road pictures +road race,road races +road,roads +road roller,road rollers +roadrunner,roadrunners +roadshow,roadshows +roadside bomb,roadside bombs +roadside hawk,roadside hawks +roadside,roadsides +roadside thistle,roadside thistles +road sign,road signs +roadsign,roadsigns +roadstead,roadsteads +roadster,roadsters +road test,road tests +roadtest,roadtests +road train,road trains +road trip,road trips +road warrior,road warriors +roadwarrior,roadwarriors +roadway,roadways +roadworker,roadworkers +road work,road works +roadwork,roadworks +roamer,roamers +roaming master,roaming masters +roan antelope,roan antelopes +roan,roans +roap,roaps +roarer,roarers +Roaring Meg,Roaring Megs +roaring,roarings +roar,roars +roastbeef,roastbeefs +roast dinner,roast dinners +roastee,roastees +roaster,roasters +roastery,roasteries +roasting,roastings +roastmaster,roastmasters +roastnear,roastnears +roast,roasts +robab,robabs +roband,robands +robata,robatas +robber baron,robber barons +robber-baron,robber-barons +robber,robbers +robbery,robberies +robbin,robbins +robemaker,robemakers +robe,robes +Robert Borden,Robert Bordens +Robertsman,Robertsmen +Robertson screwdriver,Robertson screwdrivers +Robertson screw,Robertson screws +robinet,robinets +Robin Hood,Robin Hoods +robin redbreast,robin redbreasts +robin,robins +Robin,Robins +robin's-egg blue,robin's-egg blues +robinsonade,robinsonades +robiola,robiolas +robocall,robocalls +robocar,robocars +robocat,robocats +robochef,robochefs +robodoc,robodocs +robodog,robodogs +robofish,robofish,robofishes +robohead,roboheads +roboid,roboids +robolawyer,robolawyers +robopet,robopets +roborant,roborants +roboroach,roboroaches +robosexual,robosexuals +roboteer,roboteers +roboticist,roboticists +robotization,robotizations +robotrip,robotrips +robot,robots +robust blacksmelt,robust blacksmelts +rocambole,rocamboles +roccella,roccellas +Roche limit,Roche limits +Rochelle salt,Rochelle salts +roche moutonnΓ©e,roches moutonnΓ©es +rochet,rochets +rochet,rochets +roching cask,roching casks +rockathon,rockathons +rockaway,rockaways +rock band,rock bands +rockband,rockbands +rock bass,rock bass,rock basses +rock bun,rock buns +rockbun,rockbuns +rockburst,rockbursts +rock cake,rock cakes +rock climber,rock climbers +rockclimbing,rockclimbings +rock crab,rock crabs +rock crystal,rock crystals +rock dove,rock doves +Rockefeller Republican,Rockefeller Republicans +Rockefeller,Rockefellers +rockelay,rockelays +rocker,rockers +rockery,rockeries +rocket aircraft,rocket aircraft +rocket belt,rocket belts +rocket car,rocket cars +rocketeer,rocketeers +rocket engine,rocket engines +rocketer,rocketers +rocket festival,rocket festivals +rocket launcher,rocket launchers +rocketman,rocketmen +rocket motor,rocket motors +rocket pack,rocket packs +rocket-pack,rocket-packs +rocketpack,rocketpacks +rocket plane,rocket planes +rocketplane,rocketplanes +rocket pod,rocket pods +rocket propelled grenade,rocket propelled grenades +rocket-propelled grenade,rocket-propelled grenades +rocket,rockets +rocket salad,rocket salads +rocket scientist,rocket scientists +Rocketshipper,Rocketshippers +rocket ship,rocket ships +rocketship,rocketships +rocket sled,rocket sleds +rocket stage,rocket stages +rock face,rock faces +rockface,rockfaces +rockfall,rockfalls +rockfest,rockfests +rockfowl,rockfowls +rock garden,rock gardens +rock group,rock groups +rockhopper penguin,rockhopper penguins +rockhopper,rockhoppers +rock hound,rock hounds +rockhound,rockhounds +rockiness,rockinesses +rocking chair,rocking chairs +rocking horse,rocking horses +rocking-horse,rocking-horses +rockist,rockists +rock-jumper,rock-jumpers +rocklay,rocklays +rockling,rocklings +rock lobster,rock lobsters +rock maple,rock maples +rockmelon,rockmelons +rock oil,rock oils +rockoon,rockoons +rock pigeon,rock pigeons +rockpile,rockpiles +rock pipit,rock pipits +rockpool,rockpools +rock,rocks +rock,rocks +rockrose,rockroses +rockscape,rockscapes +rock sequence,rock sequences +rock shelter,rock shelters +rock slam,rock slams +rockslide,rockslides +rock spider,rock spiders +rockspider,rockspiders +rock star,rock stars +rockstar,rockstars +rocksucker,rocksuckers +rock tripe,rock tripes +rockumentary,rockumentaries +rockweed,rockweeds +rocoto,rocotos +roc,rocs +rodbuster,rodbusters +rod cell,rod cells +rodder,rodders +rodelero,rodeleros +rodente,rodentes +rodenticide,rodenticides +rodentologist,rodentologists +rodent,rodents +rodeo,rodeos +rode,rodes +rodham,rodhams +rodizio,rodizios +rodlet,rodlets +rodman,rodmen +rodomontade,rodomontades +rodomontadist,rodomontadists +rodomontado,rodomontados,rodomontadoes +rodomont,rodomonts +rod,rods +rodsman,rodsmen +rodster,rodsters +roebuck,roebucks +roe deer,roe deer +roedeer,roedeers,roedeer +roentgenogram,roentgenograms +roentgenographer,roentgenographers +roentgenograph,roentgenographs +roentgenologist,roentgenologists +roentgenoscope,roentgenoscopes +roentgenotherapy,roentgenotherapies +Roentgen-ray,Roentgen-rays +roepiah,roepiahs +roe,roe,roes +ROE,ROEs +roeslerstammiid,roeslerstammiids +roestone,roestones +rogaine,rogaines +rogation,rogations +roger beep,roger beeps +rogering,rogerings +Roget's,Roget's +roggenbrot,roggenbrots +rogue access point,rogue access points +rogue elephant,rogue elephants +rogue gallery,rogue galleries +roguelike,roguelikes +rogue,rogues +rogue's gallery,rogue's galleries +rogues gallery,rogues galleries +rogues' gallery,rogues' galleries +rogue state,rogue states +rogue wave,rogue waves +Rohingya,Rohingya +rohu,rohus +'roid,'roids +roid,roids +roi fainΓ©ant,rois fainΓ©ants +roin,roins +ROI,ROIs +roisterer,roisterers +roister,roisters +rokelay,rokelays +roke,rokes +rokkaku,rokkakus +roko,rokos +rok,roks +rola bola,rola bolas +rolag,rolags +Rolandic fissure,Rolandic fissures +role conflict,role conflicts +role model,role models +role player,role players +role-player,role-players +roleplayer,roleplayers +role playing game,role playing games +role-playing game,role-playing games +roleplaying game,roleplaying games +role-playing,role-playings +role-playing video game,role-playing video games +rΓ΄leplay,rΓ΄leplays +role,roles +rΓ΄le,rΓ΄les +rollaboard,rollaboards +rollator,rollators +rollback,rollbacks +rollbag,rollbags +rollbar,rollbars +roll cage,roll cages +roll call,roll calls +rollcall,rollcalls +rolled fillet,rolled fillets +rollerball,rollerballs +roller bearing,roller bearings +rollerblade,rollerblades +rollerblader,rollerbladers +roller blind,roller blinds +rollerboard,rollerboards +roller boot,roller boots +roller coaster,roller coasters +roller-coaster,roller-coasters +rollercoaster,rollercoasters +roller derby,roller derbies +roller disco,roller discos +roller docker,roller dockers +roller mill,roller mills +roller rink,roller rinks +roller,rollers +Roller,Rollers +roller shoe,roller shoes +roller shutter,roller shutters +roller skate,roller skates +roller-skate,roller-skates +rollerskate,rollerskates +rollerskater,rollerskaters +roller towel,roller towels +rollicker,rollickers +rollicking,rollickings +rollie,rollies +rolling block,rolling blocks +rolling contact,rolling contacts +rolling demo,rolling demos +rolling hitch,rolling hitches +rolling introduction,rolling introductions +rolling paper,rolling papers +rolling pin,rolling pins +rolling-pin,rolling-pins +rolling resistance,rolling resistances +rolling stone,rolling stones +rolling stop,rolling stops +roll mill,roll mills +rollmop,rollmops +rollneck,rollnecks +roll-on,roll-ons +roll-out,roll-outs +rollout,rollouts +rollover cable,rollover cables +roll-over,roll-overs +rollover,rollovers +roll rate,roll rates +roll,rolls +Rolls,Rolls +roll-top desk,roll-top desks +rolltop desk,rolltop desks +rollunder,rollunders +roll up,roll ups +roll-up,roll-ups +rollup,rollups +rollway,rollways +roll-your-own,roll-your-owns +rolly polly,rolly pollies +rolly-poly,rolly-polies +Rolodex,Rolodexes +Romaean,Romaeans +RomΓ¦an,RomΓ¦ans +romage,romages +romaji,romaji +romaleid,romaleids +roman Γ  clef,romans Γ  clef +roman Γ  thΓ¨se,romans Γ  thΓ¨se +Roman bath,Roman baths +Roman candle,Roman candles +Roman Catholic,Roman Catholics +Romance language,Romance languages +romance,romances +romancer,romancers +Roman chamomile,Roman chamomiles +romancist,romancists +romanechite,romanechites +romanΓ¨chite,romanΓ¨chites +romanette,romanettes +roman font,roman fonts +Roman holiday,Roman holidays +Romanian deadlift,Romanian deadlifts +Romanian,Romanians +Romanichal,Romanichals +Romanicist,Romanicists +Romaniote,Romaniotes +Romaniot,Romaniots +Romani,Romanies +romanisation,romanisations +Romanisation,Romanisations +Romanist,Romanists +romanization,romanizations +Romanization,Romanizations +Romanizer,Romanizers +Roman mile,Roman miles +Roman nose,Roman noses +Roman numeral,Roman numerals +romano,romanos +Roman ring,Roman rings +Roman shower,Roman showers +romantic comedy,romantic comedies +romantic friendship,romantic friendships +romanticism,romanticisms +romanticist,romanticists +romantick,romanticks +romantic,romantics +romant,romants +Romany,Romanies +romanza,romanzas +Roma,Romas +romaunce,romaunces +romaunt,romaunts +rom com,rom coms +rom-com,rom-coms +romcom,romcoms +romedy,remodies +romekin,romekins +Romeo and Juliet couple,Romeo and Juliet couples +Romeo,Romeos +romeriid,romeriids +Romist,Romists +romneya,romneyas +romper,rompers +romper,rompers +romper suit,romper suits +rompler,romplers +romp,romps +Rom,Roms,Roma +romset,romsets +Romulan,Romulans +Ronbot,Ronbots +roncador,roncadors +rondache,rondaches +rondavel,rondavels +rond-de-cuir,ronds-de-cuir +rondeau,rondeaux,rondeaus +rondelay,rondelays +rondeletia,rondeletias +rondeletiid,rondeletiids +rondelet,rondelets +rondel,rondels +rondle,rondles +rondo,rondos +rondure,rondures +Roneo,Roneos +rone pipe,rone pipes +rongeur,rongeurs +ronin,ronin +ronko,ronkos +ronquil,ronquils +RONR,RONRs +ronson,ronsons +rΓΆntgen,rΓΆntgens +ront,ronts +ronyon,ronyons +roo bar,roo bars +roodebok,roodeboks +rood goose,rood geese +rood,roods +rood screen,rood screens +roof assembly,roof assemblys +roof curb,roof curbs +roofer,roofers +roofie,roofies +rooflet,rooflets +roofline,rooflines +roof rack,roof racks +roof rake,roof rakes +roof rat,roof rats +roof,roofs,rooves +roofscape,roofscapes +roofspace,roofspaces +roof square,roof squares +roof tile,roof tiles +rooftop,rooftops +rooftree,rooftrees +rooikat,rooikats +rooineck,rooinecks +rooinek,rooineks +rookery,rookeries +rookie,rookies +rook pawn,rook pawns +rook,rooks +rook,rooks +rook,rooks +roomate,roomates +Roomba,Roombas +room divider,room dividers +roome,roomes +roomer,roomers +roomette,roomettes +roomful,roomfuls,roomsful +roomie,roomies +rooming house,rooming houses +roommate,roommates +room,rooms +room temperature I.Q.,room temperature I.Q.s +room temperature IQ,room temperature IQs +room-temperature IQ,room-temperature IQs +roop,roops +roorbach,roorbachs +roorback,roorbacks +'roo,'roos +roo,roos +Roosevelt elk,Roosevelt elk +Roosmalens' dwarf marmoset,Roosmalens' dwarf marmosets +roostcock,roostcocks +rooster booster,rooster boosters +roosterfish,roosterfishes,roosterfish +rooster,roosters +roostertail,roostertails +roost,roosts +roost,roosts +rootball,rootballs +root beer float,root beer floats +root beer,root beers +rootbeer,rootbeers +root canal,root canals +rootcap,rootcaps +root cause,root causes +root cellar,root cellars +rooter,rooters +rootery,rooteries +root hair,root hairs +roothair,roothairs +rooting,rootings +root kit,root kits +rootkit,rootkits +rootlet,rootlets +rootling,rootlings +root mean square,root mean squares +root noun,root nouns +root-noun,root-nouns +rootogram,rootograms +root position,root positions +root,roots +root,roots +root rot,root rots +rootstock,rootstocks +root vegetable,root vegetables +root vole,root voles +root word,root words +rootworm,rootworms +rootzone,rootzones +ropalomerid,ropalomerids +rope-a-dope,rope-a-dopes +ropeband,ropebands +rope bridge,rope bridges +ropebridge,ropebridges +ropedancer,ropedancers +rope ladder,rope ladders +ropeloft,ropelofts +ropemaker,ropemakers +ropeman,ropemen +ropemate,ropemates +roper,ropers +ropery,roperies +ropesman,ropesmen +ropewalker,ropewalkers +rope-walk,rope-walks +ropewalk,ropewalks +ropeway,ropeways +ropeworker,ropeworkers +rope yarn,rope yarns +ropeyarn,ropeyarns +ROP,ROPs +Roquefort,Roqueforts +roquelaire,roquelaires +roquelaure,roquelaures +roquet,roquets +roquette,roquettes +roration,rorations +rorqual,rorquals +ROR,RORs +Rorschach test,Rorschach tests +rort,rorts +rosado,rosados +rosalia,rosalias +rosaniline,rosanilines +rosarian,rosarians +rosarium,rosariums,rosaria +rosa,rosas +rosary,rosaries +rosary shell,rosary shells +rosbif,rosbifs +ROSCA,ROSCAs +roscoe,roscoes +roseate tern,roseate terns +rosebay rhododendron,rosebay rhododendrons +rosebay,rosebays +rosebay willowherb,rosebay willowherbs +rose between two thorns,roses between two thorns +rosebud,rosebuds +Rosebud,Rosebuds +rose burner,rose burners +rosebush,rosebushes +rose chafer,rose chafers +rose-colored pastor,rose-colored pastors +rose-colored starling,rose-colored starlings +rose-coloured pastor,rose-coloured pastors +rose-coloured starling,rose-coloured starlings +rose curve,rose curves +rose diamond,rose diamonds +rosedrop,rosedrops +rosefinch,rosefinches +rosefish,rosefishes,rosefish +rose garden,rose gardens +rose-garden,rose-gardens +rosegarden,rosegardens +rose geranium,rose geraniums +rose gold,rose golds +rosegold,rosegolds +rosehead,roseheads +rose hip,rose hips +rosehip,rosehips +roseine,roseines +roseling,roselings +rosella,rosellas +roselle,roselles +rose oil,rose oils +roseolovirus,roseoloviruses +rose petal,rose petals +rose-petal,rose-petals +rosepetal,rosepetals +rose-ringed parakeet,rose-ringed parakeets +rose,roses +Rose,Roses +rose,roses,rosΓ¦ +rosery,roseries +rosetta,rosettas +rosette,rosettes +rosewater sailor,rosewater sailors +rose window,rose windows +rosΓ© wine,rosΓ© wines +roseworm,roseworms +roshambo,roshambos +Rosh Hashanah,Rosh Hashanahs +rosh yeshiva,rosh yeshivas +Rosicrucianist,Rosicrucianists +Rosicrucian,Rosicrucians +rosid,rosids +Rosie,Rosies +rosinweed,rosinweeds +Ross seal,Ross seals +rostellum,rostella +rostel,rostels +roster,rosters +rosticceria,rosticcerias +rΓΆsti,rΓΆstis +rostral,rostrals +rostratulid,rostratulids +rost,rosts +rostrulum,rostrula +rostrum,rostra,rostrums +rosy-lipped batfish,rosy-lipped batfishes +rosy starling,rosy starlings +rosy tern,rosy terns +rotaliid,rotaliids +rotalite,rotalites +rotamer,rotamers +rotameter,rotameters +rotane,rotanes +Rotarian,Rotarians +rotarod,rotarods +rota,rotas +rota,rotas +rotary dial,rotary dials +rotary engine,rotary engines +rotary evaporator,rotary evaporators +rotary phone,rotary phones +rotary printing press,rotary printing presss +rotary,rotaries +rotascope,rotascopes +rotating beacon,rotating beacons +rotational energy,rotational energies +rotational molding,rotational moldings +rotational period,rotational periods +rotation period,rotation periods +rotation,rotations +rotator cuff,rotator cuffs +rotator,rotators +rotavap,rotavaps +rotavator,rotavators +rotavirus,rotaviruses +rotaxane,rotaxanes +rotche,rotches +rotchet,rotchets +rotenoid,rotenoids +rote,rotes +Rothbardian,Rothbardians +rother,rothers +rother,rothers +Roth IRA,Roth IRAs +Rothschild,Rothschilds +rotifer,rotifers +rotisserie,rotisseries +rotl,rotls +rotodome,rotodomes +rotogravure,rotogravures +roton,rotons +rotopulsator,rotopulsators +rotorcraft,rotorcrafts,rotorcraft +rotor,rotors +rototiller,rototillers +rototom,rototoms +rotozoomer,rotozoomers +rot,rots +rotta,rottas +rotten apple,rotten apples +rotten borough,rotten boroughs +Rotterdammer,Rotterdammers +rotter,rotters +Rottie,Rotties +rottweiler,rottweilers +Rottweiler,Rottweilers +rottweiller,rottweillers +rotula,rotulas,rotulae +rotulet,rotulets +rotulid,rotulids +rotulus,rotuli +Rotuman,Rotumans +rotunda,rotundas +roturer,roturers +roturier,roturiers +rouble,roubles +rouche,rouches +rouΓ©,rouΓ©s +rouet,rouets +rouge,rouges +Rouget's rail,Rouget's rails +rough and tumble,rough and tumbles +rough-and-tumble,rough-and-tumbles +rough breathing,rough breathings +roughcaster,roughcasters +roughcast,roughcasts +rough collie,rough collies +rough diamond,rough diamonds +rough fish,rough fishes +roughhead,roughheads +roughhewer,roughhewers +rough horsetail,rough horsetails +roughie,roughies +rough-legged buzzard,rough-legged buzzards +roughleg,roughlegs +roughneck,roughnecks +roughrider,roughriders +rough,roughs +roughsetter,roughsetters +roughspun,roughspuns +roughtail,roughtails +rough trot,rough trots +roughy,roughies +rouille,rouilles +roukoop,roukoops +roulade,roulades +rouleau,rouleaus,rouleaux +roulette wheel,roulette wheels +rouleur,rouleurs +Roumanian,Roumanians +rounce,rounces +rounceval,rouncevals +rouncy,rouncies +roundabout,roundabouts +round angle,round angles +round-bottomed flask,round-bottomed flasks +round bracket,round brackets +round character,round characters +rounded vowel,rounded vowels +roundelay,roundelays +roundel,roundels +rounder,rounders +round file,round files +roundfish,roundfishes,roundfish +roundhead,roundheads +roundhouse kick,roundhouse kicks +roundhouse,roundhouses +rounding,roundings +roundlet,roundlets +round lot,round lots +roundnose grenadier,roundnose grenadiers +round number,round numbers +round of applause,rounds of applause +round of applauses,rounds of applauses +roundoff,roundoffs +roundpole fence,roundpole fences +roundrect,roundrects +round robin,round robins +round-robin story,round-robin stories +round,rounds +round,rounds +round shot,round shot +roundsman,roundsmen +round table,round tables +roundtable,roundtables +round top,round tops +round-top,round-tops +roundtop,roundtops +round trip,round trips +round-trip,round-trips +roundtrip,roundtrips +round-trip time,round-trip times +round tuit,round tuits +round turn,round turns +roundup,roundups +roundworm,roundworms +roun,rouns +rounsey,rounseys +roup,roups +roup sale,roup sales +rouse,rouses +rouser,rousers +Roussanne,Roussannes +Rousseauian,Rousseauians +roussette,roussettes +roustabout,roustabouts +roust,rousts +routeing,routeings +routeman,routemen +route of administration,routes of administration +route planner,route planners +route,routes +router,routers +router,routers +routeway,routeways +routine,routines +routing number,routing numbers +routing,routings +routing,routings +routing slip,routing slips +routinist,routinists +rout,routs +rout,routs +rout,routs +rove beetle,rove beetles +rove,roves +rover,rovers +rover,rovers +Rover,Rovers +roving,rovings +ROV,ROVs +rowanberry,rowanberries +rowan,rowans +rowboater,rowboaters +rowboat,rowboats +rowdie,rowdies +rowdy,rowdies +rowel,rowels +rowen,rowens +rower,rowers +row house,row houses +rowhouse,rowhouses +rowing boat,rowing boats +rowing machine,rowing machines +rowlock,rowlocks +rowmate,rowmates +rowport,rowports +row,rows +row,rows +row,rows +row space,row spaces +row to hoe,rows to hoe +rowt,rowts +row vector,row vectors +royal assassin,royal assassins +royal blue,royal blues +royalet,royalets +royal family,royal families +royal flush,royal flushes +royal household,royal households +royalist,royalists +royall,royalls +royal marriage,royal marriages +royalme,royalmes +royal penguin,royal penguins +royal poinciana,royal poincianas +royal progress,royal progresses +royal purple,royal purples +royal red prawn,royal red prawns +royal,royals +Royal,Royals +royalty,royalties +royal walnut moth,royal walnut moths +royal we,royal wes +Roy Rogers,Roy Rogerses +roy,roys +Royston crow,Royston crows +roytelet,roytelets +rozenite,rozenites +rozzer,rozzers +RPer,RPers +RPGer,RPGers +RPG,RPGs +RPH,RPHs +rpm,rpms +RPM,RPMs +rpm,rpms,rpm's +RPP,RPPs +r-process,r-processes +RPV,RPVs +RQQ,RQQs +RRAT,RRATs +rraup,rraups +rRNA,rRNAs +RR,RRs +RRSP,RRSPs +RSA number,RSA numbers +RSI,RSIs +RSS feed,RSS feeds +RST code,RST codes +RSVP,RSVPs +r-tard,r-tards +RTG,RTGs +RTM,RTMs +RTOS,RTOSes +RTTI,RTTIs +RTT,RTTs +ruana,ruanas +rubaboo,rubaboos +rubab,rubabs +rubato,rubatos +rubber baby buggy bumper,rubber baby buggy bumpers +rubber band airplane,rubber band airplanes +rubber band,rubber bands +rubber boa,rubber boas +rubber bullet,rubber bullets +rubber check,rubber checks +rubber cheque,rubber cheques +rubber duckie,rubber duckies +rubber duck,rubber ducks +rubber ducky,rubber duckies +rubberist,rubberists +rubber johnny,rubber johnnies +rubber match,rubber matches +rubbernecker,rubberneckers +rubberneck,rubbernecks +rubber plant,rubber plants +rubber policeman,rubber policemen +rubber ring,rubber rings +rubber,rubbers +rubber stamp,rubber stamps +rubber tree,rubber trees +rubbing,rubbings +rubbing strip,rubbing strips +rubbish bin,rubbish bins +rubbisher,rubbishers +rubby-dub,rubby-dubs +rubdown,rubdowns +rubefacient,rubefacients +Rube Goldberg machine,Rube Goldberg machines +rubellite,rubellites +rubeola,rubeolas +rube,rubes +rubescence,rubescences +rubicelle,rubicelles +rubicon,rubicons +rubidium oxide,rubidium oxides +Rubik's cube,Rubik's cubes +Rubik's Cube,Rubik's Cubes +Rubik's cubist,Rubik's cubists +Rubik's Revenge,Rubik's Revenges +rubin,rubins +rubisco,rubiscos +rubivirus,rubiviruses +ruble,rubles +rub of the green,rubs of the green +rubout,rubouts +rubredoxin,rubredoxins +rubriblast,rubriblasts +rubrication,rubrications +rubricator,rubricators +rubrician,rubricians +rubricist,rubricists +rubrick,rubricks +rubric,rubrics +rubrozem,rubrozems +rub,rubs +rubstone,rubstones +rubulavirus,rubulaviruses +rub up,rubs up +rub-up,rub-ups +rubus,rubuses +Rubyist,Rubyists +Ruby Murray,Ruby Murrays +ruby,rubies +ruby,rubies +rubytail,rubytails +rubythroat,rubythroats +ruby wedding,ruby weddings +ruche,ruches +ruching,ruchings +ruckman,ruckmen +ruck rover,ruck rovers +ruck,rucks +ruck,rucks +ruck,rucks +rucksack,rucksacks +rucksac,rucksacs +ruckus,ruckuses +ructation,ructations +ruction,ructions +rudbeckia,rudbeckias +rudderfish,rudderfishes,rudderfish +rudderhead,rudderheads +rudderhole,rudderholes +rudderpost,rudderposts +rudder,rudders +rudderstock,rudderstocks +ruddleman,ruddlemen +ruddle,ruddles +ruddock,ruddocks +rudd,rudds +ruddy duck,ruddy ducks +ruddy,ruddies +ruddy shelduck,ruddy shelducks +rudeboy,rudeboys +rudeling,rudelings +rudenture,rudentures +ruderal,ruderals +rudesby,rudesbys +rudie,rudies +rudiment,rudiments +rudist,rudists +rudraksha,rudrakshas +rudy,rudies +ruelle,ruelles +rue,rues +ruffed grouse,ruffed grouses +ruffed lemur,ruffed lemurs +ruffer,ruffers +ruffe,ruffes +ruffian,ruffians +Ruffini's corpuscle,Ruffini's corpuscles +ruffler,rufflers +ruffle,ruffles +ruffling,rufflings +ruff,ruffs +ruff,ruffs +ruff,ruffs +rufie,rufies +rufiyaa,rufiyaas +rufous-backed antvireo,rufous-backed antvireos +rufous-bellied kookaburra,rufous-bellied kookaburras +rufous-capped antshrike,rufous-capped antshrikes +rufous-tailed hawk,rufous-tailed hawks +rufous-vented ground-cuckoo,rufous-vented ground-cuckoos +rufous-winged antshrike,rufous-winged antshrikes +ruga,rugae +rugburn,rugburns +rugby ball,rugby balls +rugby player,rugby players +rugby shirt,rugby shirts +rugby tackle,rugby tackles +rugelach,rugelach +rugger bugger,rugger buggers +rugine,rugines +rugin,rugins +rugmaker,rugmakers +rug muncher,rug munchers +rugose,rugoses +rug rat,rug rats +rugrat,rugrats +rug,rugs +rugula,rugulas +Ruhmkorff coil,Ruhmkorff coils +ruination,ruinations +ruiner,ruiners +ruin,ruins +rukh,rukhs +rule against perpetuities,rules against perpetuities +rule book,rule books +rule-book,rule-books +rulebook,rulebooks +rulebreaker,rulebreakers +rulemaking,rulemakings +rulemonger,rulemongers +rule of reason,rule of reasons +rule of thumb,rules of thumb +rule-of-thumb,rules-of-thumb +ruler,rulers +rulership,rulerships +rule,rules +ruleset,rulesets +rules lawyer,rules lawyers +ruling pen,ruling pens +ruling,rulings +Rumanian,Rumanians +rum ball,rum balls +rumbler,rumblers +rumble,rumbles +rumble seat,rumble seats +rumbling,rumblings +rum bud,rum buds +rumbud,rumbuds +rumbullion,rumbullions +rum cake,rum cakes +rumdum,rumdums +Rumelian,Rumelians +rumen,rumina,rumens +rumex,rumexes +rum go,rum gos +ruminant,ruminants +rumination,ruminations +ruminator,ruminators +ruminococcin,ruminococcins +ruminoreticulum,ruminoreticula +rumkin,rumkins +rummager,rummagers +rummage,rummages +rummage sale,rummage sales +rummaging,rummagings +rummer,rummers +rummy nose,rummy noses +rummy-nose tetra,rummy-nose tetras +rumor campaign,rumor campaigns +rumorer,rumorers +rumor mill,rumor mills +rumormonger,rumormongers +rumour campaign,rumour campaigns +rumourer,rumourers +rumour mill,rumour mills +rumourmonger,rumourmongers +Rumper,Rumpers +rumpie,rumpies +rumpot,rumpots +rump,rumps +rump state,rump states +rump steak,rump steaks +Rumpty,Rumpties +rumpus,rumpuses +rum,rums +rum runner,rum runners +rum-runner,rum-runners +rumseller,rumsellers +rumspringa,rumspringas +rum-tum,rum-tums +runabout,runabouts +runagate,runagates +runaround,runarounds +runathon,runathons +runaway bride,runaway brides +run-away,run-aways +runaway,runaways +runback,runbacks +run batted in,runs batted in +run book,run books +runbook,runbooks +runcation,runcations +run chase,run chases +runch,runches +runcible spoon,runcible spoons +runcinid,runcinids +rundel,rundels +rundel,rundels +rundle,rundles +rundlet,rundlets +rundown,rundowns +runecarver,runecarvers +runemaster,runemasters +runer,runers +rune,runes +runesmith,runesmiths +runestone,runestones +run for the roses,runs for the roses +Runge-Kutta method,Runge-Kutta methods +runghead,rungheads +rung,rungs +Rungu,Rungu +rungu,rungus +runholder,runholders +run in,run ins +run-in,run-ins +runlet,runlets +runlet,runlets +runnel,runnels +runner bean,runner beans +runner,runners +runner up,runners up +runner-up,runners-up,runner-ups +running back,running backs +runningback,runningbacks +running board,running boards +running commentary,running commentaries +running dictation,running dictations +running dog,running dogs +running flush,running flushes +running gag,running gags +running gear,running gears +running headline,running headlines +running iron,running irons +running joke,running jokes +running knot,running knots +running mate,running mates +running,runnings +running shoe,running shoes +running stitch,running stitches +running target,running targets +running text,running texts +running title,running titles +runnion,runnions +runny nose,runny noses +run-off,run-offs +run of luck,runs of luck +runologist,runologists +run-on,run-ons +run-on sentence,run-on sentences +run out,run outs +runout,runouts +runover,runovers +run rate,run rates +runround,runrounds +run,runs +runscorer,runscorers +run tee,run tees +run-through,run-throughs +run time,run times +run-time,run-times +runtime,runtimes +runtling,runtlings +runt,runts +run up,run ups +run-up,run-ups +runup,runups +runway model,runway models +runway,runways +run year,run years +rupchanda,rupchanda +rupee,rupees +Rupert,Ruperts +Rupert's drop,Rupert's drops +rupes,rupis +rupiah,rupiahs +rupia,rupias +rupicola,rupicolas +ruption,ruptions +ruptuary,ruptuaries +ruptured membrane,ruptured membranes +rupture,ruptures +rupturewort,ruptureworts +ruralist,ruralists +ruralite,ruralites +ruralpolitan,ruralpolitans +rural sanitary district,rural sanitary districts +rurban fringe,rurban fringes +rurbanite,rurbanites +ruricolist,ruricolists +Ruritanian,Ruritanians +ruru,rurus +rusa deer,rusa deer +rusalka,rusalkas,rusalky,rusalki +rusbank,rusbanks +ruse de guerre,ruses de guerre +ruse,ruses +rushbuckler,rushbucklers +rushed behind,rushed behinds +rushee,rushees +rusher,rushers +rush hour,rush hours +rushlight,rushlights +rush,rushes +rush,rushes +Rusky,Ruskies +Rus,Rus +Rus',Rus +Russellite,Russellites +russeting,russetings +Russian ball,Russian balls +Russian bar,Russian bars +Russian Blue,Russian Blues +Russian doll,Russian dolls +Russianism,Russianisms +Russian olive,Russian olives +Russian oven,Russian ovens +Russian,Russians +Russian sturgeon,Russian sturgeons +Russian thistle,Russian thistles +Russian Wolfhound,Russian Wolfhounds +Russicist,Russicists +Russki,Russkis,Russkies +Russophile,Russophiles +Russophobe,Russophobes +Russophobist,Russophobists +Russophone,Russophones +Russ,Russ,Russes +russula,russulas +rustbelt,rustbelts +rust bucket,rust buckets +rustbucket,rustbuckets +rust fungus,rust fungi +rustication,rustications +rusticator,rusticators +rustick,rusticks +rusticle,rusticles +rustic,rustics +rustler,rustlers +rustle,rustles +rustling,rustlings +rust,rusts +rusty nail,rusty nails +rusty-spotted cat,rusty-spotted cats +rusty tinamou,rusty tinamous +rusty trombone,rusty trombones +Rusyn,Rusyns +rutamycin,rutamycins +rutate,rutates +ruthenacycle,ruthenacycles +ruthenate,ruthenates +Ruthenian,Ruthenians +ruthenocene,ruthenocenes +ruthenocuprate,ruthenocuprates +rutherford,rutherfords +rutinoside,rutinosides +Rutland beauty,Rutland beauties +rutoceratid,rutoceratids +rut,ruts +rut,ruts +rutterkin,rutterkins +rutter,rutters +ruttier,ruttiers +rutting,ruttings +ruttle,ruttles +Rutul,Rutuls +r-value,r-values +rvalue,rvalues +RV,RVs,RV's +Rwandan,Rwandans +Rwandese,Rwandese +RWD,RWDs +r-word,r-words +ryal,ryals +ryanodine,ryanodines +Rydberg atom,Rydberg atoms +Rydberg constant,Rydberg constants +Rydberg molecule,Rydberg molecules +ryder,ryders +rye bread,rye breads +rye flake,rye flakes +rye seed,rye seeds +rylene,rylenes +ryllet,ryllettys +rynd,rynds +ryokan,ryokans +ryotei,ryoteis +ryot,ryots +rysh,ryshes +rysimeter,rysimeters +rython,rythons +ryth,ryths +rytina,rytinas +Ryukyuan,Ryukyuans +ryvett,ryvetts +rzehakinid,rzehakinids +?,?s +Saadh,Saadhs +Saadian,Saadians +saad,saads +Saale,Saales +Saami,Saami,Saamis +saamlaw,saamlaw +Saanen goat,Saanen goats +Saanen,Saanens +Saanich,Saaniches +Saarlander,Saarlanders +saas,saases +sabaconid,sabaconids +sabadilla,sabadillas +sabalo,sabalos +sabal,sabals +sabatia,sabatias +sabaton,sabatons +Sabba-day,Sabba-days +Sabbatarianism,Sabbatarianisms +Sabbatarian,Sabbatarians +Sabbatharian,Sabbatharians +Sabbath-day,Sabbath-days +Sabbatian,Sabbatians +sabbatia,sabbatias +sabbatical,sabbaticals +sabbatical year,sabbatical years +Sabbatist,Sabbatists +sabbatization,sabbatizations +sabbaton,sabbatons +sabbat,sabbats +Sabbat,Sabbats +Sabber-day,Sabber-days +sabellariid,sabellariids +sabella,sabellae +Sabellian,Sabellians +Sabellian,Sabellians +Sabellic,Sabellics +sabellid,sabellids +sabercat,sabercats +sabermetrician,sabermetricians +saber rattling,saber rattlings +saber,sabers +saber saw,saber saws +saber-toothed tiger,saber-toothed tigers +sabha,sabhas +Sabian,Sabians +sabicu,sabicus +sabinene,sabinenes +Sabine,Sabines +Sabine's gull,Sabine's gulls +Sabinianist,Sabinianists +sabinol,sabinols +sabino,sabinos +sabin,sabins +Sabin vaccine,Sabin vaccines +sabir,sabirs +Sabir,Sabirs +sabkha,sabkhas +sable antelope,sable antelopes +sablefish,sablefishes,sablefish +sableness,sablenesss +Sabora,Saboraim +sabotager,sabotagers +saboteur,saboteurs +sabotiere,sabotieres +sabotier,sabotiers +sabot,sabots +sabra,sabras +sabrebill,sabrebills +sabrecat,sabrecats +sabre,sabres +sabre saw,sabre saws +sabretache,sabretaches +sabretasche,sabretasches +sabre-toothed cat,sabre-toothed cats +sabre-toothed tiger,sabre-toothed tigers +sabre-tooth,sabre-tooths +sabreur,sabreurs +sabzi,sabzis +Sacagawea dollar,Sacagawea dollars +Sacagawea,Sacagaweas +sac-a-lait,sac-a-lait +sacalait,sacalaits +sacaline,sacalines +sacar,sacars +sacbrood,sacbroods +sac bunt,sac bunts +saccade,saccades +saccharase,saccharases +saccharate,saccharates +saccharephidrosis,saccharephidroses +saccharide,saccharides +saccharification,saccharifications +saccharilla,saccharillas +saccharimeter,saccharimeters +saccharinate,saccharinates +saccharinic acid,saccharinic acids +saccharogen,saccharogens +saccharolipid,saccharolipids +saccharometer,saccharometers +saccharometry,saccharometries +saccharomyces,saccharomyces +saccharomycete,saccharomycetes +saccharomycopsis,saccharomycopses +saccharomycosis,saccharomycoses +saccharonate,saccharonates +saccharone,saccharones +saccharonic acid,saccharonic acids +saccholactate,saccholactates +saccocirrid,saccocirrids +saccolabium,saccolabiums,saccolabia +saccopharyngid,saccopharyngids +SACCO,SACCOs +sacculation,sacculations +saccule,saccules +sacculina,sacculinas,sacculinae +sacculinid,sacculinids +sacculinization,sacculinizations +sacculus,sacculi +saccus,sacci +SACD,SACDs +SACD,SACDs +sacellum,sacella +sacerdocy,sacerdocies +sacerdotalist,sacerdotalists +sacer vates,sacer vates +sac fly,sac flies +sac fungus,sac fungi +sachaline,sachalines +sachel,sachels +sachemdom,sachemdoms +sachem,sachems +sachemship,sachemships +sacher torte,sacher tortes +Sacher torte,Sacher tortes +sachet,sachets +sachitid,sachitids +sackage,sackages +sack barrow,sack barrows +sackbarrow,sackbarrows +sackbut,sackbuts +sackbutt,sackbutts +sackcloth,sackcloths +sacker,sackers +sacket,sackets +sackful,sackfuls,sacksful +sackload,sackloads +sack man,sack men +sack race,sack races +sack,sacks +sack,sacks +sack truck,sack trucks +sacktruck,sacktrucks +sackung,sackungen +sacque,sacques +sacralization,sacralizations +sacral,sacrals +sacral vertebra,sacral vertebras +sacramentalist,sacramentalists +sacramentality,sacramentalities +sacramentalness,sacramentalnesses +sacramental,sacramentals +sacramentarian,sacramentarians +Sacramentarian,Sacramentarians +sacramentary,sacramentaries +sacrament,sacraments +sacrarium,sacraria +sacrary,sacraries +sacration,sacrations +sacred baboon,sacred baboons +sacred cow,sacred cows +sacred fir,sacred firs +sacred ibis,sacred ibis,sacred ibises +sacred kingfisher,sacred kingfishers +sacredness,sacrednesses +sacrificant,sacrificants +sacrification,sacrifications +sacrificator,sacrificators +sacrifice bunt,sacrifice bunts +sacrifice fly,sacrifice flies +sacrifice hit,sacrifice hits +sacrificer,sacrificers +sacrifice,sacrifices +sacrificial anode,sacrificial anodes +sacrificial lamb,sacrificial lambs +sacrifier,sacrifiers +sacrilege,sacrileges +sacrilegist,sacrilegists +sacring bell,sacring bells +sacring-bell,sacring-bells +sacristanry,sacristanries +sacristan,sacristans +sacristry,sacristries +sacrist,sacrists +sacristy,sacristies +sacroiliac joint,sacroiliac joints +sacroiliac,sacroiliacs +sacrosanctity,sacrosanctities +sacrosanctum,sacrosancta +sacrum,sacra,sacrums +sac,sacs +sad ass,sad asses +sadass,sadasses +sad case,sad cases +sadcase,sadcases +Saddamist,Saddamists +saddhu,saddhus +saddleback caterpillar,saddleback caterpillars +saddle back reef,saddle back reefs +saddleback,saddlebacks +saddle-bag,saddle-bags +saddlebag,saddlebags +saddle-billed stork,saddle-billed storks +saddle blanket,saddle blankets +saddle bow,saddle bows +saddle-bow,saddle-bows +saddlebow,saddlebows +Saddlebred,Saddlebreds +saddle brown,saddle browns +saddle carbine,saddle carbines +saddle-cloth,saddle-cloths +saddlecloth,saddlecloths +saddle horn,saddle horns +saddle horse,saddle horses +saddlemaker,saddlemakers +saddle pad,saddle pads +saddle pain,saddle pains +saddle point,saddle points +saddlepoint,saddlepoints +saddle reef,saddle reefs +saddle ring,saddle rings +saddle roof,saddle roofs +saddler,saddlers +Saddler,Saddlers +saddle,saddles +saddle seat,saddle seats +saddle shoe,saddle shoes +saddle soap,saddle soaps +saddle sore,saddle sores +saddle stitch,saddle stitches +saddle tree,saddle trees +saddle-tree,saddle-trees +saddletree,saddletrees +saddle vein,saddle veins +saddo,saddos +Sadduceeism,Sadduceeisms +Sadducism,Sadducisms +sadet,sadets +sadfuck,sadfucks +sadguru,sadgurus +Sadh,Sadhs +sadhu,sadhus +Sadie Hawkins dance,Sadie Hawkins dances +sadiron,sadirons +sadist,sadists +sadomasochist,sadomasochists +sad sack,sad sacks +sadster,sadsters +saeptum,saeptums,saepta +sΓ¦ptum,sΓ¦ptums,sΓ¦pta +SAE,SAEs +saeta,saetas +saeter,saeters +safariboat,safariboats +safarigoer,safarigoers +safari jacket,safari jackets +safari park,safari parks +safari,safaris +safari suit,safari suits +safari supper,safari suppers +safari zoo,safari zoos +safebox,safeboxes +safebreaker,safebreakers +safe-conduct,safe-conducts +safe-cracker,safe-crackers +safecracker,safecrackers +safecracking,safecrackings +safe-deposit box,safe-deposit boxes +safe-deposit,safe-deposits +safeguarder,safeguarders +safeguard,safeguards +safe harbor,safe harbors +safe harbour,safe harbours +safe haven,safe havens +safe hit,safe hits +safe house,safe houses +safehouse,safehouses +safelight,safelights +safe mode,safe modes +safener,safeners +safe pair of hands,safe pairs of hands +safe room,safe rooms +safe,safes +safe seat,safe seats +safety belt,safety belts +safety call,safety calls +safety car,safety cars +safety catch,safety catches +safety coffin,safety coffins +safety-deposit box,safety-deposit boxes +safety factor,safety factors +safety helmet,safety helmets +safety island,safety islands +safety lamp,safety lamps +safety match,safety matches +safety net,safety nets +safety pin,safety pins +safety razor,safety razors +safety school,safety schools +safety stock,safety stocks +safety thongs,safety thongs +safety valve,safety valves +safeword,safewords +Saffer,Saffers +saffian,saffians +saffi,saffis +safflorite,safflorites +safflor,safflors +safflower,safflowers +saframycin,saframycins +safranine,safranines +saftie,safties +sagaciousness,sagaciousnesss +Saga lout,Saga louts +sagamite,sagamites +sagamitΓ©,sagamitΓ©s +sagamore,sagamores +sagan,sagans +Sagan,Sagans +sagapen,sagapens +sagapenum,sagapenums +sagartiid,sagartiids +saga,sagas +sagdid,sagdids +sagebrush,sagebrushes +sage brush,sage brushs +sage chicken,sage chickens +sage cock,sage cocks +sage green,sage greens +sage grouse,sage grouses +sage-grouse,sage-grouses +sage hen,sage hens +sagehen,sagehens +sageland,sagelands +sagene,sagenes +sagenite,sagenites +sage on a stage,sages on a stage,sages on stages +sage on the stage,sages on the stage,sages on stages +sage,sages +sageship,sageships +sage sparrow,sage sparrows +sage thrasher,sage thrashers +saggar maker,saggar makers +saggar maker's bottom knocker,saggar maker's bottom knockers +saggar,saggars +sagger,saggers +sagina,saginas +sagittal crest,sagittal crests +sagittal plane,sagittal planes +Sagittarian,Sagittarians +sagittarid,sagittarids +sagittariid,sagittariids +Sagittarius,Sagittariuses +sagittary,sagittaries +sagitta,sagittas +sagittocyst,sagittocysts +sagoin,sagoins +sago palm,sago palms +sago pudding,sago puddings +sag,sags +saguaro,saguaros +sagum,sagums,saga +sag wagon,sag wagons +sahabi,sahaba,sahabah +Sahabi,Sahaba,Sahabah +Sahaptian,Sahaptians +Sahaptin,Sahaptins +Saharan,Saharans +SAHD,SAHDs +saheb,sahebs +Sahelian,Sahelians +sahibah,sahibahs +sahib,sahibs +sahlinite,sahlinites +sahlite,sahlites +SAHM,SAHMs +Sahrawi,Sahrawis +sahuaro,sahuaros +sahui,sahuis +saibling,saiblings +saice,saices +saick,saicks +saic,saics +saif,saifs +saiga,saigas +saignΓ©e,saignΓ©es +Saiko-komon,Saiko-komon +saikyr,saikyrs +sailboarder,sailboarders +sailboard,sailboards +sailboater,sailboaters +sailboat,sailboats +sail curve,sail curves +sailer,sailers +saile,sailes +sailfin,sailfins +sailfish,sailfishes,sailfish +sailing boat,sailing boats +sailing dinghy,sailing dinghies +sailing,sailings +sailing ship,sailing ships +sailing vessel,sailing vessels +sailmaker,sailmakers +sailor dive,sailor dives +sailorman,sailormen +sailor,sailors +sailor's-choice,sailor's-choice +sailor's hitch,sailor's hitches +sailor suit,sailor suits +sailorwoman,sailorwomen +sailour,sailours +sailplane,sailplanes +sail-plan,sail-plans +sail,sails +sailyard,sailyards +Saimaa ringed seal,Saimaa ringed seals +saimiri,saimiris +saim,saims +sainfoin,sainfoins +saining,sainings +Saint Agnes' Eve,Saint Agnes' Eves +Saint Andrew's cross,Saint Andrew's crosses +Saint Anthony's cross,Saint Anthony's crosses +Saint Anthony's fire,Saint Anthony's fires +Saint Bernard,Saint Bernards +saintdom,saintdoms +Saint Elmo's fire,Saint Elmo's fires +saintess,saintesses +Saint-EstΓ¨phe,Saint-EstΓ¨phes +Saint Helenian,Saint Helenians +sainthood,sainthoods +saintliness,saintlinesses +saintling,saintlings +Saint Lucian,Saint Lucians +saintology,saintologies +saintpaulia,saintpaulias +saint,saints +Saint,Saints +saints' bell,saints' bells +saint's day,saints' days +saintship,saintships +Saint-Simonian,Saint-Simonians +sai,sai +sais,saises +saithe,saithe +saith,saiths +Saiva,Saivas +Saivite,Saivites +sajene,sajenes +sajou,sajous +Sakai,Sakai +Saka,Saka,Sakas,Sacae +sake bomb,sake bombs +sakeen,sakeens +sakeret,sakerets +saker,sakers +sake,sakes +sake,sakes +sakΓ©,sakΓ©s +saketini,saketinis +sakia,sakias +sakieh,sakiehs +saki,sakis +sakiyeh,sakiyehs +Sakkara,Sakkaras +sakkos,sakkoi +sakret,sakrets +saksaul,saksauls +Sakta,Saktas +salaam,salaams +salad bar,salad bars +salad cream,salad creams +salad dodger,salad dodgers +salad-dodger,salad-dodgers +salade,salades +salading,saladings +salad onion,salad onions +salad year,salad years +Salafist,Salafists +salaf,salafs +salagane,salaganes +Salagrama,Salagramas +salak palm,salak palms +salak,salaks +salalberry,salalberries +salamander,salamanders +salamandrid,salamandrids +salam,salams +salangana,salanganas +salangane,salanganes +salangid,salangids +salariat,salariats +salary cap,salary caps +salaryman,salarymen +salary sacrifice,salary sacrifices +salary,salaries +sala,salas +salat,salats +salband,salbands +salchow,salchows +saldid,saldids +saleability,saleabilities +saleableness,saleablenesses +salΓ©eite,salΓ©eites +Salemite,Salemites +sale price,sale prices +salep,saleps +saleratus,saleratuses +saleroom,salerooms +sales advisor,sales advisors +sale,sales +sale,sales +sales assistant,sales assistants +sales associate,sales associates +salesboy,salesboys +salesclerk,salesclerks +sales floor,sales floors +sales force,sales forces +salesforce,salesforces +salesgirl,salesgirls +Salesian,Salesians +saleslady,salesladies +sales ledger,sales ledgers +salesman,salesmen +salesmanship,salesmanships +salesmarketer,salesmarketers +salesperson,salespersons,salespeople +sales pitch,sales pitches +sales profit,sales profits +sales representative,sales representatives +sales rep,sales reps +salesroom,salesrooms +sales slip,sales slips +sales tax,sales taxes +sales team,sales teams +saleswoman,saleswomen +salet,salets +sale yard,sale yards +Salian,Salians +salicet,salicets +salicetum,salicetums,saliceta +salicional,salicionals +salicylanilide,salicylanilides +salicylate,salicylates +salicylide,salicylides +salicylism,salicylisms +salicylite,salicylites +salicyl,salicyls +saliency,saliencies +salientian,salientians +salient,salients +salification,salifications +salimeter,salimeters +salina,salinas +salination,salinations +saline evaporite,saline evaporites +saline,salines +saline solution,saline solutions +saliniketal,saliniketals +salinity,salinities +salinization,salinizations +salinometer,salinometers +salinosporamide,salinosporamides +salisburia,salisburias +Salisbury steak,Salisbury steaks +salivant,salivants +salivarium,salivaria +salivary gland,salivary glands +saliva test,saliva tests +salivation,salivations +salivator,salivators +salix,salixes,salices +sallary,sallaries +salle d'armes,salles d'armes +sallee,sallees +salle,salles +sallet,sallets +sallet,sallets +salley,salleys +sallow,sallows +sallowthorn,sallowthorns +Sally Lunn,Sally Lunns +sally port,sally ports +sallyport,sallyports +sally,sallies +sally,sallies +sally,sallies +salmagundi,salmagundis +Salmanazar,Salmanazars +salmeterol xinafoate,salmeterol xinafoates +salmi,salmis +salmonberry,salmonberries +salmonburger,salmonburgers +salmonella,salmonellas,salmonellae +salmonellosis,salmonelloses +salmoner,salmoners +salmonet,salmonets +salmonid,salmonids +salmonoid,salmonoids +salmon,salmon,salmons +salmon trout,salmon trout +salm,salms +salogen,salogens +salometer,salometers +salomi,salomis +saloniste,salonistes +salonniΓ¨re,salonniΓ¨res +salon,salons +saloonkeeper,saloonkeepers +saloon,saloons +Salopian,Salopians +salpa,salpas,salpae +salpian,salpians +salpichrolide,salpichrolides +salpicon,salpicons +salpid,salpids +salpingectomy,salpingectomies +salpingid,salpingids +salpingo-oophorectomy,salpingo-oophorectomies +salpingopharyngeus,salpingopharyngei +salpingostomy,salpingostomies +salpinx,salpinges +salp,salps +salsafy,salsafies +sal,sals +salsatheque,salsatheques +salsero,salseros +salse,salses +salsola,salsolas +saltarella,saltarellas +saltarello,saltarellos +saltasaurid,saltasaurids +saltationist,saltationists +saltation,saltations +saltbox,saltboxes +salt cedar,salt cedars +salt cellar,salt cellars +saltcellar,saltcellars +salt chuck,salt chucks +saltchuck,saltchucks +salt cod,salt cods +salt dome,salt domes +salt dough map,salt dough maps +saltern,salterns +salter,salters +salt flat,salt flats +salt gland,salt glands +salticid,salticids +saltier,saltiers +saltie,salties +saltigrade,saltigrades +saltillo,saltillos +saltimbanco,saltimbancos +saltimbocca,saltimboccas +saltine,saltines +saltiness,saltinesses +saltire,saltires +salt lick,salt licks +saltlick,saltlicks +saltmaker,saltmakers +salt marsh,salt marshes +saltmarsh,saltmarshes +salt mine,salt mines +saltmouth,saltmouths +saltopus,saltopuses +salt pan,salt pans +saltpan,saltpans +salt pig,salt pigs +salt rheum,salt rheums +salt,salts +salt shaker,salt shakers +saltshaker,saltshakers +salt substitute,salt substitutes +saltwater crocodile,saltwater crocodiles +saltworks,saltworks +saltwort,saltworts +salty dog,salty dogs +salty dog,salty dogs +salubrity,salubrities +Saluki,Salukis +saluretic,saluretics +salutariness,salutarinesses +salutation,salutations +salutatorian,salutatorians +salutatory address,salutatory addresses +salutatory,salutatories +saluter,saluters +salute,salutes +Salvadoran,Salvadorans +Salvadorean,Salvadoreans +Salvadorian,Salvadorians +salvager,salvagers +salvage,salvages +salvage,salvages +salvage yard,salvage yards +salvar kameez,salvar kameezes +salvationist,salvationists +Salvationist,Salvationists +Salvatorian,Salvatorians +salvator,salvators +salvatory,salvatories +salver,salvers +salver,salvers +salver,salvers +salve,salves +salvestrol,salvestrols +salvia,salvias +salvinorin,salvinorins +Salvi,Salvis +salvor,salvors +salvo,salvos +salvo,salvos +salwar kameez,salwar kameezes +samaj,samajs,samajes +samara,samaras +Samarian,Samarians +samarid,samarids +samaritan,samaritans +Samaritan,Samaritans +samarra,samarras +samarskite,samarskites +sambal,sambals +sambar,sambars +samba,sambas +sambhur,sambhurs +samboo,samboos +sambo,sambos +sambo,sambos +Sambo,Sambos +Sam Brown belt,Sam Brown belts +Sam Browne belt,Sam Browne belts +sambubioside,sambubiosides +sambuca,sambucas +sambuke,sambukes +sambuq,sambuqs +Samburu,Samburu +samekh,samekhs +sameness,samenesses +same-sex marriage,same-sex marriages +samfie,samfies +Samhita,Samhitas +Samian,Samians +samiel,samiels +Samiot,Samiots +Sami,Sami,Samis +samisen,samisen +samizdat,samizdats +samlaw,samlaw +samlet,samlets +samlor,samlor,samlors +Sammarinese,Sammarineses +sammich,sammiches +sammier,sammiers +sammie,sammies +Samnite,Samnites +Samoan,Samoans +Samogitian,Samogitians +samoid,samoids +samoom,samooms +samoosa,samoosas +samosa,samosas +samovar,samovars +Samoyede,Samoyedes +Samoyed,Samoyeds,Samoyed +sampan,sampans +samphire,samphires +sampi,sampis +sample function,sample functions +sample market,sample markets +sample mass,sample masses +sample mean,sample means +sampler,samplers +sample,samples +sample space,sample spaces +sampling error,sampling errors +sampling,samplings +sampling straw,sampling straws +samplist,samplists +sampradaya,sampradayas +samp,samps +sam,sams +SAM,SAMs +samurai,samurai,samurais +San Andreas fault,San Andreas faults +sanation,sanations +sanatorium,sanatoriums,sanatoria +sanbenito,sanbenitos +sance bell,sance bells +sancocho,sancochos +sanctification,sanctifications +sanctifier,sanctifiers +sanctioner,sanctioners +sanction,sanctions +sanctuary,sanctuaries +sanctum,sanctums +sanctus bell,sanctus bells +sandal,sandals +sandalwood,sandalwoods +Sandancer,Sandancers +sandbagger,sandbaggers +sandbag,sandbags +sandbank,sandbanks +sand bar,sand bars +sandbar,sandbars +sand bath,sand baths +sandbath,sandbaths +sandbell,sandbells +sandbelt,sandbelts +sandblaster,sandblasters +sandboard,sandboards +sand boil,sand boils +sandbox game,sandbox games +sand box,sand boxes +sandbox,sandboxes +sandboy,sandboys +sandbur,sandburs +sandcastle,sandcastles +sand cat,sand cats +sand crab,sand crabs +sand crack,sand cracks +sand dab,sand dabs +Sand Dancer,Sand Dancers +Sand-Dancer,Sand-Dancers +sand dollar,sand dollars +sand dune,sand dunes +sand eel,sand eels +sandek,sandeks +Sandemanian,Sandemanians +sanderling,sanderlings +sander,sanders +sandersonia,sandersonias +sandfish,sandfishes,sandfish +sand flea,sand fleas +sandflea,sandfleas +sandfly,sandflies +sandglass,sandglasses +sandgroper,sandgropers +sandgrounder,sandgrounders +sandgrouse,sandgrouse +sandhill crane,sandhill cranes +sandhiller,sandhillers +sandhill,sandhills +sand hog,sand hogs +sandhog,sandhogs +sandhopper,sandhoppers +San Diegan,San Diegans +sanding,sandings +sanding sheet,sanding sheets +Sandinista,Sandinistas +sand iron,sand irons +sandlapper,sandlappers +sandling,sandlings +sandlot,sandlots +sandlotter,sandlotters +sandman,sandmen +sand martin,sand martins +sand-martin,sand-martins +sand mole,sand moles +sand nigger,sand niggers +sandnigger,sandniggers +sand olive,sand olives +sandpaperer,sandpaperers +sandpile,sandpiles +sandpiper,sandpipers +sandpit,sandpits +sandprawn,sandprawns +sand puppy,sand puppies +sand rail,sand rails +sandrail,sandrails +sandre,sandres +sandridge,sandridges +sandscape,sandscapes +sand sedge,sand sedges +sandshoe crusher,sandshoe crushers +sandshoe,sandshoes +sandspit,sandspits +sand storm,sand storms +sandstorm,sandstorms +sandthorn,sandthorns +sand trap,sand traps +sandtrap,sandtraps +sand wasp,sand wasps +sand wedge,sand wedges +sand whiting,sand whitings +sandwich board,sandwich boards +sandwichboard,sandwichboards +sandwich coin,sandwich coins +sandwich compound,sandwich compounds +Sandwicher,Sandwichers +sandwich generation,sandwich generations +Sandwich Islander,Sandwich Islanders +sandwichman,sandwichmen +sandwich,sandwiches +Sandwich tern,Sandwich terns +sandworm,sandworms +sandwort,sandworts +Sandy,Sandies +San Franciscan,San Franciscans +Sangamonian,Sangamonians +sangar,sangars +Sanga,Sangas +sangeet,sangeets +sanger,sangers +sanger,sangers +sangiac,sangiacs +sanglier,sangliers +sangoma,sangomas +sango,sangos +sango,sangos,sangoes +sanguinarian,sanguinarians +sanguinaria,sanguinarias +sanguinary,sanguinaries +sanguine,sanguines +sanguinity,sanguinities +sanguisuge,sanguisuges +Sanhedrin,Sanhedrins +Sanhedrist,Sanhedrists +Sanhita,Sanhitas +sanicle,sanicles +sanies,sanies +sanitarian,sanitarians +sanitarist,sanitarists +sanitarium,sanitariums,sanitaria +sanitary napkin,sanitary napkins +sanitary towel,sanitary towels +sanitation,sanitations +sanitisation,sanitisations +sanitization,sanitizations +sanitizer,sanitizers +sanitorium,sanitoriums,sanitoria +sanity check,sanity checks +sanity,sanities +sanjakbeg,sanjakbegs +sanjak,sanjaks +sankha,sankhas +sannop,sannops +sannup,sannups +sanny,sannies +sanpan,sanpans +san,sans +san,sans +sans-culotte,sans-culottes +sansculotte,sansculottes +sans-culottide,sans-culottides +Sans-culottide,Sans-culottides +Sansculottide,Sansculottides +sansei,sanseis +sanskara,sanskaras +sanskritist,sanskritists +Sanskritist,Sanskritists +sans serif,sans serifs +Santa Ana wind,Santa Ana winds +Santa hat,Santa hats +santalin,santalins +santalum,santalums +Santana wind,Santana winds +Santa sack,Santa sacks +Santa suit,Santa suits +Santee,Santees +SanterΓ­an,SanterΓ­ans +Santiam berry,Santiam berries +santim,santimat +santim,santims +santim,santims +santoku,santokus +santol,santols +santonate,santonates +santoninate,santoninates +santon,santons +santoor,santoors +santur,santurs +saola,saolas +s-aorist,s-aorists +SΓ£o TomΓ©an,SΓ£o TomΓ©ans +sapadilla,sapadillas +sapadillo,sapadillos,sapadilloes +sapajo,sapajos +sapajou,sapajous +sap ball,sap balls +sap fagot,sap fagots +sapfest,sapfests +sap green,sap greens +saphead,sapheads +saphenous vein,saphenous veins +saphie,saphies +sapiens,sapiens +sapiosexual,sapiosexuals +sapling,saplings +sapodilla,sapodillas +sapogenin,sapogenins +saponifier,saponifiers +saponin,saponins +saponule,saponules +sapor,sapors +sapota,sapotas +sapote,sapotes +sapper,sappers +sapphire,sapphires +sapphirinid,sapphirinids +sapphist,sapphists +Sapphist,Sapphists +sapphyrin,sapphyrins +sappodilla,sappodillas +saprist,saprists +saprobe,saprobes +sap roller,sap rollers +sapromyzid,sapromyzids +sapropel,sapropels +saprophagan,saprophagans +saprophage,saprophages +saprophyte,saprophytes +saprotroph,saprotrophs +sap rot,sap rots +sap,saps +sap,saps +sapskull,sapskulls +sapsucker,sapsuckers +sap tube,sap tubes +sapucaia,sapucaias +sap-wood,sap-woods +sapygid,sapygids +Sarabaite,Sarabaites +sarabande,sarabandes +saraband,sarabands +Saracen,Saracens +Saragossan,Saragossans +Sarajevan,Sarajevans +sarangi,sarangis +sarangist,sarangists +saraphan,saraphans +sarcelle,sarcelles +sarcel,sarcels +sarcenet,sarcenets +sarcin,sarcins +sarcle,sarcles +sarcoblast,sarcoblasts +sarcocarp,sarcocarps +sarcocele,sarcoceles +sarcocystid,sarcocystids +sarcoderm,sarcoderms +sarcode,sarcodes +sarcodine,sarcodines +sarcoglycan,sarcoglycans +sarcoid,sarcoids +sarcolemma,sarcolemmas,sarcolemmata +sarcoma,sarcomas,sarcomata +sarcomere,sarcomeres +sarcopenia,sarcopenias +sarcophagan,sarcophagans +sarcophagid,sarcophagids +sarcophagus,sarcophagi,sarcophaguses +sarcophile,sarcophiles +sarcopside,sarcopsides +sarcopsyllid,sarcopsyllids +sarcopterygian,sarcopterygians +sarcoptid,sarcoptids +sarcoseptum,sarcosepta +sarcosis,sarcoses +sarcosphere,sarcospheres +sarcostyle,sarcostyles +sarcotic,sarcotics +sarcotoxin,sarcotoxins +sardachate,sardachates +sardan,sardans +sardel,sardels +sardine,sardines +Sardinian,Sardinians +sardonyx,sardonyxes +sard,sards +saree,sarees +sargassum,sargassums +sarge,sarges +Sargonid,Sargonids +sarigue,sarigues +sari,saris +sarissa,sarissas +sarissophoros,sarissophoroi +sarkar,sarkars +Sarkee,Sarkees +sark,sarks +sarlyk,sarlyks +sarmale,sarmales +sarma,sarmas +sarment,sarments +sarnie,sarnies +sarn,sarns +sarod,sarods +sarong party girl,sarong party girls +sarong,sarongs +saros,saroses,saroi +sarpe,sarpes +sarplar,sarplars +sarplier,sarpliers +sarracenia,sarracenias +sarrusophone,sarrusophones +sarsaparilla,sarsaparillas +sarsa,sarsas +sarsenet,sarsenets +sarsen,sarsens +sarse,sarses +sarsnet,sarsnets +sarsparilla,sarsparillas +sartorialist,sartorialists +sartorius,sartorii +Sartrean,Sartreans +sart,sarts +sarubobo,sarubobos +sarung,sarungs +sarvisberry,sarvisberries +sarwan,sarwans +sarza,sarzas +sasanach,sasanachs +Sasanian,Sasanians +Sasanid,Sasanids,Sasanidae +SASER,SASERs +sashay,sashays +sashery,sasheries +sashoon,sashoons +sash,sashes +sash window,sash windows +sasin,sasins +Saskabusher,Saskabushers +Saskatchewanian,Saskatchewanians +Saskatonian,Saskatonians +saskatoon blueberry,saskatoon blueberries +saskatoon,saskatoons +sasparilla,sasparillas +sasquatch,sasquatches +sassabye,sassabyes +sassaby,sassabies +Sassanian,Sassanians +Sassanid,Sassanids,Sassanidae +Sassarese,sassaresi +sassenach,sassenachs +Sassenach,Sassenachs +sasse,sasses +sassolite,sassolites +Sastra,Sastras +sastruga,sastrugi +SATA cable,SATA cables +satai,satais +satang,satangs,satang +satanic ritual abuse,satanic ritual abuses +satanism,satanisms +Satanity,Satanities +satan,satans +Satan,Satans +satay,satays +satchelful,satchelfuls,satchelsful +satchel,satchels +satellite campus,satellite campuses +satellite dish,satellite dishes +satellite navigation system,satellite navigation systems +satellite phone,satellite phones +satellite planet,satellite planets +satellite,satellites +satellitium,satellitiums,satellitia +satellitosis,satellitoses +satelloid,satelloids +sate,sates +satΓ©,satΓ©s +satguru,satgurus +satiation,satiations +satinet,satinets +satinette,satinettes +satin,satins +satirist,satirists +satirizer,satirizers +satisfaction,satisfactions +satisficer,satisficers +satisfier,satisfiers +sat nav,sat navs +sat-nav,sat-navs +satnav,satnavs +satoshi,satoshis +satoyama,satoyamas +satphone,satphones +satrapate,satrapates +satrapess,satrapesses +satrap,satraps +satrapy,satrapies +sat,sats +satsuma,satsumas +saturable reactor,saturable reactors +saturant,saturants +saturated fat,saturated fats +saturated fatty acid,saturated fatty acids +saturated solution,saturated solutions +saturated vapor pressure,saturated vapor pressures +saturation current,saturation currents +saturation point,saturation points +saturation temperature,saturation temperatures +saturation vapor pressure,saturation vapor pressures +saturation vapour pressure,saturation vapour pressures +saturator,saturators +Saturday night special,Saturday night specials +Saturday-night special,Saturday-night specials +Saturday,Saturdays +saturnalia,saturnalias +Saturnian,Saturnians +saturniid,saturniids +Saturnist,Saturnists +Saturn V,Saturn Vs +satyre,satyres +satyress,satyresses +satyrid,satyrids +satyrion,satyrions +satyrisk,satyrisks +satyr,satyrs +sauba ant,sauba ants +sauce boat,sauce boats +sauceboat,sauceboats +saucebox,sauceboxes +saucepan,saucepans +saucepot,saucepots +saucerful,saucerfuls,saucersful +saucer pass,saucer passes +saucer,saucers +saucier,sauciers +sauciness,saucinesses +saucisse,saucisses +saucisson,saucissons +Saudi Arabian,Saudi Arabians +Saudi,Saudis +sauerkraut soup,sauerkraut soups +sauger,saugers +saught,saughts +Sauk,Sauks,Sauk +saule,saules +saul,sauls +sault,saults +sault,saults +sauna,saunas +saun,sauns +saunterer,saunterers +saunter,saunters +saurel,saurels +saurian,saurians +saurichthyid,saurichthyids +saurischian,saurischians +saurology,saurologies +sauropodomorph,sauropodomorphs +sauropod,sauropods +sauropsid,sauropsids +sauropterygian,sauropterygians +saurornithoidid,saurornithoidids +saury,sauries +sausage casing,sausage casings +sausage dog,sausage dogs +sausage factory,sausage factories +sausage fest,sausage fests +sausagefest,sausagefests +sausagemaker,sausagemakers +sausage meat,sausage meats +sausage party,sausage parties +sausage roll,sausage rolls +sausage sizzle,sausage sizzles +saussurite,saussurites +sauterelle,sauterelles +sauterne,sauternes +sauter,sauters +sautrie,sautries +sauvegarde,sauvegardes +savagedom,savagedoms +savagery,savageries +savage,savages +savaging,savagings +savanilla,savanillas +savannah monitor,savannah monitors +savannah,savannahs +Savannah,Savannahs +savanna,savannas +savant,savants +savart,savarts +save-all,save-alls +saved game,saved games +savefile,savefiles +savegame,savegames +saveloy,saveloys +save point,save points +savepoint,savepoints +saver,savers +save,saves +save slot,save slots +savestate,savestates +savinase,savinases +savine,savines +saving grace,saving graces +savings account,savings accounts +savings bank,savings banks +saving throw,saving throws +savin,savins +savioress,savioresses +savior,saviors +saviouress,saviouresses +saviour,saviours +Saviour,Saviours +saviour sibling,saviour siblings +Savi's warbler,Savi's warblers +Savonian,Savonians +savorer,savorers +savor,savors +savory,savories +savory,savories +savourer,savourers +savour,savours +Savoyard,Savoyards +Savoy cabbage,Savoy cabbages +savoy,savoys +sav,savs +savviness,savvinesses +sawbelly,sawbellies +sawbench,sawbenches +sawbill,sawbills +sawbones,sawbones,sawboneses +saw buck,saw bucks +sawbuck,sawbucks +sawder,sawders +sawdust circuit,sawdust circuits +sawdust trail,sawdust trails +sawed-off shotgun,sawed-off shotguns +sawer,sawers +sawfish,sawfishes +sawfly,sawflies +saw grass,saw grasses +saw-grass,saw-grasses +sawgrass,sawgrasses +sawhorse,sawhorses +sawmill,sawmills +sawney,sawneys +Sawney,Sawneys +sawn-off,sawn-offs +sawn-off shotgun,sawn-off shotguns +sawpit,sawpits +saw,saws +saw,saws +Saw,Saws +SAW,SAWs +saw set,saw sets +sawset,sawsets +saw tooth,saw teeth +sawtooth,sawteeth,sawtooths +sawtooth wave,sawtooth waves +sawtry,sawtries +sawwhet,sawwhets +sawwort,sawworts +saw wrest,saw wrests +sawyer,sawyers +sawyer's handful,sawyer's handfuls +saxaul,saxauls +saxe blue,saxe blues +saxello,saxellos +saxhorn,saxhorns +saxicava,saxicavas,saxicavae +saxicavid,saxicavids +saxifrage,saxifrages +saxion,saxions +saxist,saxists +Saxonian,Saxonians +Saxonism,Saxonisms +Saxonist,Saxonists +saxonite,saxonites +Saxon,Saxons +saxophone,saxophones +saxophonist,saxophonists +sax,saxes +sax,saxes +sax tuba,sax tubas +sayer,sayers +sayette,sayettes +saying,sayings +sayman,saymen +saymaster,saymasters +say,says +say,says +sazan,sazans +Sazarac,Sazaracs +sazerac,sazeracs +Sazerac,Sazeracs +sazetidine,sazetidines +sazhen,sazhens +saz,sazes,sazzes +s-band,s-bands +SBF,SBFs +sbirro,sbirros,sbirri +sborgite,sborgites +scabbardfish,scabbardfishes,scabbardfish +scabbard,scabbards +scabbling,scabblings +scabicide,scabicides +scabious,scabiouses +scabland,scablands +scabling,scablings +scab,scabs +scad,scads +scΓ¦ne,scΓ¦nes +scaevity,scaevities +scaffoldage,scaffoldages +scaffolder,scaffolders +scaffolding tower,scaffolding towers +scaffold protein,scaffold proteins +scaffold,scaffolds +scagliola,scagliolas +scalade,scalades +scalado,scalados +scalar curl,scalar curls +scalar field,scalar fields +scalar function,scalar functions +scalar multiplication,scalar multiplications +scalaron,scalarons +scalar product,scalar products +scalar,scalars +scala,scalas,scalae +scalation,scalations +scalawag,scalawags +scalder,scalders +scalder,scalders +scaldfish,scaldfishes,scaldfish +scalding,scaldings +scald,scalds +scald,scalds +scaleback,scalebacks +scalebeam,scalebeams +scaleboard plane,scaleboard planes +scaleboard,scaleboards +scale cube,scale cubes +scaled dove,scaled doves +scale degree,scale degrees +scaledown,scaledowns +scaled question,scaled questions +scale insect,scale insects +scalelength,scalelengths +scale mail,scale mails +scale model,scale models +scalene muscle,scalene muscles +scalene,scalenes +scalene triangle,scalene triangles +scalenohedron,scalenohedrons,scalenohedra +scalenus,scaleni +scaleout,scaleouts +scalepan,scalepans +scaler,scalers +scale ruler,scale rulers +scale,scales +scale,scales +scale,scales +scalesia,scalesias +scaleup,scaleups +scaley,scaleys +scalie,scalies +scaling ladder,scaling ladders +scaling,scalings +scallawag,scallawags +scallion,scallions +scalloped oyster,scalloped oysters +scalloper,scallopers +scallopini,scallopinis +scallop,scallops +scallop theorem,scallop theorems +scall,scalls +scally,scallies +scallywag,scallywags +scalogram,scalograms +scaloposaurid,scaloposaurids +scaloppine,scaloppines,scaloppini +scalpel,scalpels +scalper,scalpers +scalping,scalpings +scalp lock,scalp locks +scalp,scalps +scaly anteater,scaly anteaters +scalyfin,scalyfins +scalyfoot,scalyfoots +scaly,scalies +scaly-sided merganser,scaly-sided mergansers +scam artist,scam artists +scambler,scamblers +scamillus,scamilli +scammee,scammees +scammer,scammers +scammonic acid,scammonic acids +scammony,scammonies +scampavia,scampavias +scamperer,scamperers +scamper,scampers +scampi,scampi +scampo,scampi +scamp,scamps +scam,scams +scancode,scancodes +scandalmonger,scandalmongers +scandal,scandals +scandal sheet,scandal sheets +Scandinavianism,Scandinavianisms +Scandinavian,Scandinavians +Scandinavism,Scandinavisms +scanger,scangers +scanlator,scanlators +scan line,scan lines +scanline,scanlines +scanner,scanners +scanning electron microscope,scanning electron microscopes +scanning transmission electron microscope,scanning transmission electron microscopes +scanning tunneling microscope,scanning tunneling microscopes +scanno,scannos +scan,scans +scansion,scansions +scantlet,scantlets +scantling,scantlings +scantron,scantrons +scant,scants +scapegallows,scapegallowses +scapegoater,scapegoaters +scapegoat,scapegoats +scapegrace,scapegraces +scapement,scapements +scape,scapes +scape,scapes +scape-wheel,scape-wheels +scaphander,scaphanders +scaphandrid,scaphandrids +scaphiophrynine,scaphiophrynines +scaphiopodid,scaphiopodids +scaphocerite,scaphocerites +scaphognathid,scaphognathids +scaphognathite,scaphognathites +scaphoid abdomen,scaphoid abdomens +scaphoid bone,scaphoid bones +scaphoid,scaphoids +scapholunar,scapholunars +scaphopod,scaphopods +scapolite,scapolites +scaption,scaptions +scapulalgia,scapulalgias +scapular,scapulars +scapulary,scapularies +scapula,scapulas,scapulae +scapulet,scapulets +scapulocoracoid,scapulocoracoids +scapus,scapi +scarabΓ¦id,scarabΓ¦ids +scarabaeid,scarabaeids,scarabaeidae +scarabaeus,scarabaeuses +scarab beetle,scarab beetles +scarabee,scarabees +scarabeid,scarabeids +scaraboid,scaraboids +scarab,scarabs +scarce copper,scarce coppers +scarcement,scarcements +scardey cat,scardey cats +scard,scards +scarecrow,scarecrows +scaredy cat,scaredy cats +scaredy-cat,scaredy-cats +scarefire,scarefires +scaremongerer,scaremongerers +scaremonger,scaremongers +scare quote,scare quotes +scarer,scarers +scare,scares +scare story,scare stories +scarface,scarfaces +scarfer,scarfers +scarfie,scarfies +scarfmaker,scarfmakers +scarfpin,scarfpins +scarf,scarfs +scarf,scarves,scarfs +scarid,scarids +scarification,scarifications +scarificator,scarificators +scarifier,scarifiers +scarlatina,scarlatinas +Scarlet Day,Scarlet Days +scarlet fever,scarlet fevers +scarlet letter,scarlet letters +scarlet oak,scarlet oaks +scarlet pimpernel,scarlet pimpernels +scarlet,scarlets +scarlet woman,scarlet women +scarmage,scarmages +scaRNA,scaRNAs +scarp,scarps +scarring,scarrings +scar,scars +scar,scars +scar,scars +scarus,scari +scatback,scatbacks +scatch,scatches +scate,scates +scathefire,scathefires +scathel,scathels +scathe,scathes +scathophagid,scathophagids +scatole,scatoles +scatolia,scatolias +scatology,scatologies +scatophagid,scatophagids +scatophile,scatophiles +scatopsid,scatopsids +scat,scats +scat,scats +scattald,scattalds +scatterbrain,scatterbrains +scattered shower,scattered showers +scatterer,scatterers +scattergood,scattergoods +scattergun,scatterguns +scattering function,scattering functions +scattering,scatterings +scatterling,scatterlings +scatterometer,scatterometers +scatter plot,scatter plots +scatterplot,scatterplots +scatter rug,scatter rugs +scaturience,scaturiences +scauper,scaupers +scaup,scaups,scaup +scaurie,scauries +scaur,scaurs +scavage,scavages +scavenger hunt,scavenger hunts +scavenger,scavengers +scavenger's daughter,scavenger's daughters +scazon,scazons +sceat,sceats +scedasticity,scedasticities +scelerat,scelerats +sceleton,sceletons +scelet,scelets +scelidosaurid,scelidosaurids +scelionid,scelionids +scenario,scenarios +scenarist,scenarists +scena,scenas +scend,scends +scene-dock,scene-docks +scenegraph,scenegraphs +scene kid,scene kids +scenellid,scenellids +sceneman,scenemen +scener,sceners +scene,scenes +scene-shifter,scene-shifters +sceneshifter,sceneshifters +scenester,scenesters +scenic route,scenic routes +scenic,scenics +scenographer,scenographers +scenograph,scenographs +scenopinid,scenopinids +scent-bottle,scent-bottles +scent hound,scent hounds +scenthound,scenthounds +scent,scents +scepter,scepters +scepticist,scepticists +sceptick,scepticks +sceptic,sceptics +sceptre,sceptres +sce.,sci. +scetch,scetches +schadenfreuder,schadenfreuders +schade,schades +schah,schahs +schapska,schapskas +schede,schedes +schediasm,schediasms +scheduler,schedulers +schedule,schedules +scheik,scheiks +schelly,schellies +schema,schemata,schemas +schematic drawing,schematic drawings +schematic,schematics +schematic variable,schematic variables +schematism,schematisms +schematist,schematists +schemat,schemats +schemer,schemers +Schemer,Schemers +scheme,schemes +schemester,schemesters +schemey,schemeys +schemie,schemies +schemist,schemists +schene,schenes +scherbet,scherbets +scherif,scherifs +scherm,scherms +scherzo,scherzos,scherzi +schiavona,schiavonas +schicksa,schicksas +Schiff base,Schiff bases +schilbeid,schilbeids +schilbid,schilbids +schilling,schillings +schindleriid,schindleriids +schindylesis,schindyleses +schipperke,schipperkes +schirrhus,schirrhuses,schirrhi +schisis,schises +schisma,schismas +schismatick,schismaticks +schismatic,schismatics +schism,schisms +schistoceratid,schistoceratids +schistocyte,schistocytes +schistosomatid,schistosomatids +schistosome,schistosomes +schistosomiasis,schistosomiases +schistosomicide,schistosomicides +schist,schists +schizandra,schizandras +schizanthus,schizanthuses +schizoanalyst,schizoanalysts +schizocarp,schizocarps +schizocoele,schizocoeles +schizocoral,schizocorals +schizocyte,schizocytes +schizodactylid,schizodactylids +schizoid,schizoids +schizomid,schizomids +schizont,schizonts +schizopeltid,schizopeltids +schizophasic,schizophasics +schizophreniac,schizophreniacs +schizophrenic,schizophrenics +schizophyte,schizophytes +schizopodid,schizopodids +schizopod,schizopods +schizoporellid,schizoporellids +schizo,schizos +schizosexual,schizosexuals +schlemiel,schlemiels +Schlemm's canal,Schlemm's canals +Schlenk flask,Schlenk flasks +Schlenk tube,Schlenk tubes +schlepper,schleppers +schlepp,schlepps +schlep,schleps +Schleswiger,Schleswigers +schlimazel,schlimazels +schlockbuster,schlockbusters +schlockmeister,schlockmeisters +schlockumentary,schlockumentaries +schloenbachiid,schloenbachiids +schlomp,schlomps +schlong,schlongs +schlub,schlubs +schlump,schlumps +schmatte,schmattes +schmear,schmears +schmegeggy,schmegeggies +schmendrick,schmendricks +Schmidt camera,Schmidt cameras +Schmidt telescope,Schmidt telescopes +schmoe,schmoes +schmooze-athon,schmooze-athons +schmoozeathon,schmoozeathons +schmoozefest,schmoozefests +schmoozer,schmoozers +schmooze,schmoozes +schmo,schmos,schmoes +schmozzle,schmozzles +schmuck,schmucks +schnapper,schnappers +schnauzer,schnauzers +Schneiderian membrane,Schneiderian membranes +schnitzel,schnitzels +Schnoodle,Schnoodles +schnook,schnooks +schnorkel,schnorkels +schnorrer,schnorrers +schnoz,schnozzes +schnozzle,schnozzles +schnozz,schnozzes +scholar,scholars +scholarship,scholarships +scholar's mate,scholar's mates +schola,scholas +scholastical,scholasticals +scholasticism,scholasticisms +scholastick,scholasticks +scholastic,scholastics +Scholastic,Scholastics +scholiast,scholiasts +scholium,scholia +scholy,scholies +Schomburgk's deer,Schomburgk's deer +schoolbag,schoolbags +school band,school bands +school board,school boards +school book,school books +schoolbook,schoolbooks +schoolboy error,schoolboy errors +schoolboy,schoolboys +schoolbus,schoolbuses +school bus,school buses,school busses +school bus yellow,school bus yellows +schoolchild,schoolchildren +school class,school classes +school counselor,school counselors +school crossing attendant,school crossing attendants +schooldame,schooldames +schoolday,schooldays +schooler,schoolers +schoolfellow,schoolfellows +schoolfriend,schoolfriends +schoolgirl,schoolgirls +schoolgoer,schoolgoers +schoolhouse,schoolhouses +schoolie,schoolies +schoolies week,schoolies weeks +schoolkid,schoolkids +schoolma'am,schoolma'ams +schoolmaid,schoolmaids +schoolman,schoolmen +Schoolman,Schoolmen +school-marm,school-marms +schoolmarm,schoolmarms +schoolmaster,schoolmasters +school mate,school mates +schoolmate,schoolmates +schoolmistress,schoolmistresses +school night,school nights +school of hard knocks,schools of hard knocks +school of thought,schools of thought +school psychologist,school psychologists +schoolroom,schoolrooms +school,schools +school,schools +school shark,school sharks +schoolship,schoolships +schoolteacher,schoolteachers +school tie,school ties +school trip,school trips +school uniform,school uniforms +school voucher,school vouchers +schoolyard,schoolyards +school year,school years +schooly,schoolies +schooner,schooners +schottische,schottisches +schottisch,schottisches +schottish,schottishes +Schottky anomaly,Schottky anomalies +Schottky barrier,Schottky barriers +Schottky diode,Schottky diodes +schpeal,schpeals +schpeel,schpeels +schpiel,schpiels +Schrankschande,Schrankschanden +schrode,schrodes +SchrΓΆdinger equation,SchrΓΆdinger equations +SchrΓΆdinger's cat,SchrΓΆdinger's cats +SchrΓΆdinger's kitten,SchrΓΆdinger's kittens +SchrΓΆdinger wave function,SchrΓΆdinger wave functions +schroedinbug,schroedinbugs +schubertiade,schubertiades +schuhplattler,schuhplattlers +Schuler pendulum,Schuler pendulums +schussboomer,schussboomers +schuss,schusses +Schutzstaffel,Schultzstaffeln +schuyt,schuyts +schvartze,schvartzes +Schwann cell,Schwann cells +schwannoma,schwannomas,schwannomata +schwannomatosis,neurofibromatoses +Schwann's sheath,Schwann's sheaths +schwanpan,schwanpans +Schwarzenegger,Schwarzeneggers +Schwarzian derivative,Schwarzian derivatives +Schwarzian,Schwarzians +Schwarz inequality,Schwarz inequalities +schwarzite,schwarzites +Schwarzschild black hole,Schwarzschild black holes +Schwarzschild radius,Schwarzschild radii +schwa,schwas +Schwenkfelder,Schwenkfelders +Schwenkfeldian,Schwenkfeldians +schwerpunkt,schwerpunkts +Schwerpunkt,Schwerpunkts,Schwerpunkte +sciaena,sciaenas +sciaenid,sciaenids +sciaenoid,sciaenoids +sciagraph,sciagraphs +sciamachy,sciamachies +sciarid,sciarids +sciatic nerve,sciatic nerves +science center,science centers +science centre,science centres +science fair,science fairs +science park,science parks +science room,science rooms +scientific calculator,scientific calculators +scientific classification,scientific classifications +scientific method,scientific methods +scientific model,scientific models +scientific name,scientific names +scientific problem,scientific problems +scientist,scientists +Scientologist,Scientologists +scientometrist,scientometrists +scilla,scillas +Scilly Islander,Scilly Islanders +scimetar,scimetars +scimitarbill,scimitarbills +scimitar horned oryx,scimitar horned oryx,scimitar horned oryxes +scimitar,scimitars +scimiter,scimiters +scincid,scincids +Scincoidian,Scincoidians +scincoid,scincoids +scincomorph,scincomorphs +scincosaurid,scincosaurids +sciniph,sciniphs +scink,scinks +scintigram,scintigrams +scintilla,scintillae,scintillas +scintillation cocktail,scintillation cocktails +scintillation counter,scintillation counters +scintillation,scintillations +scintillation vial,scintillation vials +scintillator,scintillators +scintillometer,scintillometers +scintiscanner,scintiscanners +scintiscan,scintiscans +sciolist,sciolists +sciolto,scioltos +sciomachy,sciomachies +sciomyzid,sciomyzids +scion,scions +sciophyte,sciophytes +sciopticon,sciopticons +Sciot,Sciots +scire facias,scire faciases +scirocco,sciroccos +scirrhosity,scirrhosities +scirrhus,scirrhuses,scirrhi +scirtid,scirtids +sciscitation,sciscitations +scism,scisms +scissel,scissels +scission,scissions +scissorbill,scissorbills +scissoring,scissorings +scissor kick,scissor kicks +scissorsbill,scissorsbills +scissor,scissors +scissor sister,scissor sisters +scissorstail,scissorstails +scissurellid,scissurellids +scissure,scissures +scituation,scituations +sciurid,sciurids +sciurine,sciurines +SCJP,SCJPs +sclaff,sclaffs +sclate,sclates +sclaundre,sclaundres +Sclave,Sclaves +Sclavonian,Sclavonians +Sclav,Sclavs +scleractinian,scleractinians +scleralization,scleralizations +sclera,scleras,sclerae,sclerΓ¦ +sclereid,sclereids +sclerema,scleremas,scleremata +sclerite,sclerites +scleritome,scleritomes +sclerobase,sclerobases +scleroderma,sclerodermas +sclerodermite,sclerodermites +scleroderm,scleroderms +scleroma,scleromas,scleromata +sclerometer,sclerometers +sclerophyll,sclerophylls +scleroprotein,scleroproteins +sclerorhynchid,sclerorhynchids +sclerosis,scleroses +scleroskeleton,scleroskeletons +sclerosomatid,sclerosomatids +sclerosponge,sclerosponges +sclerotal,sclerotals +sclerotherapist,sclerotherapists +sclerotherapy,sclerotherapies +sclerotic,sclerotics +sclerotin,sclerotins +sclerotisation,sclerotisations +sclerotium,sclerotia +sclerotization,sclerotizations +sclerotome,sclerotomes +sclerotomy,sclerotomies +scobberlotcher,scobberlotchers +scobby,scobbies +scobe,scobes +scoffer,scoffers +scoffing,scoffings +scofflaw,scofflaws +scoff,scoffs +scoff,scoffs +scolder,scolders +scolding,scoldings +scold's bridle,scold's bridles +scold,scolds +scolecodont,scolecodonts +scolecomorphid,scolecomorphids +scolex,scolices,scolexes +scolie,scolies +scoliid,scoliids +scoliosis,scolioses +scoliotic,scoliotics +scolithus,scolithi +scollop,scollops +scolopacid,scolopacids +scolopendra,scolopendras +scolopendrid,scolopendrids +scoloplacid,scoloplacids +scolytid,scolytids +scolytine,scolytines +scomberesocid,scomberesocids +scomberoid,scomberoids +scombrid,scombrids +scombroid,scombroids +scombrolabracid,scombrolabracids +scombropid,scombropids +scomm,scomms +sconce,sconces +sconce,sconces +sconcheon,sconcheons +scone,scones +scoober,scoobers +Scooby gang,Scooby gangs +Scooby snack,Scooby snacks +scooper,scoopers +scoopful,scoopfuls,scoopsful +scoop,scoops +scoop shot,scoop shots +scoopstone,scoopstones +scoopula,scoopulas +scoop wheel,scoop wheels +scoopwheel,scoopwheels +scooterboy,scooterboys +scooterist,scooterists +scooter,scooters +scoot,scoots +scope dope,scope dopes +scopelarchid,scopelarchids +scopeloid,scopeloids +scope,scopes +scophthalmid,scophthalmids +scopid,scopids +scopie,scopies +scopophile,scopophiles +scopophiliac,scopophiliacs +scop,scops +scops owl,scops owls +scops-owl,scops-owls +scoptophile,scoptophiles +scoptophiliac,scoptophiliacs +scopula,scopulae +scorched earth policy,scorched earth policies +scorched-earth policy,scorched-earth policies +scorcher,scorchers +scorch,scorches +scoreboard,scoreboards +scorebook,scorebooks +scorebox,scoreboxes +scorecard,scorecards +scorefile,scorefiles +scorekeeper,scorekeepers +scoreline,scorelines +score-off,score-offs +scorepad,scorepads +scorer,scorers +score,scores +score sheet,score sheets +score-sheet,score-sheets +scoresheet,scoresheets +score string,score strings +scorewriter,scorewriters +scoria,scorias,scoriae +scoriation,scoriations +scorie,scories +scorification,scorifications +scorifier,scorifiers +scoring,scorings +scornee,scornees +scorner,scorners +scorpaenid,scorpaenids +scorpaenoid,scorpaenoids +scorpene,scorpenes +scorper,scorpers +scorpionate,scorpionates +scorpionfish,scorpionfish,scorpionfishes +scorpionfly,scorpionflies +scorpionid,scorpionids +scorpion kick,scorpion kicks +scorpion,scorpions +Scorpion,Scorpions +scorpion volley,scorpion volleys +Scorpio,Scorpios +scorpling,scorplings +scortation,scortations +scorzonera,scorzoneras +scotale,scotales +scotch argus,scotch arguses,scotch argus +scotch bonnet,scotch bonnets +Scotch crow,Scotch crows +scotch egg,scotch eggs +Scotch egg,Scotch eggs +scotcheroo,scotcheroos +Scotch fillet,Scotch fillets +Scotch finger,Scotch fingers +Scotchman,Scotchmen +Scotch pancake,Scotch pancakes +Scotch pie,Scotch pies +scotch,scotches +scotch,scotches +Scotch whisky,Scotch whiskies +Scotchwoman,Scotchwomen +scoter,scoters +scotia,scotias +scotino,scotinos +Scotist,Scotists +Scotlander,Scotlanders +scotodinia,scotodinias +scotograph,scotographs +scotoma,scotomas,scotomata +scotoperiod,scotoperiods +scotophase,scotophases +scotoscope,scotoscopes +scot,scots +Scotticism,Scotticisms +Scottish Deerhound,Scottish Deerhounds +Scottish Fold,Scottish Folds +Scottish wildcat,Scottish wildcats +scoubidou,scoubidous +scoucer,scoucers +scould,scoulds +scoundrelry,scoundrelries +scoundrel,scoundrels +scourer pad,scourer pads +scourer,scourers +scourger,scourgers +scourie,scouries +scouring pad,scouring pads +scouring powder,scouring powders +scouring rush,scouring rushes +scouring,scourings +scouser,scousers +Scouser,Scousers +Scouter,Scouters +scoutmaster,scoutmasters +scoutmastership,scoutmasterships +scoutmistress,scoutmistresses +scout,scouts +scout,scouts +scout,scouts +Scout,Scouts +scowl,scowls +scow,scows +SCP,SCPs +scrabbler,scrabblers +Scrabbler,Scrabblers +scrabbling,scrabblings +scraber,scrabers +scrage,scrages +scrag,scrags +scramasax,scramasaxes +scramble competition,scramble competitions +scrambled egg,scrambled eggs +scramble net,scramble nets +scrambler,scramblers +scramble,scrambles +scrambling,scramblings +scramjet,scramjets +scrapbooker,scrapbookers +scrap book,scrap books +scrapbook,scrapbooks +scraper,scrapers +scrape,scrapes +scrap heap,scrap heaps +scrap-heap,scrap-heaps +scrapheap,scrapheaps +scraping,scrapings +scrapmerchant,scrapmerchants +scrapper,scrappers +scrapple,scrapples +scrap,scraps +scrap,scraps +scraptiid,scraptiids +scrapyard,scrapyards +scratchback,scratchbacks +scratchbrush,scratchbrushes +scratch card,scratch cards +scratchcard,scratchcards +scratcher,scratchers +scratchie,scratchies +scratching post,scratching posts +scratchmark,scratchmarks +scratchpad,scratchpads +scratchplate,scratchplates +scratch,scratches +scratch sheet,scratch sheets +scratch team,scratch teams +scrat,scrats +scrawler,scrawlers +scrawling,scrawlings +scrawl,scrawls +scraw,scraws +scray,scrays +screak,screaks +screamer,screamers +screamfest,screamfests +screaming hairy armadillo,screaming hairy armadillos +screaming meemie,screaming meemies +screaming orgasm,screaming orgasms +scream queen,scream queens +scream,screams +screecher,screechers +screeching frog,screeching frogs +screech owl,screech owls +screech-owl,screech-owls +screeder,screeders +screed,screeds +screenager,screenagers +screencap,screencaps +screen capture,screen captures +screencast,screencasts +screen door,screen doors +screendoor,screendoors +screened cable,screened cables +screenee,screenees +screener,screeners +screenful,screenfuls,screensful +screengrab,screengrabs +screenie,screenies +screening length,screening lengths +screening room,screening rooms +screening smoke,screening smokes +screenlet,screenlets +screen name,screen names +screenname,screennames +screen of death,screens of death +screenplay,screenplays +screenprint,screenprints +screen reader,screen readers +screenreader,screenreaders +screen saver,screen savers +screen-saver,screen-savers +screensaver,screensavers +screenscape,screenscapes +screen-scraper,screen-scrapers +screen,screens +screenshot,screenshots +screens passage,screens passages +screen test,screen tests +screen wall,screen walls +screenwriter,screenwriters +scree,screes +screeve,screeves +screwball comedy,screwball comedies +screwballer,screwballers +screwball,screwballs +screw cap,screw caps +screwdriver,screwdrivers +screw drive,screw drives +screwer,screwers +screwmachine,screwmachines +screw-off,screw-offs +screw pile,screw piles +screw pine,screw pines +screwpine,screwpines +screw,screws +screw shoe,screw shoes +screw thread,screw threads +screwthread,screwthreads +screw top,screw tops +screw-top,screw-tops +screwtop,screwtops +screw-up,screw-ups +screwup,screwups +screwworm,screwworms +scribbet,scribbets +scribblement,scribblements +scribbler,scribblers +scribble,scribbles +scribbling,scribblings +scriber,scribers +scribe,scribes +scribing iron,scribing irons +scribing,scribings +scrid,scrids +scrimer,scrimers +scrimmage,scrimmages +scrimping bar,scrimping bars +scrimp,scrimps +scrimption,scrimptions +scrim,scrims +scrimshanker,scrimshankers +scrine,scrines +scripophily,scripophilies +scrip,scrips +scrip,scrips +scrip,scrips +scrip,scrips +scriptability,scriptabilities +script editor,script editors +scripter,scripters +scripting language,scripting languages +script kiddie,script kiddies +script kiddy,script kiddies +scriptlet,scriptlets +scriptment,scriptments +script monkey,script monkeys +scriptorium,scriptoria,scriptoriums +script,scripts +script supervisor,script supervisors +scripturalist,scripturalists +scripture,scriptures +Scripturian,Scripturians +Scripturist,Scripturists +scriptwriter,scriptwriters +scrivener,scriveners +scroag,scroags +scroat,scroats +scrobble,scrobbles +scrobicula,scrobiculae +scrod,scrods +scrofula,scrofulas,scrofulae,scrofulΓ¦ +scrofulide,scrofulides +scrog,scrogs +scroll bar,scroll bars +scroller,scrollers +scroll lock,scroll locks +Scroll Lock,Scroll Locks +scroll saw,scroll saws +scroll,scrolls +scroll wheel,scroll wheels +scrophula,scrophulas,scrophulae +scrote,scrotes +scrotocele,scrotoceles +scrotum,scrotums,scrota +scrounger,scroungers +scrounge,scrounges +scrow,scrows +scroyle,scroyles +scrubber,scrubbers +scrubbing brush,scrubbing brushes +scrubbing,scrubbings +scrub bird,scrub birds +scrubboard,scrubboards +scrub bull,scrub bulls +scrubeenie,scrubeenies +scrubfowl,scrubfowl,scrubfowls +scrubland,scrublands +scrub nurse,scrub nurses +scrub oak,scrub oaks +scrub robin,scrub robins +scrub,scrubs +scrub,scrubs +scrubs,scrubs +scrub wallaby,scrub wallabies +scrubwoman,scrubwomen +scrubwren,scrubwrens +scruffbucket,scruffbuckets +scruffle,scruffles +scruff,scruffs +scruff,scruffs +scrumble,scrumbles +scrum-half,scrum halves +scrum machine,scrum machines +scrummager,scrummagers +scrummage,scrummages +scrummaging machine,scrummaging machines +scrumpy,scrumpies +scrum,scrums +scruncher,scrunchers +scrunchie,scrunchies +scrunchion,scrunchions +scrunchi,scrunchis +scrunch,scrunches +scrunchy,scrunchies +scrunt,scrunts +scrunt,scrunts +scrupler,scruplers +scruple,scruples +scrupulist,scrupulists +scrupulosity,scrupulosities +scrutability,scrutabilities +scrutator,scrutators +scrutineer,scrutineers +scrutinization,scrutinizations +scrutinizer,scrutinizers +scrutiny,scrutinies +scrutny,scrutnies +scrutore,scrutores +scryer,scryers +scry,scries +scuba diver,scuba divers +scuba,scubas +scuba set,scuba sets +scuddick,scuddicks +scudo,scudos,scudoes,scudi +scud,scuds +scuffball,scuffballs +scuffer,scuffers +scuffler,scufflers +scuffle,scuffles +scuff mark,scuff marks +scuff,scuffs +scug,scugs +scuirid,scuirids +sculd,sculds +sculker,sculkers +sculler,scullers +scullery maid,scullery maids +scullery,sculleries +scullion,scullions +scullion,scullions +scull,sculls +scull,sculls +scull,sculls +scull,sculls +sculpin,sculpins +sculptor,sculptors +sculptour,sculptours +sculptress,sculptresses +sculptrix,sculptrices +sculptured painting,sculptured paintings +sculpturist,sculpturists +scumbag,scumbags +scumball,scumballs +scumber,scumbers +scumbling,scumblings +scumbucket,scumbuckets +scummer,scummers +Scummer,Scummers +scumming,scummings +scumsucker,scumsuckers +scunge,scunges +scungilli,scungillis +scunner,scunners +Scunner,Scunners +scuppaug,scuppaugs +scuppernong,scuppernongs +scupper,scuppers +scuppie,scuppies +scup,scups +scup,scup,scups +scurid,scurids +scurrier,scurriers +scurrility,scurrilities +scurrit,scurrits +scur,scurs +scurvy-grass,scurvy-grasses +SCU,SCU's,SCUs +scuta,scutae +scutcheon,scutcheons +scutcher,scutchers +scutch,scutches +scutch,scutches +scutella,scutellae +scutellation,scutellations +scutellerid,scutellerids +scutellum,scutella +scute,scutes +scutibranchiate,scutibranchiates +scutibranch,scutibranchs +scutigerid,scutigerids +scutigeromorph,scutigeromorphs +scut monkey,scut monkeys +scut,scuts +scut,scuts +scut,scuts +scutterer,scutterers +scutter,scutters +scuttle-butt,scuttle-butts +scuttler,scuttlers +scuttle,scuttles +scuttle,scuttles +scuttle,scuttles +scuttling,scuttlings +scutum,scuta +scuzzbag,scuzzbags +scuzzball,scuzzballs +scuzzbucket,scuzzbuckets +scuzz,scuzzes +scybalum,scybala +scydmaenid,scydmaenids +scye,scyes +scylacosaurid,scylacosaurids +scyliorhinid,scyliorhinids +scyllaeid,scyllaeids +scyllarian,scyllarians +scyllarid,scyllarids +scymetar,scymetars +scyphistoma,scyphistomas,scyphistomae,scyphistomata +scyphozoan,scyphozoans +scyphus,scyphi +scytale,scytales +scytalinid,scytalinids +scytheman,scythemen +scythe,scythes +scythestone,scythestones +Scythian,Scythians +scything,scythings +scythridid,scythridids +Scyth,Scyths +scytodid,scytodids +SDA,SDAs +SDF,SDFs +SDG,SDGs +SDL,SDLs +SDR,SDRs +sd,sds +sea acorn,sea acorns +sea adder,sea adders +sea anchor,sea anchors +sea anemone,sea anemones +sea angel,sea angels +sea apple,sea apples +sea arrow,sea arrows +seabank,seabanks +seabase,seabases +seabass,seabasses,seabass +sea bass,sea bass,sea basses +sea bat,sea bats +seabeach,seabeaches +sea bed,sea beds +seabed,seabeds +Seabee,Seabees +seaberry,seaberries +sea bird,sea birds +seabird,seabirds +sea blite,sea blites +sea blubber,sea blubbers +seaboard,seaboards +seaboat,seaboats +seabord,seabords +seaborgate,seaborgates +sea-bow,sea-bows +sea boy,sea boys +sea breeze,sea breezes +sea brief,sea briefs +sea bug,sea bugs +sea butterfly,sea butterflies +sea cabbage,sea cabbages +sea calf,sea calfs,sea calves +sea-calf,sea-calfs,sea-calves +seacalf,seacalves +sea campion,sea campions +sea canary,sea canaries +sea card,sea cards +seachanger,seachangers +sea change,sea changes +seachange,seachanges +sea chanty,sea chanties +sea clam,sea clams +seacliff,seacliffs +seacoast,seacoasts +sea cob,sea cobs +sea cock,sea cocks +seacock,seacocks +sea coconut,sea coconuts +sea colander,sea colanders +sea colewort,sea coleworts +sea coot,sea coots +sea cow,sea cows +seacraft,seacrafts +sea crow,sea crows +sea cucumber,sea cucumbers +sea dace,sea daces +sea daffodil,sea daffodils +sea day,sea days +sea devil,sea devils +seadevil,seadevils +sea dog,sea dogs +sea-dog,sea-dogs +seadog,seadogs +sea dove,sea doves +sea dragon,sea dragons +seadragon,seadragons +sea drake,sea drakes +sea duck,sea ducks +seaduck,seaducks +sea eagle,sea eagles +sea-eagle,sea-eagles +sea-ear,sea-ears +sea elephant,sea elephants +sea fan,sea fans +seafarer,seafarers +seafaring,seafarings +sea feather,sea feathers +sea fir,sea firs +seafloor,seafloors +seafood boil,seafood boils +seafood fork,seafood forks +seafoodie,seafoodies +seafowl,seafowls +sea fret,sea frets +seafront,seafronts +sea gherkin,sea gherkins +sea goose,sea geese +sea gown,sea gowns +sea grape,sea grapes +seagrass,seagrasses +sea gudgeon,sea gudgeons +seagull approach,seagull approaches +seagull manager,seagull managers +sea-gull,sea-gulls +seagull,seagulls +Seagull,Seagulls +sea hare,sea hares +seahawk,seahawks +sea heath,sea heaths +sea hedgehog,sea hedgehogs +sea hen,sea hens +sea hog,sea hogs +sea-hog,sea-hogs +sea holly,sea hollies +sea horse,sea horses +seahorse,seahorses +seah,seahs +seajacker,seajackers +seajacking,seajackings +seajack,seajacks +sea jelly,sea jellies +sea king,sea kings +sealab,sealabs +sea lamprey,sea lampreys +Sealander,Sealanders +sea lane,sea lanes +sea-lane,sea-lanes +sealant,sealants +sea lark,sea larks +sea lawyer,sea lawyers +sealbore,sealbores +seal dribble,seal dribbles +sealed beam,sealed beams +sealed bid,sealed bids +sealed source,sealed sources +sealed system,sealed systems +sea legs,sea legs +sea lemon,sea lemons +sea leopard,sea leopards +sealer,sealers +sealer,sealers +sea letter,sea letters +sea lettuce,sea lettuces +sea level,sea levels +sea lily,sea lilies +sealine,sealines +sea lion,sea lions +sealion,sealions +sea loach,sea loaches +sea louse,sea lice +seal point,seal points +seal ring,seal rings +seal,seals +seal,seals +SEAL,SEALs +sealship,sealships +sealskin,sealskins +Sealyham terrier,Sealyham terriers +seam allowance,seam allowances +seaman apprentice,seamen apprentice +seaman recruit,seamen recruit +seaman,seamen +seamare,seamares +sea mark,sea marks +seamark,seamarks +sea mat,sea mats +seamed stocking,seamed stockings +seamer,seamers +seamhead,seamheads +sea mile,sea miles +seaming machine,seaming machines +seaming,seamings +sea monk,sea monks +sea monster,sea monsters +sea moss,sea mosses +seamount,seamounts +sea mouse,sea mice +seamouse,seamice +sea mouth,sea mouths +seam,seams +seam,seams +seamster,seamsters +seamstress,seamstresses +seance,seances +sΓ©ance,sΓ©ances +sea needle,sea needles +sea nettle,sea nettles +seannachie,seannachies +sean,seans +sea onion,sea onions +sea orange,sea oranges +sea otter,sea otters +sea parrot,sea parrots +sea-parrot,sea-parrots +sea partridge,sea partridges +sea pass,sea passes +sea peach,sea peaches +sea pear,sea pears +sea pen,sea pens +sea pheasant,sea pheasants +sea piece,sea pieces +seapiece,seapieces +sea pie,sea pies +sea pie,sea pies +sea-pie,sea-pies +sea pigeon,sea pigeons +sea pig,sea pigs +sea pike,sea pikes +sea pink,sea pinks +seaplane,seaplanes +seaplane tender,seaplane tenders +sea poppy,sea poppies +sea porcupine,sea porcupines +seaport,seaports +seapoy,seapoys +sea pudding,sea puddings +sea-purse,sea-purses +sea-purse,sea-purses +sea pye,sea pyes +seaquake,seaquakes +seaquarium,seaquariums,seaquaria +sea rat,sea rats +sea raven,sea ravens +searce,searces +search and rescue,search and rescues +search box,search boxes +search engine,search engines +searcheress,searcheresses +searcher,searchers +searching,searchings +search-light,search-lights +searchlight,searchlights +search-oriented architecture,search-oriented architectures +search party,search parties +search,searches +search term,search terms +search tree,search trees +search wand,search wands +search warrant,search warrants +searcloth,searcloths +searing,searings +searlesite,searlesites +sea rover,sea rovers +sear,sears +sea salt,sea salts +seascape,seascapes +sea scooter,sea scooters +sea scorpion,sea scorpions +sea serpent,sea serpents +sea shanty,sea shanties +seashell,seashells +seashore,seashores +seaside resort,seaside resorts +seasider,seasiders +Seasider,Seasiders +seaside,seasides +sea slater,sea slaters +sea slug,sea slugs +sea snail,sea snails +seasnail,seasnails +sea snake,sea snakes +sea snipe,sea snipes +seasonal constellation,seasonal constellations +seasonality,seasonalities +seasonal lake,seasonal lakes +seasoner,seasoners +season finale,season finales +seasoning,seasonings +season,seasons +season ticket,season tickets +sea spider,sea spiders +sea sponge,sea sponges +sea squirt,sea squirts +sea star,sea stars +sea-star,sea-stars +seastar,seastars +seastead,seasteads +sea swallow,sea swallows +seaswine,seaswine,seaswines +seatainer,seatainers +seatback,seatbacks +seat belt,seat belts +seat-belt,seat-belts +seatbelt,seatbelts +seat cushion,seat cushions +seater,seaters +seatholder,seatholders +sea titling,sea titlings +seatmate,seatmates +sea toad,sea toads +seat of government,seats of government +seat only,seat onlys +sea trial,sea trials +sea trout,sea trouts +seatrout,seatrouts,seatrout +sea trumpet,sea trumpets +seat sale,seat sales +seat,seats +SEAT,SEATs +sea turn,sea turns +sea turtle,sea turtles +sea-turtle,sea-turtles +seatworm,seatworms +sea unicorn,sea unicorns +sea urchin,sea urchins +seave,seaves +sea wall,sea walls +seawall,seawalls +seawant,seawants +sea wasp,sea wasps +seaway,seaways +sea-weed,sea-weeds +sea whip coral,sea whip corals +sea willow,sea willows +sea wolf,sea wolves +seawolf,seawolves +sebacate,sebacates +sebaceous gland,sebaceous glands +sebacic acid,sebacic acids +sebacinalean,sebacinaleans +sebacoyl,sebacoyls +sebastid,sebastids +sebate,sebates +sebecid,sebecids +sebesten,sebestens +sebid,sebids +sebkha,sebkhas +sebocyte,sebocytes +secant,secants +Secchi depth,Secchi depths +Secchi disc,Secchi discs +Secchi disk,Secchi disks +seceder,seceders +Seceder,Seceders +secernent,secernents +secessionist,secessionists +secession,secessions +Seckel,Seckels +secle,secles +seclusion lodge,seclusion lodges +seclusion,seclusions +secofullerene,secofullerenes +second act,second acts +secondary alcohol,secondary alcohols +secondary amine,secondary amines +secondary cell wall,secondary cell walls +secondary color,secondary colors +secondary colour,secondary colours +secondary consumer,secondary consumers +secondary drowning,secondary drownings +secondary emission,secondary emissions +secondary energy,secondary energies +secondary immunodeficiency,secondary immunodeficiencies +secondary industry,secondary industries +secondary infection,secondary infections +secondary market,secondary markets +secondary modern school,secondary modern schools +secondary modern,secondary moderns +secondary phosphine,secondary phosphines +secondary school,secondary schools +secondary,secondaries +secondary sector,secondary sectors +secondary sex characteristic,secondary sex characteristics +secondary source,secondary sources +secondary structure,secondary structures +secondary valence,secondary valences +second banana,second bananas +second baseman,second basemen +secondborn,secondborns +second childhood,second childhoods +second-class citizen,second-class citizens +second-class entity,second-class entities +second-class object,second-class objects +second-class value,second-class values +second conditional,second conditionals +second cousin once removed,second cousins once removed +second cousin,second cousins +second-degree burn,second-degree burns +second-degree relative,second-degree relatives +second down,second downs +secondee,secondees +seconder,seconders +seconde,secondes +second fiddle,second fiddles +second gear,second gears +second grade,second grades +second-growth forest,second-growth forests +second guesser,second guessers +second-guesser,second-guessers +second half,second halves +second hand,second hands +second helping,second helpings +second home,second homes +second in command,seconds in command +second inversion,second inversions +second joint,second joints +second language,second languages +second-level domain,second-level domains +second lieutenant,second lieutenants +secondment,secondments +second messenger,second messengers +second moment of area,second moments of area +second moment of inertia,second moments of inertia +second name,second names +second new ball,second new balls +second normal form,second normal forms +second of arc,seconds of arc +second officer,second officers +second opinion,second opinions +secondo,secondos +second-person plural,second-person plurals +second-person singular,second-person singulars +second-rate,second-rates +second,seconds +second,seconds +second,seconds +second serve,second serves +second service,second services +second session,second sessions +second sheet,second sheets +second slip,second slips +second-storey man,second-storey men +second-stringer,second-stringers +second string,second strings +second unit,second units +second violinist,second violinists +second violin,second violins +secosteroid,secosteroids +secre,secres +secret admirer,secret admirers +secret agent,secret agents +secretagogue,secretagogues +secretariate,secretariates +secretariat,secretariats +secretary bird,secretary birds +secretarybird,secretarybirds +secretary general,secretaries general +secretary-general,secretaries-general +Secretary General,Secretaries General +Secretary of State,Secretaries of State +secretary,secretaries +secretaryship,secretaryships +secretase,secretases +secret ballot,secret ballots +secreter,secreters +secretion,secretions +secretion,secretions +secretist,secretists +secret of Polichinelle,secrets of Polichinelle +secretogranin,secretogranins +secretome,secretomes +secretor,secretors +secret Santa,secret Santas +secret service,secret services +secret society,secret societies +sec,secs +sectant,sectants +sectarianism,sectarianisms +sectarianist,sectarianists +sectarian,sectarians +sectarism,sectarisms +sectarist,sectarists +sectary,sectaries +sectator,sectators +section 8,section 8s +sectional,sectionals +sectionary,sectionaries +section automatic weapon,section automatic weapons +section,sections +section sign,section signs +sectist,sectists +sectiuncle,sectiuncles +sectorial,sectorials +sector,sectors +sect,sects +secularist,secularists +secularization,secularizations +secularizer,secularizers +secular Jew,secular Jews +secular,seculars +secundine,secundines +secundogeniture,secundogenitures +secundo,secundos +securement,securements +securer,securers +securitisation,securitisations +securitization,securitizations +securitizer,securitizers +security blanket,security blankets +security camera,security cameras +security community,security communities +security deposit,security deposits +security guard,security guards +security hole,security holes +security interest,security interests +security market line,security market lines +security mom,security moms +security principal,security principals +security procedure,security procedures +Security Service,Security Services +security system,security systems +securocrat,securocrats +Secwepemc,Secwepemcs,Secwepemc +sedan chair,sedan chairs +sedan,sedans +sedative,sedatives +seder,seders,sidarim,siddarim +sederunt,sederunts +sede,sedes +sedevacantist,sedevacantists +sedge frog,sedge frogs +sedge,sedges +sedge,sedges +sedge warbler,sedge warblers +sedilia,sedilias +sedimentary rock,sedimentary rocks +sedimentation,sedimentations +sedimentologist,sedimentologists +sediment,sediments +seditionary,seditionaries +sedition,seditions +sedolisin,sedolisins +SED,SEDs +seducement,seducements +seducer,seducers +seduction,seductions +seductress,seductresses +sedulity,sedulities +sedum,sedums +seedbank,seedbanks +seedbed,seedbeds +seedbox,seedboxes +seed cake,seed cakes +seedcake,seedcakes +seedcase,seedcases +seed change,seed changes +seed coat,seed coats +seedcoat,seedcoats +seedcod,seedcods +seed crystal,seed crystals +seed drill,seed drills +seedeater,seedeaters +seeder,seeders +seede,seedes +seed fern,seed ferns +seed fill,seed fills +seedie,seedies +seeding,seedings +seed leaf,seed leaves +seedlep,seedleps +seedling,seedlings +seedman,seedmen +seed pearl,seed pearls +seed pit,seed pits +seed plant,seed plants +seedpod,seedpods +seedset,seedsets +seedsman,seedsmen +seedsnipe,seedsnipes +seed stitch,seed stitches +seed stock,seed stocks +seedtime,seedtimes +seed vessel,seed vessels +seeing eye ball,seeing eye balls +seeing eye dog,seeing eye dogs +seeing-eye dog,seeing-eye dogs +seeing-eye,seeing-eyes +seeing to,seeing tos +seeker,seekers +seeking,seekings +seek-no-further,seek-no-furthers +seeksorrow,seeksorrows +seel,seels +seel,seels +seemer,seemers +seeming,seemings +seen,seens +seepage,seepages +seep,seeps +seepweed,seepweeds +seeress,seeresses +seerfish,seerfishes,seerfish +seer,seers +seer,seers +seesawing,seesawings +see-saw,see-saws +seesaw,seesaws +see,sees +seether,seethers +seething,seethings +segar,segars +segestriid,segestriids +segfault,segfaults +seggar,seggars +segger,seggers +segmentation clock,segmentation clocks +segmentation fault,segmentation faults +segmentation,segmentations +segmentectomy,segmentectomies +segmented worm,segmented worms +segment,segments +segnosaurid,segnosaurids +segnosaur,segnosaurs +sego,segos +Segovian,Segovians +segregant,segregants +segregationist,segregationists +segregation,segregations +segrosome,segrosomes +seg,segs +seg,segs +seg,segs +seg,segs +seguenziid,seguenziids +segue,segues +Segway,Segways +seiche,seiches +seidel,seidels +Seifert fibered space,Seifert fibered spaces +Seifert fiber space,Seifert fiber spaces +Seifert fibred space,Seifert fibred spaces +Seifert fibre space,Seifert fibre spaces +Seifert surface,Seifert surfaces +seif,seifs +seifuku,seifuku +seigneurage,seigneurages +seigneurie,seigneuries +seigneur,seigneurs +seigneury,seigneuries +seigniorage,seigniorages +seignior,seigniors +seigniory,seigniories +seigniour,seigniours +seignorage,seignorages +seiner,seiners +seine,seines +sein,seins +seintuary,seintuaries +seirfish,seirfish +seirospore,seirospores +seisin,seisins +seismic damper,seismic dampers +seismicity,seismicities +seismic lithosphere,seismic lithospheres +seismic load,seismic loads +seismic moment,seismic moments +seismic risk,seismic risks +seismic wave,seismic waves +seismic zoning,seismic zonings +seismogenesis,seismogeneses +seismogenic layer,seismogenic layers +seismogenic zone,seismogenic zones +seismogramme,seismogrammes +seismogram,seismograms +seismographer,seismographers +seismograph,seismographs +seismography,seismographies +seismologist,seismologists +seismometer,seismometers +seismometre,seismometres +seismoscope,seismoscopes +seism,seisms +seisonid,seisonids +sei whale,sei whales +seiyuu,seiyuu +seizer,seizers +seizing,seizings +seizin,seizins +seizor,seizors +seizure,seizures +sejid,sejids +sejunction,sejunctions +sekaninaite,sekaninaites +sekere,sekeres +sΓ¨kΓ¨rΓ¨,sΓ¨kΓ¨rΓ¨s +selachian,selachians +selacian,selacians +selaginella,selaginellas +selamlik,selamliks +selane,selanes +selbri,selbri +selectability,selectabilities +select agent,select agents +selectee,selectees +selectin,selectins +selection rule,selection rules +selection,selections +selective advantage,selective advantages +selective mutism,selective mutisms +selective school,selective schools +selective serotonin reuptake inhibitor,selective serotonin reuptake inhibitors +selectivity,selectivities +selectman,selectmen +selectness,selectnesses +selector,selectors +selectperson,selectpersons +selectron,selectrons +Select,Selects +selectwoman,selectwomen +selenate,selenates +selenenic acid,selenenic acids +selenic acid,selenic acids +selenide,selenides +seleninic acid,seleninic acids +seleniscope,seleniscopes +selenium yeast,selenium yeasts +seleniuret,seleniurets +selenoaldehyde,selenoaldehydes +selenoamide,selenoamides +selenocyanate,selenocyanates +selenocyanic acid,selenocyanic acids +selenodont,selenodonts +selenoester,selenoesters +selenographer,selenographers +selenographist,selenographists +selenograph,selenographs +selenoid,selenoids +selenoketone,selenoketones +selenolate,selenolates +selenologist,selenologists +selenol,selenols +selenometalate,selenometalates +selenometallate,selenometallates +selenomethionyl,selenomethionyls +selenone,selenones +selenonic acid,selenonic acids +selenophene,selenophenes +selenophosphate,selenophosphates +selenophosphate synthetase,selenophosphate synthetases +selenopid,selenopids +selenoprotein,selenoproteins +selenoproteome,selenoproteomes +selenosis,selenoses +selenosteid,selenosteids +selenosulfide,selenosulfides +selenous acid,selenous acids +selenoxide,selenoxides +selenyl halide,selenyl halides +sele,seles +Seleucid,Seleucides,Seleucidae +seleucid,seleucids +self-abasement,self-abasements +self-abnegation,self-abnegations +self-abuser,self-abusers +selfassessment,selfassessments +self-blood,self-bloods +self bow,self bows +selfbow,selfbows +self-censorship,self-censorships +self colour,self colours +selfcondensation,selfcondensations +self-congratulation,self-congratulations +self-contradiction,self-contradictions +self-criticism,self-criticisms +self-denial,self-denials +self-deportation,self-deportations +self-deprivation,self-deprivations +self-destroyer,self-destroyers +self-distance,self-distances +self-doubt,self-doubts +self-drilling screw,self-drilling screws +selfdual,selfduals +selfenergy,selfenergies +self-examination,self-examinations +self-excitation,self-excitations +selfexcitation,selfexcitations +self-fertilization,self-fertilizations +self-fulfilling prophecy,self-fulfilling prophecies +self-fulfillment,self-fulfillments +self-harmer,self-harmers +selfheal,selfheals +selfie,selfies +self image,self images +self-image,self-images +self-immolation,self-immolations +self-improvement,self-improvements +self-induction,self-inductions +selfing,selfings +selfinteraction,selfinteractions +selfist,selfists +self-justification,self-justifications +self-justifier,self-justifiers +self-killing,self-killings +selflessness,selflessnesses +selfline,selflines +selfmate,selfmates +self-medicator,self-medicators +self-metathesis,self-metatheses +selfmetathesis,selfmetatheses +self-motion,self-motions +self-murderer,self-murderers +selfname,selfnames +self-narrative,self-narratives +self-offence,self-offences +self-opinion,self-opinions +self-polluter,self-polluters +self-portrait,self-portraits +self-promotion,self-promotions +self-referential meaning,self-referential meanings +self religion,self religions +self-religion,self-religions +self-renunciation,self-renunciations +self report,self reports +self-rescuer,self-rescuers +self-sacrifice,self-sacrifices +self-seeker,self-seekers +self,selves,selfs +selfship,selfships +self-similarity,self-similarities +self-slaughter,self-slaughters +selfslaughter,selfslaughters +self-starter,self-starters +self-tapping screw,self-tapping screws +self-treatment,self-treatments +selfy,selfies +selion,selions +Seljuckian,Seljuckians +Seljuk,Seljuks +Seljuqian,Seljuqians +Seljuq,Seljuqs +selkie,selkies +Selkirk Rex,Selkirk Rexes +Selkup,Selkups +sell-by date,sell-by dates +sellee,sellees +seller,sellers +seller,sellers +seller's market,seller's markets,sellers' markets +Seller's Pack,Seller's Packs +selle,selles +selling-edge analysis,selling-edge analyses +selling point,selling points +selling price,selling prices +selloff,selloffs +sello,sellos +sellotape,sellotapes +Sellotape,Sellotapes +sell-out,sell-outs +sellout,sellouts +sell,sells +sell,sells +sell-sword,sell-swords +sellsword,sellswords +selly,sellies +selma'o,selma'o +selone,selones +seltzer bottle,seltzer bottles +seltzer water,seltzer waters +seltzogene,seltzogenes +selvagee,selvagees +selva,selvas +selvedge,selvedges +Semacode,Semacodes +semagram,semagrams +semainier,semainiers +semanteme,semantemes +semantic analysis,semantic analyses +semantic differentiation,semantic differentiations +semantic field,semantic fields +semantician,semanticians +semanticist,semanticists +semantic net,semantic nets +semantic network,semantic networks +semantic relation,semantic relations +semantic shift,semantic shifts +semantide,semantides +semantogram,semantograms +semantron,semantrons,semantra +semaphore,semaphores +semaphorin,semaphorins +semaphorist,semaphorists +semasiography,semasiographies +semasiology,semasiologies +sematrope,sematropes +sematurid,sematurids +semblable,semblables +semblance,semblances +semblant,semblants +semblaunce,semblaunces +semblaunt,semblaunts +semeiology,semeiologies +semelfactive aspect,semelfactive aspects +semelfactive,semelfactives +semelid,semelids +sememe,sememes +semenologist,semenologists +seme,semes,semata +seme,semes,seme +semese,semese +semester,semesters +semestre,semestres +semiacetal,semiacetals +semialdehyde,semialdehydes +semi-algorithm,semi-algorithms +semiamplitude,semiamplitudes +semiangle,semiangles +Semi-Arian,Semi-Arians +semi-automatic,semi-automatics +semiautomatic,semiautomatics +semiaxis,semiaxes +semibarbarian,semibarbarians +semi-bluff,semi-bluffs +semibreve rest,semibreve rests +semibreve,semibreves +semibrief,semibriefs +semibull,semibulls +semicarbazide,semicarbazides +semicarbazone,semicarbazones +semicelebrity,semicelebrities +semicentennial,semicentennials +semichorus,semichoruses +semi-circle,semi-circles +semicircle,semicircles +semicircumference,semicircumferences +semicirque,semicirques +semiclassic,semiclassics +semi-closed game,semi-closed games +semicoke,semicokes +semi-colon,semi-colons +semicolon,semicolons,semicola +semi-column,semi-columns +semicolumn,semicolumns +semicoma,semicomas +semiconductor heterostructure,semiconductor heterostructures +semiconductor memory,semiconductor memories +semiconductor,semiconductors +semiconsonant,semiconsonants +semiconvection,semiconvections +semicope,semicopes +semicupium,semicupiums,semicupia +semicylinder,semicylinders +semidecision,semidecisions +semidemiquaver,semidemiquavers +semidemisemiquaver,semidemisemiquavers +semidesert,semideserts +semi-detached,semi-detacheds +semidiameter,semidiameters +semidiapente,semidiapentes +semidiatessaron,semidiatessarons +semiditone,semiditones +semidocumentary,semidocumentaries +semidome,semidomes +semidouble,semidoubles +semidwarf,semidwarfs +semi-easy chair,semi-easy chairs +semi-elasticity,semi-elasticities +semiellipse,semiellipses +semifable,semifables +semifield,semifields +semi-finalist,semi-finalists +semifinalist,semifinalists +semi-final,semi-finals +semifinal,semifinals +semifloret,semiflorets +semiflow,semiflows +semifluid,semifluids +semiform,semiforms +semifreddo,semifreddos +semifusinite,semifusinites +semigeneric,semigenerics +semigloss,semiglosses +semigroud,semigrouds +semigroupoid,semigroupoids +semigroup,semigroups +semiheap,semiheaps +semihemidemisemiquaver,semihemidemisemiquavers +semi-highway,semi-highways +semihydrate,semihydrates +semihypergroup,semihypergroups +semijoin,semijoins +semiketal,semiketals +semilandmark,semilandmarks +semilattice,semilattices +semilens,semilenses +semiliquid,semiliquids +semilunar bone,semilunar bones +semilunar,semilunars +semilune,semilunes +semimajor axis,semimajor axes +semimanufacture,semimanufactures +semimartingale,semimartingales +semimembranosus,semimembranosi +semi-metal,semi-metals +semimetal,semimetals +semimodal,semimodals +semimonthly,semimonthlies +semimute,semimutes +seminality,seminalities +seminal,seminals +seminal vesicle,seminal vesicles +seminarian,seminarians +seminarist,seminarists +seminar,seminars +seminary,seminaries +seminiferous tubule,seminiferous tubules +seminist,seminists +Seminole,Seminoles,Seminole +seminolipid,seminolipids +seminomad,seminomads +seminoma,seminomas,seminomata +semi-norm,semi-norms +seminorm,seminorms +semiochemical,semiochemicals +semiologist,semiologists +semiology,semiologies +semiopal,semiopals +semi-open file,semi-open files +semi-open game,semi-open games +Semi-Open Game,Semi-Open Games +semiosphere,semiospheres +semiotician,semioticians +semioxamazide,semioxamazides +semioxamazone,semioxamazones +semiparabola,semiparabolas,semiparabolae +semiped,semipeds +Semipelagian,Semipelagians +semiperimeter,semiperimeters +semipinacol rearrangement,semipinacol rearrangements +semiplume,semiplumes +semiprime,semiprimes +semi-professional,semi-professionals +semiprofessional,semiprofessionals +semiproof,semiproofs +semipro,semipros +semipupa,semipupae +semiquadrate,semiquadrates +semiquartile,semiquartiles +semiquaver,semiquavers +semiquinone,semiquinones +semiquintile,semiquintiles +semi-quote,semi-quotes +semiquote,semiquotes +semirant,semirants +semiregular tessellation,semiregular tessellations +semiring,semirings +semisavage,semisavages +semi,semis +semisextile,semisextiles +semi-smile,semi-smiles +semispace,semispaces +semispeaker,semispeakers +semispecies,semispecies +semisphere,semispheres +semisquare,semisquares +semis,semises +semistate,semistates +semisteel,semisteels +semisubmersible,semisubmersibles +semisub,semisubs +semisweet chocolate,semisweet chocolates +semisyllable,semisyllables +semitangent,semitangents +semita,semitae +semitendinosus,semitendinosi +semitertian,semitertians +Semite,Semites +Semitist,Semitists +semitone,semitones +semi-tractor,semi-tractors +semitractor,semitractors +semi-trailer,semi-trailers +semitrailer,semitrailers +semitransept,semitransepts +semitutorial,semitutorials +semivariance,semivariances +semivariogram,semivariograms +semivegetarian,semivegetarians +semivowel,semivowels +semi-weekly,semi-weeklies +semiweekly,semiweeklies +semla,semlas +semolina pudding,semolina puddings +semordnilap,semordnilaps +sempervive,sempervives +sempervivum,sempervivums +sempster,sempsters +sempstress,sempstresses +semsemia,semsemias +semster,semsters +semuncia,semuncias +senachy,senachies +senarius,senarii +senate-house,senate-houses +senate,senates +senator,senators +senatorship,senatorships +senatour,senatours +senatusconsult,senatusconsults +sendaline,sendalines +sendal,sendals +sendee,sendees +sender,senders +sending off,sending offs +sending-off,sending-offs +sendling,sendlings +send-off,send-offs +sendoff,sendoffs +send out,send outs +send,sends +send-up,send-ups +sendup,sendups +Seneca,Senecas +Senegalese,Senegalese +seneschal,seneschals +seneschalship,seneschalships +sene,senes +seneskal,seneskals +Senga,Sengas +sengi,sengis +sengreen,sengreens +senhorita,senhoritas +senine,senines +senior captain,senior captains +senior chief petty officer,senior chief petty officers +senior citizen,senior citizens +senior colonel,senior colonels +senior high school,senior high schools +senior moment,senior moments +senior note,senior notes +senior,seniors +senior synonym,senior synonyms +senior theater,senior theaters +seniour,seniours +seniti,senitis +senjen,senjens +sennachy,sennachies +sennet,sennets +sennet whip,sennet whips +se'nnight,se'nnights +sennight,sennights +sennit,sennits +senoculid,senoculids +Senoi,Senoi +senologist,senologists +senorita,senoritas +seΓ±orita,seΓ±oritas +Senoufo,Senoufos,Senoufo +senpai,senpais +sensactor,sensactors +sensationalist,sensationalists +sensation,sensations +sense amplifier,sense amplifiers +sensei,sensei,senseis +sensel,sensels +sen,sens,sen +sense of humor,senses of humor +sense of humour,senses of humour +sense organ,sense organs +sense,senses +sense strand,sense strands +senshuraku,senshurakus +sensibility,sensibilities +sensibilization,sensibilizations +sensible,sensibles +sensillum,sensilla +sensist,sensists +sensitisation,sensitisations +sensitiser,sensitisers +sensitive,sensitives +sensitivity,sensitivities +sensitization,sensitizations +sensitizer,sensitizers +sensitometer,sensitometers +sensorchip,sensorchips +sensorgram,sensorgrams +sensorium,sensoria +sensor,sensors +sensory overload,sensory overloads +sensory receptor,sensory receptors +sensory,sensories +sensualist,sensualists +sensuosity,sensuosities +sente,lisente +sentence adverb,sentence adverbs +sentence connective,sentence connectives +sentence element,sentence elements +sentence fragment,sentence fragments +sentencer,sentencers +sentence,sentences +sentencing,sentencings +sentential logic,sentential logics +sententiarist,sententiarists +sententiary,sententiaries +sentery,senteries +sentiency,sentiencies +sentient,sentients +sentimentaliser,sentimentalisers +sentimentalist,sentimentalists +sentimentality,sentimentalities +sentimentalizer,sentimentalizers +sentinel event,sentinel events +sentinel,sentinels +sentine,sentines +sentry-box,sentry-boxes +sentry,sentries +sent,senti +sent,sents +Senufo,Senufos,Senufo +senvy,senvies +senzala,senzalas +Seoulite,Seoulites +sepal,sepals +separability,separabilities +separable affix,separable affixes +separable prefix,separable prefixes +separable verb,separable verbs +separate peace,separate peaces +separate,separates +separating funnel,separating funnels +separating,separatings +separation anxiety disorder,separation anxiety disorders +separation energy,separation energies +separation,separations +separatist,separatists +separator,separators +separatory,separatories +separatrix,separatrixes,separatrices +Sephardi,Sephardim +sephirah,sephiroth,sephirot +sephira,sephiroth +sepiadariid,sepiadariids +sepia,sepias +sepiid,sepiids +sepiment,sepiments +sepiolid,sepiolids +sepiolite,sepiolites +sepometer,sepometers +seponation,seponations +sepoy,sepoys +Seppo,Seppos +sepsid,sepsids +sepsin,sepsins +sepsis,sepses +septagon,septagons +septane,septanes +septangle,septangles +septanose,septanoses +septapeptide,septapeptides +septarium,septaria +septation,septations +septcentenary,septcentenaries +Septemberer,Septemberers +Septembrist,Septembrists +septemvirate,septemvirates +septemvir,septemvirs,septemviri +septenary,septenaries +septennate,septennates +septentrion,septentrions +septet,septets +septette,septettes +septfoil,septfoils +septic abortion,septic abortions +septicemia,septicemias +septic,septics +septic,septics +septic,septics +Septic,Septics +septic tank,septic tanks +septile,septiles +septillionth,septillionths +septimate,septimates +septimole,septimoles +septin,septins +septisyllable,septisyllables +septolet,septolets +septomaxillary,septomaxillaries +septoplasty,septoplasties +septorhinoplasty,septorhinoplasties +septothecal,septothecals +sept,septs +septuagenarian,septuagenarians +septuagenary,septuagenaries +Septuagesima,Septuagesimae +septulum,septula +septum,septa,septums +septuplet,septuplets +sepulcher,sepulchers +sepulchre,sepulchres +sequela,sequelae +sequel hook,sequel hooks +sequella,sequellae +sequel,sequels +sequenator,sequenators +sequencer,sequencers +sequence,sequences +sequencing,sequencings +sequential manual gearbox,sequential manual gearboxes +sequent,sequents +sequester,sequesters +sequestosome,sequestosomes +sequestrant,sequestrants +sequestration,sequestrations +sequestrator,sequestrators +sequestre,sequestres +sequestrotomy,sequestrotomies +sequestrum,sequestra +sequin,sequins +sequitur,sequiturs,sequuntur +sequoia,sequoias +sequon,sequons +serac,seracs +seraglio,seraglios +serail,serails +serai,serais +serang,serangs +serape,serapes +seraphine,seraphines +seraph,seraphs,seraphim +seraskierate,seraskierates +seraskier,seraskiers +Serbian salad,Serbian salads +Serbian,Serbians +serbophile,serbophiles +Serbophile,Serbophiles +Serb,Serbs +SERCA,SERCAs +serdar,serdars +serekh,serekhs +serenader,serenaders +serenade,serenades +serenata,serenatas +serene,serenes +serene,serenes +Serengeti cat,Serengeti cats +serenity,serenities +Serer,Serers +sere,seres +sere,seres +serf,serfs +sergeancy,sergeancies +sergeant-at-arms,sergeants-at-arms +sergeant baker,sergeant bakers +sergeantcy,sergeantcies +sergeant first class,sergeants first class +sergeant major loach,sergeant major loaches +sergeant-major,sergeant-majors,sergeants-major +sergeant major,sergeants major +sergeantry,sergeantries +sergeant,sergeants +sergeantship,sergeantships +sergeanty,sergeanties +sergeaunt,sergeaunts +serger,sergers +serge,serges +sergestid,sergestids +serial bond,serial bonds +serial comma,serial commas +serial file,serial files +serial interval,serial intervals +serialisation,serialisations +serialist,serialists +seriality,serialities +serialization,serializations +serializer,serializers +serial key,serial keys +serial killer,serial killers +serial killer van,serial killer vans +serial number,serial numbers +serial port,serial ports +serial,serials +Serial time-encoded amplified microscopy,Serial time-encoded amplified microscopys +seriation,seriations +sericite,sericites +sericitization,sericitizations +sericterium,sericteria +sericulturist,sericulturists +seriema,seriemas +series circuit,series circuits +serie,series +series finale,series finales +series original,series originals +series,series +serif,serifs +serigraph,serigraphs +serinette,serinettes +serin,serins +seriocomedy,seriocomedies +seriph,seriphs +serir,serirs +Seri,Seri,Seris +serjeancy,serjeancies +serjeant-at-arms,serjeants-at-arms +serjeantcy,serjeantcies +serjeantry,serjeantries +serjeant,serjeants +serjeantship,serjeantships +serjeanty,serjeanties +sermocination,sermocinations +sermocinator,sermocinators +sermoneer,sermoneers +sermoner,sermoners +sermonet,sermonets +sermonette,sermonettes +sermoning,sermonings +sermonist,sermonists +sermonizer,sermonizers +sermonizing,sermonizings +sermon,sermons +seroconversion,seroconversions +seroconverter,seroconverters +serodiagnosis,serodiagnoses +serogroup,serogroups +serolid,serolids +seron,serons +seroon,seroons +seropathotype,seropathotypes +seroprevalence,seroprevalences +seroprotein,seroproteins +seroreactivity,seroreactivities +serosa,serosae +serositis,serosites +serostatus,serostatuses +serosurvey,serosurveys +serotherapy,serotherapies +serotine,serotines +serotonin-specific reuptake inhibitor,serotonin-specific reuptake inhibitors +serotype,serotypes +serous membrane,serous membranes +serovar,serovars +serow,serows +serpentaria,serpentarias +serpentine,serpentines +serpentine,serpentines +Serpentinian,Serpentinians +serpentinization,serpentinizations +serpentry,serpentries +serpent,serpents +serpet,serpets +serpette,serpettes +serpinopathy,serpinopathies +serpin,serpins +serpula,serpulas,serpulae +serpulid,serpulids +serpulite,serpulites +serranid,serranids +serranoid,serranoids +serrano,serranos +serrasalmid,serrasalmids +serrature,serratures +serratus,serrati +serrefine,serrefines +serricorn,serricorns +serrivomerid,serrivomerids +serrula,serrulas,serrulae +serrulation,serrulations +ser,sers +Sertoli cell,Sertoli cells +sertularian,sertularians +seruante,seruantes +seruant,seruants +seruice,seruices +serum,serums,sera +serval,servals +servantess,servantesses +servant,servants +servaunt,servaunts +servee,servees +servent,servents +serverlet,serverlets +server,servers +Server Side Include,Server Side Includes +servery,serveries +serve,serves +Servian,Servians +service agreement,service agreements +service area,service areas +serviceberry,serviceberries +service charge,service charges +service design package,service design packages +service dog,service dogs +service game,service games +service industry,service industries +service level agreement,service level agreements +service line,service lines +service loop,service loops +serviceman,servicemen +service mark,service marks +servicemark,servicemarks +servicemember,servicemembers +service of process,services of process +service-oriented architecture,service-oriented architectures +service pack,service packs +serviceperson,servicepersons,servicepeople +servicer,servicers +servicescape,servicescapes +service,services +service,services +service set identifier,service set identifiers +service station,service stations +service tree,service trees +servicewoman,servicewomen +servicification,servicifications +serviette,serviettes +servile,serviles +servility,servilities +serving dish,serving dishes +serving suggestion,serving suggestions +Servite,Servites +servitor,servitors +servitorship,servitorships +servitude,servitudes +servitute,servitutes +servlet,servlets +servo-mechanism,servo-mechanisms +servomechanism,servomechanisms +servomotor,servomotors +servo,servos +servo,servos +seryl,seryls +sesame leaf,sesame leaves +sesame leaf,sesame leaves +sesame,sesames +sesamoid bone,sesamoid bones +sesamoid,sesamoids +sesarmid,sesarmids +sesban,sesbans +sesh,seshes +sesiid,sesiids +sesquicentenarian,sesquicentenarians +sesquicentenary,sesquicentenaries +sesquicentennial,sesquicentennials +sesquihydrate,sesquihydrates +sesquineolignane,sesquineolignanes +sesquineolignan,sesquineolignans +sesquioxide,sesquioxides +sesquipedalianism,sesquipedalianisms +sesquipedalianist,sesquipedalianists +sesquipedalian,sesquipedalians +sesquipedality,sesquipedalities +sesquiplane,sesquiplanes +sesquiquadrate,sesquiquadrates +sesquisalt,sesquisalts +sesquisulfide,sesquisulfides +sesquisulphide,sesquisulphides +sesquiterpene,sesquiterpenes +sesquiterpenoid,sesquiterpenoids +sesquitone,sesquitones +sessileness,sessilenesses +sessile oak,sessile oaks +sessional,sessionals +session band,session bands +session bean,session beans +session musician,session musicians +sessionography,sessionographies +session,sessions +sesspool,sesspools +sess,sesses +sesterce,sesterces +sester,sesters +sesterterpene,sesterterpenes +sesterterpenoid,sesterterpenoids +sestertius,sestertii +sestet,sestets +sestetto,sestettos +sestina,sestinas +sestine,sestines +seston,sestons +sestrin,sestrins +sestuor,sestuors +setar,setars +seta,setas,setae +setback,setbacks +setbolt,setbolts +setdown,setdowns +setee,setees +se-tenant,se-tenants +seter,seters +setfoil,setfoils +Sethian,Sethians +Setian,Setians +setiger,setigers +setireme,setiremes +set list,set lists +setlist,setlists +set-off,set-offs +setoff,setoffs +set of pipes,sets of pipes +set of wheels,sets of wheels +setoid,setoids +seton,setons +set operation,set operations +setout,setouts +set phrase,set phrases +set piece,set pieces +set-piece,set-pieces +setpiece,setpieces +set point,set points +setpoint,setpoints +set screw,set screws +setscrew,setscrews +set,sets +set,sets +set square,set squares +settee,settees +settee,settees +setter,setters +set-theoretic difference,set-theoretic differences +setting pole,setting poles +setting,settings +settleable,settleables +settlement agreement,settlement agreements +settlement,settlements +settler,settlers +settle,settles +settling,settlings +settlor,settlors +set tool,set tools +set top box,set top boxes +set-top box,set-top boxes +set-to,set-tos +sett,setts +setula,setulae +setule,setules +setup fee,setup fees +set-up,set-ups +setup,setups +Sevan trout,Sevan trout +sevdalinka,sevdalinkas +Sevener,Seveners +seven hundred and fifty,seven hundred and fiftys +seven-layer cake,seven-layer cakes +seven-level screwdriver,seven-level screwdrivers +seven-level,seven-levels +sevenling,sevenlings +sevennight,sevennights +sevenpence,sevenpences +seven second delay,seven second delays +seven-second delay,seven-second delays +seven-shooter,seven-shooters +sevensies,sevensies +sevensome,sevensomes +seventeenth,seventeenths +seventeen-year locust,seventeen-year locusts +seventh chord,seventh chords +seventh grade,seventh grades +seventh inning stretch,seventh inning stretches +seventh,sevenths +seventieth,seventieths +seventy-eighth,seventy-eighths +seventy-eight,seventy-eights +seventy-fifth,seventy-fifths +seventy-first,seventy-firsts +seventy-four,seventy-fours +seventy-fourth,seventy-fourths +seventy-ninth,seventy-ninths +seventy-oneth,seventy-oneths +seventy-second,seventy-seconds +seventy-seventh,seventy-sevenths +seventy-sixth,seventy-sixths +seventy-third,seventy-thirds +seven-year itch,seven-year itches +several,severals +severalty,severalties +severance payment,severance payments +severance,severances +severance tax,severance taxes +severaunce,severaunces +severing,severings +severity,severities +Severnsider,Severnsiders +severy,severies +seviche,seviches +Sevillan,Sevillans +Seville orange,Seville oranges +Sevillian,Sevillians +sewadar,sewadars +sewellel,sewellels +sewel,sewels +sewen,sewens +sewerman,sewermen +sewer,sewers +sewer,sewers +sewer,sewers +sewing circle,sewing circles +sewing lounge,sewing lounges +sewing machine,sewing machines +sewing room,sewing rooms +sewing,sewings +sewin,sewins +sewist,sewists +sewster,sewsters +sex act,sex acts +sex addict,sex addicts +sexagenarian,sexagenarians +sexagenary,sexagenaries +sexagesimal,sexagesimals +sexagesimo-quarto,sexagesimo-quartos +sexaholic,sexaholics +sex aid,sex aids +sexangle,sexangles +sex appeal,sex appeals +sexathon,sexathons +sex attack,sex attacks +sex bomb,sex bombs +sexbot,sexbots +sex boycott,sex boycotts +sex bracelet,sex bracelets +sexcapade,sexcapades +sex cell,sex cells +sexcentenary,sexcentenaries +sex change,sex changes +sex chromosome,sex chromosomes +sex comedy,sex comedies +sexdecillion,sexdecillions +sexdigitist,sexdigitists +sex drive,sex drives +sex drug,sex drugs +sexer,sexers +sexe,sexes +sexfest,sexfests +sexfoil,sexfoils +sex gland,sex glands +sex goddess,sex goddesses +sex god,sex gods +sexhibition,sexhibitions +sexhood,sexhoods +sex hormone,sex hormones +sexine,sexines +sexist,sexists +sexithiophene,sexithiophenes +sex kitten,sex kittens +sex life,sex lives +sex line,sex lines +sex machine,sex machines +sexmobile,sexmobiles +sex object,sex objects +sex offender,sex offenders +sexoholic,sexoholics +sexologist,sexologists +sex organ,sex organs +sex partner,sex partners +sex party,sex parties +sexpat,sexpats +sexpert,sexperts +sexploit,sexploits +sexploration,sexplorations +sex position,sex positions +sexpot,sexpots +S-expression,S-expressions +sexp,sexps +sex ratio,sex ratios +sex reassignment surgery,sex reassignment surgeries +sex scene,sex scenes +sex shop,sex shops +sex slave,sex slaves +sexsomniac,sexsomniacs +sex strike,sex strikes +sex symbol,sex symbols +sextagenarian,sextagenarians +sextain,sextains +sextan,sextans +sextant,sextants +sex tape,sex tapes +sextary,sextaries +sextary,sextaries +sextet,sextets +sextetto,sextettos +sexteyn,sexteyns +sex therapist,sex therapists +sextic,sextics +sextile,sextiles +sextillionth,sextillionths +sextipara,sextiparas +sextodecimo,sextodecimos +sextole,sextoles +sextolet,sextolets +sexton beetle,sexton beetles +sextoness,sextonesses +sextonry,sextonries +sexton,sextons +sexto,sextos +sex toy,sex toys +sextravaganza,sextravaganzas +sextry,sextries +sext,sexts +sext,sexts +sextuple,sextuples +sextuplet,sextuplets +sextuplicate,sextuplicates +sextupole,sextupoles +sexual act,sexual acts +sexual anorexic,sexual anorexics +sexual appetite,sexual appetites +sexual assault,sexual assaults +sexual complex,sexual complexes +sexual dimorphism,sexual dimorphisms +sexual favor,sexual favors +sexual favour,sexual favours +sexual fraternization,sexual fraternizations +sexualist,sexualists +sexual literacy,sexual literacies +sexually transmitted disease,sexually transmitted diseases +sexually transmitted infection,sexually transmitted infections +sexual minority,sexual minorities +sexual orientation,sexual orientations +sexual partner,sexual partners +sexual predator,sexual predators +sexual relation,sexual relations +sexual revolution,sexual revolutions +sexual role,sexual roles +sexual selection,sexual selections +sexual,sexuals +sexvir,sexvirs +sex worker,sex workers +sexy prime,sexy primes +Seychellois,Seychellois +seymouriid,seymouriids +seynt,seynts +seynt,seynts +sferic,sferics +sfermion,sfermions +SFG,SFGs +sforzando,sforzandos +SFP,SFPs +Sf,Sfs +sgluon,sgluons +sgn,sgns +sgoldstino,sgoldstinos +SGR,SGRs +SgtMajMarCor,SgtMajMarCors +shabaroon,shabaroons +shabbiness,shabbinesses +shabble,shabbles +shabbos,shabboses +shabeen,shabeens +shabono,shabonos +shabrack,shabracks +shabraque,shabraques +shab,shabs +shackle joint,shackle joints +shackle,shackles +shacklock,shacklocks +shack,shacks +shacktown,shacktowns +shadbird,shadbirds +shadbush,shadbushes +shadchen,shadchens +shadda,shaddas +shadder,shadders +shaddock,shaddocks +shadebob,shadebobs +shaded-pole motor,shaded-pole motors +shaded pole,shaded poles +shade horsetail,shade horsetails +shader,shaders +shadeset,shadesets +shadfly,shadflies +shading coil,shading coils +shadjam,shadjams +shadoof,shadoofs +shadow banking system,shadow banking systems +shadow bank,shadow banks +shadowboxer,shadowboxers +shadow-box,shadow-boxes +shadowbox,shadowboxes +Shadow Cabinet,Shadow Cabinets +shadower,shadowers +shadowe,shadowes +shadow gazer,shadow gazers +shadow government,shadow governments +shadowgraph,shadowgraphs +shadowing,shadowings +shadowland,shadowlands +shadow minister,shadow ministers +shadow play,shadow plays +shadowplay,shadowplays +shadow price,shadow prices +shadow,shadows +shad,shad,shads +shad-spirit,shad-spirits +shaduf,shadufs +shad-waiter,shad-waiters +shaffler,shafflers +shaffron,shaffrons +Shafiite,Shafiites +shaft bow,shaft bows +shaft furnace,shaft furnaces +shafting,shaftings +shaftman,shaftmen +shaftment,shaftments +shaftmond,shaftmonds +shaftmound,shaftmounds +shaft,shafts +shaftway,shaftways +shagaholic,shagaholics +shagbark hickory,shagbark hickories +shagbark,shagbarks +shagfest,shagfests +shagger's back,shagger's backs +shagger,shaggers +shagging,shaggings +shaggy dog story,shaggy dog stories +shaggy-dog story,shaggy-dog stories +shag-hound,shag-hounds +shagnasty,shagnasties +shag,shags +shag,shags +shag,shags +shag,shags +Shahaptian,Shahaptians +shahdom,shahdoms +shaheed,shaheeds +shaheen falcon,shaheen falcons +shaheen,shaheens +shahid,shahids +shahin,shahins +shahi,shahis +shah,shahs +shahtoosh,shahtoosh,shahtooshes +shahtush,shahtush +shaikh,shaikhs +shaik,shaiks +shaitan,shaitans +Shaiva,Shaivas +Shaivist,Shaivists +Shaivite,Shaivites +shaka,shakas +shake-down,shake-downs +shakedown,shakedowns +shakefork,shakeforks +shakehole,shakeholes +shake map,shake maps +shakemap,shakemaps +shakeout,shakeouts +shakerato,shakeratos +Shakeress,Shakeresses +shaker,shakers +Shaker,Shakers +shaker-upper,shaker-uppers +shake,shakes +Shakespearean,Shakespeareans +Shakespearean sonnet,Shakespearean sonnets +shake table,shake tables +shake-up,shake-ups +shakeup,shakeups +shakha,shakhas +Shakha,Shakhas +shaking,shakings +shako,shakos,shakoes +Shakta,Shaktas +shakuhachi,shakuhachis +shala,shalas +shalder,shalders +shale gas,shale gases +shale,shales +shalionaire,shalionaires +shalk,shalks +shalloon,shalloons +shallop,shallops +shallot,shallots +shallow copy,shallow copies +shallow embedding,shallow embeddings +shallowpate,shallowpates +shallow,shallows +shalm,shalms +shalwar,shalwars +shamal,shamals +shamaness,shamanesses +shamanist,shamanists +shaman,shamans +shama,shamas +shamateur,shamateurs +shamba,shambas +shambler,shamblers +shamble,shambles +shambling,shamblings +shamer,shamers +shamiana,shamianas +shami kebab,shami kebabs +shamisen,shamisen +sham marriage,sham marriages +shammer,shammers +shammes,shammosim +shammy,shammies +shamoy,shamoys +shampooer,shampooers +shampoo ginger,shampoo gingers +shampoo,shampoos +shamrock,shamrocks +sham,shams +shamsheer,shamsheers +shamshir,shamshirs +shamus,shamuses +shanachie,shanachies +shandrydan,shandrydans +shandygaff,shandygaffs +Shangaan,Shangani,Shangans +Shanghainese,Shanghainese +shanghai,shanghais +Shanghai,Shanghais +shanker,shankers +shank-nag,shank-nags +shank,shanks +shanks' mare,shanks' mares +shanks' nag,shanks' nags +shanny,shannies +Shan,Shans +shantung,shantungs +shantyman,shantymen +shanty,shanties +shanty,shanties +shanty town,shanty towns +shantytown,shantytowns +shaobing,shaobing +shaomai,shaomais +shapelet,shapelets +shape memory alloy,shape memory alloys +shape poem,shape poems +shaper,shapers +shape,shapes +shape-shifter,shape-shifters +shapeshifter,shapeshifters +shapeup,shapeups +shaping,shapings +shapka,shapkas +shapono,shaponos +shapoo,shapoos +sharaga,sharagas +sharara,shararas +sharashka,sharashkas +shard,shards +sharebeam,sharebeams +sharebone,sharebones +sharebroker,sharebrokers +sharecropper,sharecroppers +share dilution,share dilutions +shared service,shared services +shareholders' derivative action,shareholders' derivative actions +shareholder,shareholders +shareholders' meeting,shareholders' meetings +shareholding,shareholdings +sharehouse,sharehouses +shareland,sharelands +sharemarket,sharemarkets +shareowner,shareowners +sharer,sharers +share,shares +share,shares +share taxi,share taxis +sharia law,sharia laws +sharif,sharifs +sharΔ«f,sharΔ«fs +shark attack,shark attacks +shark baiter,shark baiters +sharker,sharkers +sharke,sharkes +shark fin,shark fins +shark-fin,shark-fins +sharkfin,sharkfins +sharkling,sharklings +shark,sharks +shark,sharks +sharkskin,sharkskins +sharksucker,sharksuckers +Sharon fruit,Sharon fruits +sharpbill,sharpbills +sharpchin flyingfish,sharpchin flyingfishs +sharp cookie,sharp cookies +shar-pei,shar-peis +sharpener,sharpeners +sharper,sharpers +sharpie,sharpies +sharpling,sharplings +sharp practice,sharp practices +sharp,sharps +sharp-shinned hawk,sharp-shinned hawks +sharpshooter,sharpshooters +sharpshooting,sharpshootings +sharpster,sharpsters +sharptail,sharptails +sharp tongue,sharp tongues +sharrow,sharrows +shartegosuchid,shartegosuchids +sharwal,sharwals +shashlick,shashlicks +shashlik,shashliks +shash,shashes +shastasaurid,shastasaurids +Shaster,Shasters +Shastra,Shastras +shatei gashira,shatei gashira +shatei,shatei +shatoosh,shatoosh +shatter box,shatter boxes +shatterbox,shatterboxes +shatterer,shatterers +shatter,shatters +shaughraun,shaughrauns +shavehook,shavehooks +shaveling,shavelings +shaver,shavers +shave,shaves +shavetail,shavetails +Shavian,Shavians +shaving bump,shaving bumps +shaving cream,shaving creams +shaving,shavings +Shawism,Shawisms +shawlette,shawlettes +shawl goat,shawl goats +shawl,shawls +shawm,shawms +Shawnee,Shawnees +shaw,shaws +shawty,shawties +shay,shays +shaytan,shaytans +sheading,sheadings +sheaf,sheaves,sheafs +shealing,shealings +sheal,sheals +shearbill,shearbills +shear-cake,shear-cakes +shear centre,shear centres +sheard,sheards +shearer,shearers +shearing,shearings +shearling,shearlings +shearman,shearmen +shear,shears +shear strength,shear strengths +shear stress,shear stresses +sheartail,sheartails +shear wall,shear walls +shearwall,shearwalls +shearwater,shearwaters +shear wave,shear waves +Shea,Sheas +she-ass,she-asses +sheatfish,sheatfishes,sheatfish +sheathbill,sheathbills +sheath cake,sheath cakes +sheath dress,sheath dresses +sheathed cable,sheathed cables +sheather,sheathers +sheathfish,sheathfishes +sheathing,sheathings +sheath knife,sheath knives +sheath,sheaths +sheat,sheats +sheave,sheaves +shebander,shebanders +shebang,shebangs +Sheban,Shebans +she-bear,she-bears +shebeen,shebeens +shebka,shebkas +sheboon,sheboons +Shebrew,Shebrews +she-cat,she-cats +shechinah,shechinahs +sheddase,sheddases +shedder,shedders +shedding,sheddings +she-devil,she-devils +shedful,shedfuls,shedsful +shedhand,shedhands +shed load,shed loads +shedload,shedloads +she-dog,she-dogs +shed roof,shed roofs,shed rooves +shedrow,shedrows +shed,sheds +shed,sheds +sheebeen,sheebeens +sheek kebab,sheek kebabs +sheeling,sheelings +sheely,sheelies +sheen,sheens +sheen,sheens +sheeny,sheenies +sheepback,sheepbacks +sheepberry,sheepberries +sheepbiter,sheepbiters +sheepcote,sheepcotes +sheepcot,sheepcots +sheepdip,sheepdips +sheepdog,sheepdogs +sheepfold,sheepfolds +sheepherder,sheepherders +sheephook,sheephooks +sheepling,sheeplings +sheep louse,sheep lice +sheepman,sheepmen +sheepmaster,sheepmasters +sheep polyphore,sheep polyphores +sheep-run,sheep-runs +sheeprun,sheepruns +sheep's eye,sheep's eyes +sheep shagger,sheep shaggers +sheep-shagger,sheep-shaggers +sheepshagger,sheepshaggers +sheepshank,sheepshanks +sheep,sheep +sheep-split,sheep-splits +sheepswool sponge,sheepswool sponges +sheepwalk,sheepwalks +sheepy,sheepies +sheer,sheers +sheerwater,sheerwaters +sheesha,sheeshas +sheet anchor,sheet anchors +sheet bend,sheet bends +sheet cake,sheet cakes +sheeter,sheeters +sheete,sheetes +sheetful,sheetfuls,sheetsful +sheetlet,sheetlets +sheet lightning,sheet lightnings +sheetline,sheetlines +sheet metal,sheet metals +sheet-metal,sheet-metals +sheet music,sheet music +sheet of paper,sheets of paper +sheet piling,sheet pilings +sheet pizza,sheet pizzas +sheet protector,sheet protectors +sheet,sheets +sheetsman,sheetsmen +Sheffer stroke,Sheffer strokes +Sheffield stand,Sheffield stands +shegetz,shkotzim,shegetzes +shegging,sheggings +she-goat,she-goats +shehe,shehes +sheikdom,sheikdoms +sheikhdom,sheikhdoms +sheikh,sheikhs +sheik,sheiks +sheila,sheilas +sheild,sheilds +sheitel,sheitels +shekel,shekels,shekalim +shekere,shekeres +shekinah,shekinahs +Shelbyvillian,Shelbyvillians +sheldrake,sheldrakes +shelduck,shelducks,shelduck +shelfbreak,shelfbreaks +shelf cloud,shelf clouds +shelfful,shelffuls,shelvesful +shelf life,shelf lives +shelflife,shelflives +shelfmark,shelfmarks +shelf,shelves +shelf-talker,shelf-talkers +shelfware,shelfwares +shellacking,shellackings +shellack,shellacks +shellac,shellacs +shellback,shellbacks +shellbag,shellbags +shellbark,shellbarks +sheller,shellers +shellfire,shellfires +shellfisherman,shellfishermen +shellfish,shellfish,shellfishes +shell game,shell games +shell-lac,shell-lacs +shell-like,shell-likes +shell-paddock,shell-paddocks +shell-pad,shell-pads +shell-pad,shell-pads +shellpad,shellpads +shell script,shell scripts +shell,shells +shell suit,shell suits +shell-suit,shell-suits +shellsuit,shellsuits +shelpad,shelpads +shelterbelt,shelterbelts +shelter dog,shelter dogs +sheltered workshop,sheltered workshops +shelterer,shelterers +sheltermate,sheltermates +shelter,shelters +shelter tent,shelter tents +sheltie,shelties +Sheltie,Shelties +sheltron,sheltrons +sheltrum,sheltrums +shelt-toad,shelt-toads +shelty,shelties +shelveset,shelvesets +shelve,shelves +shelving,shelvings +shemagh,shemaghs +she-male,she-males +shemale,shemales +Shemite,Shemites +Shemitism,Shemitisms +shemozzle,shemozzles +shenai,shenais +shenanigan,shenanigans +sheng nu,sheng nu +shengnu,shengnu +sheng nΓΌ,sheng nΓΌ +shengnΓΌ,shengnΓΌ +sheng,shengs +shentleman,shentlemen +she-oak,she-oaks +Shepard scale,Shepard scales +Shepard tone,Shepard tones +shepherd dog,shepherd dogs +shepherde,shepherdes +shepherdess,shepherdesses +shepherdia,shepherdias +shepherdling,shepherdlings +shepherd moon,shepherd moons +shepherd,shepherds +shepherd's knot,shepherd's knots +shepherd's needle,shepherd's needles +shepherd's pie,shepherd's pies +shepherds pie,shepherds pies +shepherd's pipe,shepherd's pipes +shep,sheps +shepster,shepsters +sheqel,sheqels,sheqalim +sherbert,sherberts +sherbet,sherbets +sherd,sherds +shereef,shereefs +sheriffdom,sheriffdoms +sheriff,sheriffs +sheriffship,sheriffships +Sherlockian,Sherlockians +shero,sheroes +sherpa,sherpas +sherwani,sherwanis +she,shes +shetani,shetani +sheth,sheths +she-tiger,she-tigers +Shetland pony,Shetland ponies +Shetland sheepdog,Shetland sheepdogs +shet,shets +sheugh,sheughs +shew-bread,shew-bread +shewbread,shewbread +shewer,shewers +she-wolf,she-wolves +shew,shews +Shiah,Shiahs +Shi'a,Shi'as +Shia,Shias +shibah,shibahs +shibboleth,shibboleths +shibilant,shibilants +shickaree,shickarees +shidduch,shidduchs +shide,shides +shid,shids +shieldbearer,shieldbearers +shield beetle,shield beetles +shield bug,shield bugs +shieldbug,shieldbugs +shielddrake,shielddrakes +shielded twisted pair,shielded twisted pairs +shielder,shielders +shielding,shieldings +shield law,shield laws +shieldmaiden,shieldmaidens +shieldman,shieldmen +shieldrake,shieldrakes +shield,shields +shieldsman,shieldsmen +shieldtail,shieldtails +shield-toad,shield-toads +shield volcano,shield volcanos +shieling,shielings +shiel,shiels +shifta,shiftas +shiftee,shiftees +shifter,shifters +shifting executory interest,shifting executory interests +shifting,shiftings +shift key,shift keys +shift lever,shift levers +shiftmate,shiftmates +shift,shifts +Shift,Shifts +shigella,shigella,shigellas,shigellae +shigellosis,shigelloses +shigram,shigrams +shihon-bashira,shihon-bashira +Shih Tzu,Shih Tzus,Shih Tzu +shiitake,shiitake,shiitakes +Shi'ite,Shi'ites +Shiite,Shiites +shijo,shijos +shikaree,shikarees +shikari,shikaris +shikar,shikars +shikkaree,shikkarees +shikra,shikras +shiksa,shiksas +shikseh,shiksehs +shikse,shikses +shild,shilds +shilfa,shilfas +shilingi,shilingi +shillaber,shillabers +shillalagh,shillalaghs +shillalah,shillalahs +shillaly,shillalies +shillelagh,shillelaghs +shillelah,shillelahs +shillely,shillelies +shilling,shillings +shilling shocker,shilling shockers +shilling sign,shilling signs +shill,shills +shilly-shallying,shilly-shallyings +shilpad,shilpads +shimada,shimadas +Shimerian,Shimerians +shimewaza,shimewaza +shimmering,shimmerings +shimmer,shimmers +shimmy-shammy,shimmy-shammies +shimmy,shimmies +shim,shims +shim,shims +shinanigan,shinanigans +shinbone,shinbones +shindesi kensa,shindesi kensas +shindig,shindigs +shindle,shindles +shindy,shindies +Shine-Dalgarno sequence,Shine-Dalgarno sequences +shiner,shiners +shingler,shinglers +shingle,shingles +shingle,shingles +shingles,shingles +shingling,shinglings +shinguard,shinguards +shinhopple,shinhopples +shinigami,shinigami +shining firmoss,shining firmosses +shining part,shining parts +shining,shinings +shining tubeshoulder,shining tubeshoulders +shinisaurid,shinisaurids +shinkansen,shinkansen +shinner,shinners +shinobi,shinobi,shinobis +shin pad,shin pads +shinpad,shinpads +shinplaster,shinplasters +shin,shins +shin,shins +shin splint,shin splints +shinsplint,shinsplints +Shintoist,Shintoists +shiny,shinies +ship biscuit,ship biscuits +shipboard,shipboards +shipbreach,shipbreaches +shipbroker,shipbrokers +shipbuilder,shipbuilders +ship-building,ship-buildings +shipbuilding,shipbuildings +shipfic,shipfics +shipful,shipfuls,shipsful +shipfyrd,shipfyrds +shiphandler,shiphandlers +shipholder,shipholders +shipkiller,shipkillers +shiplet,shiplets +shipling,shiplings +shipload,shiploads +shiplord,shiplords +shipman,shipmen +shipmaster,shipmasters +shipmate,shipmates +shipment,shipments +ship of the line,ships of the line +ship of war,ships of war +shipot,shipots +shipowner,shipowners +shippen,shippens +shipper,shippers +shipper,shippers +shipper weld,shipper welds +shippe,shippes +shipping company,shipping companys +shipping container,shipping containers +shipping lane,shipping lanes +shippon,shippons +ship rat,ship rats +ship's biscuit,ship's biscuits +ship's company,ships' companies +ship's cousin,ship's cousins +ship,ships +ship,ships +ship's husband,ships' husbands +shipside,shipsides +ship war,ship wars +shipway,shipways +shipworm,shipworms +shipwreckee,shipwreckees +shipwrecker,shipwreckers +shipwreck,shipwrecks +shipwright,shipwrights +shipyard,shipyards +shiralee,shiralees +Shirburnian,Shirburnians +shire horse,shire horses +shire,shires +shirker,shirkers +shirk,shirks +shirk,shirks +Shirley Temple,Shirley Temples +shirring,shirrings +shirr,shirrs +shirtdress,shirtdresses +shirtfront,shirtfronts +shirting,shirtings +shirt lifter,shirt lifters +shirtmaker,shirtmakers +shirt,shirts +shirtsleeve,shirtsleeves +shirttail,shirttails +shirtwaist blouse,shirtwaist blouses +shirtwaister,shirtwaisters +shirt waist,shirt waists +shirt-waist,shirt-waists +shirtwaist,shirtwaists +shishamo,shishamos +shisha,shishas +shishito,shishitos +shishkabob,shishkabobs +shish kebab,shish kebabs +shish taouk,shish taouks +shish taouk,shish taouks +shiso,shisos +shist,shists +shitake,shitakes,shitake +shit ass,shit asses +shitass,shitasses +shit bag,shit bags +shitbag,shitbags +shit bird,shit birds +shitbird,shitbirds +shitbox,shitboxes +shitbrain,shitbrains +shitbum,shitbums +shitburger,shitburgers +shitcan,shitcans +shit disturber,shit disturbers +shit-disturber,shit-disturbers +shiteater,shiteaters +shit-eating grin,shit-eating grins +shitebag,shitebags +shitehawk,shitehawks +shiteload,shiteloads +shitepoke,shitepokes +shite,shites +shitface,shitfaces +shit factory,shit factories +shitfest,shitfests +shit fit,shit fits +shit-fit,shit-fits +shitfit,shitfits +shitflood,shitfloods +shit-for-brains,shit for brains +shitfucker,shitfuckers +shitfuck,shitfucks +shithead,shitheads +shit heel,shit heels +shit-heel,shit-heels +shitheel,shitheels +shithole,shitholes +shit house,shit houses +shithouse,shithouses +shitizen,shitizens +shitkicker,shitkickers +shitlicker,shitlickers +shit list,shit lists +shitlist,shitlists +shitload,shitloads +shitlord,shitlords +shitmobile,shitmobiles +shitmuncher,shitmunchers +shitneck,shitnecks +shit packer,shit packers +shitpile,shitpiles +shitposter,shitposters +shitpost,shitposts +shit sandwich,shit sandwiches +shit show,shit shows +shitskin,shitskins +shits,shits +shit stain,shit stains +shitstain,shitstains +shitstorm,shitstorms +shittah,shittim +shitter,shitters +shit test,shit tests +shitting match,shitting matches +shitting,shittings +shittlecock,shittlecocks +shittle,shittles +shit ton,shit tons +shit-ton,shit-tons +shitton,shittons +shitwad,shitwads +shitwit,shitwits +shiur,shiurs,shiurim +shivah,shivahs +Shivaist,Shivaists +shiva,shivas +shivering,shiverings +shiver,shivers +shiver,shivers +shive,shives +shive,shives +shive,shives +Shivite,Shivites +shiv,shivs +shkalik,shkaliks +shlemiel,shlemiels +shlenter,shlenters +shlep,shleps +shlockumentary,shlockumentaries +shloka,shlokas +shlong,shlongs +shlub,shlubs +shmatte,shmattes +shmear,shmears +shmoe,shmoes +shmoke,shmokes +shmoo,shmoos,shmoon +shmuck,shmucks +shmup,shmups +shoad,shoads +shoaling wave,shoaling waves +shoal,shoals +shoal,shoals +shoar,shoars +shoat,shoats +shoat,shoats +shochet,shochets,shochetim +shock absorber,shock absorbers +shock diamond,shock diamonds +shockdog,shockdogs +shocker,shockers +shocking pink,shocking pinks +shock jock,shock jocks +shock mount,shock mounts +shock,shocks +shock,shocks +shock site,shock sites +shock troop,shock troops +shockumentary,shockumentaries +shock wave,shock waves +shockwave,shockwaves +shoder,shoders +shode,shodes +shoebag,shoebags +shoe beam,shoe beams +shoebeam,shoebeams +shoebill,shoebills +shoeblack,shoeblacks +shoe bomber,shoe bombers +shoebomber,shoebombers +shoe box,shoe boxes +shoebox,shoeboxes +shoegazer,shoegazers +shoehorn,shoehorns +shoeicide bomber,shoeicide bombers +shoe insert,shoe inserts +shoe in,shoe ins +shoe-in,shoe-ins +shoelace,shoelaces +shoelace tie,shoelace ties +shoe lift,shoe lifts +shoemaker,shoemakers +shoepack,shoepacks +shoepac,shoepacs +shoepeg,shoepegs +shoe polish,shoe polishes +shoeprint,shoeprints +shoer,shoers +shoeshine boy,shoeshine boys +shoeshine girl,shoeshine girls +shoeshiner,shoeshiners +shoeshine,shoeshines +shoe,shoes,shoon +shoe shop,shoe shops +shoeshop,shoeshops +shoesmith,shoesmiths +shoestring catch,shoestring catches +shoestring,shoestrings +shoestring tackle,shoestring tackles +shoetop,shoetops +shoe tree,shoe trees +shoetree,shoetrees +shoe wedge,shoe wedges +shofar,shofars,shofroth +shoggoth,shoggoths +shog,shogs +shogunate,shogunates +shogun,shoguns +shoji,shojis +shojo,shojos +shola,sholas +shole,sholes +sholtie,sholties +shoneen,shoneens +shongololo,shongololos +shoobie,shoobies +shoo-fly pie,shoo-fly pies +shoofly pie,shoofly pies +shoofly,shooflies +shoogle,shoogles +shoo in,shoo ins +shoo-in,shoo-ins +shook,shooks +shool,shools +shoop,sheep +shoop,shoops +shootaround,shootarounds +shootdown,shootdowns +shoot 'em up,shoot 'em ups +shoot-'em-up,shoot-'em-ups +shoot-em-up,shoot-em-ups +shooter,shooters +shoothouse,shoothouses +shooting circle,shooting circles +shooting gallery,shooting galleries +shooting glasses,shooting glasses +shooting guard,shooting guards +shooting iron,shooting irons +shooting-iron,shooting-irons +shooting preserve,shooting preserves +shooting range,shooting ranges +shooting spree,shooting sprees +shooting star,shooting stars +shooting stick,shooting sticks +shootist,shootists +shootlet,shootlets +shoot out,shoot outs +shoot-out,shoot-outs +shootout,shootouts +shootress,shootresses +shoot,shoots +shopaholic,shopaholics +shop assistant,shop assistants +shopboard,shopboards +shopbook,shopbooks +shopbot,shopbots +shopboy,shopboys +shopfitter,shopfitters +shopfloor,shopfloors +shopfront,shopfronts +shopful,shopfuls,shopsful +shopgirl,shopgirls +shopgoer,shopgoers +shophouse,shophouses +shop keeper,shop keepers +shopkeeper,shopkeepers +shopkeep,shopkeeps +shoplifter,shoplifters +shoplift,shoplifts +shopmaid,shopmaids +shopman,shopmen +shopoffice,shopoffices +shopowner,shopowners +shopper,shoppers +shoppe,shoppes +shopping agent,shopping agents +shopping bag,shopping bags +shopping basket,shopping baskets +shopping bot,shopping bots +shopping cart,shopping carts +shopping center,shopping centers +shopping centre,shopping centres +shopping guide,shopping guides +shopping list,shopping lists +shopping mall,shopping malls +shopping precinct,shopping precincts +shopping trolley,shopping trolleys +shop,shops +shop stealer,shop stealers +shop steward,shop stewards +shop-walker,shop-walkers +shopwalker,shopwalkers +shopway,shopways +shop window,shop windows +shopwoman,shopwomen +shopworker,shopworkers +shore bird,shore birds +shorebird,shorebirds +shore bug,shore bugs +shore cod,shore cods +shore crab,shore crabs +shore dinner,shore dinners +shore dotterel,shore dotterels +shoreface,shorefaces +shorefish,shorefish,shorefishes +shore fly,shore flies +shorefront,shorefronts +shoreland,shorelands +shore lark,shore larks +shorelark,shorelarks +shore leave,shore leaves +shoreline,shorelines +shoreling,shorelings +shore pine,shore pines +shore pit viper,shore pit vipers +shore plover,shore plovers +shore plum,shore plums +shorer,shorers +shore,shores +shore,shores +shore,shores +shore snipe,shore snipes +shore teetan,shore teetans +shoreweed,shoreweeds +shorling,shorlings +shortage,shortages +shortalls,shortalls +shortarse,shortarses +short ballot,short ballots +short black,short blacks +shortboard,shortboards +short break,short breaks +short bus,short buses +shortcake,shortcakes +short circuit operator,short circuit operators +short-circuit operator,short-circuit operators +short circuit,short circuits +short code,short codes +shortcode,shortcodes +shortcoming,shortcomings +short corner,short corners +shortcut key,shortcut keys +short cut,short cuts +short-cut,short-cuts +shortcut,shortcuts +short dozen,short dozens +Short-eared Dog,Short-eared Dogs +short-eared owl,short-eared owls +shortener,shorteners +shortening,shortenings +shorter,shorters +short exact sequence,short exact sequences +shortfalling,shortfallings +short-fall,short-falls +shortfall,shortfalls +shortfin,shortfins +short form,short forms +short fuse,short fuses +shortgown,shortgowns +short gross,short gross +shorthair,shorthairs +shorthand,shorthands +shorthand typist,shorthand typists +shorthead,shortheads +shorthorn sculpin,shorthorn sculpins +shorthorn,shorthorns +short hundred,short hundreds +shortie,shorties +short leash,short leashes +short leg,short legs +shortlistee,shortlistees +short list,short lists +short-list,short-lists +short order,short orders +short pass,short passes +short pocosin,short pocosins +short sale,short sales +short seller,short sellers +short sharp shock,short sharp shocks +short,shorts +short short story,short short stories +short-short story,short-short stories +short shrift,short shrifts +short s,short Ss +short stack,short stacks +short stop,short stops +shortstop,shortstops +short story,short stories +short sword,short swords +shortsword,shortswords +short-tailed fox,short-tailed foxes +short-tailed hawk,short-tailed hawks +short-tailed parrot,short-tailed parrots +short tandem repeat,short tandem repeats +short temper,short tempers +short-timer,short-timers +short title,short titles +short ton,short tons +short vowel,short vowels +shortwave,shortwaves +shortwing,shortwings +shorty,shorties +Shoshone,Shoshones +sho,shos +sho,shos +shot across the bow,shots across the bow +shot clock,shot clocks +shot-clog,shot-clogs +shotcrete,shotcretes +shotel,shotels +shote,shotes +shot glass,shot glasses +shot-glass,shot-glasses +shotgun approach,shotgun approaches +shotgun house,shotgun houses +shotgun marriage,shotgun marriages +shotgun offense,shotgun offenses +shotgun pleading,shotgun pleadings +shotgun shack,shotgun shacks +shotgun wedding,shotgun weddings +shothole,shotholes +shot in the dark,shots in the dark +shotmaker,shotmakers +shot on goal,shots on goal +shot putter,shot putters +shot-putter,shot-putters +shotputter,shotputters +shot rock,shot rocks +shot,shots +shot,shots +shot spot,shot spots +shot-spot,shot-spots +shotspot,shotspots +shot stopper,shot stoppers +shot-stopper,shot-stoppers +shotta,shottas +shottie,shotties +shot to nothing,shots to nothing +shot tower,shot towers +shott,shotts +shotty,shotties +shough,shoughs +shoulder angel,shoulder angels +shoulder bag,shoulder bags +shoulderbag,shoulderbags +shoulderbelt,shoulderbelts +shoulder blade,shoulder blades +shoulderblade,shoulderblades +shoulder bone,shoulder bones +shoulder devil,shoulder devils +shoulderer,shoulderers +shoulder girdle,shoulder girdles +shoulder joint,shoulder joints +shoulder pad,shoulder pads +shoulder season,shoulder seasons +shoulder,shoulders +shoulder surfer,shoulder surfers +shoulder to cry on,shoulders to cry on +should,shoulds +shoutbox,shoutboxes +shouter,shouters +shoutfest,shoutfests +shouting dictation,shouting dictations +shouting match,shouting matches +shouting,shoutings +shoutout,shoutouts +shout out,shouts out +shout-out,shouts-out,shout-outs +shout,shouts +shove-it,shove-its +shovelard,shovelards +shovelbill,shovelbills +shovelboard,shovelboards +shovelbum,shovelbums +shoveler,shovelers +shovelful,shovelfuls +shovel hat,shovel hats +shovelhead,shovelheads +shoveller,shovellers +shovelnose frog,shovelnose frogs +shovelnose,shovelnoses +shovel,shovels +shovel test,shovel tests +shover,shovers +shove,shoves +show-and-tell,show-and-tells +showband,showbands +show barn,show barns +showbill,showbills +showboater,showboaters +showboat,showboats +showbread,showbreads +showcard,showcards +showcase,showcases +shower cap,shower caps +shower curtain,shower curtains +showerer,showerers +shower head,shower heads +showerhead,showerheads +shower of shit,showers of shit +shower,showers +shower,showers +showgirl,showgirls +show-glass,show-glasses +show globe,show globes +showgoer,showgoers +showground,showgrounds +showhome,showhomes +showhorse,showhorses +showhouse,showhouses +showie,showies +showing finger,showing fingers +showing,showings +show jumper,show jumpers +showjumper,showjumpers +showmance,showmances +showman,showmen +show of force,shows of force +show off,show offs +show-off,show-offs +showoff,showoffs +showperson,showpersons +showpiece,showpieces +showplace,showplaces +showplan,showplans +showreel,showreels +showroom,showrooms +showrunner,showrunners +show,shows +show-stone,show-stones +show stopper,show stoppers +show-stopper,show-stoppers +showstopper,showstoppers +showtime,showtimes +show trial,show trials +showup,showups +show window,show windows +showwoman,showwomen +shpeal,shpeals +shpiel,shpiels +Shraft,Shrafts +shrag,shrags +shrank,shranks +shrape,shrapes +shrap,shraps +shredder,shredders +shred,shreds +shreward,shrewards +shrewdness,shrewdnesses +shrewmouse,shrewmice +Shrewsbury cake,Shrewsbury cakes +shrew,shrews +shrieker,shriekers +shriekfest,shriekfests +shrieking,shriekings +shriekling,shrieklings +shriek owl,shriek owls +shriek,shrieks +shrievalty,shrievalties +shrieve,shrieves +shrift father,shrift fathers +shriftfather,shriftfathers +shrift,shrifts +shright,shrights +shrike,shrikes +shrill,shrills +shrimpboat,shrimpboats +shrimpburger,shrimpburgers +shrimper,shrimpers +Shrimper,Shrimpers +shrimpery,shrimperies +shrimpfish,shrimpfishes,shrimpfish +shrimpiness,shrimpinesses +shrimplet,shrimplets +shrimpling,shrimplings +Shrimp,Shrimps +shrine-goer,shrine-goers +shrinegoer,shrinegoers +shrine,shrines +shrinker,shrinkers +shrinking violet,shrinking violets +shrink,shrinks +shrinkwrap license,shrinkwrap licenses +shrink-wrap,shrink-wraps +shrivalty,shrivalties +shriveler,shrivelers +shriveller,shrivellers +shriver,shrivers +shriving,shrivings +shRNA,shRNAs +shroff,shroffs +shrog,shrogs +shroomer,shroomers +shroomhead,shroomheads +shroom,shrooms +shropsavine,shropsavines +shrouded gear,shrouded gears +shrouder,shrouders +shroud knot,shroud knots +shroud,shrouds +Shrove Sunday,Shrove Sundays +Shrovetide,Shrovetides +Shrove Tuesday,Shrove Tuesdays +shrow,shrows +shrubbery,shrubberies +shrubland,shrublands +shrub,shrubs +shrub,shrubs +shrubsteppe,shrubsteppes +shrugger,shruggers +shrug,shrugs +shtetl,shtetls,shtetlach +shtick,shticks +shtik,shtiks +sh*tload,sh*tloads +shtof,shtofs +shtreimel,shtreimels,shtreimlech +sh*t,sh*ts +shtuka,shtukas +shubunkin,shubunkins,shubunkin +shuck and jive,shucks and jives +shucker,shuckers +shuck,shucks +shuddering,shudderings +shudder,shudders +shude,shudes +Shudra,Shudras +shud,shuds +shuffleboard,shuffleboards +shuffler,shufflers +shuffle,shuffles +shufflewing,shufflewings +shuffling,shufflings +shufti,shuftis +shufty,shufties +Shughnani,Shughnanis +Shughni,Shughnis +Shugnani,Shugnanis +Shugnan,Shugnans +Shugni,Shugnis +shuka,shukas +shul,shuls +shumarditid,shumarditids +shunner,shunners +shunning,shunnings +shunpiker,shunpikers +shunpike,shunpikes +shunter,shunters +shunt,shunts +shura,shuras +shuriken,shurikens,shuriken +shusher,shushers +shushing,shushings +SHU,SHU's,SHUs +Shuswap,Shuswaps,Shuswap +shutdown,shutdowns +shute,shutes +shut-in,shut-ins +shut-off,shut-offs +shutoff,shutoffs +shut out,shut outs +shutout,shutouts +shut,shuts +shut,shuts +shutterbug,shutterbugs +shutter,shutters +shutter speed,shutter speeds +shutting,shuttings +shuttle bus,shuttle buses +shuttlecock,shuttlecocks +shuttlecraft,shuttlecrafts,shuttlecraft +shuttle diplomacy,shuttle diplomacies +shuttler,shuttlers +shuttle,shuttles +shuttle vector,shuttle vectors +shuvosaurid,shuvosaurids +shwanpan,shwanpans +shwarma,shwarmas +shy bladder,shy bladders +shylock,shylocks +shy,shies +shyster,shysters +sialagogue,sialagogues +sialic acid,sialic acids +sialidase,sialidases +sialid,sialids +sialocele,sialoceles +sialoglycoconjugate,sialoglycoconjugates +sialoglycopeptide,sialoglycopeptides +sialoglycoprotein,sialoglycoproteins +sialogogue,sialogogues +sialolith,sialoliths +sialome,sialomes +sialomucin,sialomucins +sialopontin,sialopontins +sialoprotein,sialoproteins +sialosyl,sialosyls +sialoyl,sialoyls +sialylation,sialylations +sialyltransferase,sialyltransferases +siamang,siamangs +Siamese cat,Siamese cats +Siamese fighting fish,Siamese fighting fish +Siamese,Siameses +Siamese twin,Siamese twins +sibberidge,sibberidges +Siberian crane,Siberian cranes +Siberian elm,Siberian elms +Siberian flying squirrel,Siberian flying squirrels +Siberian Husky,Siberian Huskies +Siberian jay,Siberian jays +Siberian,Siberians +Siberian tiger,Siberian tigers +Siberian weasel,Siberian weasels +Siberia,Siberias +sibia,sibias +sibilance,sibilances +sibilant,sibilants +sibilating,sibilatings +sibilation,sibilations +siblicide,siblicides +sibling-in-law,siblings-in-law +sibling,siblings +siboglinid,siboglinids +sibridge,sibridges +sibset,sibsets +sibship,sibships +sib,sibs +sibyl,sibyls +sicamore,sicamores +Sicano,sicani +sicariid,sicariids +Sicarius,Sicarii +sicca,siccas +siccative,siccatives +sice,sices +sich,sichs +Sichuan jay,Sichuan jays +siciliana,sicilianas +siciliano,sicilianos +Sicilian,Sicilians +sicilicus,sicilici +sicilicus,sicilici +sicilienne,siciliennes +sick bag,sick bags +sickbag,sickbags +sickbay,sickbays +sickbed,sickbeds +sick call,sick calls +sick day,sick days +sickener,sickeners +sickerness,sickernesses +sickhouse,sickhouses +sickie,sickies +sicklebill,sicklebills +sickleman,sicklemen +sicklemia,sicklemias +sickler,sicklers +sickle,sickles +sick list,sick lists +sick man,sick men +sick note,sick notes +sicko,sickos,sickoes +sickout,sickouts +sick puppy,sick puppies +sickroom,sickrooms +sicle,sicles +sicula,siculae +sicyoniid,sicyoniids +siddhi,siddhis +siddur,siddurs,siddurim +sidearmer,sidearmers +sidearm,sidearms +sideband,sidebands +sidebang,sidebangs +sidebar,sidebars +sidebearing,sidebearings +sideblade,sideblades +sideboard,sideboards +sidebone,sidebones +sideboob,sideboobs +sidebox,sideboxes +sideboy,sideboys +sideburn,sideburns +sideburn,sideburns +sidecar,sidecars +side center,side centers +side chain,side chains +sidechain,sidechains +side chest,side chests +sidecut,sidecuts +side dish,side dishes +sidedish,sidedishes +side effect,side effects +side-effect,side-effects +sideglancer,sideglancers +sideglance,sideglances +sidehead,sideheads +sidehill,sidehills +side horse,side horses +side issue,side issues +sidekick,sidekicks +sidelength,sidelengths +sidelight,sidelights +sideline cut,sideline cuts +sideliner,sideliners +sideline,sidelines +side-lobe,side-lobes +sidelobe,sidelobes +side-lock,side-locks +sidelock,sidelocks +sidelot,sidelots +sideman,sidemen +sidemeat,sidemeats +side-necked turtle,side-necked turtles +side netting,side nettings +side note,side notes +sidenote,sidenotes +side of bacon,sides of bacon +side order,side orders +sidepath,sidepaths +sideperson,sidepersons,sidepeople +sidepiece,sidepieces +side plate,side plates +sidepost,sideposts +sideproduct,sideproducts +side puck,side pucks +sidequest,sidequests +siderastreid,siderastreids +sidereal day,sidereal days +sidereal orbital period,sidereal orbital periods +sidereal period,sidereal periods +sidereal rotation period,sidereal rotation periods +sidereal year,sidereal years +sideroad,sideroads +sideroblast,sideroblasts +siderocalin,siderocalins +siderocyte,siderocytes +sideroflexin,sideroflexins +siderographist,siderographists +siderolite,siderolites +sideromycin,sideromycins +sideronatrite,sideronatrites +siderophile,siderophiles +siderophore,siderophores +siderophyllite,siderophyllites +sideroscope,sideroscopes +siderosis,sideroses +siderostat,siderostats +siderotil,siderotils +sideroxylon,sideroxylons +sider,siders +side-saddle,side-saddles +sidesaddle,sidesaddles +side scroller,side scrollers +side-scroller,side-scrollers +sidescroller,sidescrollers +sideseam,sideseams +side show,side shows +sideshow,sideshows +side,sides +sidesman,sidesmen +sidespin,sidespins +sidestep,sidesteps +side-straddle hop,side-straddle hops +sidestream,sidestreams +side street,side streets +side-striped jackal,side-striped jackals +sidestroke,sidestrokes +side swimmer,side swimmers +sideswipe,sideswipes +sidetone,sidetones +sidetrack,sidetracks +side triceps,side triceps +side valve,side valves +sidewalk cafe,sidewalk cafes +sidewalk,sidewalks +sidewalk superintendent,sidewalk superintendents +side wall,side walls +sidewall,sidewalls +sideway,sideways +sidewheeler,sidewheelers +sidewheel,sidewheels +sidewinder,sidewinders +sidewoman,sidewomen +sideyard,sideyards +sidhe,sidhe +siding,sidings +sidle,sidles +Sidonian,Sidonians +sidth,sidths +siege engine,siege engines +Siegel zero,Siegel zeros +siege,sieges +siege tower,siege towers +siege weapon,siege weapons +siegework,siegeworks +sieidi,sieidis +siemens,siemens +Sienese,Sienese +sienna,siennas +sierolomorphid,sierolomorphids +Sierpinski gasket,Sierpinski gaskets +Sierpinski triangle,Sierpinski triangles +Sierra Leonean,Sierra Leoneans +Sierra Leonian,Sierra Leonians +SIer,SIers +sie,sies +siesta,siestas +sieva,sievas +sieveful,sievefuls,sievesful +sieve of Eratosthenes,Eratosthenes +sieve plate,sieve plates +sievert,sieverts +sieve,sieves +sieve-tube element,sieve-tube elements +sieveyer,sieveyers +sieving,sievings +sifaka,sifakas +sifilet,sifilets +sifter,sifters +sifu,sifu,sifus +siganid,siganids +sigblock,sigblocks +sigfile,sigfiles +siggie,siggies +siggy,siggies +sigher,sighers +sigh of relief,sighs of relief +sigh,sighs +sight draft,sight drafts +sighter,sighters +sight for sore eyes,sights for sore eyes +sight gag,sight gags +sight glass,sight glasses +sighthound,sighthounds +sighting,sightings +sightline,sightlines +sight-reader,sight-readers +sight rhyme,sight rhymes +sightscreen,sightscreens +sightseer,sightseers +sightsman,sightsmen +sight to behold,sights to behold +sight translation,sight translations +sight triangle,sight triangles +sight word,sight words +sigillaria,sigillarias +sigillarid,sigillarids +sigillographer,sigillographers +sigillum,sigilla +sigil,sigils +siglum,sigla +sigma additivity,sigma additivities +sigma bond,sigma bonds +sigma-delta converter,sigma-delta converters +sigma,sigmas +SIGMET,SIGMETs +sigmodont,sigmodonts +sigmoid colon,sigmoid colons +sigmoidectomy,sigmoidectomies +sigmoid flexure,sigmoid flexures +sigmoidocele,sigmoidoceles +sigmoidoscope,sigmoidoscopes +sigmoidoscopy,sigmoidoscopies +sigmoid,sigmoids +signalase,signalases +signal box,signal boxes +signal crayfish,signal crayfish +signaler,signalers +signalese,signaleses +signaling,signalings +signalist,signalists +signality,signalities +signaller,signallers +signalling event,signalling events +signall,signalls +signalman,signalmen +signalment,signalments +signalosome,signalosomes +signal phrase,signal phrases +signal power,signal powers +signal,signals +signal-to-noise ratio,signal-to-noise ratios +signalwoman,signalwomen +signary,signaries +signation,signations +signator,signators +signatory,signatories +signatour,signatours +signature,signatures +signature tune,signature tunes +signaturist,signaturists +sign bit,sign bits +signboard,signboards +signed Mass card,signed Mass cards +signee,signees +signer,signers +signet ring,signet rings +signet,signets +sign function,sign functions +signholder,signholders +significance level,significance levels +significance,significances +significancy,significancies +significand,significands +significant digit,significant digits +significant other,significant others +significant,significants +significate,significates +significator,significators +significavit,significavits +signifier,signifiers +signifying chain,signifying chains +signing bonus,signing bonuses +signing,signings +signior,signiors +signiory,signiories +signiphorid,signiphorids +signmaker,signmakers +sign off,sign offs +signoff,signoffs +sign of the cross,signs of the cross +sign of the times,signs of the times +sign on,sign ons +signora,signoras +signorina,signorinas,signorine +signor,signors,signori +signory,signories +sign-out,sign-outs +signout,signouts +sign-post,sign-posts +signpost,signposts +sign,signs +signum function,signum functions +signup,signups +signwriter,signwriters +sig,sigs +sig,sigs +SIG,SIGs +siheyuan,siheyuans +sihr,sihrs +sijo,sijos +Sikaianan,Sikaianans +sika,sika,sikas +sika,sika,sikas +sike,sikes +sike,sikes +Sikh,Sikhs +silaboration,silaborations +silacycle,silacycles +silacyclobutane,silacyclobutanes +sila-explosive,sila-explosives +silane-modified polymer,silane-modified polymers +silane,silanes +silanization,silanizations +silanol,silanols +silapentane,silapentanes +silasesquiazane,silasesquiazanes +silasesquioxane,silasesquioxanes +silasesquithiane,silasesquithianes +silathiane,silathianes +silation,silations +silatrane,silatranes +silazane,silazanes +silcrete,silcretes +silencer,silencers +silene,silenes +silent alarm,silent alarms +silent auction,silent auctions +silent butler,silent butlers +silent cop,silent cops +silent disco,silent discos +silent film,silent films +silentiary,silentiaries +silent key,silent keys +silent majority,silent majorities +silent miscarriage,silent miscarriages +silent number,silent numbers +silent partner,silent partners +silent policeman,silent policemen +silent Sam,silent Sams +Silent Sam,Silent Sams +silent,silents +silesaurid,silesaurids +sile,siles +sile,siles +sile,siles +siletane,siletanes +silex,silexes +silhouette,silhouettes +silibinin,silibinins +silica group,silica groups +silicalite,silicalites +silicate planet,silicate planets +silicate,silicates +silicene,silicenes +silicic acid,silicic acids +silicide,silicides +silicification,silicifications +silicisponge,silicisponges +silicization,silicizations +silicle,silicles +silicoflagellate,silicoflagellates +silicofluoride,silicofluorides +silicon alkoxide,silicon alkoxides +silicon carbide,silicon carbides +silicon chip,silicon chips +silicon-controlled rectifier,silicon-controlled rectifiers +silicone rubber,silicone rubbers +silicon ester,silicon esters +silicon germanide,silicon germanides +silicon germanium,silicon germaniums +silicon hydride,silicon hydrides +silicon iron,silicon irons +silicon nitride,silicon nitrides +silicon oxide,silicon oxides +silicon planet,silicon planets +silicon wafer,silicon wafers +silicotungstate,silicotungstates +silicula,siliculas +silicule,silicules +silicyne,silicynes +siliquariid,siliquariids +siliqua,siliquas,siliquae +silique,siliques +silk-cotton tree,silk-cotton trees +silkie,silkies +silkman,silkmen +silkmoth,silkmoths +silkscreen,silkscreens +silk,silks +silkwoman,silkwomen +silkworm,silkworms +silky anteater,silky anteaters +silky lacewing,silky lacewings +sillabub,sillabubs +sillage,sillages +sillaginid,sillaginids +sillcock,sillcocks +sillock,sillocks +sillon,sillons +sill,sills +sill,sills +sill,sills +silly billy,silly billies +Silly Billy,Silly Billies +silly goose,silly gooses,silly geese +silly-how,silly-hows +silly mid on,silly mid ons +silly pill,silly pills +silly point,silly points +silly season,silly seasons +silly,sillies +silly straw,silly straws +silole,siloles +silo,silos +silour,silours +silovik,siloviks,siloviki +siloxane,siloxanes +siloxene,siloxenes +siloxy,siloxys +silphid,silphids +silphion,silphions +silphium,silphiums,silphia +silsesquioxane,silsesquioxanes +siltstone,siltstones +silumin,silumins +silure,silures +siluridan,siluridans +silurid,silurids +siluroid,siluroids +silurus,siluri,siluruses +silvanid,silvanids +silvate,silvates +silver age,silver ages +silverback,silverbacks +silverbeet,silverbeets +silverbell,silverbells +silver berry,silver berries +silverberry,silverberries +silverbill,silverbills +silver birch,silver birches +silver bream,silver breams +silver bullet,silver bullets +silver dollar,silver dollars +silvereye,silvereyes +silverfin,silverfins +silver fir,silver firs +silverfish,silverfish,silverfishes +silver fox,silver foxes +silver general,silver generals +silver goal,silver goals +silver-grey,silver-greys +Silverite,Silverites +silver jubilee,silver jubilees +silverling,silverlings +silver lining,silver linings +silver medalist,silver medalists +silver medallist,silver medallists +silver medal,silver medals +silver mine,silver mines +silvermine,silvermines +silver pine,silver pines +silver rule,silver rules +silver salmon,silver salmons +silver screen,silver screens +silverside,silversides +silverskin onion,silverskin onions +silver skin,silver skins +silverskin,silverskins +silver-smith,silver-smiths +silversmith,silversmiths +silversmithy,silversmithies +silverspot,silverspots +silver storm,silver storms +silver surfer,silver surfers +silversword,silverswords +silvertail,silvertails +silver-tongue,silver-tongues +silver top,silver tops +silver trevally,silver trevallies +silver wedding,silver weddings +silvery-cheeked antshrike,silvery-cheeked antshrikes +silvery gibbon,silvery gibbons +silvery marmoset,silvery marmosets +silvery pomfret,silvery pomfrets +silvery sedge,silvery sedges +silviculturist,silviculturists +silyation,silyations +silybin,silybins +silylation,silylations +silylcupration,silylcuprations +silylene,silylenes +silylethynyl,silylethynyls +silylformylation,silylformylations +silyloxy,silyloxys +silyl,silyls +silyne,silynes +simagre,simagres +simarre,simarres +simar,simars +sima,simas +simblot,simblots +SIM card,SIM cards +simenchelyid,simenchelyids +simfile,simfiles +simian,simians +similarity,similarities +similar,similars +similative case,similative cases +simile,similes,similia +similiter,similiters +simitar,simitars +simit,simits +simmerstat,simmerstats +Simmons-Smith reaction,Simmons-Smith reactions +SIMM,SIMMs +simnel cake,simnel cakes +simnel,simnels +simolean,simoleans +Simolean,Simoleans +simoleon,simoleons +Simoleon,Simoleons +simoniac,simoniacs +Simonian,Simonians +simonist,simonists +simon,simons +simony,simonies +simoom,simooms +simoon,simoons +simperer,simperers +simper,simpers +simple engine,simple engines +simple fraction,simple fractions +simple fruit,simple fruits +simple function,simple functions +simple group,simple groups +simple harmonic motion,simple harmonic motions +simple knot,simple knots +simple machine,simple machines +simple majority,simple majorities +simple microscope,simple microscopes +simple past,simple pasts +simple pendulum,simple pendulums +simpler,simplers +simple sentence,simple sentences +Simple Simon over,Simple Simon overs +Simple Simon,Simple Simons +Simple Simon under,Simple Simon unders +simple,simples +simpleton,simpletons +simplex,simplexes,simplices +simplexvirus,simplexviruses +simplicial complex,simplicial complexes +simplician,simplicians +simplifaction,simplifactions +simplification,simplifications +simplified expression,simplified expressions +simplifier,simplifiers +simplist,simplists +simploce,simploces +simp,simps +sim,sims +Sim,Sims +simulachre,simulachres +simulacrum,simulacrums,simulacra +simuland,simulands +simulant,simulants +simular,simulars +simulationist,simulationists +simulation,simulations +simulator,simulators +simulcast,simulcasts +simulfix,simulfixes +simulid,simulids +simuliid,simuliids +simul,simuls +simultanagnosia,simultanagnosias +simultaneous death,simultaneous deaths +simultaneum,simultanea +simulty,simulties +simun,simuns +sinalbin,sinalbins +sinamay,sinamays +sinapate,sinapates +sinapine,sinapines +sinapism,sinapisms +sinapoyl,sinapoyls +sin bin,sin bins +sin-bin,sin-bins +SINCGARS,SINCGARSs +sinch,sinches +sinciput,sincipita,sinciputs +sindon,sindons +sin eater,sin eaters +sin-eater,sin-eaters +sinecure,sinecures +sinecurist,sinecurists +sinentomid,sinentomids +sinequanon,sinequanons +sine qua non,sine qua nons,sine quibus non +sine quΓ’ non,sine quibus non +sine ratio,sine ratios +sine,sines +sine wave,sine waves +sinewave,sinewaves +sinew,sinews +sinfonia,sinfonias,sinfonie +sinfonietta,sinfoniettas,sinfoniette +sing along,sing alongs +sing-along,sing-alongs +singalong,singalongs +Singaporean,Singaporeans +Singapore daisy,Singapore daisies +Singapore dollar,Singapore dollars +Singapura,Singapuras +singeress,singeresses +singer,singers +singer,singers +singer-songwriter,singer-songwriters +singe,singes +singing bowl,singing bowls +singing cowboy,singing cowboys +singing fish,singing fishes +singing flame,singing flames +singing telegram,singing telegrams +singing voice,singing voices +single bed,single beds +single bond,single bonds +single-click,single-clicks +single combat,single combats +single crystal,single crystals +single curve,single curves +single dispatch,single dispatches +single-elimination tournament,single-elimination tournaments +single entendre,single entendres +single-line whip,single-line whips +single malt scotch,single malt scotches +single malt,single malts +single malt whisky,single malt whiskies +single-minded branding moment,single-minded branding moments +single-molecule magnet,single-molecule magnets +single mother,single mothers +single-parent family,single-parent families +single parent,single parents +single-ply membrane,single-ply membranes +single point of failure,single points of failure +single-point urban interchange,single-point urban interchanges +single quote,single quotes +single room,single rooms +singles bar,singles bars +single scull,single sculls +single-sideband modulation,single-sideband modulations +single,singles +single star system,single star systems +single-strand binding protein,single-strand binding proteins +single supplement,single supplements +singletail,singletails +single ticket,single tickets +singleton pattern,singleton patterns +singleton,singletons +singlet oxygen,singlet oxygens +singletrack,singletracks +singletree,singletrees +singlet,singlets +single union agreement,single union agreements +single-valued function,single-valued functions +single-wide,single-wides +single yellow line,single yellow lines +singlicate,singlicates +singlino,singlinos +singlist,singlists +sing,sings +sing-sing,sing-sings +sing-song,sing-songs +singsong,singsongs +singster,singsters +singulare tantum,singularia tantum +singularist,singularists +singularitarian,singularitarians +singular matrix,singular matrices +singular,singulars +singular value decomposition,singular value decompositions +singulative,singulatives +singult,singults +Sinhalese,Sinhalese +Sinicism,Sinicisms +sinistral fault,sinistral faults +sinkage,sinkages +sinkerballer,sinkerballers +sinkerball,sinkerballs +sinker nail,sinker nails +sinker,sinkers +sink estate,sink estates +sink hole,sink holes +sinkhole,sinkholes +sinkijon,sinkijons +sinking feeling,sinking feelings +sinking ship,sinking ships +sinking,sinkings +sink,sinks +sinneress,sinneresses +sinnership,sinnerships +sinner,sinners +sinnet,sinnets +sinogram,sinograms +sinograph,sinographs +sinologist,sinologists +Sinologist,Sinologists +sinologue,sinologues +sinophile,sinophiles +Sinophile,Sinophiles +Sinophobe,Sinophobes +Sinophone,Sinophones +sinopia,sinopias,sinopie +sinople,sinoples +sinque,sinques +sinraptorid,sinraptorids +sinsemilla,sinsemillas +sinsign,sinsigns +sin,sins +sin,sins +Sinta,Sinti +sin tax,sin taxes +sinter,sinters +sintir,sintirs +Sintoist,Sintoists +Sinto,Sinti +Sintuist,Sintuists +sinuation,sinuations +sinuitid,sinuitids +sinuopeid,sinuopeids +sinuosity,sinuosities +sinusoidal function,sinusoidal functions +sinusoid,sinusoids +sinusotomy,sinusotomies +sinus,sinuses +sipahsalar,sipahsalars +sipe,sipes +siphoid,siphoids +siphonapteran,siphonapterans +siphonariid,siphonariids +siphoner,siphoners +siphonet,siphonets +siphonium,siphonia +siphonoglyphe,siphonoglyphes +siphonoglyph,siphonoglyphs +siphonophoran,siphonophorans +siphonophore,siphonophores +siphonostele,siphonosteles +siphonostomatoid,siphonostomatoids +siphonostome,siphonostomes +siphon,siphons +siphuncle,siphuncles +siphuncule,siphuncules +siphunculus,siphunculi +sipper,sippers +sippet,sippets +sippy cup,sippy cups +sippy,sippies +sip,sips +sipunculan,sipunculans +sipunculid,sipunculids +sipunculoid,sipunculoids +si quis,si quises +sira,siras +siraskier,siraskiers +sircar,sircars +sirdar,sirdars +Sir David's long-beaked echidna,Sir David's long-beaked echidnas,Sir David's long-beaked echidnae +siredon,siredons +sire-land,sire-lands +sireland,sirelands +siren call,siren calls +sirene,sirenes,sirenΓ¦ +sirenian,sirenians +sirenid,sirenids +siren,sirens,sirenes +siren song,siren songs +Siren song,Siren songs +siren's song,siren's songs +Siren's song,Siren's songs +sire,sires +Sir Humphrey,Sir Humphreys +Sirian,Sirians +siricid,siricids +sirkar,sirkars +sirkeer,sirkeers +sirmark,sirmarks +sirname,sirnames +siRNA,siRNAs +sirocco,siroccos +siroc,sirocs +sironid,sironids +sirrah,sirrahs +sirree,sirrees +sir-reverence,sir-reverences +Sir Robert Borden,Sir Robert Bordens +sirrush,sirrushes +sir,sirs +Sir,Sirs +sirtuin,sirtuins +sirup,sirups +sirvente,sirventes +sisal,sisals +siscowet,siscowets +sisel,sisels +siserara,siseraras +siserary,siseraries +sise,sises +sise,sises +si,sis +siskin,siskins +siskiwit,siskiwits +sismograph,sismographs +sismometer,sismometers +sisorid,sisorids +sis,sises +siss,sisses +sissy,sissies +sister chromatid,sister chromatids +sister city,sister cities +sister clip,sister clips +sister company,sister companies +sisterfucker,sisterfuckers +sister-german,sisters-german +sistergirl,sistergirls +sisterhood,sisterhoods +sister-in-law,sisters-in-law +sister planet,sister planets +sister ship,sister ships +Sister,Sisters +sister,sisters,sistren +Sister Souljah moment,Sister Souljah +sister-wife,sister-wives +sistrum,sistrums,sistra +sist,sists +sisyrid,sisyrids +sit-and-go,sit-and-goes +sitarist,sitarists +sitar,sitars +sitatunga,sitatungas +sit bone,sit bones +sitcomedian,sitcomedians +sitcom,sitcoms +sit-down,sit-downs +sitdown,sitdowns +sitelet,sitelets +site map,site maps +sitemap,sitemaps +siterip,siterips +site,sites +site,sites +sitfast,sitfasts +sitheman,sithemen +sithe,sithes +sit-inner,sit-inners +sit-in,sit-ins +sitootery,sitooteries +sitosterol,sitosterols +sitrep,sitreps +sit,sits +sittella,sittellas +sitter,sitters +sittid,sittids +sitting duck,sitting ducks +sitting room,sitting rooms +sitting-room,sitting-rooms +sitting,sittings +sitting table,sitting tables +sitting toilet,sitting toilets +situation comedy,situation comedies +situationist,situationists +situation,situations +situla,situlae,situlas +sit upon,sit upons +sit-upon,sit-upons +sit up,sit ups +sit-up,sit-ups +situp,situps +situs,situs +sitz bath,sitz baths +sitzkrieg,sitzkriegs +Sivaist,Sivaists +Sivaite,Sivaites +sivaladapid,sivaladapids +six bob a day tourist,six bob a day tourists +sixer,sixers +six-footer,six-footers +sixgill,sixgills +six-gun,six-guns +sixgun,sixguns +sixies,sixies +sixling,sixlings +sixmo,sixmos +six pack,six packs +six-pack,six-packs +sixpence,sixpences +six penny nail,six penny nails +six-penny nail,six-penny nails +sixpenny nail,sixpenny nails +six-shooter,six-shooters +sixshooter,sixshooters +six,sixes +sixsome,sixsomes +sixteenmo,sixteenmos +sixteen penny nail,sixteen penny nails +sixteen-penny nail,sixteen-penny nails +sixteenpenny nail,sixteenpenny nails +sixteenth note,sixteenth notes +sixteenth rest,sixteenth rests +sixteenth,sixteenths +sixth-form college,sixth-form colleges +sixth-former,sixth-formers +sixth form,sixth forms +sixth grade,sixth grades +sixth man,sixth men +sixth sense,sixth senses +sixth,sixths +six-top,six-tops +sixty-eighth,sixty-eighths +sixty-fifth,sixty-fifths +sixty-first,sixty-firsts +sixty-fourmo,sixty-fourmos +sixtyfourmo,sixtyfourmos +sixty-fourth note,sixty-fourth notes +sixty-fourth,sixty-fourths +sixty-ninth,sixty-ninths +sixty-oneth,sixty-oneths +sixty-second,sixty-seconds +sixty-seventh,sixty-sevenths +sixty-sixth,sixty-sixths +sixty-third,sixty-thirds +six-yard box,six-yard boxes +sizarship,sizarships +sizar,sizars +sizeist,sizeists +size queen,size queens +size roll,size rolls +sizer,sizers +size,sizes +size,sizes +size stick,size sticks +sizing,sizings +sizzler,sizzlers +sizzling,sizzlings +sizz,sizzes +sjambock,sjambocks +sjambok,sjamboks +skaapie,skaapies +skaapsteker,skaapstekers +skaddon,skaddons +skail,skails +skain,skains +skainsmate,skainsmates +skaiter,skaiters +skald,skalds +skandall,skandalls +skandha,skandhas +skanger,skangers +skanker,skankers +skank,skanks +skank,skanks +skank,skanks +skank,skanks +skarn,skarns +skart,skarts +skateathon,skateathons +skateboard deck,skateboard decks +skateboarder,skateboarders +skateboard rail,skateboard rails +skateboard,skateboards +skateboard truck,skateboard trucks +skateboard wheel,skateboard wheels +skatefish,skatefish +skate park,skate parks +skatepark,skateparks +skater,skaters +skate,skates +skate,skates +skateway,skateways +skating rink,skating rinks +skatole,skatoles +skean,skeans +skedonk,skedonks +sked,skeds +skedule,skedules +skeed,skeeds +skeel,skeels +skee,skees +skeeter,skeeters +skeezer,skeezers +skeeze,skeezes +skeezicks,skeezicks +Skeffington's daughter,Skeffington's daughters +skegger,skeggers +skeg,skegs +skeiling,skeilings +skeine,skeines +skein,skeins +skelder,skelders +skeletal formula,skeletal formulas,skeletal formulae +skeletal muscle,skeletal muscles +skeleton crew,skeleton crews +skeletoneer,skeletoneers +skeleton in the closet,skeletons in the closet +skeleton in the cupboard,skeletons in the cupboard +skeletonizer,skeletonizers +skeleton key,skeleton keys +skeleton,skeletons +skeleton staff,skeleton staffs +skelet,skelets +skellington,skellingtons +skell,skells +skellum,skellums +skelly,skellies +skelp,skelps +skelp,skelps +skeneid,skeneids +skeneopsid,skeneopsids +Skene's gland,Skene's glands +skep,skeps +skepticist,skepticists +skeptick,skepticks +skeptic,skeptics +skeptimist,skeptimists +skerrick,skerricks +skerry,skerries +sketchbook,sketchbooks +sketcher,sketchers +sketching,sketchings +sketch pad,sketch pads +sketchpad,sketchpads +sketch,sketches +sketchwriter,sketchwriters +skeuomorphism,skeuomorphisms +skeuomorph,skeuomorphs +skewback,skewbacks +skewerer,skewerers +skewering,skewerings +skewer,skewers +skewing,skewings +skew,skews +Skew-T Log-P diagram,Skew-T Log-P diagrams +skiagram,skiagrams +skiagraph,skiagraphs +skiascope,skiascopes +skiathon,skiathons +skiboarder,skiboarders +skiboard,skiboards +skibobber,skibobbers +skibob,skibobs +ski bum,ski bums +ski bunny,ski bunnies +skidder,skidders +skiddie,skiddies +skidding,skiddings +skid flip,skid flips +Skidi,Skidis,Skidi +skid lid,skid lids +skid mark,skid marks +skidmark,skidmarks +Skidoo,Skidoos +skidpad,skidpads +skidpan,skidpans +skidplate,skidplates +skid road,skid roads +skid row,skid rows +skidrow,skidrows +skid,skids +skier day,skier days +skier,skiers +skie,skies +skiff,skiffs +skiff,skiffs +skijorer,skijorers +ski jumper,ski jumpers +ski jumping,ski jumpings +ski jump,ski jumps +skilfish,skilfishes,skilfish +ski lift,ski lifts +skillet,skillets +skilling,skillings +skilling,skillings +skillion,skillions +skillion,skillions +skill point,skill points +skill set,skill sets +skillset,skillsets +skillshare,skillshares +skill tree,skill trees +ski lodge,ski lodges +Skilsaw,Skilsaws +skil,skils +ski mask,ski masks +skimback,skimbacks +skimboarder,skimboarders +skimboard,skimboards +skimelton,skimeltons +skimmel,skimmels +skimmer,skimmers +skimmerton,skimmertons +skimmia,skimmias +skimming,skimmings +skimmington,skimmingtons +skimobile,skimobiles +skimp,skimps +skimpy,skimpies +skin effect,skin effects +skin flick,skin flicks +skinflick,skinflicks +skinflint,skinflints +skin flute,skin flutes +skinflute,skinflutes +skinfold,skinfolds +skin forming alloy,skin forming alloys +skinful,skinfuls,skinsful +skin graft,skin grafts +skinhead,skinheads +skinker,skinkers +skink,skinks +skin magazine,skin magazines +skin mag,skin mags +skin-mag,skin-mags +skinmag,skinmags +skin movie,skin movies +Skinner box,Skinner boxes +Skinnerian,Skinnerians +skinner,skinners +skinny-dipper,skinny-dippers +skinny mirror,skinny mirrors +skinny,skinnies +skinsuit,skinsuits +skin tag,skin tags +skintern,skinterns +skinwalker,skinwalkers +skin worm,skin worms +skiophyte,skiophytes +skipathon,skipathons +skip car,skip cars +skip hoist,skip hoists +skipjack,skipjacks,skipjack +skipjack tuna,skipjack tunas,skipjack tuna +skip-kennel,skip-kennels +ski pole,ski poles +skipper,skippers +skipper,skippers +skippet,skippets +skipping rope,skipping ropes +skip rope,skip ropes +skip,skips +skip,skips +skip,skips +skip,skips +skip tracer,skip tracers +skiptracer,skiptracers +ski resort,ski resorts +skirling,skirlings +skirmisher,skirmishers +skirmish,skirmishes +skirret,skirrets +skirrett,skirretts +skirr,skirrs +skirt chaser,skirt chasers +skirt-chaser,skirt-chasers +skirting board,skirting boards +skirting-board,skirting-boards +skirting,skirtings +skirtini,skirtinis +skirt,skirts +ski run,ski runs +ski school,ski schools +ski,skis +ski slope,ski slopes +skister,skisters +skite,skites +ski track,ski tracks +skitrack,skitracks +skit,skits +skitter,skitters +skittle alley,skittle alleys +skittle-dog,skittle-dogs +skittler,skittlers +skittle,skittles +skiver,skivers +skive,skives +skiving,skivings +skivvy,skivvies +ski wax,ski waxes +sklayre,sklayres +skoke berry,skoke berries +skokeberry,skokeberries +Skolem function,Skolem functions +skollie,skollies +Skolt,Skolts +skonce,skonces +skookum,skookums +Skookum,Skookums +Skopjan,Skopjans +Skopostheorie,Skopostheories +Skopos theory,Skopos theories +skorpion,skorpions +skort,skorts +skosh,skoshes +skotoperiod,skotoperiods +skototropism,skototropisms +skout,skouts +Skraeling,Skraelings +skreen,skreens +skrike,skrikes +skrik,skriks +skrimmage,skrimmages +skrimshander,skrimshanders +skua,skuas +skulduggery,skulduggeries +skulker,skulkers +skulk,skulks +skull and crossbones,skull and crossbones,skulls and crossbones +skullbone,skullbones +skull cap,skull caps +skull-cap,skull-caps +skullcap,skullcaps +skullcup,skullcups +skullduggery,skullduggeries +skullet,skullets +skullfish,skullfish +skull-fuck,skull-fucks +skulling,skullings +skull,skulls +skull,skulls +skulpin,skulpins +Skunk ape,Skunk apes +skunk cabbage,skunk cabbages +skunkhead,skunkheads +skunk,skunks +skunk,skunks +skunkweed,skunkweeds +skurry,skurries +SKU,SKUs +skute,skutes +skutterudite,skutterudites +skux,skuxes +sky ball,sky balls +skybike,skybikes +sky blue,sky blues +Sky Blue,Sky Blues +skyboard,skyboards +skybox,skyboxes +skycap,skycaps +skycycle,skycycles +sky daddy,sky daddies +skydaddy,skydaddies +skydip,skydips +skydiver,skydivers +skydive,skydives +skydome,skydomes +Skye terrier,Skye terriers +skyfarm,skyfarms +skyfie,skyfies +skyflower,skyflowers +skyf,skyfs +skyful,skyfuls,skiesful +sky girl,sky girls +skyglow,skyglows +skyhook,skyhooks +skyjacker,skyjackers +skyjacking,skyjackings +skylab,skylabs +skylark,skylarks +skylift,skylifts +skylight,skylights +skyline,skylines +skyling,skylings +skyman,skymen +skymap,skymaps +sky marshal,sky marshals +sky parlor,sky parlors +sky parlour,sky parlours +Skyper,Skypers +sky pilot,sky pilots +skyrmion,skyrmions +skyrocket,skyrockets +skysail,skysails +skyscape,skyscapes +sky scooter,sky scooters +skyscraper,skyscrapers +skyship,skyships +skysill,skysills +sky,skies +skyspace,skyspaces +skysurfer,skysurfers +skytale,skytales +skywalker,skywalkers +skywalk,skywalks +skywatcher,skywatchers +skywave,skywaves +skyway,skyways +skywriter,skywriters +slabberer,slabberers +slabber,slabbers +slabber,slabbers +slab,slabs +slackard,slackards +slackcom,slackcoms +slackener,slackeners +slacker,slackers +slackliner,slackliners +slackline,slacklines +slack tub,slack tubs +slackwire,slackwires +slade,slades +slagger,slaggers +slag heap,slag heaps +slag,slags +slaie,slaies +slake trough,slake troughs +slalomer,slalomers +slalomist,slalomists +slam-bang,slam-bangs +slam book,slam books +slambook,slambooks +slam dunk approach,slam dunk approaches +slam-dunk approach,slam-dunk approaches +slamdunk approach,slamdunk approaches +slam dunk,slam dunks +slam-dunk,slam-dunks +slamdunk,slamdunks +slamfire,slamfires +slamkin,slamkins +slammaster,slammasters +slammerkin,slammerkins +slammer,slammers +slam piece,slam pieces +slam,slams +slanderer,slanderers +slander,slanders +slandre,slandres +slane,slanes +slanging match,slanging matches +slangrill,slangrills +slang,slangs +slang,slangs +slanguist,slanguists +slang-whanger,slang-whangers +slangwhanger,slangwhangers +slanshack,slanshacks +slant bar,slant bars +slanting,slantings +slant rhyme,slant rhymes +slant,slants +slap-back,slap-backs +slapback,slapbacks +slap bet,slap bets +slap chip,slap chips +slap-down,slap-downs +slapdown,slapdowns +slaphead,slapheads +slap in the face,slaps in the face +slapjack,slapjacks +slap on the hand,slaps on the hand +slap on the wrist,slaps on the wrist +slappee,slappees +slapper,slappers +slapping,slappings +slappy,slappies +slap shot,slap shots +slapshot,slapshots +slap,slaps +slapsticker,slapstickers +slapstickery,slapstickeries +slasher film,slasher films +slasher flick,slasher flicks +slasher movie,slasher movies +slasher,slashers +slash fiction,slash fictions +slash line,slash lines +slash pile,slash piles +slash pine,slash pines +slash,slashes +slashzine,slashzines +slatch,slatches +slate gray,slate grays +slater,slaters +slate,slates +slathering,slatherings +slather,slathers +slating,slatings +slat,slats +slattern,slatterns +slatting,slattings +slatt,slatts +slaty-breasted tinamou,slaty-breasted tinamous +slaughterer,slaughterers +slaughterhall,slaughterhalls +slaughterhouse,slaughterhouses +slaughtering,slaughterings +slaughterman,slaughtermen +slaughterperson,slaughterpersons,slaughterpeople +slaught,slaughts +slava,slavas +slaveboy,slaveboys +slave breaker,slave breakers +slave code,slave codes +slavedealer,slavedealers +slavedom,slavedoms +slave driver,slave drivers +slave-driver,slave-drivers +slave-girl,slave-girls +slavegirl,slavegirls +slaveholder,slaveholders +slaveholding,slaveholdings +slavemaster,slavemasters +slaveocracy,slaveocracies +slaveowner,slaveowners +slaverer,slaverers +slaver,slavers +slave,slaves +slave to fashion,slaves to fashion +slavey,slaveys,slavies +Slavicism,Slavicisms +Slavicist,Slavicists +slavocracy,slavocracies +Slavonian grebe,Slavonian grebes +Slavonian,Slavonians +Slavophile,Slavophiles +slavophone,slavophones +Slav,Slavs +slawdog,slawdogs +slaw,slaws +slayer rule,slayer rules +slayer,slayers +slaying,slayings +SLBM,SLBMs +SLD,SLDs +slean,sleans +sleave,sleaves +sleazebag,sleazebags +sleazeball,sleazeballs +sleazemonger,sleazemongers +sleazoid,sleazoids +sleb,slebs +sledder,sledders +sledding,sleddings +sled dog,sled dogs +sleddog,sleddogs +sledgehammer,sledgehammers +sledger,sledgers +sledge,sledges +sledge,sledges +sled,sleds +sleekness,sleeknesses +sleepaholic,sleepaholics +sleepaway,sleepaways +sleep disorder,sleep disorders +sleeper berth,sleeper berths +sleeper cell,sleeper cells +sleeperette,sleeperettes +sleeper,sleepers +sleeper,sleepers +sleeping bag,sleeping bags +sleeping car,sleeping cars +sleeping giant,sleeping giants +sleeping mat,sleeping mats +sleeping partner,sleeping partners +sleeping pill,sleeping pills +sleeping policeman,sleeping policemen +sleeping sickness,sleeping sicknesss +sleeping table,sleeping tables +sleeping tablet,sleeping tablets +sleep-in,sleep-ins +sleeplessness,sleeplessnesses +sleepness,sleepnesses +sleepout,sleepouts +sleepover,sleepovers +sleepsack,sleepsacks +sleep schedule,sleep schedules +sleeptalker,sleeptalkers +sleepwaker,sleepwakers +sleepwalker,sleepwalkers +sleepy head,sleepy heads +sleepyhead,sleepyheads +sleeve board,sleeve boards +sleeveen,sleeveens +sleeveface,sleevefaces +sleevehand,sleevehands +sleeve-link,sleeve-links +sleevemaker,sleevemakers +sleeve,sleeves +sleev,sleevs +sleighbell,sleighbells +sleigher,sleighers +sleighful,sleighfuls +sleigh,sleighs +sleight of hand,sleights of hand +sleight,sleights +sleiveen,sleiveens +slender-horned gazelle,slender-horned gazelles +slender sedge,slender sedges +slent,slents +slepton,sleptons +sleuth-hound,sleuth-hounds +sleuthhound,sleuthhounds +sleuth,sleuths +sleuth,sleuths +slew,slews +slew,slews +sley,sleys +slice category,slice categories +slicer,slicers +slice,slices +slicing,slicings +slickenside,slickensides +slicker,slickers +slickhead,slickheads +slicking,slickings +slickness,slicknesses +slick,slicks +slickster,slicksters +slide fastener,slide fasteners +slide guitar,slide guitars +slideout,slideouts +slide phone,slide phones +slide projector,slide projectors +slider phone,slider phones +slider pump,slider pumps +slider,sliders +slide rule,slide rules +slide show,slide shows +slide-show,slide-shows +slideshow,slideshows +slide,slides +slide tackle,slide tackles +slide trombone,slide trombones +slidewalk,slidewalks +slideway,slideways +slide whistle,slide whistles +slidewire,slidewires +sliding door,sliding doors +sliding filament model,sliding filament models +sliding pond,sliding ponds +sliding scale,sliding scales +sliding,slidings +slidometer,slidometers +slighter,slighters +slightness,slightnesses +slight of hand,slight of hands +slight,slights +slim client,slim clients +slimdown,slimdowns +slimebag,slimebags +slimeball,slimeballs +slimehead,slimeheads +slime mold,slime molds +slime mould,slime moulds +slime,slimes +slimicide,slimicides +sliming,slimings +slimmer,slimmers +slim,slims +slimy,slimies +slinch,slinches +slingback,slingbacks +slinger,slingers +sling psychrometer,sling psychrometers +slingshot,slingshots +sling,slings +slinker,slinkers +slink,slinks +slinky,slinkies +Slinky,Slinkys,Slinkies +sliotar,sliotars +sliothar,sliothars +slipboard,slipboards +slip case,slip cases +slip-case,slip-cases +slipcase,slipcases +slipcasting,slipcastings +slip coach,slip coaches +slipcover,slipcovers +slipdress,slipdresses +slipe,slipes +slip knot,slip knots +slipknot,slipknots +slipmat,slipmats +slipmouth,slipmouths +slip noose,slip nooses +slip of the pen,slips of the pen +slip of the tongue,slips of the tongue +slip-on,slip-ons +slipover,slipovers +slippage,slippages +slipped disc,slipped discs +slipped disk,slipped disks +slipper animalcule,slipper animalcules +slipper chair,slipper chairs +slippering,slipperings +slipper lobster,slipper lobsters +slipper,slippers +slippery jack,slippery jacks +slippery nipple,slippery nipples +slippery slope,slippery slopes +slipping,slippings +slippy map,slippy maps +slip ring,slip rings +slip road,slip roads +sliproad,sliproads +slip sheet,slip sheets +slipshoe,slipshoes +slipskin,slipskins +slip,slips +slip,slips +slipstick,slipsticks +slipstitch,slipstitches +slipstream,slipstreams +slipstring,slipstrings +slipthrift,slipthrifts +slip-up,slip-ups +slipup,slipups +slipway,slipways +SLI,SLIs +slitherer,slitherers +slitmask,slitmasks +slit-shell,slit-shells +slitshell,slitshells +slit,slits +slitter,slitters +sliver,slivers +slive,slives +sloam,sloams +Sloane Ranger,Sloane Rangers +Sloanie,Sloanies +sloat,sloats +slobberer,slobberers +slobber knocker,slobber knockers +slob ice,slob ice +slob,slobs +slocking stone,slocking stones +sloe gin,sloe gins +sloe,sloes +sloganeer,sloganeers +slogan,slogans +slogfest,slogfests +slogger,sloggers +slogo,slogos +slog,slogs +slog-sweep,slog-sweeps +sloka,slokas +slood,sloods +sloom,slooms +sloop,sloops +sloosh,slooshes +sloo,sloos +slop-basin,slop-basins +slop bowl,slop bowls +slop-bowl,slop-bowls +slop bucket,slop buckets +slope field,slope fields +sloper,slopers +slope,slopes +slopewash,slopewashes +sloping,slopings +slop-jar,slop-jars +slop-pail,slop-pails +sloppy joe,sloppy joes +slopseller,slopsellers +slop shoot,slop shoots +slopshop,slopshops +slop,slops +slop,slops +slore,slores +sloshing,sloshings +slosh,sloshes +slosh,sloshes +slotback,slotbacks +slot car,slot cars +slot-car,slot-cars +sloth bear,sloth bears +slot-hound,slot-hounds +slot-loading disc drive,slot-loading disc drives +slot machine,slot machines +slot,slots +slot,slots +slot,slots +slotter,slotters +slotting machine,slotting machines +slotting,slottings +sloucher,slouchers +slouch hat,slouch hats +sloughing,sloughings +slough,sloughs +slough,sloughs +Slovakian,Slovakians +Slovak,Slovaks +Slovene,Slovenes +Slovenian,Slovenians +sloven,slovens +Slovincian,Slovincians +slowback,slowbacks +slow ball,slow balls +slowball,slowballs +slow belly,slow bellies +slow bowler,slow bowlers +slow burn,slow burns +slow clap,slow claps +slowcoach,slowcoaches +slow cooker,slow cookers +slow dance,slow dances +slowdown,slowdowns +slower,slowers +slowhound,slowhounds +slowing,slowings +slow march,slow marches +slow match,slow matches +slowmatch,slowmatches +slow news day,slow news days +slow oven,slow ovens +slowplay,slowplays +slowpoke,slowpokes +slow roll,slow rolls +slow,slows +slowworm,slowworms +sloyd,sloyds +SLR,SLRs,SLR's +sl*t,sl*ts +slubberdegullion,slubberdegullions +slubber,slubbers +slub,slubs +sludge hole,sludge holes +slue,slues +sluff,sluffs +SLUF,SLUFs +slug-a-bed,slug-a-beds +slugabed,slugabeds +slugfest,slugfests +sluggard,sluggards +slugger,sluggers +slugging average,slugging averages +slugging percentage,slugging percentages +slughorn,slughorns +slug line,slug lines +slugline,sluglines +slug slime,slug slimes +slug,slugs +slugthrower,slugthrowers +slugworm,slugworms +sluice box,sluice boxes +sluice-box,sluice-boxes +sluicebox,sluiceboxes +sluice gate,sluice gates +sluice-gate,sluice-gates +sluicegate,sluicegates +sluice,sluices +sluiceway,sluiceways +sluicing,sluicings +slumberer,slumberers +slumber party,slumber parties +slumber,slumbers +slumbre,slumbres +slumdog,slumdogs +slumgullion,slumgullions +slumlord,slumlords +slummock,slummocks +slumping,slumpings +slump,slumps +slum,slums +slungshot,slungshots +slunk,slunks +slunt,slunts +Slurpee,Slurpees +slurper,slurpers +slurping,slurpings +slurp,slurps +slurry,slurries +slur,slurs +slurve,slurves +slushball,slushballs +slushbox,slushboxes +slushbreaker,slushbreakers +slush fund,slush funds +slushie,slushies +slush pile,slush piles +slushpile,slushpiles +Slush Puppie,Slush Puppies +slush,slushes +slushy,slushies +slut bag,slut bags +slut-bag,slut-bags +slutbag,slutbags +slutface,slutfaces +sluthead,slutheads +sluthhound,sluthhounds +slut,sluts +sluttishness,sluttishnesses +slutwalk,slutwalks +sly-boot,sly-boots +slyboot,slyboots +sly fox,sly foxes +sly-grog,sly-grogs +slype,slypes +smackdown,smackdowns +smackee,smackees +smackeroo,smackeroos +smacker,smackers +smackhead,smackheads +smacking,smackings +smack,smacks +smack,smacks +smack,smacks +smail,smails +smake,smakes +small ad,small ads +small-billed tinamou,small-billed tinamous +small blind,small blinds +small blue,small blues +small business,small businesses +small-c conservative,small-c conservatives +small circle,small circles +small clause,small clauses +small copper,small coppers +small d democrat,small d democrats +small-d democrat,small-d democrats +small-eared galago,small-eared galagos +smallest common multiple,smallest common multiples +smallest room,smallest rooms +small forward,small forwards +small fry,small fry +small gross,small gross +small heath,small heaths +smallholder,smallholders +smallholding,smallholdings +small icosihemidodecahedron,small icosihemidodecahedrons +small intestine,small intestines +small-l liberal,small-l liberals +small molecule drug,small molecule drugs +smallmouth bass,smallmouth bass,smallmouth basses +smallmouth,smallmouths +small nuclear ribonucleoprotein,small nuclear ribonucleoproteins +smallpox blanket,smallpox blankets +small "d" democrat,small "d" democrats +small "r" republican,small "r" republicans +small r republican,small r republicans +small-r republican,small-r republicans +small saphenous vein,small saphenous veins +smallsat,smallsats +Small Scale Integration,Small Scale Integrations +small skipper,small skippers +small,smalls +smallsword,smallswords +small-timer,small-timers +small tortoiseshell,small tortoiseshells +small town,small towns +smalltown,smalltowns +small ubiquitin-related modifier,small ubiquitin-related modifiers +small white,small whites +small-world network,small-world networks +smaragd,smaragds +smaridid,smaridids +smark,smarks +smarm,smarms +smart aleck,smart alecks +smart alec,smart alecs +smart arse,smart arses +smartarse,smartarses +Smarta,Smartas +smart ass,smart asses +smart-ass,smart-asses +smartass,smartasses +smartbook,smartbooks +smart card,smart cards +smartcard,smartcards +smart cookie,smart cookies +smart grid,smart grids +Smartha,Smarthas +smartie,smarties +smartling,smartlings +smart-money,smart-monies +smartphone,smartphones +smart-reference proxy,smart-reference proxies +smart,smarts +SmartStamp,SmartStamps +smartwatch,smartwatches +smarty pants,smarty pantses +smarty,smarties +smash and grab,smash and grabs +smash cut,smash cuts +smasher,smashers +smash hit,smash hits +smashie,smashies +smashing,smashings +smash product,smash products +smash,smashes +smashup,smashups +smatchet,smatchets +smatch,smatches +smatterer,smatterers +smatter,smatters +smear campaign,smear campaigns +smearing,smearings +smear,smears +smear test,smear tests +smeath,smeaths +smectic,smectics +smectite,smectites +smectogen,smectogens +smee,smees +smegger,smeggers +smeghead,smegheads +smeller,smellers +smell-feast,smell-feasts +smell fox,smell foxes +smellfungus,smellfungi +smelling salt,smelling salts +smell-o-meter,smell-o-meters +smell-o-rama,smell-o-ramas +smell test,smell tests +smelter dust,smelter dusts +smelter,smelters +smeltery,smelteries +smeltie,smelties +smelting,smeltings +smelt,smelts +smelt,smelts +smerk,smerks +smerlin,smerlins +S meter,S meters +smew,smews +SMG,SMGs +smicket,smickets +smiddy,smiddies +smidgen,smidgens +smidgeon,smidgeons +smidge,smidges +smidgin,smidgins +smift,smifts +smilax,smilaxes +smiler,smilers +smile,smiles +smilet,smilets +smiley face,smiley faces +smiley,smileys,smilies +smilie,smilies +smilodon,smilodons +sminthurid,sminthurids +smirker,smirkers +smirk,smirks +smiter,smiters +Smithereen,Smithereens +smither,smithers +Smithfield stone,Smithfield stone +smith,smiths +smithy,smithies +smittinid,smittinids +SML,SMLs +smoak,smoaks +smock frock,smock frocks +smock,smocks +smog check,smog checks +Smoggy,Smoggies +smokable,smokables +smoke alarm,smoke alarms +smokeasy,smokeasies +smokebox,smokeboxes +smokebush,smokebushes +smoke detector,smoke detectors +smoked Irishman,smoked Irishmen +smoked meat,smoked meats +smoked salmon,smoked salmons +smokeeasy,smokeeasies +smoke eater,smoke eaters +smoke explosion,smoke explosions +smokefall,smokefalls +smoke grenade,smoke grenades +smokehouse,smokehouses +smokejack,smokejacks +smoke jumper,smoke jumpers +smokejumper,smokejumpers +smoke-oh,smoke-ohs +smokepipe,smokepipes +smoke point,smoke points +smoke pole,smoke poles +smoke ring,smoke rings +smoker's cough,smoker's coughs +smoker,smokers +smokery,smokeries +smoke screen,smoke screens +smokescreen,smokescreens +smokeshop,smokeshops +smoke signal,smoke signals +smoke-signal,smoke-signals +smokestack industry,smokestack industries +smokestack,smokestacks +smoke stand,smoke stands +smoke test,smoke tests +smoke tower,smoke towers +smoke wagon,smoke wagons +smokie,smokies +smoking car,smoking cars +smoking ceremony,smoking ceremonies +smoking gun,smoking guns +smoking jacket,smoking jackets +smoking room,smoking rooms +smokist,smokists +smoko,smokos +smoky quartz,smoky quartzes +smolderer,smolderers +smoldering,smolderings +smolt,smolts +smoocher,smoochers +smoochfest,smoochfests +smoochie,smoochies +smooch,smooches +smoothbore,smoothbores +smoother,smoothers +smooth fox terrier,smooth fox terriers +smooth hound,smooth hounds +smoothhound,smoothhounds +smoothie,smoothies +smoothing iron,smoothing irons +smoothing,smoothings +smooth manifold,smooth manifolds +smooth operator,smooth operators +smooth,smooths +smooth snake,smooth snakes +smoothy,smoothies +smoot,smoots +smoot,smoots +s'more,s'mores +smorgasbord,smorgasbords +smother crop,smother crops +smothered mate,smothered mates +smotherer,smotherers +smother,smothers +smouch,smouches +smoulderer,smoulderers +smouldering,smoulderings +SM,SMs +SMS,SMSes +smudge pot,smudge pots +smudger,smudgers +smudge,smudges +smudging,smudgings +smuggler's bible,smuggler's bibles +smuggler,smugglers +smuggling,smugglings +smuon,smuons +smurf account,smurf accounts +smurf attack,smurf attacks +smurf,smurfs +smush,smushes +smutch,smutches +smutfest,smutfests +smuthound,smuthounds +smutmonger,smutmongers +Smyrniot,Smyrniots +SN1 reaction,SN1 reactions +SN2 reaction,SN2 reactions +snack bar,snack bars +snacker,snackers +snackery,snackeries +snacket,snackets +snackette,snackettes +snackmaker,snackmakers +snack,snacks +snack,snacks +snacktime,snacktimes +snackwich,snackwiches +snaffler,snafflers +snaffle,snaffles +snafu,snafus +SNAFU,SNAFUs +snagger,snaggers +snaggle,snaggles +snaggletooth,snaggleteeth,snaggletooths +snag,snags +snag,snags +snag,snags +snailase,snailases +snailery,snaileries +snailfish,snailfishes,snailfish +snailshell,snailshells +snail,snails +snakeberry,snakeberries +snakebird,snakebirds +snake charmer,snake charmers +snake eagle,snake eagles +snakefish,snakefish +snakefly,snakeflies +snake gun,snake guns +snake hawk,snake hawks +snakehead,snakeheads +snake in the grass,snakes in the grass +snakelet,snakelets +snakeline,snakelines +snakeling,snakelings +snake mackerel,snake mackerels +snake-necked turtle,snake-necked turtles +snakeneck,snakenecks +snake rake,snake rakes +snakeroot,snakeroots +snakeshead,snakesheads +snake,snakes +snakewhip,snakewhips +snaking,snakings +snapback,snapbacks +snap bean,snap beans +snap cap,snap caps +snapdragon,snapdragons +snap fastener,snap fasteners +snaphaan,snaphaans +snaphance,snaphances +snaphaunce,snaphaunces +snaphead,snapheads +snap inhale,snap inhales +snapin,snapins +snapline,snaplines +snap-link,snap-links +snaplock,snaplocks +snapperhead,snapperheads +snapper,snappers +snapping shrimp,snapping shrimps +snapping turtle,snapping turtles +snapping-turtle,snapping-turtles +snap ring,snap rings +snapsack,snapsacks +snapshooter,snapshooters +snap shot,snap shots +snap-shot,snap-shots +snapshot,snapshots +SNAP,SNAPs +snap strap,snap straps +snapsuit,snapsuits +snapweed,snapweeds +snare drum,snare drums +snarer,snarers +snare,snares +Snares penguin,Snares penguins +snarker,snarkers +snark,snarks +snarler,snarlers +snarling iron,snarling irons +snarling,snarlings +snarl,snarls +snarl-up,snarl-ups +snaste,snastes +snast,snasts +snatch and run,snatch and runs +snatchback,snatchbacks +snatch block,snatch blocks +snatcher,snatchers +snatching,snatchings +snatch,snatches +snatch,snatches +snath,snaths +snattock,snattocks +snausage,snausages +snead,sneads +sneakbox,sneakboxes +sneakerhead,sneakerheads +sneaker,sneakers +sneak peek,sneak peeks +sneak preview,sneak previews +sneaksby,sneaksbies +sneak,sneaks +sneak thief,sneak thieves +sneap,sneaps +sneath,sneaths +sneck-bend,sneck-bends +sneckdraw,sneckdraws +snecket,sneckets +sneck lifter,sneck lifters +sneck posset,sneck possets +sneck,snecks +sneerer,sneerers +sneering,sneerings +sneer,sneers +sneezeguard,sneezeguards +sneezer,sneezers +sneeze,sneezes +sneezeweed,sneezeweeds +sneezewort,sneezeworts +snell,snells +sneutrino,sneutrinos +snib,snibs +snickerdoodle,snickerdoodles +snickerer,snickerers +snickersnee,snickersnees +snicker,snickers +snicket,snickets +Snickometer,Snickometers +snick,snicks +snick,snicks +snide,snides +sniffer dog,sniffer dogs +sniffer plane,sniffer planes +sniffer,sniffers +sniffing,sniffings +sniffler,snifflers +sniffle,sniffles +sniffling,snifflings +sniff,sniffs +sniff test,sniff tests +snifter,snifters +snifting valve,snifting valves +sniggerer,sniggerers +snigger,sniggers +sniggler,snigglers +snigg,sniggs +sniglet,sniglets +snig,snigs +snipebill,snipebills +snipefish,snipefishes,snipefish +snipe hunt,snipe hunts +sniper rifle,sniper rifles +sniper,snipers +snipe,snipe,snipes +snippack,snippacks +snipper-snapper,snipper-snappers +snipper,snippers +snippet,snippets +snippock,snippocks +snip-snap,snip-snaps +snip,snips +snitch,snitches +snite,snites +snit fit,snit fits +snit-fit,snit-fits +snit,snits +sniveler,snivelers +sniveller,snivellers +snivel,snivels +snizz,snizzes +snobbery,snobberies +snobling,snoblings +snobocracy,snobocracies +snob,snobs +snod,snods +snoff,snoffs +snogfest,snogfests +snogger,snoggers +snog,snogs +snollygoster,snollygosters +snood,snoods +snooker,snookers +snooker table,snooker tables +snook,snooks +snook,snooks +snooper,snoopers +snoop,snoops +snootful,snootfuls +snoot,snoots +snooze button,snooze buttons +snoozefest,snoozefests +snoozer,snoozers +snooze,snoozes +snorasaurus,snorasauruses +snore-fest,snore-fests +snorer,snorers +snore,snores +snoring rail,snoring rails +snorkeler,snorkelers +snorkeller,snorkellers +snorkel,snorkels +Snorlax,Snorlax +snoRNA,snoRNAs +snorter,snorters +snorting,snortings +snort,snorts +snotball,snotballs +snotnose,snotnoses +snot rag,snot rags +snot rocket,snot rockets +snotter,snotters +snottery,snotteries +snottite,snottites +snottygobble,snottygobbles +snout beetle,snout beetles +snout moth,snout moths +snout,snouts +snow angel,snow angels +snow apple,snow apples +snow-apple,snow-apples +snowball effect,snowball effects +snowballer,snowballers +snowball fight,snowball fights +snowball,snowballs +snowbank,snowbanks +snowbase,snowbases +snowbear,snowbears +snowbell,snowbells +snowberry,snowberries +snowbilly,snowbillies +snow bird,snow birds +snow-bird,snow-birds +snowbird,snowbirds +snowblader,snowbladers +snowblade,snowblades +snow blower,snow blowers +snowblower,snowblowers +snowboarder,snowboarders +snowboard,snowboards +snowboot,snowboots +snow bunny,snow bunnies +snow bunting,snow buntings +snow cannon,snow cannons +snowcap,snowcaps +snowcat,snowcats +snow chain,snow chains +snowclone,snowclones +snowcock,snowcocks +snow cone,snow cones +snowcone,snowcones +snowcream,snowcreams +snow day,snow days +snowdog,snowdogs +snow donut,snow donuts +snow doughnut,snow doughnuts +snow drift,snow drifts +snowdrift,snowdrifts +snowdrop,snowdrops +snowdrop windflower,snowdrop windflowers +snower,snowers +snowface,snowfaces +snowfield,snowfields +snowfighter,snowfighters +snow figure,snow figures +snow-flake,snow-flakes +snowflake,snowflakes +snowfleck,snowflecks +snow fort,snow forts +snow fox,snow foxes +snow fungus,snow fungi +snowgirl,snowgirls +snow globe,snow globes +snowglobe,snowglobes +snowgrass,snowgrasss +snow guard,snow guards +snow gun,snow guns +snowgun,snowguns +snowicane,snowicanes +snow job,snow jobs +snowlady,snowladies +snow leopard,snow leopards +snow level,snow levels +snow line,snow lines +snowline,snowlines +snow load,snow loads +snow lotus,snow lotuses +snowl,snowls +snowmachine,snowmachines +snowmaker,snowmakers +snowman,snowmen +snowmeow,snowmeows +snowmobiler,snowmobilers +snowmobile,snowmobiles +snowmobilist,snowmobilists +snow morel,snow morels +snowologist,snowologists +snowout,snowouts +snowpack,snowpacks +snow park,snow parks +snowpark,snowparks +snow pear,snow pears +snow pea,snow peas +snowpea,snowpeas +snowperson,snowpeople +snow petrel,snow petrels +snowpit,snowpits +snowplane,snowplanes +snow plough,snow ploughs +snowplough,snowploughs +snow plow,snow plows +snowplow,snowplows +snowprint,snowprints +snowrut,snowruts +snowscape,snowscapes +snow shed,snow sheds +snowshed,snowsheds +snow sheep,snow sheep +snowshoe hare,snowshoe hares +snowshoe rabbit,snowshoe rabbits +snowshoer,snowshoers +snowshoe,snowshoes +Snowshoe,Snowshoes +snow shovel,snow shovels +snow shower,snow showers +snowshower,snowshowers +snow skink,snow skinks +snowslide,snowslides +snowslip,snowslips +snow,snows +snowsport,snowsports +snowsquall,snowsqualls +snowstorm,snowstorms +snowsuit,snowsuits +snow thrower,snow throwers +snow-thrower,snow-throwers +snowthrower,snowthrowers +snow train,snow trains +snowwoman,snowwomen +snowy egret,snowy egrets +snowy owl,snowy owls +snowy tree-cricket,snowy tree-crickets +SNP,SNPs +SNR,SNRs +SN,SNs +snubber,snubbers +snubbing post,snubbing posts +snubbing,snubbings +snub cube,snub cubes +snub,snubs +snudge,snudges +snuff-and-butter,snuff-and-butters +snuff-box,snuff-boxes +snuffbox,snuffboxes +snuff-dish,snuff-dishes +snuffer,snuffers +snuff film,snuff films +snuffler,snufflers +snuffle,snuffles +snuffling,snufflings +snuff movie,snuff movies +snuggery,snuggeries +snuggie,snuggies +Snuggie,Snuggies +snuggle bunny,snuggle bunnies +snuggle-bunny,snuggle-bunnies +snuggler,snugglers +snuggle,snuggles +snuggling,snugglings +snug,snugs +sny,snies +sny,snies +soakage,soakages +soakaway,soakaways +soaker,soakers +soaking,soakings +soak,soaks +soak test,soak tests +soal,soals +soal,soals +soam,soams +so and so,so and sos +so-and-so,so-and-sos +soapberry,soapberries +soapbox car,soapbox cars +soap box,soap boxes +soapbox,soapboxes +soap bubble,soap bubbles +soap dish,soap dishes +soap dodger,soap dodgers +soaper,soapers +soapfish,soapfishes,soapfish +soapie,soapies +soaping,soapings +soapland,soaplands +soapmaker,soapmakers +soapnut,soapnuts +soap opera,soap operas +soap pad,soap pads +soaproot,soaproots +soapstar,soapstars +soapstock,soapstocks +soaptree,soaptrees +soapweed,soapweeds +soarer,soarers +soaring,soarings +soar,soars +Soay sheep,Soay sheep +soba,sobas +sobber,sobbers +sobbing,sobbings +sobemovirus,sobemoviruses +sobfest,sobfests +sobre-vest,sobre-vests +sobriquet,sobriquets +sob sister,sob sisters +sob,sobs +SOB,SOBs +sob story,sob stories +socager,socagers +SOCB,SOCBs +socca,soccas +soccer ball,soccer balls +soccerball,soccerballs +soccer field,soccer fields +soccer mom,soccer moms +soccer mum,soccer mums +Socceroo,Socceroos +soccer player,soccer players +soccerplex,soccerplexes +Sochisider,Sochisiders +sociability,sociabilities +sociable number,sociable numbers +sociable weaver,sociable weavers +social butterfly,social butterflies +social class,social classes +social climber,social climbers +social cohesion,social cohesions +social collaboration,social collaborations +social commerce network,social commerce networks +social conservative,social conservatives +social contract,social contracts +social control,social controls +social coupon,social coupons +social democrat,social democrats +social drinker,social drinkers +social engineer,social engineers +social grace,social graces +social group,social groups +social insect,social insects +social insurance number,social insurance numbers +socialiser,socialisers +socialist,socialists +Socialist,Socialists +socialite,socialites +socialization,socializations +socializee,socializees +socializer,socializers +social ladder,social ladders +social landlord,social landlords +social life,social lives +social network,social networks +social pattern,social patterns +social profile,social profiles +social psychology,social psychologies +social responsibility,social responsibilities +social safety net,social safety nets +social science,social sciences +social scientist,social scientists +social security number,social security numbers +social smoker,social smokers +social,socials +social status,social statuses +social stigma,social stigmas +social unit,social units +social worker,social workers +sociate,sociates +sociative case,sociative cases +Society Islander,Society Islanders +Socinian,Socinians +socioanthropologist,socioanthropologists +sociobiologist,sociobiologists +sociocracy,sociocracies +sociodicy,sociodicies +socioeconomist,socioeconomists +sociogenesis,sociogeneses +sociogram,sociograms +sociograph,sociographs +sociohistory,sociohistories +sociolect,sociolects +sociolinguist,sociolinguists +sociologist,sociologists +sociology,sociologies +sociomatrix,sociomatrices +sociopathic,sociopathics +sociopath,sociopaths +sociophysicist,sociophysicists +sociopragmatist,sociopragmatists +sockdolager,sockdolagers +sockdologer,sockdologers +sockeroo,sockeroos +socket,sockets +socket wrench,socket wrenches +sockeye,sockeyes +sockful,sockfuls +sockhop,sockhops +sock link,sock links +sockmaker,sockmakers +sock puppeteer,sock puppeteers +sock puppet,sock puppets +sockpuppet,sockpuppets +sock,socks +sock,socks,sox +socle,socles +socman,socmans,socmen +Socotran,Socotrans +Socratic,Socratics +Socratist,Socratists +socred,socreds +Socred,Socreds +soc,socs +Soc,Socs +soda biscuit,soda biscuits +soda counter,soda counters +soda cracker,soda crackers +soda fountain,soda fountains +soda glass,soda glasses +soda glass,soda glasses +sodaholic,sodaholics +soda jerker,soda jerkers +soda jerk,soda jerks +soda lake,soda lakes +sodalite,sodalites +sodality,sodalities +soda machine,soda machines +soda prairie,soda prairies +soda process,soda processes +soda siphon,soda siphons +sodbuster,sodbusters +soddie,soddies +soddy,soddies +soder,soders +sodger,sodgers +sodicity,sodicities +SO-DIMM,SO-DIMMs +SODIMM,SODIMMs +sodium acetate,sodium acetates +sodium alum,sodium alums +sodium amalgam,sodium amalgams +sodium amide,sodium amides +sodium azide,sodium azides +sodium benzoate,sodium benzoates +sodium borohydride,sodium borohydrides +sodium channel,sodium channels +sodium citrate,sodium citrates +sodium erythorbate,sodium erythorbates +sodium formate,sodium formates +sodium glutamate,sodium glutamates +sodium hydroxide,sodium hydroxides +sodium lactate,sodium lactates +sodium lamp,sodium lamps +sodium nitrite,sodium nitrites +sodium pump,sodium pumps +sodium sorbate,sodium sorbates +sodium stearate,sodium stearates +sodium sulfite,sodium sulfites +sodium sulphite,sodium sulphites +sodomiser,sodomisers +sodomist,sodomists +sodomite,sodomites +Sodomite,Sodomites +sodomitess,sodomitesses +sodomizer,sodomizers +sod,sods +sod,sods +sod,sods +soe,soes +SOE,SOEs +sofa bed,sofa beds +sofa-bed,sofa-beds +sofabed,sofabeds +sofa painting,sofa paintings +sofar,sofars +sofa,sofas +sofer,sofers,soferim +soffietta,soffiettas +soffit,soffits +soffrito,soffritos +Sofian,Sofians +Sofi,Sofis +softa,softas +softback,softbacks +softballer,softballers +softball,softballs +softbill,softbills +softbox,softboxes +soft chancre,soft chancres +soft copy,soft copies +softcopy,softcopies +softcover,softcovers +soft c,soft cs +soft drink,soft drinks +softener,softeners +soft g,soft gs +soft hyphen,soft hyphens +softie,softies +soft key,soft keys +softkey,softkeys +soft launch,soft launches +softling,softlings +soft maple,soft maples +soft Mick,soft Micks +softmodem,softmodems +soft mutation,soft mutations +softner,softners +softography,softographies +soft opening,soft openings +soft pedal,soft pedals +softphone,softphones +soft photon,soft photons +soft redirect,soft redirects +softroader,softroaders +soft science fiction,soft science fictions +soft-shelled turtle,soft-shelled turtles +soft-shell turtle,soft-shell turtles +softshell turtle,softshell turtles +soft shoulder,soft shoulders +soft sign,soft signs +soft skill,soft skills +soft,softs +soft spot,soft spots +softsynth,softsynths +soft target,soft targets +soft tissue,soft tissues +soft top,soft tops +soft touch,soft touches +software architect,software architects +software development lifecycle,software development lifecycles +software development process,software development processes +software engineer,software engineers +software engine,software engines +software framework,software frameworks +software house,software houses +software package,software packages +soft X-ray,soft X-rays +softy,softies +Sogdian,Sogdians +soger,sogers +sogginess,sogginesses +sogo shosha,sogo shoshas +SOHC,SOHCs +soh,sohs +soigneur,soigneurs +soiler,soilers +soiling,soilings +soil pipe,soil pipes +soil scientist,soil scientists +soil,soils +soil,soils +soil stack,soil stacks +soil sterilant,soil sterilants +soilure,soilures +soiree,soirees +soirΓ©e,soirΓ©es +soixante-huitard,soixante-huitards +soixante-neuf,soixante-neufs +sojer,sojers +sojourner,sojourners +sojourning,sojournings +sojournment,sojournments +sojourn,sojourns +sokaiya,sokaiyas,sokaiya +sokemanry,sokemanries +sokeman,sokemans,sokemen +soken,sokens +soke,sokes +Sokoke,Sokokes +soko,sokos +solacement,solacements +solacer,solacers +solah,solahs +solanapyrone,solanapyrones +solander,solanders +soland,solands +solan goose,solan geese +Solano,Solano +solanum,solanums +solar apex,solar apexes,solar apices +solar calendar,solar calendars +solar cell,solar cells +solar collector,solar collectors +solar corona,solar coronas +solar day,solar days +solar eclipse,solar eclipses +solar energetic particle,solar energetic particles +solar engine,solar engines +solar flare,solar flares +Solarian,Solarians +solarimeter,solarimeters +solarium,solariums,solaria +solar mass,solar masses +solar nebula,solar nebulae,solar nebulas +solar noon,solar noons +solar panel,solar panels +solar plexus,solar plexus,solar plexuses +solar prominence,solar prominences +solar reject,solar rejects +solar sail,solar sails +solar,solars +solar still,solar stills +solar system,solar systems +solar telescope,solar telescopes +solar tracker,solar trackers +solar wind,solar winds +solar year,solar years +solastalgia,solastalgias +solasterid,solasterids +solation,solations +solatium,solatia +sola topee,sola topees +soldanella,soldanellas +soldanel,soldanels +soldanrie,soldanries +soldan,soldans +solder bump,solder bumps +solderer,solderers +soldering iron,soldering irons +soldering,solderings +solder,solders +soldier beetle,soldier beetles +soldier crab,soldier crabs +soldieress,soldieresses +soldierfish,soldierfishes,soldierfish +soldier fly,soldier flies +soldier of fortune,soldiers of fortune +soldiership,soldierships +soldier,soldiers +soldiery,soldieries +soldo,soldi +solebar,solebars +solecism,solecisms +solecist,solecists +solecurtid,solecurtids +soleid,soleids +sole mark,sole marks +solemnity,solemnities +solemnization,solemnizations +solemnizer,solemnizers +solemyid,solemyids +solenacean,solenaceans +solenette,solenettes +solenid,solenids +solenodon,solenodons +solenodontid,solenodontids +solenofilomorphid,solenofilomorphids +solenoglyph,solenoglyphs +solenoid,solenoids +solenopleurid,solenopleurids +solenostele,solenosteles +solenostomid,solenostomids +solen,solens +soleplate,soleplates +sole proprietorship,sole proprietorships +sole proprietor,sole proprietors +solere,soleres +soler,solers +soleship,soleships +sole,soles +sole,soles +sole,soles +sole survivor,sole survivors +sole trader,sole traders +soleus,soleuses +solfatara,solfataras +solfrino cutter,solfrino cutters +solicitant,solicitants +solicitation,solicitations +solicitee,solicitees +solicitor,solicitors +solicitour,solicitours +solicitress,solicitresses +solicitrix,solicitrixes +solidago,solidagos,solidagoes +solid angle,solid angles +solidare,solidares +solid emulsion,solid emulsions +solidification,solidifications +solidifier,solidifiers +solidist,solidists +solid rocket,solid rockets +solid shot,solid shots +solid slug,solid slugs +solid,solids +solid sol,solid sols +solid solution,solid solutions +solid-state device,solid-state devices +solid torus,solid tori +solidungulate,solidungulates +solidus,solidi,soliduses +soliferrum,soliferrums +solifidian,solifidians +soliflor,soliflors +solifluction,solifluctions +solifuge,solifuges +solifugid,solifugids +soliloquist,soliloquists +soliloquy,soliloquies +solipede,solipedes +solipsism,solipsisms +solipsist,solipsists +solitaire,solitaires +solitarian,solitarians +solitary,solitaries +solitary tinamou,solitary tinamous +soliton,solitons +solitudinarian,solitudinarians +sollar,sollars +solleret,sollerets +solo album,solo albums +solo concert,solo concerts +solΕ“cism,solΕ“cisms +soloism,soloisms +soloist,soloists +Solomon Islander,Solomon Islanders +Solomon,Solomons +Solomon's seal,Solomon's seals +solonetz,solonetzes +solon,solons +solo,solos +solpugid,solpugids +sol,sols +sol,sols +sol,sols +Sol,Sols +SOL,SOLs +solstice,solstices +solubiliser,solubilisers +solubility product,solubility products +solubility,solubilities +solubilizate,solubilizates +solubilizer,solubilizers +solum,sola +solute,solutes +solutionist,solutionists +solution,solutions +solvate,solvates +solvend,solvends +solvent,solvents +solver,solvers +solve,solves +solvmanifold,solvmanifolds +solvomolality,solvomolalities +somaj,somajs,somajes +Somalian,Somalians +Somalilander,Somalilanders +Somali,Somalis +somalo,somalos +Somal,Somals,Somal +soma,somas,somata +somatic cell,somatic cells +somatic sensory cortex,somatic sensory cortices +somatist,somatists +somatization,somatizations +somatocyst,somatocysts +somatoform disorder,somatoform disorders +somatomedin,somatomedins +somatome,somatomes +somatophylax,somatophylakes +somatopleure,somatopleures +somatosensation,somatosensations +somatotopy,somatotopies +somatotrope,somatotropes +somatotroph,somatotrophs +somatotype,somatotypes +somatroph,somatrophs +sombrero,sombreros +somdomite,somdomites +somebody,somebodies +some more,some mores +someone,someones +somersault,somersaults +somerset,somersets +somer,somers +something,somethings +some time,some times +somewhat,somewhats +somewhere,somewheres +somite,somites +somitomere,somitomeres +sommelier,sommeliers +sommerset,sommersets +sommonour,sommonours +somnambulator,somnambulators +somnambule,somnambules +somnambulist,somnambulists +somner,somners +somnifacient,somnifacients +somniloquist,somniloquists +somniosid,somniosids +somnipathist,somnipathists +somnipathy,somnipathies +somnolite,somnolites +somnologist,somnologists +somnolytic,somnolytics +somnour,somnours +somoholitid,somoholitids +somoni,somonis +somphospondylian,somphospondylians +sompnour,sompnours +som,soms +sonance,sonances +sonant,sonants +sonar,sonars +sonata,sonatas +sonatina,sonatinas +sondage,sondages +sondeli,sondelis +sonde,sondes +sonero,soneros +sone,sones +songbird,songbirds +songbook,songbooks +songfest,songfests +songfic,songfics +Songhai,Songhais,Songhai +songkok,songkoks +songlet,songlets +songline,songlines +songololo,songololos +songsheet,songsheets +songsmith,songsmiths +song,songs +song sparrow,song sparrows +songspiel,songspiels +songster,songsters +songstress,songstresses +songtaew,songtaew +songtext,songtexts +songthaeo,songthaeo +songthaew,songthaew +song thrush,song thrushes +songvid,songvids +songwriter,songwriters +sonhood,sonhoods +sonication,sonications +sonicator,sonicators +sonic barrier,sonic barriers +sonic boom,sonic booms +son-in-law egg,son-in-law eggs +son-in-law,sons-in-law +sonkyo,sonkyos +sonling,sonlings +sonne,sonnes +sonneteer,sonneteers +sonneter,sonneters +sonnetist,sonnetists +sonnet,sonnets +Sonnite,Sonnites +sonny,sonnies +sonobuoy,sonobuoys +son of a bitch,sons of bitches +son-of-a-bitch,sons-of-bitches +sonofabitch,sonsofbitches +son of a gun,sons of guns +son of a motherless goat,sons of motherless goats +son of a whore,sons of whores +son of privilege,sons of privilege +Son of Sam law,Son of Sam laws +son of the manse,sons of the manse +sonogramme,sonogrammes +sonogram,sonograms +sonometer,sonometers +sonoporation,sonoporations +Sonoran desert toad,Sonoran desert toads +sonorant,sonorants +sonority,sonorities +sonship,sonships +son,sons +sontag,sontags +Soofee,Soofees +soogan,soogans +soogin,soogins +sooglossid,sooglossids +sook,sooks +sook,sooks +sook,sooks +sook,sooks +sooky baby,sooky babies +sooky,sookies +Soonee,Soonees +Sooner,Sooners +soon-to-wed,soon-to-weds +soopolallie,soopolallies +soord,soords +Sooretama slaty antshrike,Sooretama slaty antshrikes +sooterkin,sooterkins +soother,soothers +soothing,soothings +soothsaw,soothsaws +soothsayer,soothsayers +soothsaying,soothsayings +soothsay,soothsays +sootiness,sootinesses +sopaipilla,sopaipillas +sopapilla,sopapillas +Sophie's choice,Sophie's choices +sophism,sophisms +sophister,sophisters +sophisticate,sophisticates +sophisticator,sophisticators +sophist,sophists +sophomaniac,sophomaniacs +sophomore,sophomores +sophont,sophonts +sophora,sophoras +sophoroside,sophorosides +sophrocattleya,sophrocattleyas +sophrologist,sophrologists +soph,sophs +sophta,sophtas +sophy,sophies +sophy,sophies +sophy,sophies +Sophy,Sophies +soporifick,soporificks +soporific,soporifics +sopor,sopors +sopper,soppers +sopranino,sopraninos +sopranista,sopranistas +sopranist,sopranists +soprano,sopranos,soprani,sopranoes +sopsavine,sopsavines +sops of wine,sops of wines +sop,sops +sora,soras +sorb apple,sorb apples +sorb-apple,sorb-apples +sorbate,sorbates +sorbefacient,sorbefacients +sorbent,sorbents +sorbet,sorbets +sorbite,sorbites +sorbition,sorbitions +Sorbonist,Sorbonists +sorbopyranose,sorbopyranoses +sorbose,sorboses +sorb,sorbs +Sorb,Sorbs +sorcerer,sorcerers +sorceress,sorceresses +sorceror,sorcerors +sorcery,sorceries +sordidity,sorditities +sordine,sordines +sord,sords +soredium,soredia +soree,sorees +sorehead,soreheads +sore loser,sore losers +sorel,sorels +sore point,sore points +sore,sores +sore winner,sore winners +sorgolactone,sorgolactones +soricid,soricids +soricomorph,soricomorphs +sorites,sorites +sorna,sornas +sorner,sorners +soroban,sorobans +sororal nephew,sororal nephews +sororal niece,sororal nieces +sororate marriage,sororate marriages +sororicide,sororicides +sorority,sororities +soror,sorors +sorosilicate,sorosilicates +sorosis,soroses +sorostitute,sorostitutes +sorption,sorptions +sorrance,sorrances +sorrel,sorrels +sorrel,sorrels +sorrowe,sorrowes +sorr,sorrs +sorry,sorries +sort algorithm,sort algorithms +sortal,sortals +sortase,sortases +sort code,sort codes +sorter,sorters +sorte,sortes +sortie,sorties +sortilege,sortileges +sortilegy,sortilegies +sorting algorithm,sorting algorithms +sorting,sortings +sortition,sortitions +sortment,sortments +sort,sorts +sorus,sori +sorwe,sorwes +sosatie,sosaties +sosh,soshes +so,sos +SOS,SOSes +SOS,SOS's +soss,sosses +soss,sosses +sostenuto,sostenutos +Sotadic,Sotadics +SOTA,SOTAs +soteriology,soteriologies +sotol,sotols +Sotonian,Sotonians +sot,sots +sottisier,sottisiers +sotto voce,sotto voci +SOTU,SOTUs +soubahdar,soubahdars +soubah,soubahs +soubise,soubises +soubresaut,soubresauts +soubrette,soubrettes +soubriquet,soubriquets +souce,souces +souchong,souchongs +soucouyant,soucouyants +sou'easter,sou'easters +souffle,souffles +soufflΓ©,soufflΓ©s +souflaki,souflakis +sough,soughs +sough,soughs +souk,souks +soul-ale,soul-ales +soulboy,soulboys +soul brother,soul brothers +souldier,souldiers +souldiour,souldiours +soule,soules +soulili,soulilis +soul kiss,soul kisses +soul mate,soul mates +soulmate,soulmates +soul patch,soul patches +soulscot,soulscots +soul sister,soul sisters +soul,souls +soulster,soulsters +soulstress,soulstresses +sound-alike,sound-alikes +soundalike,soundalikes +soundbank,soundbanks +soundbar,soundbars +sound bite,sound bites +soundbite,soundbites +soundboard,soundboards +sound box,sound boxes +soundbox,soundboxes +sound card,sound cards +soundcard,soundcards +sound change,sound changes +soundcheck,soundchecks +soundclash,soundclashes +sound effect,sound effects +sound energy,sound energies +sound engineer,sound engineers +sounder,sounders +Soundex,Soundexes +sound hole,sound holes +soundhole,soundholes +soundie,soundies +sounding balloon,sounding balloons +sounding board,sounding boards +sounding-board,sounding-boards +soundingboard,soundingboards +sounding rocket,sounding rockets +sounding rod,sounding rods +sounding,soundings +sound law,sound laws +soundman,soundmen +sound mirror,sound mirrors +sound post,sound posts +soundproofing,soundproofings +soundscape,soundscapes +soundscore,soundscores +sound,sounds +sound,sounds +sound,sounds +sound,sounds +sound stage,sound stages +soundstage,soundstages +sound system,sound systems +sound track,sound tracks +soundtrack,soundtracks +sound truck,sound trucks +sound wave,sound waves +soundwave,soundwaves +soundworld,soundworlds +soup bowl,soup bowls +Soup Bowl,Soup Bowls +soupcon,soupcons +soupΓ§on,soupΓ§ons +soup du jour,soups du jour +souper,soupers +soupfin,soupfins +soup kitchen,soup kitchens +souple,souples +soupline,souplines +soupmaker,soupmakers +soup sandwich,soup sandwiches +soupspoonful,soupspoonfuls +soupspoon,soupspoons +souq,souqs +Sourashtra,Sourashtras,Sourashtra +sourball,sourballs +sourbelly,sourbellies +sourcebook,sourcebooks +source domain,source domains +source language,source languages +source,sources +source text,source texts +sour cherry,sour cherries +sourdine,sourdines +sourdough,sourdoughs +sour gum,sour gums +sourgum,sourgums +souring,sourings +sour krout,sour krouts +sourkrout,sourkrouts +sourness,sournesses +sour note,sour notes +sour puss,sour pusses +sourpuss,sourpusses +soursop,soursops +sour,sours +sourstuff,sourstuffs +sourstuff,sourstuffs +sourwood,sourwoods +sousaphone,sousaphones +sousaphonist,sousaphonists +sous-chef,sous-chefs +souse,souses +sousing,sousings +souslik,sousliks +sou,sous +soutache,soutaches +soutane,soutanes +souteneur,souteneurs +souterrain,souterrains +souter,souters +South African,South Africans +South American sea lion,South American sea lions +South American,South Americans +southbridge,southbridges +South Briton,South Britons +South Carolinian,South Carolinians +South Caucasian,South Caucasians +Southcottian,Southcottians +South Dakotan,South Dakotans +Southdown,Southdowns +Southeast Asian,Southeast Asians +southeasterly,southeasterlies +southeasterner,southeasterners +southeaster,southeasters +southeast,southeasts +southerly buster,southerly busters +southerly,southerlies +Southern Baptist,Southern Baptists +southern beech,southern beeches +southern belle,southern belles +Southern belle,Southern belles +Southern blot,Southern blots +southern bottlenose whale,southern bottlenose whales +Southern drawl,Southern drawls +southern elephant seal,southern elephant seals +southerner,southerners +Southern European,Southern Europeans +southern fairy,southern fairies +Southern Hemisphere,Southern Hemispheres +Southern Pentecostal,Southern Pentecostals +southern screamer,southern screamers +southern vole,southern voles +southernwood,southernwoods +souther,southers +South Indian,South Indians +southing,southings +South Islander,South Islanders +South Korean,South Koreans +South Ossetian,South Ossetians +southpaw,southpaws +south pole,south poles +southron,southrons +Southron,Southrons +southsayer,southsayers +south-seeking pole,south-seeking poles +Southsider,Southsiders +southside,southsides +south-southerly,south-southerlies +South Sudanese,South Sudanese +southwesterner,southwesterners +southwester,southwesters +south wind,south winds +soutie,souties +souvenier,souveniers +souvenir,souvenirs +souvlakia,souvlakias +souvlaki,souvlakis +sou'wester,sou'westers +sovenaunce,sovenaunces +sovereign debt,sovereign debts +sovereign immunity,sovereign immunities +sovereignist,sovereignists +sovereign,sovereigns +sovereigntist,sovereigntists +sovereign wealth fund,sovereign wealth funds +Sovietologist,Sovietologists +soviet,soviets +Soviet,Soviets +sovkhoz,sovkhozes +sovnarkhoz,sovnarkhozes,sovnarkhozy +sovok,sovoks,sovki +sov,sovs +sowarree,sowarrees +sowar,sowars +sowback,sowbacks +sowbelly,sowbellies +sowbug,sowbugs +sowce,sowces +sowdan,sowdans +sower,sowers +Sowetan,Sowetans +sowing,sowings +sowle,sowles +sowl,sowls +sowl,sowls +sowse,sowses +sow,sows,swine +sowter,sowters +sow thistle,sow thistles +Soxhlet extractor,Soxhlet extractors +soxhlet,soxhlets +soya bean,soya beans +soyaburger,soyaburgers +soya sauce,soya sauces +soy bean,soy beans +soybean,soybeans +soyburger,soyburgers +soyle,soyles +soy milk maker,soy milk makers +soy nut,soy nuts +soynut,soynuts +soysage,soysages +sozzle,sozzles +space alien,space aliens +space bar,space bars +spacebar,spacebars +space blanket,space blankets +space cadet,space cadets +space cake,space cakes +spacecake,spacecakes +space capsule,space capsules +space case,space cases +space centrode,space centrodes +space charge,space charges +space communication,space communications +spacecraft,spacecraft,spacecrafts +space curve,space curves +space defence,space defences +space defense,space defenses +spacedock,spacedocks +space elevator,space elevators +space environment,space environments +space exploration,space explorations +space factor,space factors +spacefarer,spacefarers +spacefiller,spacefillers +space-filling curve,space-filling curves +spacefilling curve,spacefilling curves +space-filling model,space-filling models +spacefilling model,spacefilling models +space fixed reference,space fixed references +spaceflight,spaceflights +space frame,space frames +spacegirl,spacegirls +space group,space groups +spacegroup,spacegroups +spacehand,spacehands +space heater,space heaters +space hopper,space hoppers +space invader,space invaders +space lattice,space lattices +spacelight,spacelights +spaceliner,spaceliners +spaceline,spacelines +spaceling,spacelings +spaceman,spacemen +space mission,space missions +space motion,space motions +spacenik,spaceniks +space opera,space operas +spaceplane,spaceplanes +space polar coordinate,space polar coordinates +spaceport,spaceports +space power system,space power systems +space probe,space probes +space quadrature,space quadratures +space quantization,space quantizations +space reddening,space reddenings +space request,space requests +space research,space researches +space rocket,space rockets +spacer,spacers +space satellite,space satellites +spacescape,spacescapes +space science,space sciences +space ship,space ships +spaceship,spaceships +space shuttle,space shuttles +space simulator,space simulators +space station,space stations +space suit,space suits +spacesuit,spacesuits +space vehicle,space vehicles +space velocity,space velocities +spacewalker,spacewalkers +space walk,space walks +spacewalk,spacewalks +space wave,space waves +spaceway,spaceways +space weapon,space weapons +spacewoman,spacewomen +space writer,space writers +spacistor,spacistors +spacker,spackers +spackler,spacklers +spack,spacks +spacky,spackies +spadassinicide,spadassinicides +spadassin,spadassins +spaddle,spaddles +spadea,spadeas +spadebone,spadebones +spadefish,spadefishes,spadefish +spadefoot,spadefoots +spadeful,spadefuls,spadesful +spader,spaders +spade,spades +spade,spades +spadetail,spadetails +spadger,spadgers +spadille,spadilles +spadix,spadices +spado,spadoes,spadones +spadroon,spadroons +SPAD,SPADs +spae-craft,spae-crafts +spaeman,spaemen +spaewife,spaewives +spaghetti chart,spaghetti charts +spaghetti diagram,spaghetti diagrams +spaghetti junction,spaghetti junctions +spaghetti model,spaghetti models +spaghetti squash,spaghetti squashes,spaghetti squash +spaghetti strap,spaghetti straps +spaghetti western,spaghetti westerns +spaghetti Western,spaghetti Westerns +Spaghetti Western,Spaghetti Westerns +spaghetto,spaghetti +spagiric,spagirics +spagoer,spagoers +spagyric,spagyrics +spagyrist,spagyrists +spahee,spahees +spahi,spahis +spaid,spaids +spakona,spakonas +spalacid,spalacids +spale,spales +spallation,spallations +spall,spalls +spall,spalls +spalpeen,spalpeens +spalting,spaltings +spamblock,spamblocks +spambot,spambots +spammer,spammers +spam musubi,spam musubi,spam musubis +spam relay,spam relays +spamtard,spamtards +spamvertiser,spamvertisers +spamvertizement,spamvertizements +spancel,spancels +spandite,spandites +spandrel,spandrels +spandril,spandrils +spaneria,spanerias +spanger,spangers +spangled coquette,spangled coquettes +spangled kookaburra,spangled kookaburras +spangler,spanglers +spangle,spangles +spangolite,spangolites +spang,spangs +spang,spangs +spang,spangs +Spaniard,Spaniards +spaniel,spaniels +Spanish chestnut,Spanish chestnuts +Spanish donkey,Spanish donkeys +Spanish guitar,Spanish guitars +Spanish ham,Spanish hams +Spanish iris,Spanish irises +Spanish mackerel,Spanish mackerels +Spanish nectarine,Spanish nectarines +Spanish omelet,Spanish omelets +Spanish omelette,Spanish omelettes +Spanish sausage,Spanish sausages +Spanish Water Dog,Spanish Water Dogs +spank bank,spank banks +spankee,spankees +spanker,spankers +spanking,spankings +spankophile,spankophiles +spanko,spankos +spank,spanks +spannel,spannels +spanner barb,spanner barbs +spanner,spanners +spanning,spannings +spanning tree,spanning trees +span,spans +spanspek,spanspeks +Spansule,Spansules +spantide,spantides +spanworm,spanworms +sparable,sparables +sparadrap,sparadraps +sparapet,sparapets +sparassid,sparassids +sparassodont,sparassodonts +spare ball,spare balls +spare part,spare parts +spare rib,spare ribs +sparerib,spareribs +spare room,spare rooms +sparer,sparers +spare,spares +spare tire,spare tires +spare tire well,spare tire wells +spare tyre,spare tyres +spare tyre well,spare tyre wells +spare wheel,spare wheels +sparganum,spargana +sparger,spargers +spar-hawk,spar-hawks +sparhawk,sparhawks +sparid,sparids +spark arrestor,spark arrestors +sparker,sparkers +sparker,sparkers +spark gap,spark gaps +sparkgap,sparkgaps +sparking plug,sparking plugs +spark knock,spark knocks +sparkleberry,sparkleberries +sparkler,sparklers +sparkle,sparkles +sparklet,sparklets +sparkline,sparklines +sparkling cider,sparkling ciders +sparkling,sparklings +sparkling water,sparkling waters +sparkling wine,sparkling wines +spark plug,spark plugs +sparkplug,sparkplugs +spark,sparks +spark,sparks +sparky,sparkies +sparling,sparlings +sparoid,sparoids +sparra,sparras +sparring,sparrings +sparrow hawk,sparrow hawks +sparrowhawk,sparrowhawks +sparrowling,sparrowlings +sparrow,sparrows +sparsening,sparsenings +sparsification,sparsifications +sparsifier,sparsifiers +sparsing,sparsings +spar,spars +spar,spars +sparstone,sparstones +Spartan,Spartans +sparth,sparths +sparticle,sparticles +sparve,sparves +spaser,spasers +spasm band,spasm bands +spasmogen,spasmogens +spasmophile,spasmophiles +spasm,spasms +spa,spas +spa,spas +spasticity,spasticities +spastic,spastics +spatangid,spatangids +spatangoid,spatangoids +spatchcock,spatchcocks +spate,spates +spatha,spathas,spathae +spathe,spathes +spationaut,spationauts +spat,spats +spat,spats +spat,spats +spat,spats +spatterdock,spatterdocks +spattering,spatterings +spattle,spattles +spatula,spatulas,spatulae,spatulΓ¦ +spatuletail,spatuletails +spaug,spaugs +spaulder,spaulders +spauld,spaulds +spavin,spavins +spawling,spawlings +spawl,spawls +spawner,spawners +spawn point,spawn points +spawn,spawn +spaw,spaws +spaxel,spaxels +spaxel,spaxels +spayard,spayards +spayart,spayarts +spaying,spayings +spaynel,spaynels +spay,spays +spaza,spazas +spaz attack,spaz attacks +spazmo,spazmos +spaz,spazzes +spazzer,spazzers +spazz,spazzes +speak-box,speak-boxes +speakeasy,speakeasies +speakeress,speakeresses +speakerine,speakerines +speakerphone,speakerphones +speakership,speakerships +speaker,speakers +speaking clock,speaking clocks +speaking,speakings +speaking trumpet,speaking trumpets +speaking tube,speaking tubes +speako,speakos +speak,speaks +spean,speans +spear-carrier,spear-carriers +spearchucker,spearchuckers +spearer,spearers +spearfisher,spearfishers +spearfish,spearfish +speargrass,speargrasses +spear gun,spear guns +speargun,spearguns +spearheader,spearheaders +spearhead,spearheads +spearing,spearings +spearlet,spearlets +spearman,spearmen +spearmint,spearmints +spearpoint,spearpoints +spearsman,spearsmen +spear,spears +spear tackle,spear tackles +spear thistle,spear thistles +spearthrower,spearthrowers +speartip,speartips +spearwoman,spearwomen +spearwort,spearworts +Speccy,Speccies +spece,speces +spec home,spec homes +special agent,special agents +special constable,special constables +special defense,special defenses +special drawing right,special drawing rights +special education advocate,special education advocates +special effect,special effects +special election,special elections +special event,special events +special interest group,special interest groups +specialisation,specialisations +specialist,specialists +speciality,specialities +specialization,specializations +specializer,specializers +special master,special masters +special move,special moves +specialogue,specialogues +Special Olympian,Special Olympians +special order sale,special order sales +special rapporteur,special rapporteurs +special resolution,special resolutions +special school,special schools +Special Service Requirement,Special Service Requirements +special,specials +special stage,special stages +special team,special teams +specialty,specialties +special unitary group,special unitary groups +special warranty deed,special warranty deeds +speciation event,speciation events +speciation,speciations +speciedaler,speciedalers +specieist,specieists +species epithet,species epithets +speciesist,speciesists +species name,species names +species,species +speciest,speciests +specific address,specific addresses +specification,specifications +specific charge,specific charges +specific energy,specific energies +specific epithet,specific epithets +specific fuel consumption,specific fuel consumptions +specific gravity,specific gravities +specific heat capacity,specific heat capacities +specific humidity,specific humidities +specific impulse,specific impulses +specificity,specificities +specificker,specifickers +Specificker,Specifickers +specifick,specificks +specific language impairment,specific language impairments +specific leaf area,specific leaf areas +specific name,specific names +specificness,specificnesses +specific phobia,specific phobias +specific,specifics +specific thrust,specific thrusts +specific volume,specific volumes +specifier,specifiers +specimen,specimens,specimina +speciosity,speciosities +specist,specists +speckie,speckies +speckled-belly,speckled-bellies +speckled carpetshark,speckled carpetsharks +speckled trout,speckled trout,speckled trouts +speckled wood,speckled woods +speckle,speckles +speckling,specklings +specksioneer,specksioneers +speck,specks +specky,speckies +spec script,spec scripts +spec,specs +spectacled bear,spectacled bears +spectacle,spectacles +spectacular,spectaculars +spectator,spectators +spectator sport,spectator sports +spectatour,spectatours +spectatress,spectatresses +specter at the feast,specters at the feast +specter,specters +spectioneer,spectioneers +spectrahedron,spectrahedra +spectralist,spectralists +spectral line,spectral lines +spectral type,spectral types +spectre at the feast,spectres at the feast +spectre,spectres +spectrofluorimeter,spectrofluorimeters +spectrofluorometer,spectrofluorometers +spectrofluorophotometer,spectrofluorophotometers +spectrogram,spectrograms +spectrograph,spectrographs +spectroheliogram,spectroheliograms +spectroheliograph,spectroheliographs +spectroheliokinematograph,spectroheliokinematographs +spectrohelioscope,spectrohelioscopes +spectrolite,spectrolites +spectromagnetograph,spectromagnetographs +spectrometer,spectrometers +spectrometrist,spectrometrists +spectrophotometer,spectrophotometers +spectroradiometer,spectroradiometers +spectroscope,spectroscopes +spectroscopist,spectroscopists +spectrum analyser,spectrum analysers +spectrum analyzer,spectrum analyzers +spectrum disorder,spectrum disorders +spectrum,spectra,spectrums +speculation,speculations +speculatist,speculatists +speculative boom,speculative booms +speculative bubble,speculative bubbles +speculator,speculators +speculist,speculists +speculum,speculums,specula +speech act,speech acts +speech balloon,speech balloons +speech bubble,speech bubbles +speech community,speech communities +speech day,speech days +speech disfluency,speech disfluencies +speech disorder,speech disorders +Speech from the Throne,Speeches from the Throne +speechifier,speechifiers +speechifying,speechifyings +speech impediment,speech impediments +speeching,speechings +speechlessness,speechlessnesses +speechmaker,speechmakers +speech pathologist,speech pathologists +speechwriter,speechwriters +speedballer,speedballers +speedboarder,speedboarders +speed boat,speed boats +speedboat,speedboats +speed bump,speed bumps +speedbump,speedbumps +speed camera,speed cameras +speedcuber,speedcubers +speed cushion,speed cushions +speed demon,speed demons +speeder,speeders +speed freak,speed freaks +speedfreak,speedfreaks +speed hump,speed humps +speeding,speedings +speeding ticket,speeding tickets +speed limiter,speed limiters +speed limit,speed limits +speed loader,speed loaders +speedloader,speedloaders +speedometer,speedometers +speedometre,speedometres +speedo,speedos +speedo,speedos +Speedo,Speedos +Speedos,Speedos +speed queen,speed queens +speedrunner,speedrunners +speedrun,speedruns +speedshift,speedshifts +speedskater,speedskaters +speedskate,speedskates +speed,speeds +speedster,speedsters +speed trap,speed traps +speedup,speedups +speedwalk,speedwalks +speedwell,speedwells +speel,speels +speer,speers +speight,speights +spekboom,spekbooms +spelding,speldings +speleologist,speleologists +speleonectid,speleonectids +speleothem,speleothems +speleotherapy,speleotherapies +speleotherm,speleotherms +spelican,spelicans +spelk,spelks +spellathon,spellathons +spellbinder,spellbinders +spellbook,spellbooks +spellcaster,spellcasters +spell checker,spell checkers +spellchecker,spellcheckers +spellcheck,spellchecks +spelldown,spelldowns +speller,spellers +spelling bee,spelling bees +spelling pronunciation,spelling pronunciations +spellken,spellkens +spell off,spell offs +spell-off,spell-offs +spelloff,spelloffs +spello,spellos +spell,spells +spell,spells +spell,spells +spelt,spelts +spelunc,speluncs +spelunker,spelunkers +spelunk,spelunks +spencer,spencers +spencer,spencers +spence,spences +spendaholic,spendaholics +spender,spenders +spending spree,spending sprees +spend,spends +spendthrift,spendthrifts +spendthrift trust,spendthrift trusts +Spenserian sonnet,Spenserian sonnets +Spenserian,Spenserians +Spenserism,Spenserisms +spent force,spent forces +speos,speoses +spere,speres +s-perfect,s-perfects +sperge,sperges +sperling,sperlings +spermaceti whale,spermaceti whales +spermaphore,spermaphores +spermary,spermaries +spermatagonium,spermatagonia +spermatheca,spermathecas,spermathecae +spermatid,spermatids +spermatium,spermatia +spermatoblast,spermatoblasts +spermatocide,spermatocides +spermatocyte,spermatocytes +spermatogemma,spermatogemmas,spermatogemmae +spermatogonium,spermatogonia +spermatoon,spermatoa +spermatophore,spermatophores +spermatophyte,spermatophytes +spermatospore,spermatospores +spermatozoid,spermatozoids +spermatozooid,spermatozooids +spermatozoon,spermatozoa +spermatozoΓΆn,spermatozoa +sperm bank,sperm banks +sperm blossom,sperm blossoms +sperm-blossom,sperm-blossoms +sperm cell,sperm cells +sperm donor,sperm donors +spermicide,spermicides +spermidium,spermidia +sperminator,sperminators +spermist,spermists +sperm morula,sperm morulae +spermoblast,spermoblasts +spermoderm,spermoderms +spermogonium,spermogonia +sperm oil,sperm oils +spermophile,spermophiles +spermophore,spermophores +spermophyte,spermophytes +spermosphere,spermospheres +spermospore,spermospores +spermule,spermules +sperm whale,sperm whales +speronara,speronaras +spesmilo,spesmilos +spessartine,spessartines +spessartite,spessartites +spetchell,spetchells +spetchel,spetchels +spetum,spetums +spewer,spewers +spew,spews +SPG,SPGs +sphacelus,sphaceli +sphΓ¦re,sphΓ¦res +sphaeridium,sphaeridia +sphaeriid,sphaeriids +sphaeritid,sphaeritids +sphaerocerid,sphaerocerids +sphaerocyst,sphaerocysts +sphaerodactylid,sphaerodactylids +sphΓ¦roid,sphΓ¦roids +sphaeromatid,sphaeromatids +sphaeropsocid,sphaeropsocids +sphaerospore,sphaerospores +sphaerotheriid,sphaerotheriids +sphaerulite,sphaerulites +sphagnid,sphagnids +sphagnum,sphagnums +sphalerite,sphalerites +sphaleron,sphalerons +sphargid,sphargids +sphear,sphears +sphecid,sphecids +sphenacodontid,sphenacodontids +sphenethmoid,sphenethmoids +sphenic number,sphenic numbers +spheniscan,spheniscans +spheniscid,spheniscids +sphenobasion,sphenobasions +sphenodon,sphenodons +sphenodontid,sphenodontids +sphenogram,sphenograms +sphenoidal sinus,sphenoidal sinuses +sphenoid bone,sphenoid bones +sphenoid sinus,sphenoid sinuses +sphenoid,sphenoids +sphenopid,sphenopids +sphenosuchid,sphenosuchids +sphenotic,sphenotics +spherand,spherands +sphere of influence,spheres of influence +sphere of knowledge,spheres of knowledge +sphere,spheres +spherical aberration,spherical aberrations +spherical angle,spherical angles +spherical cap,spherical caps +sphericality,sphericalities +spherical lune,spherical lunes +spherical wedge,spherical wedges +sphericity,sphericities +sphericle,sphericles +sphericon,sphericons +spheric,spherics +spherium,spheria +spherocobaltite,spherocobaltites +spheroconic,spheroconics +spherocylinder,spherocylinders +spherocyst,spherocysts +spherocyte,spherocytes +spherograph,spherographs +spheroidal,spheroidals +spheroid,spheroids +spheromak,spheromaks +spheromere,spheromeres +spherometer,spherometers +spheroplast,spheroplasts +spheroscope,spheroscopes +spherosome,spherosomes +spherule,spherules +spherulite,spherulites +sphexide,sphexides +sphex,spheges +sphincter of Oddi,sphincters of Oddi +sphincterotomy,sphincterotomies +sphincter,sphincters +sphindid,sphindids +sphingid,sphingids +sphingofungin,sphingofungins +sphingoid,sphingoids +sphingolipidome,sphingolipidomes +sphingolipidosis,sphingolipidoses +sphingolipid,sphingolipids +sphingomyelinase,sphingomyelinases +sphingomyelin,sphingomyelins +sphingosine,sphingosines +sphinx,sphinxes,sphinges +sphragide,sphragides +sphygmogram,sphygmograms +sphygmograph,sphygmographs +sphygmomanometer,sphygmomanometers +sphygmomanometre,sphygmomanometres +sphygmometer,sphygmometers +sphygmophone,sphygmophones +sphygmoscope,sphygmoscopes +Sphynx,Sphynxes +sphyraenid,sphyraenids +sphyrnid,sphyrnids +spial,spials +spica,spicas,spicae +spiceberry,spiceberries +spicebush,spicebushes +spicenut,spicenuts +spicer,spicers +spicery,spiceries +spicewood,spicewoods +spiciness,spicinesses +spick,spicks +spick,spicks +spic,spics +spicula,spiculas,spiculae +spicule,spicules +spiculite,spiculites +spiculum,spicula,spiculums +spider crab,spider crabs +spider goat,spider goats +spidergram,spidergrams +spider hole,spider holes +spiderhunter,spiderhunters +spider lily,spider lilies +spiderman,spidermen +spider monkey,spider monkeys +spider plant,spider plants +spider,spiders +spider strap,spider straps +spider's web,spider's webs,spiders' webs +spider vein,spider veins +spider wasp,spider wasps +spider web,spider webs +spider-web,spider-webs +spiderweb,spiderwebs +spiderwort,spiderworts +spide,spides +spidroin,spidroins +spiedie,spiedies +spieler,spielers +spiel,spiels +spife,spifes +spiff,spiffs +Spiffy,Spiffies +spigger,spiggers +spight,spights +spight,spights +spignet,spignets +spigot,spigots +spigurnel,spigurnels +spikebill,spikebills +spikefish,spikefishes,spikefish +spikelet,spikelets +spike moss,spike mosses +spikemoss,spikemosses +spikenard,spikenards +spike,spikes +spike strip,spike strips +spiketail,spiketails +spike train,spike trains +spile,spiles +spile,spiles +spilikin,spilikins +spilite,spilites +spillage,spillages +spiller,spillers +spillet,spillets +spilliard,spilliards +spillikin,spillikins +spillionaire,spillionaires +spill kit,spill kits +spillover,spillovers +spill,spills +spillway,spillways +spilter,spilters +spilth,spilths +spime,spimes +spimmer,spimmers +spinach dip,spinach dips +spinal board,spinal boards +spinal chord,spinal chords +spinal column,spinal columns +spinal cord,spinal cords +spinal disc herniation,spinal disc herniations +spinal tap,spinal taps +spinar,spinars +spinback,spinbacks +spin bowler,spin bowlers +spin-density wave,spin-density waves +spindle,spindles +spindletail,spindletails +spindleworm,spindleworms +spin doctor,spin doctors +spin doctor,spin doctors +spindown,spindowns +spineback,spinebacks +spinebill,spinebills +spine board,spine boards +spine-board,spine-boards +spineboard,spineboards +spine-chiller,spine-chillers +spinelle,spinelles +spinel,spinels +spine pig,spine pigs +spine,spines +spinetail,spinetails +spine-tingler,spine-tinglers +spinet,spinets +spinet,spinets +spinfoam,spinfoams +spin glass,spin glasses +sping,spings +spinifex,spinifexes +spink,spinks +spin label,spin labels +spinmaster,spinmasters +spinmeister,spinmeisters +spinnaker,spinnakers +spinner dolphin,spinner dolphins +spinneret,spinnerets +spinner,spinners +spinnerule,spinnerules +spinnet,spinnets +spinney,spinneys +spinning frame,spinning frames +spinning jenny,spinning jennies +spinning mule,spinning mules +spinning,spinnings +spinning top,spinning tops +spinning wheel,spinning wheels +spinny,spinnies +spinocerebellum,spinocerebellums +spinoculation,spinoculations +spin-off,spin-offs +spinoff,spinoffs +spinoidal,spinoidals +Spinone Italiano,Spinoni Italiani +spinon,spinons +spinoreticular tract,spinoreticular tracts +spinor,spinors +spinosaurid,spinosaurids +spinosaurus,spinosauri +spinous spider crab,spinous spider crabs +spinout,spinouts +Spinozist,Spinozists +spin polarization,spin polarizations +spinpolarization,spinpolarizations +spin quantum number,spin quantum numbers +spin room,spin rooms +spin-spin energy,spin-spin energies +spin,spins +spinsterhood,spinsterhoods +spinster,spinsters +spinstress,spinstresses +spinthariscope,spinthariscopes +spintherid,spintherids +spinturnicid,spinturnicids +spinule,spinules +spinup,spinups +spin wave,spin waves +spiny anteater,spiny anteaters +spiny-cheeked honeyeater,spiny-cheeked honeyeaters +spiny dogfish,spiny dogfish +spiny lobster,spiny lobsters +spiny oyster,spiny oysters +spiny rat,spiny rats +spiny softshell turtle,spiny softshell turtles +spiny spider crab,spiny spider crabs +spiny,spinies +spionid,spionids +spiracle,spiracles +spiraea,spiraeas +spiraeic acid,spiraeic acids +spiral arm,spiral arms +spiral dance,spiral dances +spiral galaxy,spiral galaxies +spiralian,spiralians +spiralization,spiralizations +spiral nebula,spiral nebulas,spiral nebulae +spiral of Archimedes,spirals of Archimedes +spiral pass,spiral passes +spiral,spirals +spiral staircase,spiral staircases +spiral wrack,spiral wracks +spiran,spirans +spirant,spirants +spiraxid,spiraxids +spirea,spireas +spirene,spirenes +spire,spires +spire,spires +spiricle,spiricles +spirifer,spirifers +spirillum,spirillums +spirit bear,spirit bears +spirit duplicator,spirit duplicators +spiriting,spiritings +spiritist,spiritists +spirit lamp,spirit lamps +spirit level,spirit levels +spirits of wine,spirits of wines +spirit,spirits +spiritual awakening,spiritual awakenings +spiritual desertion,spiritual desertions +Spiritualism,Spiritualisms +spiritualist,spiritualists +spirituality,spiritualities +spiritualizer,spiritualizers +spiritual leader,spiritual leaders +spiritual naturalist,spiritual naturalists +spiritual sequel,spiritual sequels +spiritual,spirituals +Spiritual,Spirituals +spiritualty,spiritualties +spiritual world,spiritual worlds +spiritus asper,spiritus aspers +spirketing,spirketings +spirling,spirlings +spiroacetal,spiroacetals +spirobacterium,spirobacteria +spirobolid,spirobolids +spiroceratid,spiroceratids +spirochaete,spirochaetes +spirochΓ¦te,spirochΓ¦tes +spirochete,spirochetes +spiro compound,spiro compounds +spirocyclobutane,spirocyclobutanes +spirocycloheptane,spirocycloheptanes +spirocyclohexane,spirocyclohexanes +spirocyclononane,spirocyclononanes +spirocyclooctane,spirocyclooctanes +spirocyclopentane,spirocyclopentanes +spirocyclopropane,spirocyclopropanes +spirogram,spirograms +spirograph,spirographs +spirogyra,spirogyras +spirohydantoin,spirohydantoins +spiroketal,spiroketals +spirolactam,spirolactams +spirometer,spirometers +spirometre,spirometres +spiropentane,spiropentanes +spirorchiid,spirorchiids +spiroscope,spiroscopes +spirostanol,spirostanols +spirostan,spirostans +spirostreptid,spirostreptids +spirotrich,spirotrichs +spirula,spirulas +spirulid,spirulids +spirurid,spirurids +spissatus,spissati +spitalhouse,spitalhouses +spital,spitals +spit-ball,spit-balls +spitball,spitballs +spitbox,spitboxes +spitbraai,spitbraais +spitbug,spitbugs +spitchcock,spitchcocks +spit curl,spit curls +spitfire,spitfires +spitful,spitfuls +spit of land,spits of land +spit roast,spit roasts +spitroast,spitroasts +spitshine,spitshines +spit,spits +spitstick,spitsticks +spit take,spit takes +spit-take,spit-takes +spittal,spittals +spitter,spitters +spitting cobra,spitting cobras +spitting distance,spitting distances +spitting image,spitting images +spitting spider,spitting spiders +spitting,spittings +spittlebug,spittlebugs +spittoon,spittoons +spit-up,spit-ups +spit wad,spit wads +spitwad,spitwads +Spitzenburgh,Spitzenburghs +spitzer,spitzers +spitz,spitzes +spiv,spivs +splade,splades +splake,splakes +splanchnocranium,splanchnocraniums +splanchnopleura,splanchnopleuras +splanchnopleure,splanchnopleures +splanchnoskeleton,splanchnoskeletons +splanchnotrophid,splanchnotrophids +splanch,splanches +splashboard,splashboards +splashdown,splashdowns +splasher,splashers +splashguard,splashguards +splashing,splashings +splash page,splash pages +splash screen,splash screens +splash,splashes +splat book,splat books +splatbook,splatbooks +splat mat,splat mats +splat,splats +splatterdash,splatterdashes +splatterer,splatterers +splatterfest,splatterfests +splattering,splatterings +splatter,splatters +splayfoot,splayfeet +splay,splays +spleen,spleens +spleenwort,spleenworts +splenculus,splenculi +splenectomy,splenectomies +splenetic,splenetics +splenial bone,splenial bones +splenial,splenials +splenitis,splenites +splenium,spleniums +splenocyte,splenocytes +splenomegaly,splenomegalies +splenotomy,splenotomies +splenotoxin,splenotoxins +spleuchan,spleuchans +spliceosome,spliceosomes +splicer,splicers +splicesome,splicesomes +splice,splices +splice variant,splice variants +splicing,splicings +splicosome,splicosomes +spliff,spliffs +splif,splifs +spline,splines +splint bone,splint bones +splinter bar,splinter bars +splinter group,splinter groups +splintering,splinterings +splinter party,splinter parties +splinter,splinters +splint,splints +splish,splishes +split 7,split 7s +split antigen,split antigens +split-complex number,split-complex numbers +split decision,split decisions +split end,split ends +split epimorphism,split epimorphisms +split-finger fastball,split-finger fastballs +splitfin,splitfins +split head,split heads +split infinitive,split infinitives +splitist,splitists +split level,split levels +split-level,split-levels +split personality,split personalities +split pot,split pots +split-ring resonator,split-ring resonators +split-second,split-seconds +split shot,split shots +split-shot,split-shots +split single,split singles +split slab,split slabs +split,splits +split-squad,split-squads +split-tail,split-tails +splitter,splitters +split ticket,split tickets +splitting,splittings +splittist,splittists +splocket,splockets +splodge,splodges +splog,splogs +sploit,sploits +sploosh,splooshes +sploshing,sploshings +splotch,splotches +splot,splots +splurchase,splurchases +splurger,splurgers +splurge,splurges +splutterer,splutterers +spodium,spodiums +spodosol,spodosols +spod,spods +spodumene,spodumenes +spoiled brat,spoiled brats +spoiler effect,spoiler effects +spoiler,spoilers +spoil heap,spoil heaps +spoilsman,spoilsmen +spoilsmonger,spoilsmongers +spoil,spoils +spoil-sport,spoil-sports +spoilsport,spoilsports +spoken pause,spoken pauses +spokesbear,spokesbears +spokescat,spokescats +spokescharacter,spokescharacters +spokescreature,spokescreatures +spokesdog,spokesdogs +spokeshave,spokeshaves +spokesmanship,spokesmanships +spokesman,spokesmen +spokesmodel,spokesmodels +spokesperson,spokespersons,spokespeople +spoke,spokes +spokeswoman,spokeswomen +S-pole,S-poles +spoliation,spoliations +spoliator,spoliators +spoligotype,spoligotypes +spondee,spondees +spondin,spondins +spondulick,spondulicks +spondylarthritis,spondylarthritides +spondyle,spondyles +spondylid,spondylids +spondyloarthropathy,spondyloarthropathies +spondylolisthesis,spondylolistheses +spondylosis,spondyloses +spondyl,spondyls +sponge bag,sponge bags +sponge bath,sponge baths +sponge cake,sponge cakes +spongecake,spongecakes +sponge down,sponge downs +spongelet,spongelets +sponge roll,sponge rolls +sponger,spongers +spongillid,spongillids +sponging-house,sponging-houses +spongin,spongins +spongiocyte,spongiocytes +spongiole,spongioles +spongiolite,spongiolites +spongiologist,spongiologists +spongistatin,spongistatins +spongoblast,spongoblasts +spongocoel,spongocoels +spongodiscid,spongodiscids +spong,spongs +sponsee,sponsees +sponsion,sponsions +sponson,sponsons +sponsorer,sponsorers +sponsorship,sponsorships +sponsor,sponsors +spontaneous abortion,spontaneous abortions +spontaneous combustion,spontaneous combustions +spontaneous generation,spontaneous generations +spontaneous pneumothorax,spontaneous pneumothoraces +spontoon,spontoons +spoofer,spoofers +spoofing,spoofings +spoof,spoofs +spookfest,spookfests +spookfish,spookfishes +spookhouse,spookhouses +spookmaster,spookmasters +spookshow,spookshows +spook,spooks +spooky PAC,spooky PACs +spool cannon,spool cannons +spooler,spoolers +spool,spools +spool,spools +spoonbender,spoonbenders +spoonbill,spoonbills +spoon bowl,spoon bowls +spoon-bowl,spoon-bowls +spoonbowl,spoonbowls +spoon-drift,spoon-drifts +spooneful,spoonefuls +spoonerism,spoonerisms +spooner,spooners +spoon excavator,spoon excavators +spooney,spooneys +spoonful,spoonfuls,spoonsful +spoon lure,spoon lures +spoon,spoons +spoon-winged lacewing,spoon-winged lacewings +spoonworm,spoonworms +spoony,spoonies +spoorer,spoorers +sporadic group,sporadic groups +sporange,sporanges +sporangiophore,sporangiophores +sporangium,sporangia +spore print,spore prints +sporeprint,sporeprints +spore,spores +sporicide,sporicides +sporidium,sporidia +sporid,sporids +spork,sporks +sporocarp,sporocarps +sporocyst,sporocysts +sporocyte,sporocytes +sporodochium,sporodochia +sporogonium,sporogonia +sporophore,sporophores +sporophyll,sporophylls +sporophyte,sporophytes +sporopollenin,sporopollenins +sporosac,sporosacs +sporozoan,sporozoa +sporozoid,sporozoids +sporozoite,sporozoites +sporran,sporrans +sportbike,sportbikes +sportcoat,sportcoats +sportellid,sportellids +sporter,sporters +sport fish,sport fishes +sporting house,sporting houses +sportive,sportives +sport jacket,sport jackets +sportling,sportlings +sportpony,sportponies +sportsaholic,sportsaholics +sportsbook,sportsbooks +sports bra,sports bras +sports card,sports cards +sports car,sports cars +sportscar,sportscars +sportscaster,sportscasters +sportscast,sportscasts +sports day,sports days +sportsfield,sportsfields +sports final,sports finals +sports jacket,sports jackets +sportsman's bet,sportsman's bets +sportsman,sportsmen +sportsperson,sportspersons,sportspeople +sportsplex,sportsplexes +sportswoman,sportswomen +sports writer,sports writers +sportswriter,sportswriters +sportswriting,sportswritings +sportula,sportulae +sportule,sportules +sport utility vehicle,sport utility vehicles +sporule,sporules +spot-backed antshrike,spot-backed antshrikes +spot check,spot checks +spotdesk,spotdesks +spotface,spotfaces +spot kick,spot kicks +spotlight,spotlights +spot market,spot markets +spot price,spot prices +spot prize,spot prizes +spot-red,spot-reds +spotshank,spotshanks +spot,spots +spotted cucumber beetle,spotted cucumber beetles +spotted dick,spotted dicks +spotted dog,spotted dogs +spotted dolphin,spotted dolphins +spotted dragonet,spotted dragonets +spotted eagle ray,spotted eagle rays +spotted hyena,spotted hyenas +spotted nothura,spotted nothuras +spotted redshank,spotted redshanks +spotted wolffish,spotted wolffishes,spotted wolffish +spotter,spotters +spot test,spot tests +spot the difference,spot the differences +spottle,spottles +spotty,spotties +spot weld,spot welds +spot-winged antshrike,spot-winged antshrikes +spousal,spousals +spouse,spouses +spouter,spouters +spoutfish,spoutfishes,spoutfish +spouthole,spoutholes +spouting,spoutings +spout,spouts +sprachbund,sprachbunds +spraddle,spraddles +sprag,sprags +sprag,sprags +sprain,sprains +spraint,spraints +sprat,sprat,sprats +sprawler,sprawlers +sprayboard,sprayboards +spray bottle,spray bottles +spray can,spray cans +spray condenser,spray condensers +spraydeck,spraydecks +spray drain,spray drains +sprayer,sprayers +spray gun,spray guns +spraying,sprayings +spraypainter,spraypainters +spraypaint,spraypaints +sprayskirt,sprayskirts +spray,sprays +spreadability,spreadabilities +spread eagle,spread eagles +spreader,spreaders +spreadmart,spreadmarts +spreadsheet,spreadsheets +spread spectrum communication,spread spectrum communications +spread,spreads +spree killer,spree killers +spree,sprees +spreite,spreites,spreiten +sprelve,sprelves +Sprengel pump,Sprengel pumps +spreon,spreons +sprezzatura,sprezzaturas +spright,sprights +sprig,sprigs +sprigtail,sprigtails +springald,springalds +springall,springalls +springal,springals +spring beauty,spring beauties +spring-beetle,spring-beetles +springboard,springboards +springbock,springbocks +springboc,springbocs +springbok,springbok,springboks +spring break,spring breaks +springbuck,springbucks +spring chicken,spring chickens +spring clean,spring cleans +spring constant,spring constants +spring equinox,spring equinoxes +springerle,springerles +springer spaniel,springer spaniels +springer,springers +springe,springes +spring festival,spring festivals +Springfielder,Springfielders +Springfieldian,Springfieldians +springform,springforms +spring green,spring greens +spring growth,spring growths +spring gun,spring guns +springhare,springhares +springhead,springheads +springhouse,springhouses +springing executory interest,springing executory interests +springle,springles +springlet,springlets +spring line,spring lines +spring onion,spring onions +spring peeper,spring peepers +spring quillwort,spring quillworts +spring rider,spring riders +spring rocker,spring rockers +spring roll,spring rolls +springtail,springtails +spring tide,spring tides +springtide,springtides +springtime,springtimes +spring water,spring waters +springwater,springwaters +sprinkler,sprinklers +sprinkle,sprinkles +sprinkling,sprinklings +sprinter,sprinters +sprints classification,sprints classifications +sprint,sprints +sprite halo,sprite halos,sprite haloes +spriter,spriters +sprite,sprites +spritsail,spritsails +sprit,sprits +spritzer,spritzers +spritzing,spritzings +spritz,spritzes +s-process,s-processes +sprocket,sprockets +sproc,sprocs +sprod,sprods +sproglet,sproglets +spront,spronts +Sprouser,Sprousers +sprouted bread,sprouted breads +sprout,sprouts +sprue,sprues +sprue,sprues +spruiker,spruikers +sprung rhyme,sprung rhymes +sprunt,sprunts +spryte,sprytes +SP,SPs +spuckie,spuckies +spudding,spuddings +spudger,spudgers +spud gun,spud guns +spud head,spud heads +spud,spuds +spuggie,spuggies +spuggy,spuggies +spuilzie,spuilzies +SPUI,SPUIs +spuller,spullers +spumante,spumantes +spumavirus,spumaviruses +spumoni,spumonis +spunge,spunges +spunging-house,spunging-houses +spurdog,spurdogs +spurfowl,spurfowls +spurgall,spurgalls +spurgewort,spurgeworts +spurion,spurions +spurious infection,spurious infections +spurling,spurlings +spurner,spurners +spurn,spurns +spurnwater,spurnwaters +spur of the moment,spurs of the moment +spurrer,spurrers +spurrey,spurreys +spurrier,spurriers +spurrite,spurrites +spur-royal,spur-royals +spurry,spurries +spur-shell,spur-shells +spur,spurs +spur,spurs +Spur,Spurs +spurtle,spurtles +spurt,spurts +sputcheon,sputcheons +sputnik,sputniks +sput,sputs +sputterer,sputterers +sputtering,sputterings +sputum,sputa +spyboat,spyboats +spycam,spycams +spyder,spyders +spyglass,spyglasses +spyhole,spyholes +spymaster,spymasters +spynace,spynaces +spyplane,spyplanes +spy ring,spy rings +spy satellite,spy satellites +spysat,spysats +spy,spies +Spy Wednesday,Spy Wednesdays +squabbler,squabblers +squabble,squabbles +squab chick,squab chicks +squab,squabs +squacco,squaccos +squad automatic weapon,squad automatic weapons +squad car,squad cars +squaddie,squaddies +squaddy,squaddies +squadmate,squadmates +squadron leader,squadron leaders +Squadron Leader,Squadron Leaders +squadronmate,squadronmates +squadron,squadrons +squad,squads +squailer,squailers +squalid,squalids +squaller,squallers +squall line,squall lines +squall,squalls +squalodon,squalodons +squalodontid,squalodontids +squalodont,squalodonts +squaloid,squaloids +squalorajid,squalorajids +squalor,squalors +squama,squamae +squamate,squamates +squamella,squamellae +squame,squames +squamula,squamulae +squamule,squamules +squanderer,squanderers +squandering,squanderings +squantersquash,squantersquashes +squarate,squarates +square ball,square balls +square bracket,square brackets +square centimeter,square centimeters +square centimetre,square centimetres +square circle,square circles +square dancer,square dancers +square division,square divisions +square drive,square drives +square foot,square feet +squarehead,squareheads +square inch,square inches +square kilometer,square kilometers +square kilometre,square kilometres +square knot,square knots +square leg umpire,square leg umpires +square matrix,square matrices +square meal,square meals +square meter,square meters +square metre,square metres +square mile,square miles +square peg in a round hole,square pegs in round holes +square peg into a round hole,square pegs into round holes +square piano,square pianos +square pyramid,square pyramids +square-rigger,square-riggers +square rod,square rods +square root,square roots +squarer,squarers +square sail,square sails +squaresail,squaresails +square scooter,square scooters +square shooter,square shooters +square-shooter,square-shooters +square,squares +square tab shingle,square tab shingles +squaretail,squaretails +square-up,square-ups +square wave,square waves +squarewave,squarewaves +square yard,square yards +squarial,squarials +Squariel,Squariels +squark,squarks +squaroid,squaroids +squarson,squarsons +squash ball,squash balls +squash court,squash courts +squasher,squashers +squashiness,squashinesses +squashing,squashings +squash player,squash players +squash racket,squash rackets +squash,squashes +squat cage,squat cages +squatch,squatches +squatinid,squatinids +squat rack,squat racks +squat,squats +squat,squats +squatter camp,squatter camps +squatter,squatters +squat thrust,squat thrusts +squatting,squattings +squat toilet,squat toilets +squaw berry,squaw berries +squawberry,squawberries +squaw carpet,squaw carpets +squawfish,squawfishes,squawfish +squawk duck,squawk ducks +squawker,squawkers +squawking,squawkings +squawk,squawks +squaw root,squaw roots +squawroot,squawroots +squaw,squaws +squaw vine,squaw vines +squaw winter,squaw winters +squbit,squbits +squeaker,squeakers +squeak,squeaks +squeaky wheel,squeaky wheels +squealer,squealers +squealing,squealings +squeal,squeals +squeegee mop,squeegee mops +squeegee,squeegees +squee,squees +squeezability,squeezabilities +squeezebox,squeezeboxes +squeeze play,squeeze plays +squeezer,squeezers +squeeze,squeezes +squeezing,squeezings +squelcher,squelchers +squelch,squelches +squeteague,squeteagues +squibber,squibbers +squib kick,squib kicks +squib,squibs +squick,squicks +squidder,squidders +squiddy,squiddies +squidger,squidgers +squidge,squidges +squid,squids +squid,squids,squid +squier,squiers +squiggler,squigglers +squiggle,squiggles +squiggly,squigglies +squilgee,squilgees +squilla,squillas +squill-gee,squill-gees +squillgee,squillgees +squillid,squillids +squillionaire,squillionaires +squillion,squillions +squill,squills +squinancywort,squinancyworts +squinch,squinches +squink,squinks +squinsy,squinsies +squinter,squinters +squint,squints +squirarch,squirarchs +squirarchy,squirarchies +squircle,squircles +squirearchy,squirearchies +squireen,squireens +squirefish,squirefish +squireling,squirelings +squireship,squireships +squire,squires +squire,squires +squirmer,squirmers +squirming,squirmings +squirm,squirms +squirrel cage,squirrel cages +squirrelcide,squirrelcides +squirrelfish,squirrelfishes,squirrelfish +squirrel grip,squirrel grips +squirrel monkey,squirrel monkeys +squirrel,squirrels +squirrel wheel,squirrel wheels +squirter,squirters +squirt gun,squirt guns +squirting cucumber,squirting cucumbers +squirt,squirts +squisher,squishers +squishiness,squishinesses +squish mitten,squish mittens +squish,squishes +squitter,squitters +squizz,squizzes +squonk,squonks +squop,squops +squoyle,squoyles +squush,squushes +SRAM,SRAMs +srang,srangs,srang +SRBM,SRBMs +Srebrenica,Srebrenicas +Sri Lankan,Sri Lankans +sRLV,sRLVs +SRLV,SRLVs +sRNA,sRNAs +SRS,SRSes +ΰΈΏ,ΰΈΏs,ΰΈΏ's +SSBN,SSBNs +SSGN,SSGNs +SSG,SSGs +SSI,SSIs +SSK,SSKs +SSM,SSMs +SSN,SSNs +ssp.,ssps. +SSP,SSPs +ssRNA,ssRNAs +SSRN,SSRNs +SSR,SSRs +S,Ss +SSTH,SSTHs +stabat mater,stabat maters +stabber,stabbers +stabbing,stabbings +stab cell,stab cells +stabilator,stabilators +stabile,stabiles +stabiliser,stabilisers +stabilizer,stabilizers +stable boy,stable boys +stable-boy,stable-boys +stableboy,stableboys +stable fly,stable flies +stable girl,stable girls +stablegirl,stablegirls +stablehand,stablehands +stablekeeper,stablekeepers +stableman,stablemen +stablemaster,stablemasters +stablemate,stablemates +stabler,stablers +stable,stables +stablewoman,stablewomen +stabling,stablings +stablishment,stablishments +stab pass,stab passes +stab,stabs +stab stitch,stab stitches +stabulation,stabulations +stabvest,stabvests +stabwound,stabwounds +staccato,staccatos,staccati +stache,staches +stackable,stackables +stackback,stackbacks +stacked modal,stacked modals +stacker,stackers +stacket,stackets +stackframe,stackframes +stack-guard,stack-guards +stack,stacks +stackstand,stackstands +stack trace,stack traces +stackyard,stackyards +staddle,staddles +staddle stone,staddle stones +stade,stades +stade,stades +stadial,stadials +stadimeter,stadimeters +stadiometer,stadiometers +stadion,stadia +stadium,stadiums,stadia +stadle,stadles +stadtholdership,stadtholderships +stadtholder,stadtholders +stadthouse,stadthouses +stafette,stafettes +staffer,staffers +staff function,staff functions +staffier,staffiers +Staffie,Staffies +staffing,staffings +staffman,staffmen +staff officer,staff officers +Stafford knot,Stafford knots +staffroom,staffrooms +staff sergeant,staff sergeants +staff sling,staff slings +stag beetle,stag beetles +stag-beetle,stag-beetles +stag do,stag dos +stage ball,stage balls +stagecoachman,stagecoachmen +stage-coach,stage-coaches +stagecoach,stagecoaches +stage direction,stage directions +stage diving,stage divings +stage-door Johnny,stage-door Johnnies,stage-door Johnnys +stageful,stagefuls +stagehand,stagehands +stagehouse,stagehouses +stage manager,stage managers +stage mom,stage moms +stage mother,stage mothers +stage name,stage names +stage of the game,stages of the game +stage-phoner,stage-phoners +stageplayer,stageplayers +stageplay,stageplays +stage race,stage races +stager,stagers +stagescape,stagescapes +stage screw,stage screws +stage,stages +stagette,stagettes +stage whisper,stage whispers +stag film,stag films +staggard,staggards +staggerbush,staggerbushes +staggerer,staggerers +stagger,staggers +staghound,staghounds +stagiaire,stagiaires +staging area,staging areas +staging,stagings +Stagirite,Stagirites +stagnancy,stagnancies +stag night,stag nights +stagnosol,stagnosols +stagonolepidid,stagonolepidids +stag party,stag parties +stag,stags +stahleckeriid,stahleckeriids +Stahlian,Stahlians +Stahlist,Stahlists +stail,stails +stainer,stainers +stain,stains +staircase lock,staircase locks +staircase,staircases +stairchair,stairchairs +stairclimber,stairclimbers +stairgate,stairgates +stairhead,stairheads +stairlift,stairlifts +stair,stairs +stairstep,stairsteps +stairtower,stairtowers +stairway,stairways +stairwell,stairwells +staithe,staithes +staithman,staithmen +staith,staiths +stake-driver,stake-drivers +stakehead,stakeheads +stakeholder society,stakeholder societies +stakeholder,stakeholders +stakehole,stakeholes +stake of Zion,stakes of Zion +stakeout,stakeouts +stake,stakes +Stakhanovite,Stakhanovites +Stakhonovite,Stakhonovites +stalactite,stalactites +stalagmite,stalagmites +stalag,stalags +stalder,stalders +stalemate,stalemates +stale,stales +stale,stales +stale,stales +stale,stales +stale,stales +Stalinist,Stalinists +stalkee,stalkees +stalker,stalkers +stalking horse,stalking horses +stalking,stalkings +stalk,stalks +stalk,stalks +stalkumentary,stalkumentaries +stallage,stallages +staller,stallers +stall handler,stall handlers +stallholder,stallholders +stallioneer,stallioneers +stallioner,stallioners +stallion,stallions +stallkeeper,stallkeepers +stallman,stallmen +stallon,stallons +stall,stalls +stall,stalls +stalwart,stalwarts +stamen,stamens,stamina +staminode,staminodes +staminodium,staminodia +Stammbaum,Stammbaums +stammerer,stammerers +stammer,stammers +stamp battery,stamp batteries +stamp coupling,stamp couplings +stamp duty,stamp duties +stampede,stampedes +stamper,stampers +stamp hinge,stamp hinges +stamping ground,stamping grounds +stamping mill,stamping mills +stamping,stampings +stamp mill,stamp mills +stamp pad,stamp pads +stamp,stamps +stance,stances +stanchel,stanchels +stancher,stanchers +stanchion,stanchions +stanch,stanches +standage,standages +standard-bearer,standard-bearers +standardbred,standardbreds +standard candle,standard candles +standard deviation,standard deviations +standard electrode potential,standard electrode potentials +standard error,standard errors +standard hydrogen electrode,standard hydrogen electrodes +standardisation,standardisations +standardista,standardistas +standardization,standardizations +standardized variable,standardized variables +standard lamp,standard lamps +standard language,standard languages +standard normal distribution,standard normal distributions +standard of identity,standards of identity +standard of living,standards of living +standard poodle,standard poodles +standard ruler,standard rulers +standard,standards +standard toolbar,standard toolbars +standard transmission,standard transmissions +standard-wing,standard-wings +standby,standbys +standee,standees +standel,standels +stander,standers +standfirst,standfirsts +standgale,standgales +standing army,standing armies +standing cloud,standing clouds +standing committee,standing committees +standing end,standing ends +standing joke,standing jokes +standing order,standing orders +standing O,standing Os +standing ovation,standing ovations +standing part,standing parts +standing rib,standing ribs +standing seam,standing seams +standing,standings +standing stone,standing stones +standing wave,standing waves +stand in,stand ins +stand-in,stand-ins +standish,standishes +stand-off,stand-offs +standoff,standoffs +standout,standouts +standover,standovers +standpipe,standpipes +standpoint,standpoints +St. Andrew's Cross,St. Andrew's Crosses +stand,stands +stand still,stand stills +standstill,standstills +stand to,stands to,stand tos +stand-to,stands-to,stand-tos +stand-up guy,stand-up guys +standup,standups +stane,stanes +stang,stangs +stanhope,stanhopes +staniel,staniels +stank,stanks +Stanley knife,Stanley knives +stannane,stannanes +stannary court,stannary courts +stannary parliament,stannary parliaments +stannary,stannaries +stannary town,stannary towns +stannate,stannates +stannation,stannations +stannator,stannators +stannatrane,stannatranes +stannel,stannels +stannide,stannides +stannite,stannites +stannofluoride,stannofluorides +stannosis,stannoses +stannotype,stannotypes +stannoxane,stannoxanes +stannylene,stannylenes +stannylidene,stannylidenes +stannyl,stannyls +stannyne,stannynes +stanol,stanols +St. Anthony's cross,St. Anthony's crosses +stanza,stanzas +stapedectomy,stapedectomies +stapedius,stapedii +stapelia,stapelias +stapes,stapes,stapedes +stape,stapes +staph,staphs +staphylinid,staphylinids +staphylococcus,staphylococci +staphyloferrin,staphyloferrins +staphylokinase,staphylokinases +staphyloma,staphylomas,staphylomata +staphyloplasty,staphyloplasties +staphyloraphy,staphylorhaphies +staphylorrhaphy,staphylorrhaphies +staphylotomy,staphylotomies +staple character,staple characters +staple gun,staple guns +staplegun,stapleguns +staple puller,staple pullers +staple remover,staple removers +stapler,staplers +staple,staples +staple,staples +star anise,star anises +star apple,star apples +starbase,starbases +starboard,starboards +starbowline,starbowlines +starburst galaxy,starburst galaxies +starburst,starbursts +star chamber,star chambers +star chart,star charts +starcher,starchers +starch hyacinth,starch hyacinths +starchitect,starchitects +starchwort,starchworts +star cloud,star clouds +star cluster,star clusters +starcraft,starcrafts,starcraft +stardate,stardates +stareater,stareaters +staredown,staredowns +staree,starees +starer,starers +stare,stares +stare,stares +starfield,starfields +Starfighter,Starfighters +Starfish site,Starfish sites +starfish,starfishes,starfish +starflower,starflowers +star fruit,star fruits +starfruit,starfruits +starfucker,starfuckers +stargate,stargates +stargazer,stargazers +stargazin,stargazins +star height,star heights +star jelly,star jellies +star jump,star jumps +starjump,starjumps +starlet,starlets +starliner,starliners +starling,starlings +starlore,starlores +star macromolecule,star macromolecules +starman,starmen +starmonger,starmongers +starnie,starnies +star-nosed mole,star-nosed moles +starnose,starnoses +starn,starns +starost,starosts +starosty,starosties +star pass,star passes +star picket,star pickets +star polygon,star polygons +star polymer,star polymers +starport,starports +starquake,starquakes +starriness,starrinesses +star ring,star rings +starry ray,starry rays +starry sturgeon,starry sturgeons +starscape,starscapes +Star Scout,Star Scouts +star sedge,star sedges +star seed,star seeds +starshade,starshades +star shell,star shells +starship,starships +star sign,star signs +starspot,starspots +star,stars +starstone,starstones +star stream,star streams +star system,star systems +startbox,startboxes +Start button,Start buttons +start codon,start codons +starter dough,starter doughs +starter marriage,starter marriages +starter motor,starter motors +starter,starters +starter strip,starter strips +starthistle,starthistles +starthroat,starthroats +starting berth,starting berths +starting five,starting fives +starting gun,starting guns +starting pitcher,starting pitchers +starting point,starting points +starting price,starting prices +startlement,startlements +startler,startlers +startle,startles +startline,startlines +star topology,star topologies +star tracker,star trackers +star trail,star trails +start,starts +start,starts +Start,Starts +startupper,startuppers +start-up,start-ups +startup,startups +star vault,star vaults +starveling,starvelings +star visitor,star visitors +starwort,starworts +stasher,stashers +stash,stashes +stasimon,stasima +sta,stas +statcoulomb,statcoulombs +state capital,state capitals +statechart,statecharts +statecraft,statecrafts +state flower,state flowers +statefunction,statefunctions +statehooder,statehooders +state house,state houses +statehouse,statehouses +statelet,statelets +state machine,state machines +statemate,statemates +statement of intent,statements of intent +statement,statements +statemonger,statemongers +state of affairs,states of affairs +state of being,states of being +state of emergency,states of emergency +state of matter,states of matter +state of mind,states of mind +state pattern,state patterns +stateprison,stateprisons +stateroom,staterooms +stater,staters +stater,staters +state school,state schools +state secret,state secrets +State secret,State secrets +statesmanship,statesmanships +statesman,statesmen +state space,state spaces +statesperson,statespersons,statespeople +state,states +State,States +stateswoman,stateswomen +state variable,state variables +state visit,state visits +stathead,statheads +stathmograph,stathmographs +static class,static classes +static dispatch,static dispatches +static equilibrium,static equilibriums +statice,statices +static kill,static kills +static line,static lines +static memory allocation,static memory allocations +static site,static sites +statie,staties +statine,statines +stating,statings +statin,statins +stationary front,stationary fronts +stationary phase,stationary phases +stationary point,stationary points +stationary,stationaries +stationary wave,stationary waves +station bill,station bills +station break,station breaks +stationer,stationers +station house,station houses +station-house,station-houses +stationhouse,stationhouses +stationing,stationings +stationmaster,stationmasters +station sedan,station sedans +station,stations +station throat,station throats +station wagon,station wagons +statistical analysis,statistical analyses +statistical inference,statistical inferences +statistical region,statistical regions +statistical significance,statistical significances +statistician,statisticians +statisticks,statisticks +statistics,statistics +statistic,statistics +statist,statists +statoblast,statoblasts +statocyst,statocysts +statoid,statoids +statolith,statoliths +stator,stators +statoscope,statoscopes +stat,stats +statto,stattos +statua,statuas +statue,statues +statuette,statuettes +stature,statures +status ailment,status ailments +status bar,status bars +status conference,status conferences +status effect,status effects +status quo ante,status quo antes +status quo,status quos +status,statuses +status symbol,status symbols +statute book,statute books +statute law,statute laws +statute mile,statute miles +statute of frauds,statutes of frauds +statute of limitations,statutes of limitations +statute,statutes +statutory authority,statutory authorities +statutory declaration,statutory declarations +statutory law,statutory laws +statutory rape,statutory rapes +staurikosaurid,staurikosaurids +staurolite,staurolites +stauroscope,stauroscopes +staurotide,staurotides +stau,staus +stave church,stave churches +stave rhyme,stave rhymes +stave,staves +staving,stavings +stay behind,stay behinds +stay-behind,stay-behinds +stay-button,stay-buttons +staycation,staycations +stayer,stayers +stay-lace,stay-laces +staylace,staylaces +staymaker,staymakers +stayover,stayovers +staysail,staysails +stay,stays +stay,stays +St. Bernard,St. Bernards +STB,STBs +Steadicam,Steadicams +steading,steadings +stead,steads +steady state,steady states +steady,steadies +steak and kidney pie,steak and kidney pies +steak bake,steak bakes +steakburger,steakburgers +steakette,steakettes +steak house,steak houses +steakhouse,steakhouses +steak knife,steak knives +steakmaker,steakmakers +steak sauce,steak sauces +steak,steaks +stealer,stealers +steal,steals +stealth bomber,stealth bombers +stealth fighter,stealth fighters +stealth tax,stealth taxes +steam bath,steam baths +steambath,steambaths +steamboater,steamboaters +steamboatman,steamboatmen +steamboat,steamboats +steam boiler,steam boilers +steam condenser,steam condensers +steam cracker,steam crackers +steam digester,steam digesters +steam distillation,steam distillations +steam engine,steam engines +steamer duck,steamer ducks +steamer,steamers +steamfitter,steamfitters +steamfitting,steamfittings +steam hammer,steam hammers +steam heater,steam heaters +steamie,steamies +steaming,steamings +steam iron,steam irons +steamliner,steamliners +steam locomotive,steam locomotives +steampipe,steampipes +steam power,steam powers +steam radio,steam radios +steam roller,steam rollers +steamroller,steamrollers +steam room,steam rooms +steam ship,steam ships +steam-ship,steam-ships +steamship,steamships +steam shovel,steam shovels +steam table,steam tables +steam train,steam trains +steam tunnel,steam tunnels +steam turbine,steam turbines +stean,steans +stean,steans +stearate,stearates +stearoptene,stearoptenes +stearoyl,stearoyls +stearyl,stearyls +steatite,steatites +steatoma,steatomas,steatomata +steatornithid,steatornithids +steatosis,steatoses +steaven,steavens +steccherino,steccherini +sted,steds +steed,steeds +steek,steeks +steel cage match,steel cage matches +steeler,steelers +steelhead,steelheads +steelie,steelies +steel magnolia,steel magnolias +steel-maker,steel-makers +steelmaker,steelmakers +steel pan orchestra,steel pan orchestras +steel pan,steel pans +steelpan,steelpans +steel rim,steel rims +steel square,steel squares +steel-toe boot,steel-toe boots +steel wheel,steel wheels +steel worker,steel workers +steel-worker,steel-workers +steelworker,steelworkers +steelyard,steelyards +steely-eyed missile man,steely-eyed missile men +steem,steems +steem,steems +steenbok,steenboks +steenbuck,steenbucks +steening,steenings +steen,steens +steeper,steepers +steeplechaser,steeplechasers +steeplechase,steeplechases +steeplejack,steeplejacks +steeple,steeples +steep-slope roof,steep-slope roofs,steep-slope rooves +steerageway,steerageways +steerer,steerers +steering arm,steering arms +steering column,steering columns +steering group,steering groups +steering,steerings +steering wheel,steering wheels +steerling,steerlings +steersman,steersmen +steersmate,steersmates +steer,steers +steer,steers +steer,steers +steerswoman,steerswomen +stee,stees +steeve,steeves +steganalyser,steganalysers +steganalyst,steganalysts +steganogram,steganograms +steganographer,steganographers +steganopod,steganopods +stegocephalid,stegocephalids +stegodontid,stegodontids +stegodont,stegodonts +stegosaurian,stegosaurians +stegosaurid,stegosaurids +stegosaur,stegosaurs +stegosaurus,stegosauruses +steg,stegs +steinbock,steinbocks +steinbok,steinboks,steinbok +Steiner point,Steiner points +steining,steinings +steinkern,steinkerns +steinkirk,steinkirks +stein,steins +stela,stelae +stele,steles +stele,steles +stΓ©lΓ©,stΓ©lΓ©s +stelΓ¨,stelΓ¨s +stele,steles,stelai +stellarator,stellarators +stellar day,stellar days +stellar disk,stellar disks +stellarity,stellarities +stellar nursery,stellar nurseries +stellar wind,stellar winds +stellation,stellations +stellerid,stellerids +stellerine,stellerines +stellerite,stellerites +steller,stellers +stellionate,stellionates +stellion,stellions +stellite,stellites +stellium,stelliums,stellia +stell,stells +St. Elmo's fire,St. Elmo's fires +stem and leaf,stems and leaves +stem-and-leaf,stems-and-leaves +stem cell,stem cells +stemcell,stemcells +stem family,stem families +stemhead,stemheads +stemlet,stemlets +stemline,stemlines +stemma,stemmata +stemmer,stemmers +stemmery,stemmeries +stem node,stem nodes +stempel,stempels +stemple,stemples +stemplot,stemplots +stempost,stemposts +stem siren,stem sirens +stemson,stemsons +stem,stems +stem,stems +stem stitch,stem stitches +stem-winder,stem-winders +stemwinder,stemwinders +stench,stenches +stench trap,stench traps +stencil buffer,stencil buffers +stenciler,stencilers +stenciller,stencillers +stencil,stencils +stengah,stengahs +Sten gun,Sten guns +stenochilid,stenochilids +stenoderm,stenoderms +stenogastrine,stenogastrines +stenographer,stenographers +stenographist,stenographists +stenograph,stenographs +stenog,stenogs +steno pad,steno pads +stenopelmatid,stenopelmatids +stenoplesictid,stenoplesictids +stenopodid,stenopodids +stenopsocid,stenopsocids +stenopsychid,stenopsychids +stenopterygiid,stenopterygiids +stenosis,stenoses +steno,stenos +stenostirid,stenostirids +stenostomid,stenostomids +stenothecid,stenothecids +stenotherm,stenotherms +stenothyrid,stenothyrids +stenotritid,stenotritids +stenotype,stenotypes +stenotypist,stenotypists +stenting,stentings +stenting,stentings +stentorin,stentorins +stentor,stentors +stent,stents +stent,stents +step-aunt,step-aunts +stepaunt,stepaunts +stepback,stepbacks +stepbairn,stepbairns +stepbro,stepbros +stepbrother,stepbrothers +step change,step changes +step chart,step charts +stepchart,stepcharts +stepchild,stepchildren +step-cousin,step-cousins +stepcousin,stepcousins +stepdad,stepdads +stepdame,stepdames +stepdancer,stepdancers +step dance,step dances +step-dance,step-dances +stepdance,stepdances +stepdaughter,stepdaughters +stepfamily,stepfamilies +stepfather-in-law,stepfathers-in-law +step-father,step-fathers +stepfather,stepfathers +step function,step functions +stepgrandchild,stepgrandchildren +stepgranddaughter,stepgranddaughters +stepgrandfather,stepgrandfathers +stepgrandmother,stepgrandmothers +stepgrandson,stepgrandsons +stephanandra,stephanandras +stephanid,stephanids +stephanion,stephanions +stephanite,stephanites +stephanoberycid,stephanoberycids +stephanoceratid,stephanoceratids +stephanocircid,stephanocircids +stephanotis,stephanotises +Stephanus letter,Stephanus letters +Stephanus number,Stephanus numbers +step-in,step-ins +stepkid,stepkids +step ladder,step ladders +stepladder,stepladders +steplength,steplengths +steple,steples +stepmama,stepmamas +stepmamma,stepmammas +stepmom,stepmoms +stepmother,stepmothers +step-nephew,step-nephews +stepnephew,stepnephews +step-niece,step-nieces +stepniece,stepnieces +step over,step overs +stepover,stepovers +stepparent,stepparents +stepped pyramid,stepped pyramids +stepper,steppers +steppe,steppes +stepping motor,stepping motors +stepping razor,stepping razors +stepping stone,stepping stones +stepping-stone,stepping-stones +steppingstone,steppingstones +stepping switch,stepping switches +step pyramid,step pyramids +step-sibling,step-siblings +stepsibling,stepsiblings +stepsib,stepsibs +stepsis,stepsisters +stepsister,stepsisters +stepsize,stepsizes +stepson,stepsons +step,steps +stepstone,stepstones +step stool,step stools +stepstool,stepstools +step-through,step-throughs +step-thru,step-thrus +step-uncle,step-uncles +stepuncle,stepuncles +stepwell,stepwells +stepwife,stepwives +stepwise migration,stepwise migrations +steradian,steradians +sterane,steranes +stercoranist,stercoranists +stercorarid,stercorarids +stercorariid,stercorariids +stercorary,stercoraries +sterculia,sterculias +stereobate,stereobates +stereoblastula,stereoblastulas,stereoblastulae +stereobond,stereobonds +stereocenter,stereocenters +stereocentre,stereocentres +stereochemist,stereochemists +stereochrome,stereochromes +stereocilium,stereocilia +stereoconvergence,stereoconvergences +stereocorrelation,stereocorrelations +stereodescriptor,stereodescriptors +stereoelement,stereoelements +stereoformula,stereoformulas +stereogen,stereogens +stereogram,stereograms +stereographer,stereographers +stereograph,stereographs +stereoinduction,stereoinductions +stereoinversion,stereoinversions +stereoisomerization,stereoisomerizations +stereoisomer,stereoisomers +stereome,stereomes +stereometamaterial,stereometamaterials +stereometer,stereometers +stereomicroscope,stereomicroscopes +stereomonoscope,stereomonoscopes +stereomutation,stereomutations +stereoparent,stereoparents +stereophone,stereophones +stereoplate,stereoplates +stereopticon,stereopticons +stereoscope,stereoscopes +stereoscopist,stereoscopists +stereoscopy,stereoscopies +stereospecific catalyst,stereospecific catalysts +stereospecific polymer,stereospecific polymers +stereospecific synthesis,stereospecific syntheses +stereo,stereos +stereostructure,stereostructures +stereotaxy,stereotaxies +stereotrode,stereotrodes +stereotyper,stereotypers +stereotype,stereotypes +stereotypist,stereotypists +stereotypographer,stereotypographers +stereoview,stereoviews +stere,steres +sterigma,sterigmata +sterigmatum,sterigmata +sterilant,sterilants +sterilisation,sterilisations +steriliser,sterilisers +sterilizer,sterilizers +sterino,sterinos +sterlet,sterlets +sterncastle,sterncastles +stern chaser,stern chasers +sterndrive,sterndrives +sternebra,sternebrae +sterner,sterners +sternid,sternids +sternite,sternites +sternman,sternmen +sternochondroscapularis,sternochondroscapulares +sternocleidomastoid muscle,sternocleidomastoid muscles +sternocleidomastoid,sternocleidomastoids +sternophorid,sternophorids +sternoptychid,sternoptychids +sternopygid,sternopygids +sternothyroideus,sternothyroidei +sternotomy,sternotomies +sternpost,sternposts +sternsman,sternsmen +sternson,sternsons +stern,sterns +stern,sterns +sternum,sterna,sternums +sternutation,sternutations +sternutative,sternutatives +sternutatory,sternutatories +sternway,sternways +sternwheeler,sternwheelers +sternwheel,sternwheels +steroidogenesis,steroidogeneses +steroidome,steroidomes +steroid,steroids +sterolin,sterolins +sterolome,sterolomes +sterol,sterols +sterre,sterres +sterrink,sterrinks +stertor,stertors +stet docket,stet dockets +stethacanthid,stethacanthids +stethograph,stethographs +stethometer,stethometers +stethoscope,stethoscopes +stethoscopist,stethoscopists +stetson,stetsons +stet,stets +stevastelin,stevastelins +stevedore,stevedores +steven,stevens +steven,stevens +stevia,stevias +stevven,stevvens +stevvon,stevvons +stevvon,stevvons +stewardess,stewardesses +stewardship,stewardships +steward,stewards +stewartry,stewartries +stewpan,stewpans +stewpot,stewpots +stew,stews +stey,steys +s**thead,s**theads +sthene,sthenes +sthenia,sthenias +stian,stians +stibane,stibanes +stibanylidene,stibanylidenes +stibine,stibines +stibinidene,stibinidenes +stibiopalladinite,stibiopalladinites +stibogluconate,stibogluconates +stichaeid,stichaeids +sticharion,sticharions,sticharia +sticheron,stichera +stichidium,stichidia +stichodactylid,stichodactylids +stichometry,stichometries +stichomythia,stichomythias +stichopodid,stichopodids +stich,stichs +stichtite,stichtites +stick and carrot,sticks and carrots +stick-and-carrot,sticks-and-carrots +stick clip,stick clips +sticker book,sticker books +sticker price,sticker prices +sticker,stickers +stick figure,stick figures +stickful,stickfuls,sticksful +sticking place,sticking places +sticking-place,sticking-places +sticking plaster,sticking plasters +sticking point,sticking points +sticking-point,sticking-points +stick insect,stick insects +stick-in-the-mud,stick-in-the-muds,sticks-in-the-mud +stick in the mud,sticks in the mud,stick in the muds +stickit minister,stickit ministers +stickleback,sticklebacks +stickler,sticklers +stickle,stickles +stick man,stick men +stickman,stickmen +stick note,stick notes +stick of furniture,sticks of furniture +stickpin,stickpins +stick plaster,stick plasters +stick pusher,stick pushers +stick shaker,stick shakers +stickshift,stickshifts +sticksman,sticksmen +stick,sticks +stick,sticks +Stick,Sticks +stick-tight,stick-tights +stickup,stickups +stickweed,stickweeds +stickybeak,stickybeaks +sticky bit,sticky bits +sticky bun,sticky buns +sticky note,sticky notes +sticky-note,sticky-notes +sticky,stickies +sticky tape,sticky tapes +sticky wicket,sticky wickets +stictococcid,stictococcids +stiddy,stiddies +stifado,stifados +stiff-arm,stiff-arms +stiffener,stiffeners +stiffening order,stiffening orders +stiffening,stiffenings +stiffie,stiffies +stiff neck,stiff necks +stiffship,stiffships +stiff,stiffs +stiff-tailed duck,stiff-tailed ducks +stifftail,stifftails +stiffy,stiffies +stifler,stiflers +stifle,stifles +stigmaria,stigmarias +stigmastane,stigmastanes +stigma,stigmata,stigmas +stigmatic,stigmatics +stigmatisation,stigmatisations +stigmatist,stigmatists +stigmatization,stigmatizations +stigmatizer,stigmatizers +stigmat,stigmats +stigmat,stigmats +stigmellid,stigmellids +stigme,stigmes +St Ignatius' bean,St Ignatius' beans +stig,stigs +stike,stikes +stilbene,stilbenes +stilbenoid,stilbenoids +stilb,stilbs +stile,stiles +stilet,stilets +stiletto heel,stiletto heels +stiletto,stilettos,stilettoes,stiletti +stiliferid,stiliferids +stiligerid,stiligerids +stilipedid,stilipedids +stillatory,stillatories +stillbirth,stillbirths +stiller,stillers +stillhouse,stillhouses +stilliard,stilliards +stillicide,stillicides +stilling,stillings +stillion,stillions +still life,still lifes +still-life,still-lifes +stillroom,stillrooms +Still's murmur,Still's murmurs +Stillson wrench,Stillson wrenches +stillstand,stillstands +still,stills +still,stills +still water,still waters +still wine,still wines +stilpnosiderite,stilpnosiderites +stiltbird,stiltbirds +stilt,stilts +stiltwalker,stiltwalkers +stilyard,stilyards +stime,stimes +stim,stims +stimulant,stimulants +stimulated emission depletion microscope,stimulated emission depletion microscopes +stimulation,stimulations +stimulative,stimulatives +stimulator,stimulators +stimulon,stimulons +stimulus,stimuli +stimy,stimies +stingaree,stingarees +stingbull,stingbulls +stinger,stingers +Stinger,Stingers +stinge,stinges +stingfish,stingfishes +stingray,stingrays +sting,stings +stinkard,stinkards +stinka,stinkas +stink badger,stink badgers +stinkbag,stinkbags +stinkball,stinkballs +stinkbird,stinkbirds +stink bomb,stink bombs +stinkbomb,stinkbombs +stink bug,stink bugs +stinkbug,stinkbugs +stinkbush,stinkbushes +stink-cat,stink-cats +stink cedar,stink cedars +stinkeroo,stinkeroos +stinker,stinkers +stinkhorn,stinkhorns +stinkpot,stinkpots +stink,stinks +stinkstone,stinkstones +stinkweed,stinkweed,stinkweeds +stinkwood,stinkwoods +stinky tofu,stinky tofus +stinter,stinters +stint,stints +stint,stints +stint,stints +stipella,stipellae +stipel,stipels +stipendiary,stipendiaries +stipend,stipends +stipes,stipites +stipe,stipes +stiphidiid,stiphidiids +stippler,stipplers +stippling,stipplings +stip,stips +stiptic,stiptics +stipula,stipulas,stipulae,stipulΓ¦ +stipulation,stipulations +stipulative definition,stipulative definitions +stipulator,stipulators +stipule,stipules +stirabout,stirabouts +stir bar,stir bars +stirfry,stirfries +stirk,stirks +Stirling engine,Stirling engines +stirps,stirpes +stirp,stirps +stirrer,stirrers +stirring,stirrings +stirrup bone,stirrup bones +stirrup cup,stirrup cups +stirrup pump,stirrup pumps +stirrup,stirrups +stitchbird,stitchbirds +stitcher,stitchers +stitchery,stitcheries +stitch,stitches +stitch-up,stitch-ups +stitchwort,stitchworts +stith,stiths +stithy,stithies +stiver,stivers +St John's wort,St John's worts +St Martin's summer,St Martin's summers +St. Martin's summer,St. Martin's summers +stoa,stoae,stoΓ¦ +stoater,stoaters +stoat,stoats +stobie pole,stobie poles +Stobie pole,Stobie poles +stob,stobs +stocah,stocahs +stoccade,stoccades +stoccado,stoccados,stoccadoes +stochastic differential equation,stochastic differential equations +stochasticity,stochasticities +stochastic matrix,stochastic matrices +stochastic process,stochastic processes +stockade,stockades +stock ball,stock balls +stock-bow,stock-bows +stockboy,stockboys +stockbreeder,stockbreeders +stockbroker,stockbrokers +stock car,stock cars +stock certificate,stock certificates +stock character,stock characters +stock company,stock companies +stock cube,stock cubes +stock dove,stock doves +stockdove,stockdoves +stocken,stockens +stocker,stockers +stock exchange,stock exchanges +stockfish,stockfishes,stockfish +stockfish,stockfishes,stockfish +stockgrower,stockgrowers +stockholder,stockholders +stockholding,stockholdings +Stockholmer,Stockholmers +stockinette,stockinettes +stocking cap,stocking caps +stockinger,stockingers +stocking-foot,stocking-feet +stockingfoot,stockingfeet +stocking frame,stocking frames +stockingful,stockingfuls +stockingmaker,stockingmakers +stocking,stockings +stocking stuffer,stocking stuffers +stocking-stuffer,stocking-stuffers +stockin',stockin's +stock-in-trade,stocks in trade +stockist,stockists +stockjobber,stockjobbers +stockkeeper,stockkeepers +stocklist,stocklists +stock loan,stock loans +stockman,stockmen +stock market crash,stock market crashes +stock market,stock markets +stockmarket,stockmarkets +stockout,stockouts +stock phrase,stock phrases +stock picker,stock pickers +stock-picker,stock-pickers +stockpicker,stockpickers +stock pigeon,stock pigeons +stockpiler,stockpilers +stockpile,stockpiles +stockpot,stockpots +stock prod,stock prods +stock promoter,stock promoters +stock room,stock rooms +stockroom,stockrooms +stock sheet,stock sheets +stock symbol,stock symbols +stocktake,stocktakes +stock ticker,stock tickers +stock ticker symbol,stock ticker symbols +stock variable,stock variables +stock vehicle,stock vehicles +stockwhip,stockwhips +stockwork,stockworks +stockyard,stockyards +stodge,stodges +stoep,stoeps +stoggy,stoggies +stogie,stogies +Stoick,Stoicks +stoic,stoics +Stoic,Stoics +stokehold,stokeholds +stokehole,stokeholes +stoker,stokers +stokes,stokes +stokvel,stokvels +stola,stolas,stolae +stole fee,stole fees +stole-fee,stole-fees +stolen base,stolen bases +Stolen Generation,Stolen Generations +stole,stoles +stole,stoles +Stoliczka's mountain vole,Stoliczka's mountain voles +stolidobranch,stolidobranchs +stollen,stollens +Stolly,Stollies +stoloniferan,stoloniferans +stolonifera,stoloniferas +stolon,stolons +stolovaya,stolovayas +STOLport,STOLports +stomach ache,stomach aches +stomachache,stomachaches +stomachal,stomachals +stomacher,stomachers +stomache,stomaches +stomachful,stomachfuls +stomachic,stomachics +stomaching,stomachings +stomach lining,stomach linings +stomach,stomachs +stomach worm,stomach worms +stomack,stomacks +stomapod,stomapods +stoma,stomata,stomas +stomatellid,stomatellids +stomate,stomates +stomatic,stomatics +stomatitis,stomatitises,stomatitides +stomatocyte,stomatocytes +stomatodaeum,stomatodaea +stomatode,stomatodes +stomatologist,stomatologists +stomatoplasty,stomatoplasties +stomatopod,stomatopods +stomatoscope,stomatoscopes +stomiid,stomiids +stomium,stomia +stomochord,stomochords +stomodaeum,stomodaea +stomodΓ¦um,stomodΓ¦ums,stomodΓ¦a +stomodeum,stomodea +stompbox,stompboxes +stomper,stompers +stompie,stompies +stomping ground,stomping grounds +stomp,stomps +stond,stonds +stonebird,stonebirds +stoneblower,stoneblowers +stoneboat,stoneboats +stonebow,stonebows +stone bramble,stone brambles +stonebreaker,stonebreakers +stonebuck,stonebucks,stonebuck +stonechat,stonechats +stone colic,stone colics +stone crab,stone crabs +stonecrop,stonecrops +stone curlew,stone curlews +stonecutter,stonecutters +stone-fence,stone-fences +stonefish,stonefish +stonefly,stoneflies +stone frigate,stone frigates +stone fruit,stone fruits +stonefruit,stonefruits +stonegall,stonegalls +stonehatch,stonehatches +stone-horse,stone-horses +stonelayer,stonelayers +stone loach,stone loaches +stone marten,stone martens +stonemason,stonemasons +stone paper,stone papers +stone pine,stone pines +stoner rocker,stoner rockers +stoner,stoners +stonerunner,stonerunners +Stone space,Stone spaces +stonewaller,stonewallers +stone wall,stone walls +stonewall,stonewalls +stoneware,stonewares +stoneworker,stoneworkers +stonework,stoneworks +stonewort,stoneworts +stong,stongs +stoning,stonings +stonker,stonkers +stonk,stonks +stooge,stooges +stooker,stookers +stookie,stookies +stook,stooks +stoole,stooles +stoolie,stoolies +stool pigeon,stool pigeons +stool softener,stool softeners +stool,stools +stool,stools +stooly,stoolies +stooper,stoopers +stoop,stoops +stoop,stoops +stoop,stoops +stoop,stoops +stoor,stoors +stooshie,stooshies +stoove,stooves +stop-and-search,stops-and-searches,stop-and-searches +stopband,stopbands +stopbank,stopbanks +stop cock,stop cocks +stopcock,stopcocks +stop codon,stop codon +stope,stopes +stop-gap,stop-gaps +stopgap,stopgaps +stoplight,stoplights +stop list,stop lists +stoplist,stoplists +stop loss order,stop loss orders +stop-loss order,stop-loss orders +stoponium,stoponiums +stop-over,stop-overs +stopover,stopovers +stoppage,stoppages +stopped pipe,stopped pipes +stopper knot,stopper knots +stopper,stoppers +stoppie,stoppies +stopping distance,stopping distances +stopping-out,stopping-outs +stopping power,stopping powers +stopping,stoppings +stopple,stopples +stop sign,stop signs +stopsign,stopsigns +stop,stops +stop,stops +stopstreet,stopstreets +stop-tap,stop-taps +stop valve,stop valves +stopwatch,stopwatches +stop word,stop words +stopword,stopwords +storability,storabilities +storage cell,storage cells +storage device,storage devices +storage hypervisor,storage hypervisors +storage medium,storage media +storage organ,storage organs +storage polysaccharide,storage polysaccharides +storage power station,storage power stations +storage protein,storage proteins +storagewall,storagewalls +storax,storaxes +store brand,store brands +storecard,storecards +stored procedure,stored procedures +storefront,storefronts +storehouse,storehouses +storekeeper,storekeepers +storeman,storemen +store of value,stores of value +storeowner,storeowners +storeroom,storerooms +storer,storers +storeship,storeships +store,stores +storewoman,storewomen +storeworker,storeworkers +storey,storeys +storiation,storiations +storier,storiers +storie,stories +stork bite,stork bites +storksbill,storksbills +stork,storks +storm cellar,storm cellars +storm chaser,storm chasers +storm cloud,storm clouds +stormcloud,stormclouds +stormcock,stormcocks +storm door,storm doors +storm drain,storm drains +stormer,stormers +storme,stormes +stormfinch,stormfinches +stormglass,stormglasses +storming,stormings +storm jib,storm jibs +storm match,storm matches +stormpath,stormpaths +storm petrel,storm petrels +storm-petrel,storm-petrels +storm sewer,storm sewers +storm,storms +storm surge,storm surges +storm tide,storm tides +stormtide,stormtides +stormtrack,stormtracks +storm trooper,storm troopers +storm-trooper,storm-troopers +stormtrooper,stormtroopers +storm window,storm windows +stormwind,stormwinds +stormy petrel,stormy petrels +story arc,story arcs +story beat,story beats +storyboarder,storyboarders +storyboard,storyboards +storybook,storybooks +story editor,story editors +storyline,storylines +story,stories +storyteller,storytellers +storytime,storytimes +stote,stotes +stotinka,stotinki +stotin,stotins,stotinov +stot,stots +stot,stots +stottie cake,stottie cakes +stottie,stotties +stotty cake,stotty cakes +stotty,stotties +stound,stounds +stound,stounds +stound,stounds +stoup,stoups +stour,stours +stour,stours +stoush,stoushes +stoutness,stoutnesses +stout,stouts +stovehouse,stovehouses +stovepipe hat,stovepipe hats +stovepipe,stovepipes +stover,stovers +stove,stoves +stovetop,stovetops +stowage,stowages +stowaway,stowaways +stowboard,stowboards +stowce,stowces +stow,stows +St. Paul sandwich,St. Paul sandwiches +strabismometer,strabismometers +strabotomy,strabotomies +stracciatella,stracciatellas +straddle carrier,straddle carriers +straddler,straddlers +straddle,straddles +Stradivarius,Stradivariuses +Strad,Strads +strafe,strafes +straggler,stragglers +straggle,straggles +stragulum,stragula +strahlstein,strahlsteins +straight arrow,straight arrows +straightaway,straightaways +straight chain,straight chains +straightedge,straightedges +straightener,straighteners +straighter,straighters +straight face,straight faces +straight flush,straight flushes +straight hit,straight hits +straighthorn,straighthorns +straight line,straight lines +straight man,straight men +straight peen hammer,straight peen hammers +straight pull,straight pulls +straight-pull,straight-pulls +straight quote,straight quotes +straight razor,straight razors +straight red card,straight red cards +straight red,straight reds +straight shooter,straight shooters +straight-shooter,straight-shooters +straight,straights +straight talker,straight talkers +straight ticket,straight tickets +straightway,straightways +straighty,straighties +strain burst,strain bursts +strain energy,strain energies +strainer,strainers +strain gauge,strain gauges +straining beam,straining beams +straining,strainings +strainmeter,strainmeters +strainometer,strainometers +strain,strains +straitjacket,straitjackets +strait,straits +straitwaistcoat,straitwaistcoats +strake,strakes +strale,strales +stramazoun,stramazouns +stramenopile,stramenopiles +stramonium,stramoniums,stramonia +strander,stranders +stranding,strandings +strand line,strand lines +strandloper,strandlopers +strand,strands +strand,strands +strandwolf,strandwolves +strange attractor,strange attractors +strange bird,strange birds +strangelet,strangelets +strangeling,strangelings +strangeonium,strangeoniums,strangeonia +strange quark,strange quarks +stranger,strangers +stranglehold,strangleholds +strangler,stranglers +strangling,stranglings +strangulation,strangulations +strangury,stranguries +strannik,stranniks +strany,stranies +straphanger,straphangers +strapline,straplines +strap on,strap ons +strap-on,strap-ons +strapon,strapons +strapper,strappers +strappy top,strappy tops +strap,straps +strap strategy,strap strategies +stratagem,stratagems +strata title,strata titles +strategicness,strategicnesses +strategist,strategists +strategizer,strategizers +strategus,strategi +strategy game,strategy games +strategy pattern,strategy patterns +Stratfordian,Stratfordians +strathspey,strathspeys +strath,straths +stratification,stratifications +stratified columnar epithelium,stratified columnar epithelia +stratigrapher,stratigraphers +stratigraphist,stratigraphists +stratiomyid,stratiomyids +stratiomyiid,stratiomyiids +Stratocaster,Stratocasters +stratocracy,stratocracies +stratocumulus,stratocumuli +stratopause,stratopauses +stratosphere,stratospheres +stratotype,stratotypes +stratovolcano,stratovolcanos,stratovolcanoes +Strat,Strats +stratum corneum,strata cornea +stratum,strata +stratus,strati +Straussian,Straussians +strawberry blonde,strawberry blondes +strawberry leaf,strawberry leaves +strawberry pear,strawberry pears +strawberry shortcake,strawberry shortcakes +strawberry tree,strawberry trees +straw boss,straw bosses +straw donor,straw donors +strawflower,strawflowers +straw hat,straw hats +strawhead,strawheads +straw in the wind,straws in the wind +straw man,straw men +strawman,strawmen +straw mushroom,straw mushrooms +straw nail,straw nails +straw poll,straw polls +straw shoe,straw shoes +straw that stirs the drink,straws that stir the drink +straw tick,straw ticks +strawworm,strawworms +strayer,strayers +strayling,straylings +stray,strays +streak-backed antshrike,streak-backed antshrikes +streaker,streakers +streaking,streakings +streaklight tubeshoulder,streaklight tubeshoulders +streakline,streaklines +streak,streaks +streal,streals +streambed,streambeds +stream cipher,stream ciphers +streamer,streamers +streamertail,streamertails +streame,streames +streamlet,streamlets +streamliner,streamliners +streamline,streamlines +stream of consciousness,streams of consciousness +streamscape,streamscapes +stream,streams +streblid,streblids +streel,streels +street address,street addresses +street-arab,street-arabs +street Arab,street Arabs +street artist,street artists +streetballer,streetballers +streetcar,streetcars +street child,street children +streetcorner,streetcorners +street dancer,street dancers +street elbow,street elbows +street fighter,street fighters +streetfighter,streetfighters +streetfight,streetfights +streetful,streetfuls,streetsful +street lamp,street lamps +street-lamp,street-lamps +streetlamp,streetlamps +street-light,street-lights +streetling,streetlings +streetmap,streetmaps +street market,street markets +street musician,street musicians +street name,street names +street organ,street organs +street party,street parties +street pigeon,street pigeons +street railway,street railways +streetscape,streetscapes +streetseller,streetsellers +street,streets +street team,street teams +street urchin,street urchins +streetwalker,streetwalkers +streetwall,streetwalls +Strega,Stregas +streight,streights +Streisand effect,Streisand effects +strelitzia,strelitzias +Strelitz,Strelitzes +strene,strenes +strengthener,strengtheners +strengthening plaster,strengthening plasters +strengthening,strengthenings +strengthner,strengthners +strength,strengths +strength tester,strength testers +strenth,strenths +strepsipteran,strepsipterans +strepsirrhine,strepsirrhines +streptaxid,streptaxids +streptobacterium,streptobacteria +streptocarpus,streptocarpuses +streptocephalid,streptocephalids +streptococcus,streptococci +streptogramin,streptogramins +streptokinase,streptokinases +streptomycete,streptomycetes +streptomycin,streptomycins +streptophyte,streptophytes +streptothrix,streptothrixes +stress fracture,stress fractures +stresslet,stresslets +stressor,stressors +stress puppy,stress puppies +stress test,stress tests +stretcher-bearer,stretcher-bearers +stretcher case,stretcher cases +stretcher,stretchers +stretching,stretchings +stretch limo,stretch limos +stretch mark,stretch marks +stretchmark,stretchmarks +stretch,stretches +stretto,strettos +streusel,streusels +strewing,strewings +strewment,strewments +strewn field,strewn fields +strewnfield,strewnfields +stria,striae,striΓ¦ +striation,striations +striatum,striata +striature,striatures +strickler,stricklers +strickle,strickles +strick,stricks +strict implication,strict implications +strictly decreasing function,strictly decreasing functions +strictly increasing function,strictly increasing functions +stricture,strictures +strict vegetarian,strict vegetarians +stride bass,stride basses +stridence,stridences +stridency,stridencies +strident,stridents +strider,striders +stride,strides +strid,strids +stridulation,stridulations +stridulator,stridulators +strigid,strigids +strigil,strigils +strigment,strigments +strigoceratid,strigoceratids +strig,strigs +strike bowler,strike bowlers +strikebreaker,strikebreakers +strikee,strikees +strike force,strike forces +strikeout,strikeouts +strikeover,strikeovers +strike partner,strike partners +strike plate,strike plates +strike rate,strike rates +striker,strikers +strike sheet,strike sheets +strike-slip fault,strike-slip faults +strike-stick,strike-sticks +strike,strikes +strikethrough,strikethroughs +strike zone,strike zones +striking distance,striking distances +striking plate,striking plates +strimmer,strimmers +string band,string bands +string bean,string beans +stringboard,stringboards +string course,string courses +stringcourse,stringcourses +string distance,string distances +stringed instrument,stringed instruments +stringency,stringencies +stringendo,stringendos +string ensemble,string ensembles +stringer,stringers +string instrument,string instruments +string-net,string-nets +string orchestra,string orchestras +stringpiece,stringpieces +string quartet,string quartets +string sedge,string sedges +string theory,string theories +string trimmer,string trimmers +stringybark,stringybarks +strip bar,strip bars +strip cartoon,strip cartoons +strip club,strip clubs +stripdown,stripdowns +striped beakfish,striped beakfishes +striped catfish,striped catfish,striped catfishes +striped field mouse,striped field mice +striped hyena,striped hyenas +striped shield bug,striped shield bugs +striper,stripers +stripe,stripes +striping,stripings +strip joint,strip joints +striplight,striplights +stripline,striplines +stripling,striplings +strip loin,strip loins +striploin,striploins +strip mall,strip malls +strip mine,strip mines +strip-mine,strip-mines +stripogram,stripograms +strip party,strip parties +stripper clip,stripper clips +strippergram,strippergrams +stripper heel,stripper heels +stripper shoe,stripper shoes +stripper,strippers +strippet,strippets +strippeuse,strippeuses +stripping,strippings +strippy,strippies +strip search,strip searches +strip-search,strip-searches +strip strategy,strip strategies +stripteaser,stripteasers +striptease,stripteases +strip the willow,strip the willows +striver,strivers +strive,strives +striving,strivings +strobe light,strobe lights +strobe,strobes +strobila,strobilae +strobilation,strobilations +strobile,strobiles +strobilopsid,strobilopsids +strobilus,strobili +stroboscope,stroboscopes +strockle,strockles +stroganoff,stroganoffs +Stroh violin,Stroh violins +stroke order,stroke orders +stroker,strokers +strokesman,strokesmen +stroke,strokes +stroking,strokings +stroller,strollers +strolling,strollings +stroll,strolls +stroma,stromata +stromateid,stromateids +stromatolite,stromatolites +stromatolith,stromatoliths +stromatoporoid,stromatoporoids +strombid,strombids +strombite,strombites +stromb,strombs +strombus,strombuses,strombi +stromelysin,stromelysins +stromuhr,stromuhrs +stromule,stromules +strond,stronds +strongback,strongbacks +strongbox,strongboxes +strong declension,strong declensions +strong flour,strong flours +strong force,strong forces +stronghold,strongholds +strong interaction,strong interactions +strongling,stronglings +strongly connected component,strongly connected components +strongman game,strongman games +strong man,strong men +strongman,strongmen +strong nuclear force,strong nuclear forces +strong nuclear interaction,strong nuclear interactions +strong point,strong points +strongpoint,strongpoints +strong room,strong rooms +strongroom,strongrooms +strong silent type,strong silent types +strong suit,strong suits +strong verb,strong verbs +strong-water,strong-waters +strongwoman,strongwomen +strongyle,strongyles +strongylid,strongylids +strongylocentrotid,strongylocentrotids +strongyloid,strongyloids +strongylophthalmyiid,strongylophthalmyiids +strongyl,strongyls +stroopwafel,stroopwafels +strophanthin,strophanthins +strophanthus,strophanthuses +strophe,strophes +strophiole,strophioles +strophocheilid,strophocheilids +strophoid,strophoids +strop,strops +strouding,stroudings +stroud,strouds +stroupach,stroupachs +Strowger exchange,Strowger exchanges +Strowger switch,Strowger switches +str,strs +struck jury,struck juries +struct,structs +structural failure,structural failures +structural formula,structural formulas,structural formulae +structural isomer,structural isomers +structuralist,structuralists +structurality,structuralities +structural pattern,structural patterns +structural polysaccharide,structural polysaccharides +structurer,structurers +structure,structures +structurist,structurists +structurization,structurizations +strudel,strudels +strude,strudes +struggle-buggy,struggle-buggies +struggler,strugglers +struggle,struggles +strull,strulls +struma,strumas,strumae +strummer,strummers +strumming,strummings +strumpet,strumpets +strum,strums +strumstrum,strumstrums +struse,struses +struthiolariid,struthiolariids +struthionid,struthionids +struthonian,struthonians +strut,struts +strut,struts +strutter,strutters +stryker,strykers +Stryker,Strykers +stubber,stubbers +stubbie,stubbies +stubble rash,stubble rashes +stubby,stubbies +stub,stubs +stub-tailed morpho,stub-tailed morphos +stubtail,stubtails +stuccoer,stuccoers +stucco,stuccoes,stuccos +stuccowork,stuccoworks +stuckholder,stuckholders +Stuckist,Stuckists +stuckle,stuckles +stuck,stucks +studbook,studbooks +studder,studders +studdery,studderies +studding sail,studding sails +studding,studdings +student body,student bodies +student doctor,student doctors +student ghetto,student ghettos +studentry,studentries +studentship,studentships +Student's t distribution,Student's t distributions +Student's t test,Student's t tests +student,students +student-teacher ratio,student-teacher ratios +studfish,studfishes,studfish +studier,studiers +studio album,studio albums +studio,studios +stud mare,stud mares +studmare,studmares +studmaster,studmasters +stud muffin,stud muffins +studmuffin,studmuffins +stud,studs +stud,studs +study buddy,study buddies +study circle,study circles +study hall,study halls +study,studies +stufa,stufae +stuffed animal,stuffed animals +stuffed-animal,stuffed-animals +stuffed shirt,stuffed shirts +stuffed-shirt,stuffed-shirts +stuffer fragment,stuffer fragments +stuffer,stuffers +stuffie,stuffies +stuffing box,stuffing boxes +stuffing-box,stuffing-boxes +stuffy,stuffies +stuiver,stuivers +Stuka,Stukas +stukkie,stukkies +stull,stulls +stulm,stulms +stulp,stulps +stultification,stultifications +stultifier,stultifiers +stumblebum,stumblebums +stumbler,stumblers +stumble,stumbles +stumbling block,stumbling blocks +stumbling-block,stumbling-blocks +stumblingblock,stumblingblocks +stumbling-stone,stumbling-stones +stumbling,stumblings +stumer,stumers +stummick,stummicks +stummy,stummies +stump camera,stump cameras +stump dump,stump dumps +stumper,stumpers +stumpie,stumpies +stumpnose,stumpnoses +stump orator,stump orators +stump powder,stump powders +stump speech,stump speeches +stump,stumps +stunad,stunads +stun grenade,stun grenades +stun gun,stun guns +stunna,stunnas +stunner,stunners +stunod,stunods +stunpoll,stunpolls +stunsail,stunsails +stunt cock,stunt cocks +stunt double,stunt doubles +stuntfest,stuntfests +stunt man,stunt men +stuntman,stuntmen +stuntperson,stuntpersons,stuntpeople +stunt,stunts +stunt,stunts +stunt woman,stunt women +stuntwoman,stuntwomen +stupa,stupas +stupa,stupas +stupefacient,stupefacients +stupefier,stupefiers +stupe,stupes +stupe,stupes +stupid fucker,stupid fuckers +stupid fuck,stupid fucks +stupid-fuck,stupid-fucks +stupidfuck,stupidfucks +stupid-head,stupid-heads +stupid shit,stupid shits +stupid,stupids +stupidy,stupidies +stupor,stupors +stupour,stupours +stupration,stuprations +stuprum,stupra +sturgeon,sturgeon,sturgeons +sturionian,sturionians +sturk,sturks +Sturmvogel,Sturmvogels +sturnid,sturnids +sturt,sturts +sturt,sturts +stutterer,stutterers +stutter gun,stutter guns +stuttering,stutterings +stutter,stutters +styca,stycas +stychomythia,stychomythias +styelid,styelids +stye,styes +stygiophobia,stygiophobias +stylaster,stylasters +stylebook,stylebooks +style guide,style guides +style of cause,styles of cause +stylephorid,stylephorids +styler,stylers +style sheet,style sheets +stylesheet,stylesheets +style,styles +stylet,stylets +styling,stylings +stylinodontid,stylinodontids +stylion,stylions +stylisation,stylisations +stylist,stylists +stylite,stylites +stylization,stylizations +stylobate,stylobates,stylobata +stylocellid,stylocellids +stylodactylid,stylodactylids +stylograph,stylographs +stylohyal,stylohyals +stylolite,stylolites +stylometer,stylometers +styloniscid,styloniscids +stylonurid,stylonurids +stylophone,stylophones +stylopid,stylopids +stylopodium,stylopodia +stylopod,stylopods +stylus,styli,styluses +stymie,stymies +stymy,stymies +styphnate,styphnates +styphnic acid,styphnic acids +styptick,stypticks +styptic pencil,styptic pencils +styptic,styptics +styrax,styraxes +styrene,styrenes +styrolene,styrolenes +styrylchromone,styrylchromones +styrylpyrone,styrylpyrones +styryl,styryls +sty,sties +sty,sties +sty,sties +stythy,stythies +suanpan,suanpans +suasion,suasions +suave,suaves +suavity,suavities +subaccount,subaccounts +subacetate,subacetates +subacid,subacids +subaction,subactions +subaction,subactions +subadarship,subadarships +subadar,subadars +subadditivity,subadditivities +subadult,subadults +subadviser,subadvisers +subadvocate,subadvocates +subagency,subagencies +subagent,subagents +subahdar,subahdars +subahdary,subahdaries +subahship,subahships +subah,subahs +subalgebra,subalgebras,subalgebrae +subalmoner,subalmoners +subalternant,subalternants +subalternate,subalternates +subalternation,subalternations +subaltern,subalterns +subanalysis,subanalyses +subappendix,subappendixes,subappendices +subarachnoid space,subarachnoid spaces +subarc,subarcs +subarea,subareas +subarray,subarrays +subashi,subashis +subash,subashes +subaspect,subaspects +subassembly,subassemblies +subatmosphere,subatmospheres +subatomic particle,subatomic particles +subatom,subatoms +subattribute,subattributes +subaudition,subauditions +subaverage,subaverages +subbag,subbags +subband,subbands +subbasement,subbasements +subbase,subbases +subbasin,subbasins +subbasis,subbases +subbeadle,subbeadles +sub bench,sub benches +subblock,subblocks +subbranch,subbranches +subbrand,subbrands +subbreed,subbreeds +sub-brown dwarf,sub-brown dwarfs +subbundle,subbundles +subcamp,subcamps +subcarbonate,subcarbonates +subcarrier,subcarriers +subcascade,subcascades +subcase,subcases +subcaste,subcastes +sub-category,sub-categories +subcategory,subcategories +subcaudal,subcaudals +subceiling,subceilings +subcell,subcells +subchain,subchains +subchamber,subchambers +subchannel,subchannels +subchanter,subchanters +subchapter,subchapters +subchoice,subchoices +subchron,subchrons +subchunk,subchunks +subcinctorium,subcinctoria +subcircle,subcircles +subcircuit,subcircuits +subclade,subclades +subclan,subclans +subclassification,subclassifications +subclass,subclasses +subclause,subclauses +subclavian artery,subclavian arteries +subclavian steal syndrome,subclavian steal syndromes +subclimate,subclimates +subclone,subclones +sub-cloud car,sub-cloud cars +subclump,subclumps +subcluster,subclusters +subcode,subcodes +subcohort,subcohorts +subcollection,subcollections +subcolumn,subcolumns +subcommander,subcommanders +subcommand,subcommands +subcommission,subcommissions +subcommittee,subcommittees +subcommunity,subcommunities +subcompact,subcompacts +subcompartmentalization,subcompartmentalizations +subcompartment,subcompartments +subcomplex,subcomplexes +subcomponent,subcomponents +subconclusion,subconclusions +subcone,subcones +subconfiguration,subconfigurations +subconstellation,subconstellations +subcontext,subcontexts +subcontinent,subcontinents +subcontractee,subcontractees +subcontractor,subcontractors +subcontrary,subcontraries +subcontrol,subcontrols +subcookie,subcookies +subcortex,subcortices +subcostal,subcostals +subcourse,subcourses +subcover,subcovers +subcreator,subcreators +subcritical mass,subcritical masses +subcube,subcubes +subcuisine,subcuisines +subcultivation,subcultivations +subculture,subcultures +subcycle,subcycles +subcylinder,subcylinders +subdatabase,subdatabases +subdeaconry,subdeaconries +subdeaconship,subdeaconships +sub-deacon,sub-deacons +subdeacon,subdeacons +subdean,subdeans +subdefinition,subdefinitions +subdelegate,subdelegates +subdepartment,subdepartments +subdeposit,subdeposits +subdepot,subdepots +subderivation,subderivations +subderivative,subderivatives +subdeterminant,subdeterminants +subdevice,subdevices +subdiaconate,subdiaconates +subdiagram,subdiagrams +subdialect,subdialects +subdial,subdials +subdichotomy,subdichotomies +subdictionary,subdictionaries +subdigraph,subdigraphs +subdirectory,subdirectories +sub-discipline,sub-disciplines +subdiscipline,subdisciplines +subdistribution,subdistributions +subdistrict,subdistricts +subdivider,subdividers +subdocument,subdocuments +subdomain,subdomains +subdominant,subdominants +subdual,subduals +subduction,subductions +subduction zone,subduction zones +subduement,subduements +subduer,subduers +subdural hematoma,subdural hematomas +subdwarf,subdwarfs +subedarship,subedarships +subedar,subedars +subeditor,subeditors +sub-element,sub-elements +subelement,subelements +subempire,subempires +subendocardium,subendocardia +subendothelium,subendothelia +subensemble,subensembles +subentity,subentities +subentry,subentries +subenvironment,subenvironments +subepithelium,subepithelia +subepoch,subepochs +subequation,subequations +suberate,suberates +subergorgiid,subergorgiids +suberin,suberins +suberite,suberites +suberitid,suberitids +suberone,suberones +suberoyl,suberoyls +suberror,suberrors +sub-excavation,sub-excavations +subexpression,subexpressions +subfactor,subfactors +subfamily,subfamilies +subfeature,subfeatures +subfertility,subfertilities +subfield,subfields +subfigure,subfigures +subfilter,subfilters +subfix,subfixes +subfloor,subfloors +subfolder,subfolders +subfont,subfonts +subformat,subformats +subform,subforms +subformula,subformulas,subformulae +subfossil,subfossils +subfractionation,subfractionations +subfraction,subfractions +subfragment,subfragments +subframe,subframes +subfranchisee,subfranchisees +subfranchiser,subfranchisers +subfranchise,subfranchises +subfranchisor,subfranchisors +subfrequency,subfrequencies +subf.,subfs. +subfunctionalization,subfunctionalizations +subfunction,subfunctions +subfund,subfunds +subfusc,subfuscs +subgame,subgames +subgeneration,subgenerations +subgenome,subgenomes +subgenotype,subgenotypes +subgenre,subgenres +subgenus,subgenera +subgiant,subgiants +subglacial lake,subglacial lakes +subgoal,subgoals +subgovernor,subgovernors +subgrade,subgrades +subgradient,subgradients +subgrain,subgrains +subgrammar,subgrammars +subgrantee,subgrantees +subgrant,subgrants +subgranule,subgranules +subgraph,subgraphs +subgrid,subgrids +subgrouping,subgroupings +subgroupoid,subgroupoids +subgroup,subgroups +subhalo,subhalos,subhaloes +subhaplogroup,subhaplogroups +subharmonic,subharmonics +subhastation,subhastations +subheader,subheaders +subheading,subheadings +subheadline,subheadlines +subhead,subheads +subhelic arc,subhelic arcs +subhistory,subhistories +subhuman,subhumans +subhymenium,subhymenia +subiculum,subicula +subidentity,subidentities +subiect,subiects +subimago,subimagos +subincision,subincisions +subincusation,subincusations +subindex,subindexes,subindices +subindividual,subindividuals +subindustry,subindustries +subinfeodation,subinfeodations +subinfeudation,subinfeudations +subinspector,subinspectors +subintelligitur,subintelligiturs +subinterface,subinterfaces +subinterval,subintervals +subitem,subitems +subject case,subject cases +subject clause,subject clauses +subjecter,subjecters +subject heading,subject headings +subjectile,subjectiles +subjection,subjections +subjectist,subjectists +subjectivism,subjectivisms +subjectivist,subjectivists +subjectivity,subjectivities +subject matter,subject matters +subject-matter,subject-matters +subjector,subjectors +subject pronoun,subject pronouns +subject,subjects +subjet,subjets +subjoinder,subjoinders +subjugator,subjugators +subjunction,subjunctions +subjunctive mood,subjunctive moods +subjunct,subjuncts +subkey,subkeys +subkingdom,subkingdoms +sublabial,sublabials +sublamina,sublaminas,sublaminae +sublandlord,sublandlords +sublanguage,sublanguages +sublapsarian,sublapsarians +sublation,sublations +sublattice,sublattices +sublayer,sublayers +subleaflet,subleaflets +subleaser,subleasers +sublease,subleases +sublemma,sublemmas,sublemmata +sublessee,sublessees +sublessor,sublessors +sublet,sublets +subletter,subletters +sublettor,sublettors +sublevation,sublevations +sublevel,sublevels +sublibrarian,sublibrarians +sublibrary,sublibraries +sublicence,sublicences +sublicensee,sublicensees +sublicense,sublicenses +sublicensor,sublicensors +sublieutenancy,sublieutenancies +sub-lieutenant,sub-lieutenants +sublieutenant,sublieutenants +sublimate,sublimates +sublimation energy,sublimation energies +sublimatory,sublimatories +sublime,sublimes +subliminal message,subliminal messages +sublineage,sublineages +subline,sublines +sublingua,sublinguae +sublink,sublinks +sublist,sublists +subliterate,subliterates +subliterature,subliteratures +sublogic,sublogics +sublunary sphere,sublunary spheres +sublunary,sublunaries +subluxation,subluxations +submachine gun,submachine guns +submachine,submachines +submanager,submanagers +submanifold,submanifolds +submarine fan,submarine fans +submarine patent,submarine patents +submarine pitch,submarine pitches +submarine river,submarine rivers +submariner,submariners +submarine,submarines +submarket,submarkets +submarshal,submarshals +submatrix,submatrixes,submatrices +submediant,submediants +submeeting,submeetings +submentoplasty,submentoplasties +submentum,submenta +submenu,submenus +submergence,submergences +submersible,submersibles +submersion,submersions +submesoscale,submesoscales +submetering,submeterings +submeter,submeters +submethod,submethods +subminister,subministers +subministration,subministrations +subminority,subminorities +submission,submissions +submissive,submissives +submittal,submittals +submitter,submitters +Submitter,Submitters +submodality,submodalities +submodel,submodels +submodifier,submodifiers +submodule,submodules +submoiety,submoieties +submonoid,submonoids +submonolayer,submonolayers +submonomer,submonomers +submovement,submovements +submucosa,submucosas +submultialgebra,submultialgebras +submultiple,submultiples +submultiset,submultisets +submunition,submunitions +subnamespace,subnamespaces +subnarrative,subnarratives +subnasal,subnasals +subnector,subnectors +subnegotiation,subnegotiations +subnet,subnets +subnetwork,subnetworks +subnitrate,subnitrates +subnitride,subnitrides +subnode,subnodes +subnormal,subnormals +subnotation,subnotations +subnotebook,subnotebooks +subnucleus,subnuclei +subobject,subobjects +suboctave,suboctaves +subocular,suboculars +subofficer,subofficers +suboffice,suboffices +subopercular,suboperculars +suboperculum,subopercula +suboptimisation,suboptimisations +suboptimization,suboptimizations +suboption,suboptions +suborder,suborders +subordinary,subordinaries +subordinate clause,subordinate clauses +subordinate,subordinates +subordinating conjunction,subordinating conjunctions +subordination,subordinations +subordinator,subordinators +suborganelle,suborganelles +suborner,suborners +suboscine,suboscines +suboxide,suboxides +subpackage,subpackages +sub-page,sub-pages +subpage,subpages +subpallium,subpallia +subpanel,subpanels +sub-paragraph,sub-paragraphs +subparagraph,subparagraphs +subparameter,subparameters +subparse,subparses +subpartition,subpartitions +subpart,subparts +subpath,subpaths +subpathway,subpathways +subpattern,subpatterns +subpeak,subpeaks +subpena,subpenas +subpersonality,subpersonalities +subphase,subphases +subphenotype,subphenotypes +subphratry,subphratries +subphylum,subphyla +subpixel,subpixels +subplane,subplanes +subplot,subplots +subpocket,subpockets +subpoena ad testificandum,subpoenas ad testificandum +subpoena duces tecum,subpoenas duces tecum +subpoena,subpoenas +subpΕ“na,subpΕ“nas,subpΕ“nΓ¦ +subpoint,subpoints +subpopulation,subpopulations +subposet,subposets +subpostmaster,subpostmasters +subprefect,subprefects +subprefecture,subprefectures +subprime,subprimes +subprior,subpriors +subproblem,subproblems +subprocedure,subprocedures +subprocessor,subprocessors +subprocess,subprocesses +subproduct,subproducts +subprogramme,subprogrammes +subprogram,subprograms +subproject,subprojects +subproof,subproofs +subproposition,subpropositions +subproteome,subproteomes +sub-province,sub-provinces +subprovince,subprovinces +subpulse,subpulses +subpurchaser,subpurchasers +subpuzzle,subpuzzles +subquality,subqualities +subquark,subquarks +subquery,subqueries +subquest,subquests +subquiver,subquivers +subrace,subraces +subrange,subranges +subrank,subranks +subreaction,subreactions +subreader,subreaders +subrectangle,subrectangles +subrector,subrectors +subregional,subregionals +subregion,subregions +subregister,subregisters +subregnum,subregnums,subregna +subreligion,subreligions +sub-renter,sub-renters +subreport,subreports +subrepresentation,subrepresentations +subreption,subreptions +subresource,subresources +subresultant,subresultants +subring,subrings +subrogee,subrogees +subrogor,subrogors +subroof,subroofs +subroutine,subroutines +subrule,subrules +subsaharan,subsaharans +subsalt,subsalts +subsample,subsamples +subsatellite,subsatellites +subs' bench,subs' benches +subscale,subscales +subschema,subschemas,subschemata +subscheme,subschemes +subschool,subschools +subscience,subsciences +subscope,subscopes +subscore,subscores +subscreen,subscreens +Subscriber Identity Module,Subscriber Identity Modules +subscriber,subscribers +subscription,subscriptions +subscript,subscripts +subsection,subsections +subsector,subsectors +subsegment,subsegments +subselection,subselections +subsellium,subsellia +subsemigroup,subsemigroups +subsemitone,subsemitones +subsense,subsenses +subsentence,subsentences +subsequence,subsequences +subsequence,subsequences +subseries,subseries +subserviency,subserviencies +subset,subsets +subshell,subshells +subshift,subshifts +subshrub,subshrubs +subsidiary,subsidiaries +subsidisation,subsidisations +subsidiser,subsidisers +subsidization,subsidizations +subsidizer,subsidizers +subsidy,subsidies +subsign,subsigns +subsilicate,subsilicates +subsistence,subsistences +subsistency,subsistencies +subsister,subsisters +subsite,subsites +subsizar,subsizars +subskill,subskills +subslice,subslices +subsoiler,subsoilers +subsoil,subsoils +subsolution,subsolutions +subsong,subsongs +subspace,subspaces +subspace topology,subspace topologies +subspecialist,subspecialists +subspeciality,subspecialities +subspecialization,subspecializations +subspecialty,subspecialties +subspecies,subspecies +subspecific epithet,subspecific epithets +subspecific name,subspecific names +subspectrum,subspectra +subsphere,subspheres +subsp.,subsps. +subsquare,subsquares +substage,substages +substance,substances +substantiality,substantialities +substantial,substantials +substantia nigra,substantiae nigrae,substantia nigras +substantiation,substantiations +substantivalist,substantivalists +substantive adjective,substantive adjectives +substantive case,substantive cases +substantive,substantives +substantivisation,substantivisations +substantivity,substantivities +substantivization,substantivizations +substar,substars +substatement,substatements +substate,substates +substation,substations +substatute,substatutes +substaunce,substaunces +substem,substems +substep,substeps +substile,substiles +substituent,substituents +substitutability,substitutabilities +substitutes' bench,substitutes' benches +substitute,substitutes +substitution cipher,substitution ciphers +substitution code,substitution codes +substitution reaction,substitution reactions +substitution,substitutions +substitutor,substitutors +substorm,substorms +substory,substories +substraction,substractions +substrain,substrains +substrate,substrates +substratification,substratifications +substratum,substrata +substream,substreams +substring,substrings +substruction,substructions +substructure,substructures +subst.,substt.,substs. +substudy,substudies +substyle,substyles +subsubroutine,subsubroutines +sub,subs +subsulfide,subsulfides +subsulphate,subsulphates +subsulphide,subsulphides +subsumer,subsumers +subsumption,subsumptions +sub-superstition,sub-superstitions +subsupplier,subsuppliers +subsurface,subsurfaces +subsymbol,subsymbols +subsynchronous orbit,subsynchronous orbits +sub-system,sub-systems +subsystem,subsystems +subtable,subtables +subtab,subtabs +subtag,subtags +subtangent,subtangents +subtask,subtasks +subtaxon,subtaxa +subteam,subteams +subteen,subteens +subtelomere,subtelomeres +subtemplate,subtemplates +subtenancy,subtenancies +subtenant,subtenants +sub tender,sub tenders +subtender,subtenders +subtense,subtenses +subterm,subterms +subterrane,subterranes +subterranity,subterranities +subterrany,subterranies +subtest,subtests +subtext,subtexts +subthalamus,subthalamuses,subthalami +subtheme,subthemes +subthread,subthreads +subtility,subtilities +subtilization,subtilizations +subtilizer,subtilizers +subtitler,subtitlers +subtitle,subtitles +subtone,subtones +subtonic,subtonics +subtopic,subtopics +subtotal,subtotals +subtracter,subtracters +subtractor,subtractors +subtradition,subtraditions +subtrahend,subtrahends +subtransaction,subtransactions +subtreasurer,subtreasurers +subtreasury,subtreasuries +subtree,subtrees +subtrend,subtrends +subtribe,subtribes +subtropical,subtropicals +subtutor,subtutors +subtype polymorphism,subtype polymorphisms +subtype,subtypes +subtyping,subtypings +subulinid,subulinids +subulitid,subulitids +subulurid,subulurids +subumbrella,subumbrellas +subungulate,subungulates +subunit,subunits +subuniverse,subuniverses +suburbanite,suburbanites +suburban,suburbans +suburbian,suburbians +suburbia,suburbias +suburb,suburbs +subvariance,subvariances +subvariation,subvariations +subvariety,subvarieties +subvar.,subvars. +subvector,subvectors +subvelocity,subvelocities +subvention,subventions +subversion,subversions +subversive,subversives +subverter,subverters +subvertisement,subvertisements +subvertor,subvertors +subvert,subverts +subview,subviews +subvocalization,subvocalizations +subvolume,subvolumes +subvoxel,subvoxels +subwarden,subwardens +subwavelength,subwavelengths +subway series,subway series +subway,subways +subway tile,subway tiles +subweb,subwebs +subwindow,subwindows +subwoofer,subwoofers +subword,subwords +subworker,subworkers +subworld,subworlds +subzone,subzones +succade gourd,succade gourds +succade,succades +succah,succahs,succot,succos +succedane,succedanes +succedaneum,succedanea +succedent,succedents +succeeder,succeeders +succentor,succentors +successe,successes +successionist,successionists +succession,successions +successor,successors +successour,successours +success story,success stories +succinamate,succinamates +succinate,succinates +succineid,succineids +succinimide,succinimides +succinimidyl,succinimidyls +succinite,succinites +succinylation,succinylations +succinyl,succinyls +succinyltransferase,succinyltransferases +succorer,succorers +succourer,succourers +succour,succours +succuba,succubae +succubus,succubi,succubuses +succula,succulae +succulent,succulents +succumber,succumbers +succussation,succussations +succussion,succussions +succus,succi +such-and-such,such-and-suches +suck-ass,suck-asses +sucka,suckas +suck-boy,suck-boys +suckboy,suckboys +suckener,suckeners +suckerfish,suckerfishes,suckerfish +suckermouth,suckermouths +sucker punch,sucker punches +sucker,suckers +sucker,suckers +sucker,suckers +Sucker,Suckers +sucket,suckets +suckfest,suckfests +suckfish,suckfishes +suckhole,suckholes +sucking louse,sucking lice +sucking,suckings +sucking urge,sucking urges +suckler,sucklers +suckle,suckles +suckling,sucklings +suck out,suck outs +suckstone,suckstones +suck,sucks +suck-up,suck-ups +suckup,suckups +sucky,suckies +sucralose,sucraloses +sucrase,sucrases +sucrate,sucrates +sucre,sucres +sucroglyceride,sucroglycerides +suction cup,suction cups +suction curettage,suction curettages +suction stop,suction stops +suctorian,suctorians +sudamen,sudamina +sudamericid,sudamericids +Sudanese,Sudanese +sudangrass,sudangrasses +Sudan Red,Sudan Reds +sudary,sudaries +sudatorium,sudatoria +sudatory,sudatories +sudden fiction,sudden fictions +sudden,suddens +suddenty,suddenties +sudd,sudds +sudokuist,sudokuists +sudoku,sudokus +sudorifick,sudorificks +sudorific,sudorifics +Sudovian,Sudovians +sudser,sudsers +sud,suds +suedehead,suedeheads +suer,suers +suessiacean,suessiaceans +Sue,Sues +suevite,suevites +suey,sueys +sufferableness,sufferablenesses +sufferage,sufferages +sufferance,sufferances +sufferation,sufferations +sufferaunce,sufferaunces +sufferer,sufferers +suffering,sufferings +suffete,suffetes +sufficience,sufficiences +sufficiency,sufficiencies +sufficient condition,sufficient conditions +suffixion,suffixions +suffixoid,suffixoids +suffix,suffixes +suffix tree,suffix trees +sufflation,sufflations +sufflue,sufflues +Suffolk punch,Suffolk punches +suffossion,suffossions +suffragan,suffragans +suffragant,suffragants +suffragator,suffragators +suffragette,suffragettes +suffragist,suffragists +suffrutex,suffrutices +suffumigation,suffumigations +suffumige,suffumiges +sufganiyah,sufganiyot +Sufi,Sufis +sugan,sugans +sugar alcohol,sugar alcohols +sugar apple,sugar apples +sugar baby,sugar babies +sugar-baker,sugar-bakers +sugarbeet,sugarbeets +sugarberry,sugarberries +sugar bowl,sugar bowls +sugar bush,sugar bushes +sugarbush,sugarbushes +sugar cookie,sugar cookies +sugar cube,sugar cubes +sugardaddie,sugardaddies +sugar daddy,sugar daddies +sugarer,sugarers +sugar glider,sugar gliders +sugar high,sugar highs +sugarholic,sugarholics +sugar house,sugar houses +sugar-house,sugar-houses +sugarhouse,sugarhouses +sugar loaf,sugar loaves +sugar-loaf,sugar-loaves +sugarloaf,sugarloaves +sugarmaker,sugarmakers +sugar mama,sugar mamas +sugarman,sugarmen +sugar maple,sugar maples +sugar-maple,sugar-maples +sugar mill,sugar mills +sugar-mill,sugar-mills +sugar mouse,sugar mice +sugar parent,sugar parents +sugar pea,sugar peas +sugar phosphate,sugar phosphates +sugar pill,sugar pills +sugar pine,sugar pines +sugar plum,sugar plums +sugar-plum,sugar-plums +sugarplum,sugarplums +sugar rush,sugar rushes +sugar scoop,sugar scoops +sugar shack,sugar shacks +sugar skull,sugar skulls +sugar spoon,sugar spoons +sugar substitute,sugar substitutes +sugar thermometer,sugar thermometers +sugar tit,sugar tits +suggester,suggesters +suggestibility,suggestibilities +suggestio falsi,suggestiones falsi +suggestion box,suggestion boxes +suggestment,suggestments +suggestress,suggestresses +suggillation,suggillations +suicidal,suicidals +suicide battery,suicide batteries +suicide bomber,suicide bombers +suicide bombing,suicide bombings +suicide booth,suicide booths +suicide by cop,suicides by cop +suicide cable,suicide cables +suicide door,suicide doors +suicidee,suicidees +suicide headache,suicide headaches +suicide jockey,suicide jockeys +suicide king,suicide kings +suicide lane,suicide lanes +suicide note,suicide notes +suicide pact,suicide pacts +suicide pass,suicide passes +suicider,suiciders +suicide squeeze,suicide squeezes +suicide tree,suicide trees +suicide Tuesday,suicide Tuesdays +suicide victim,suicide victims +suicide watch,suicide watches +suicidologist,suicidologists +suid,suids +suipoxvirus,suipoxviruses +suist,suists +suitcaseful,suitcasefuls,suitcasesful +suitcase,suitcases +suit costs,suit costs +suitemate,suitemates +suite,suites +suiting,suitings +suitmaker,suitmakers +suitor,suitors +suitour,suitours +suitress,suitresses +suit,suits +sujuk,sujuks +sukkah,sukkahs,sukkot,sukkos +sukotyro,sukotyros +suk,suks +Sukuma,Sukumas +sukun,sukuns +sukΕ«n,sukΕ«ns +sulcation,sulcations +sulcification,sulcifications +sulcus,sulci +sulfacid,sulfacids +sulfadimethoxine,sulfadimethoxines +sulfa drug,sulfa drugs +sulfakinin,sulfakinins +sulfamate,sulfamates +sulfamidate,sulfamidates +sulfamidite,sulfamidites +sulfamoyl,sulfamoyls +sulfanilamide,sulfanilamides +sulfanilate,sulfanilates +sulfanylidene,sulfanylidenes +sulfanyl,sulfanyls +sulfarsenite,sulfarsenites +sulfatase,sulfatases +sulfate,sulfates +sulfatide,sulfatides +sulfenamide,sulfenamides +sulfene,sulfenes +sulfenic acid,sulfenic acids +sulfenylation,sulfenylations +sulfenylium,sulfenyliums +sulfenyl,sulfenyls +sulfhemoglobin,sulfhemoglobins +sulfhydryl,sulfhydryls +sulfidation,sulfidations +sulfide,sulfides +sulfilimine,sulfilimines +sulfimide,sulfimides +sulfimine,sulfimines +sulfinamide,sulfinamides +sulfinamidine,sulfinamidines +sulfinamine,sulfinamines +sulfinate,sulfinates +sulfine,sulfines +sulfinic acid,sulfinic acids +sulfinic anhydride,sulfinic anhydrides +sulfinimine,sulfinimines +sulfinylamine,sulfinylamines +sulfinyl,sulfinyls +sulfite,sulfites +sulfoacid,sulfoacids +sulfoaluminate,sulfoaluminates +sulfoarsenide,sulfoarsenides +sulfobenzaldehyde,sulfobenzaldehydes +sulfobenzoate,sulfobenzoates +sulfobetaine,sulfobetaines +sulfocarbonate,sulfocarbonates +sulfochloride,sulfochlorides +sulfoglycolipid,sulfoglycolipids +sulfohemoglobin,sulfohemoglobins +sulfolene,sulfolenes +sulfolipid,sulfolipids +sulfonamide,sulfonamides +sulfonate,sulfonates +sulfonediimine,sulfonediimines +sulfonephthalein,sulfonephthaleins +sulfone,sulfones +sulfonic acid,sulfonic acids +sulfonic anhydride,sulfonic anhydrides +sulfonimide,sulfonimides +sulfonphthalein,sulfonphthaleins +sulfonylamine,sulfonylamines +sulfonylation,sulfonylations +sulfonylhydrazone,sulfonylhydrazones +sulfonylimine,sulfonylimines +sulfonylketenimine,sulfonylketenimines +sulfonyltriazole,sulfonyltriazoles +sulfonylurea,sulfonylureas +sulfophenyl,sulfophenyls +sulfophosphate,sulfophosphates +sulfoquinovosyldiacylglycerol,sulfoquinovosyldiacylglycerols +sulforhodamine,sulforhodamines +sulfosalt,sulfosalts +sulfoselenide,sulfoselenides +sulfosuccinate,sulfosuccinates +sulfotransferase,sulfotransferases +sulfotyrosine,sulfotyrosines +sulfoxidation,sulfoxidations +sulfoxide,sulfoxides +sulfoximide,sulfoximides +sulfoximine,sulfoximines +sulfoxylate,sulfoxylates +sulfoxymethyl,sulfoxymethyls +sulfur alcohol,sulfur alcohols +sulfurane,sulfuranes +sulfuration,sulfurations +sulfur bacterium,sulfur bacteria +sulfur bath,sulfur baths +sulfur-bottom,sulfur-bottoms +sulfur-bottom whale,sulfur-bottom whales +sulfur butterfly,sulfur butterflies +sulfur candle,sulfur candles +sulfur cast,sulfur casts +sulfur cockatoo,sulfur cockatoos +sulfur cone,sulfur cones +sulfur-crested cockatoo,sulfur-crested cockatoos +sulfur ether,sulfur ethers +sulfuret,sulfurets +sulfuretum,sulfuretums +sulfurflower,sulfurflowers +sulfur fungus,sulfur fungi,sulfur funguses +sulfur impression,sulfur impressions +sulfurization,sulfurizations +sulfur match,sulfur matches +sulfur ore,sulfur ores +sulfur oxide,sulfur oxides +sulfur parakeet,sulfur parakeets +sulfur pearl,sulfur pearls +sulfur print,sulfur prints +sulfur shower,sulfur showers +sulfur soap,sulfur soaps +sulfur spring,sulfur springs +sulfurtransferase,sulfurtransferases +sulfur tree,sulfur trees +sulfur tuft,sulfur tufts +sulfur weed,sulfur weeds +sulfurwort,sulfurworts +sulfur yellow,sulfur yellows +sulfuryl,sulfuryls +sulfydrate,sulfydrates +sulibao,sulibaos +sulid,sulids +suling,sulings +sulker,sulkers +sulk,sulks +sulk,sulks +sulky,sulkies +sullen,sullens +sullow,sullows +sull,sulls +sulphacid,sulphacids +sulphamate,sulphamates +sulphamic acid,sulphamic acids +sulphamidate,sulphamidates +sulphamide,sulphamides +sulphamidic acid,sulphamidic acids +sulphane,sulphanes +sulphanilamide,sulphanilamides +sulphanilate,sulphanilates +sulphantimonate,sulphantimonates +sulphantimonite,sulphantimonites +sulpharsenate,sulpharsenates +sulpharsenite,sulpharsenites +sulphatase,sulphatases +sulphate,sulphates +sulphatide,sulphatides +sulphaurate,sulphaurates +sulphenamide,sulphenamides +sulphene,sulphenes +sulphenic acid,sulphenic acids +sulphenylium,sulphenyliums +sulphenyl,sulphenyls +sulphhydryl,sulphhydryls +sulphide,sulphides +sulphilimine,sulphilimines +sulphimide,sulphimides +sulphimine,sulphimines +sulphinamide,sulphinamides +sulphinamidine,sulphinamidines +sulphinate,sulphinates +sulphine,sulphines +sulphinic acid,sulphinic acids +sulphinic anhydride,sulphinic anhydrides +sulphinide,sulphinides +sulphinimine,sulphinimines +sulphinylamine,sulphinylamines +sulphinyl,sulphinyls +sulphionide,sulphionides +sulphion,sulphions +sulphiredoxin,sulphiredoxins +sulphite,sulphites +sulphoacid,sulphoacids +sulphoaluminate,sulphoaluminates +sulphobenzoate,sulphobenzoates +sulphocarbonate,sulphocarbonates +sulphocyanate,sulphocyanates +sulphocyanide,sulphocyanides +sulpholipid,sulpholipids +sulphonamide,sulphonamides +sulphonate,sulphonates +sulphonediimine,sulphonediimines +sulphone,sulphones +sulphonic acid,sulphonic acids +sulphonic anhydride,sulphonic anhydrides +sulphonimide,sulphonimides +sulphonolipid,sulphonolipids +sulphonphthalein,sulphonphthaleins +sulphonylamine,sulphonylamines +sulphonylhydrazone,sulphonylhydrazones +sulphonyl,sulphonyls +sulphonylurea,sulphonylureas +sulphophosphate,sulphophosphates +sulphophosphite,sulphophosphites +sulphoquinovosyldiacylglycerol,sulphoquinovosyldiacylglycerols +sulphosalicylic acid,sulphosalicylic acids +sulphostannate,sulphostannates +sulphotransferase,sulphotransferases +sulphotungstate,sulphotungstates +sulphoxide,sulphoxides +sulphoximide,sulphoximides +sulphoximine,sulphoximines +sulphoxylate,sulphoxylates +sulphuration,sulphurations +sulphurator,sulphurators +sulphur bottom whale,sulphur bottom whales +sulphuret,sulphurets +sulphuretum,sulphuretums +sulphurflower,sulphurflowers +sulphurity,sulphurities +sulphur nitride,sulphur nitrides +sulphur pearl,sulphur pearls +sulphurtransferase,sulphurtransferases +sulphur tuft,sulphur tufts +sulphurwort,sulphurworts +sulphuryl,sulphuryls +sulphydrate,sulphydrates +sulphydryl,sulphydryls +Sulpician,Sulpicians +Sulpitian,Sulpitians +sultam,sultams +sultana bird,sultana birds +sultana,sultanas +sultanate,sultanates +sultaness,sultanesses +sultanry,sultanries +sultan,sultans +sultany,sultanies +sultim,sultims +sultine,sultines +sultone,sultones +sulu,sulus +sumach,sumachs +Sumatran rhinoceros,Sumatran rhinoceros,Sumatran rhinoceroses,Sumatran rhinocerotes +Sumatran,Sumatrans +Sumatran tiger,Sumatran tigers +sumbitch,sumbitches +Sumerian,Sumerians +Sumerologist,Sumerologists +summand,summands +summarist,summarists +summarizer,summarizers +summary judgment,summary judgments +summary offence,summary offences +summary,summaries +summa,summas,summae +summation plural,summation plurals +summation,summations +summer boarder,summer boarders +summer camp,summer camps +summer cottage,summer cottages +summer fallow,summer fallows +summer house,summer houses +summer-house,summer-houses +summerhouse,summerhouses +summering,summerings +summer pudding,summer puddings +summer resort,summer resorts +summersault,summersaults +summer school,summer schools +summer's day,summer's days +summerset,summersets +summer solstice,summer solstices +summer soup,summer soups +summer squash,summer squashes +summer,summers +summer,summers +summer,summers +summertide,summertides +summertime,summertimes +summist,summists +summiteer,summiteers +summit,summits +summity,summities +summoner,summoners +summons,summonses +summum bonum,summa bona +summum genus,summa genera +sumner,sumners +sum of its parts,sums of their parts +SUMO protein,SUMO proteins +sumph,sumphs +sumpitan,sumpitans +sump pit,sump pits +sump pump,sump pumps +sump,sumps +sumpter,sumpters +sumption,sumptions +sumptuary tax,sumptuary taxes +sumset,sumsets +sum,sums +sum,sums +sumti,sumti +sumti tcita,sumti tcita +sum-up,sum-ups +sunami,sunamis,sunami +sunbaker,sunbakers +sunbather,sunbathers +sunbath,sunbaths +sunbeam,sunbeams +sun bear,sun bears +sunbed,sunbeds +sunbelt,sunbelts +sunberry,sunberries +sunbird,sunbirds +sun bittern,sun bitterns +sunbittern,sunbitterns +Sunbittern,Sunbitterns +sunblink,sunblinks +sunblock,sunblocks +sunbonnet,sunbonnets +sunbow,sunbows +sun-burner,sun-burners +sunburn,sunburns +sunburst chart,sunburst charts +sunburst,sunbursts +suncap,suncaps +suncatcher,suncatchers +sunchoke,sunchokes +sun cream,sun creams +suncream,suncreams +suncup,suncups +sun cure,sun cures +sundae,sundaes +sundance,sundances +Sunda pangolin,Sunda pangolins +sundart,sundarts +Sunday driver,Sunday drivers +Sunday letter,Sunday letters +Sunday motorist,Sunday motorists +Sunday name,Sunday names +Sunday out,Sunday outs +Sunday painter,Sunday painters +Sunday punch,Sunday punches +Sunday roast,Sunday roasts +Sunday school service,Sunday school services +Sunday school,Sunday schools +Sunday strip,Sunday strips +Sunday,Sundays +sun deck,sun decks +sundeck,sundecks +sunderance,sunderances +sunder,sunders +sundew,sundews +sundial,sundials +sun dog,sun dogs +sundog,sundogs +sundowner,sundowners +sundown,sundowns +sundress,sundresses +sundryman,sundrymen +sundry,sundries +sunfish,sunfish,sunfishes +sunflower oil,sunflower oils +sunflower,sunflowers +sunga,sungas +sungazer,sungazers +sunglint,sunglints +sungrebe,sungrebes +sun hat,sun hats +sunhat,sunhats +sunk cost,sunk costs +sun lamp,sun lamps +sunlamp,sunlamps +sun letter,sun letters +sunlounger,sunloungers +sun lounge,sun lounges +sunne,sunnes +Sunnite,Sunnites +sunnud,sunnuds +sunny,sunnies +sun outage,sun outages +sunperch,sunperches,sunperch +sunphotometer,sunphotometers +sun protection factor,sun protection factors +sunray,sunrays +sunrise period,sunrise periods +sunrise,sunrises +sunrising,sunrisings +sunrist,sunrists +sunroof,sunroofs +sun room,sun rooms +sunroom,sunrooms +sunrose,sunroses +sunscreen,sunscreens +sunseed,sunseeds +sunset flip,sunset flips +sunset prayer,sunset prayers +sunset,sunsets +sunshade,sunshades +sunshaft,sunshafts +sunshine agenda,sunshine agendas +sunshine law,sunshine laws +sun shower,sun showers +sunshower,sunshowers +sunspace,sunspaces +sunspot,sunspots +sunstone,sunstones +sunstroke,sunstrokes +sunsuit,sunsuits +sun,suns +suntan,suntans +sun trap,sun traps +suntrap,suntraps +sun-up,sun-ups +sunup,sunups +sunyata,sunyatas +Śūnyatā,Śūnyatās +suovetaurilia,suovetaurilias +suovitaurilia,suovitaurilias +superabounding,superaboundings +superabsorbent,superabsorbents +superaccept,superaccepts +superachiever,superachievers +superacid,superacids +superactinide,superactinides +superactivation,superactivations +superadditivity,superadditivities +superagency,superagencies +superagent,superagents +superagonist,superagonists +superalgebra,superalgebras +superalloy,superalloys +superaltar,superaltars +superaltern,superalterns +superamplitude,superamplitudes +superanion,superanions +superantigen,superantigens +superantioxidant,superantioxidants +superarrival,superarrivals +superaspirin,superaspirins +superassassin,superassassins +superathlete,superathletes +superatom,superatoms +superbabe,superbabes +superball,superballs +superband,superbands +superbank,superbanks +superbase,superbases +superbattery,superbatteries +superbazaar,superbazaars +superbeam,superbeams +superbeing,superbeings +superbenzene,superbenzenes +superbike,superbikes +superbitch,superbitches +superb lily,superb lilies +superblock,superblocks +superb lyrebird,superb lyrebirds +superboard,superboards +superbolide,superbolides +superbomber,superbombers +superbomb,superbombs +superboy,superboys +superb parrot,superb parrots +superbradyon,superbradyons +superbrain,superbrains +superbrand,superbrands +superbrat,superbrats +superbubble,superbubbles +superbug,superbugs +superbull,superbulls +superbureaucrat,superbureaucrats +superburst,superbursts +supercabinet,supercabinets +supercaffeine,supercaffeines +supercalender,supercalenders +supercapacitor,supercapacitors +supercarbonate,supercarbonates +supercargo,supercargos,supercargoes +supercarrier,supercarriers +supercar,supercars +supercasino,supercasinos +supercatalyst,supercatalysts +supercategory,supercategories +supercatenoid,supercatenoids +supercation,supercations +supercelebrity,supercelebrities +supercell,supercells +supercentenarian,supercentenarians +supercenter,supercenters +supercentre,supercentres +supercharger,superchargers +superchef,superchefs +superchron,superchrons +superchurch,superchurches +superciliary,superciliaries +supercilium,supercilia +supercinema,supercinemas +supercircle,supercircles +supercity,supercities +superclass,superclasses +supercloud,superclouds +superclub,superclubs +super cluster,super clusters +supercluster,superclusters +supercock,supercocks +supercoil,supercoils +supercollapsar,supercollapsars +supercollider,supercolliders +supercolony,supercolonies +supercolossus,supercolossi +supercommentary,supercommentaries +supercompany,supercompanies +supercomplex,supercomplexes +supercompressor,supercompressors +supercomputer,supercomputers +superconcert,superconcerts +superconductor,superconductors +superconference,superconferences +superconnection,superconnections +superconservative,superconservatives +supercontext,supercontexts +supercontig,supercontigs +supercontinent,supercontinents +supercontinuum,supercontinua +superconvergence,superconvergences +supercookie,supercookies +supercook,supercooks +supercop,supercops +supercorporation,supercorporations +supercow,supercows +supercrescence,supercrescences +supercriminal,supercriminals +supercritical fluid,supercritical fluids +supercritical mass,supercritical masses +supercruise,supercruises +supercube,supercubes +supercunt,supercunts +supercurrent,supercurrents +supercurvature,supercurvatures +supercut,supercuts +supercycle,supercycles +supercyclone,supercyclones +superdatabase,superdatabases +superdeformation,superdeformations +super delegate,super delegates +super-delegate,super-delegates +superdelegate,superdelegates +superdepartment,superdepartments +superderivation,superderivations +superdetective,superdetectives +superdevelopment,superdevelopments +superdick,superdicks +superdick,superdicks +superdiet,superdiets +superdiplomat,superdiplomats +superdiscipline,superdisciplines +superdivision,superdivisions +superdoctor,superdoctors +superdomain,superdomains +superdominant,superdominants +super-Earth,super-Earths +superegg,supereggs +superegoist,superegoists +super-ego,super-egos +superego,superegos +superelevation,superelevations +superelite,superelites +superellipse,superellipses +superellipsoid,superellipsoids +superelongation,superelongations +superencipherment,superencipherments +superequilibrium,superequilibria +supereruption,supereruptions +superessive case,superessive cases +superette,superettes +superexchange,superexchanges +superexplosive,superexplosives +superexpression,superexpressions +superexpress,superexpresses +superfactorial,superfactorials +superfamily,superfamilies +superfan,superfans +superfarm,superfarms +superfecta,superfectas +superfecundation,superfecundations +superfemale,superfemales +superfetation,superfetations +superfice,superfices +superficialist,superficialists +superficiality,superficialities +superficial,superficials +superficiary,superficiaries +superficies,superficies +superfield,superfields +superfirm,superfirms +superfix,superfixes +superflack,superflacks +superflare,superflares +superflirt,superflirts +superflood,superfloods +superflow,superflows +superfluence,superfluences +superfluid,superfluids +superfluity,superfluities +superfluorescence,superfluorescences +superfluous interval,superfluous intervals +superflux,superfluxes +superfly,superflies +superfly,superflies +superfoetation,superfoetations +superfold,superfolds +superfood,superfoods +superformula,superformulas,superformulae +superframe,superframes +superfriend,superfriends +superfrontal,superfrontals +superfruit,superfruits +superfuck,superfucks +superfund,superfunds +superfund,superfunds +Superfund,Superfunds +superfusate,superfusates +superfusion,superfusions +supergalaxy,supergalaxies +supergeek,supergeeks +supergene,supergenes +supergiant,supergiants +supergirl,supergirls +superglass,superglasses +superglobal,superglobals +supergoal,supergoals +supergovernment,supergovernments +supergranulation cell,supergranulation cells +supergranule,supergranules +supergraph,supergraphs +supergrass,supergrasses +supergrating,supergratings +supergraviton,supergravitons +supergroup,supergroups +supergun,superguns +superharmonic,superharmonics +superharvest,superharvests +superheater,superheaters +superheavy,superheavies +super heavyweight,super heavyweights +superheavyweight,superheavyweights +superhelix,superhelices,superhelixes +superheroine,superheroines +superhero,superheroes +superheterodyne receiver,superheterodyne receivers +superhet,superhets +superhighway,superhighways +superhit,superhits +superhive,superhives +superhorse,superhorses +superhub,superhubs +superhuman,superhumans +superhumeral,superhumerals +superhumping,superhumpings +superhump,superhumps +superhurricane,superhurricanes +superimposition,superimpositions +superimposure,superimposures +superindex,superindexes,superindices +superinducement,superinducements +superinduction,superinductions +superinjection,superinjections +super injunction,super injunctions +super-injunction,super-injunctions +superinjunction,superinjunctions +superinstitution,superinstitutions +superinsulator,superinsulators +superintegron,superintegrons +superintellect,superintellects +superintendent,superintendents +superintender,superintenders +superintending control,superintending controls +superinvariant,superinvariants +superion,superions +superior auricular muscle,superior auricular muscles +superior court,superior courts +superioress,superioresses +superior good,superior goods +superiority,superiorities +superior letter,superior letters +superior planet,superior planets +superiorship,superiorships +superior,superiors +superior vena cava,superior venae cavae +superiour,superiours +superisation,superisations +superization,superizations +superjail,superjails +superject,superjects +superjet,superjets +superjock,superjocks +superjumbo,superjumbos +superkey,superkeys +superkick,superkicks +superkingdom,superkingdoms +superlation,superlations +superlative,superlatives +superlattice,superlattices +superlawyer,superlawyers +superleague,superleagues +superleak,superleaks +superlens,superlenses +superliminary,superliminaries +superliner,superliners +superload,superloads +superlobbyist,superlobbyists +superlogarithm,superlogarithms +superloo,superloos +superloyalist,superloyalists +superluminescence,superluminescences +superluxury,superluxuries +supermachine,supermachines +supermajority,supermajorities +supermajor,supermajors +supermale,supermales +supermall,supermalls +supermanager,supermanagers +supermanifold,supermanifolds +Superman,Supermen +superman,supermen,supermans +supermarket,supermarkets +supermartingale,supermartingales +supermart,supermarts +supermassive black hole,supermassive black holes +supermaterial,supermaterials +supermatrix,supermatrixes,supermatrices +supermaxilla,supermaxillae +supermaxi,supermaxis +supermax,supermaxes +supermeasure,supermeasures +supermembrane,supermembranes +supermetaphor,supermetaphors +supermicro,supermicros +supermilitant,supermilitants +supermind,superminds +superminicomputer,superminicomputers +superminister,superministers +superministry,superministries +supermini,superminis +supermodel,supermodels +supermoderator,supermoderators +supermod,supermods +supermodule,supermodules +supermolecule,supermolecules +supermom,supermoms +supermonkey,supermonkeys +supermonster,supermonsters +super moon,super moons +supermoon,supermoons +Supermoon,Supermoons +Super Moon,Super Moons +SuperMoon,SuperMoons +supermotard,supermotards +supermouse,supermice +supermultiplet,supermultiplets +supermum,supermums +supermusical,supermusicals +supernanny,supernannies +supernatant,supernatants +supernate,supernates +supernation,supernations +supernaturalist,supernaturalists +supernatural,supernaturals +supernature,supernatures +supernebula,supernebulas,supernebulae +supernet,supernets +supernetwork,supernetworks +super-NiΓ±o,super-NiΓ±os +supernode,supernodes +super-note,super-notes +supernote,supernotes +supernova remnant,supernova remnants +supernova,supernovas,supernovae +supernumerary,supernumeraries +supernurse,supernurses +supernutrient,supernutrients +superocean,superoceans +superoctave,superoctaves +superon,superons +superoperator,superoperators +superorder,superorders +superordinate,superordinates +superordination,superordinations +superorganicist,superorganicists +super organism,super organisms +superorganism,superorganisms +superorgasm,superorgasms +superoutburst,superoutbursts +superoxidation,superoxidations +superoxide,superoxides +super PAC,super PACs +superparamagnet,superparamagnets +superparticle,superparticles +superparticular number,superparticular numbers +superpartner,superpartners +superpath,superpaths +superpatriot,superpatriots +superpenis,superpenises +superperson,superpersons,superpeople +superphane,superphanes +superphenomenon,superphenomena +superphone,superphones +superphylum,superphyla +superpimp,superpimps +superpipe,superpipes +superpixel,superpixels +superplague,superplagues +superplane,superplanes +superplanet,superplanets +superplant,superplants +superplasticizer,superplasticizers +superplastic,superplastics +superplayer,superplayers +superplume,superplumes +superplus,superpluses +superpod,superpods +superpolymer,superpolymers +superport,superports +superpositioning,superpositionings +superposition principle,superposition principles +superpotential,superpotentials +superpower,superpowers +superpredator,superpredators +superpremium,superpremiums +superprimary,superprimaries +superprime,superprimes +superprocess,superprocesses +superproducer,superproducers +superprofessional,superprofessionals +superprofit,superprofits +superprogrammer,superprogrammers +superproportion,superproportions +superpro,superpros +superpub,superpubs +superpurgation,superpurgations +superpussy,superpussies +superquadric,superquadrics +superrace,superraces +superradiance,superradiances +superrealist,superrealists +superreal,superreals +superreflection,superreflections +superregional,superregionals +superregion,superregions +superregnum,superregnums,superregna +superregulator,superregulators +superring,superrings +superroad,superroads +superrotation,superrotations +supersaga,supersagas +supersalary,supersalaries +supersalesman,supersalesmen +supersale,supersales +supersalt,supersalts +supersaurus,supersauruses +supersaver,supersavers +supersaw,supersaws +superscalar,superscalars +superschema,superschemas,superschemata +superschool,superschools +superscience,supersciences +superscope,superscopes +superscout,superscouts +superscreen,superscreens +superscription,superscriptions +superscript,superscripts +supersector,supersectors +supersedan,supersedans +supersedeas,supersedeases +supersedere,supersederes +superseder,superseders +supersede,supersedes +supersedure,supersedures +superselection,superselections +superseller,supersellers +supersense,supersenses +supersequence,supersequences +superseries,superseries +supersessionist,supersessionists +superset,supersets +supersewer,supersewers +supersex,supersexes +supershape,supershapes +supershedder,supershedders +supershell,supershells +supershift,supershifts +supership,superships +supershit,supershits +supershow,supershows +supersign,supersigns +supersinger,supersingers +supersinglet,supersinglets +supersister,supersisters +supersite,supersites +supersleuth,supersleuths +superslut,supersluts +supersnoop,supersnoops +supersoap,supersoaps +supersociety,supersocieties +supersoldier,supersoldiers +supersolid,supersolids +supersoliton,supersolitons +supersonic heterodyne receiver,supersonic heterodyne receivers +supersound,supersounds +superspace,superspaces +superspecialist,superspecialists +superspecial,superspecials +superspecies,superspecies +superspectacle,superspectacles +superspeed,superspeeds +superspeedway,superspeedways +supersphere,superspheres +superspinar,superspinars +superspin,superspins +superspook,superspooks +superspreader,superspreaders +superspy,superspies +supersquare,supersquares +super star cluster,super star clusters +superstar,superstars +superstate,superstates +superstation,superstations +superstimulus,superstimuli +superstitial,superstitials +Superstitial,Superstitials +superstitionist,superstitionists +superstition,superstitions +superstock,superstocks +superstore,superstores +superstorm,superstorms +superstrain,superstrains +superstrate,superstrates +superstratum,superstrata +superstrength,superstrengths +superstring,superstrings +superstruction,superstructions +superstructure,superstructures +superstud,superstuds +supersulphate,supersulphates +super,supers +super,supers +super,supers +super,supers +supersurgeon,supersurgeons +supersymmetrization,supersymmetrizations +supersystem,supersystems +supertable,supertables +supertall,supertalls +supertanker,supertankers +supertask,supertasks +supertaster,supertasters +supertaxon,supertaxa +supertax,supertaxes +superteacher,superteachers +superteam,superteams +supertensor,supertensors +superterrane,superterranes +superterrorist,superterrorists +superthriller,superthrillers +supertitle,supertitles +supertonic,supertonics +supertoroid,supertoroids +supertorus,supertori +supertrace,supertraces +supertransaction,supertransactions +supertransformation,supertransformations +supertransform,supertransforms +supertranslation,supertranslations +supertree,supertrees +supertribe,supertribes +supertube,supertubes +superturbocharger,superturbochargers +supertwister,supertwisters +supertwistor,supertwistors +supertwist,supertwists +supertype,supertypes +supertyphoon,supertyphoons +super-user,super-users +superuser,superusers +supervacaneousness,supervacaneousnesses +supervaluation,supervaluations +supervention,superventions +supervibrator,supervibrators +supervillainess,supervillainesses +supervillain,supervillains +supervirtuoso,supervirtuosos,supervirtuosi +supervirus,superviruses +supervisee,supervisees +supervision,supervisions +supervisor,supervisors +supervisory board,supervisory boards +supervisour,supervisours +supervoid,supervoids +supervolcano,supervolcanoes,supervolcanos +superwaif,superwaifs +superwave,superwaves +superweapon,superweapons +superweed,superweeds +superwide,superwides +superwife,superwives +superWIMP,superWIMPs +superwindow,superwindows +superwind,superwinds +superwoman,superwomen +super X-ray,super X-rays +superyacht,superyachts +superzone,superzones +superzoom,superzooms +supe,supes +supination,supinations +supinator,supinators +supine,supines +suplex,suplexes +supparasitation,supparasitations +suppedaneum,suppedanea +supper hour,supper hours +supper-hour,supper-hours +supperhour,supperhours +supper,suppers +supper time,supper times +supper-time,supper-times +suppertime,suppertimes +supping,suppings +supplantation,supplantations +supplanter,supplanters +supplejack,supplejacks +supplemental restraint system,supplemental restraint systems +supplemental,supplementals +supplementation,supplementations +supplement,supplements +suppletory,suppletories +suppliant,suppliants +supplicant,supplicants +supplication,supplications +supplicator,supplicators +supplicat,supplicats +supplier,suppliers +supply chain,supply chains +supply depot,supply depots +supply line,supply lines +supply-sider,supply-siders +supply side,supply sides +supply,supplies +supply teacher,supply teachers +supply vessel,supply vessels +supportability,supportabilities +support act,support acts +support dog,support dogs +supporter,supporters +support force,support forces +support group,support groups +supportress,supportresses +support,supports +support ticket system,support ticket systems +supposal,supposals +supposer,supposers +suppositio materialis,suppositiones materiales +supposition,suppositions +suppositive,suppositives +suppositor,suppositors +suppository,suppositories +supposure,supposures +suppressant,suppressants +suppresser,suppressers +suppression order,suppression orders +suppressio veri,suppressiones veri +suppressive person,suppressive persons +suppressor,suppressors +suppurant,suppurants +suppuration,suppurations +suppurative,suppuratives +supputation,supputations +supracervical hysterectomy,supracervical hysterectomies +supraclavicle,supraclavicles +suprafix,suprafixes +suprageneric name,suprageneric names +supraglottis,supraglottises +suprailium,suprailia +supralabial,supralabials +supralapsarian,supralapsarians +supralittoral,supralittorals +supraloral,supralorals +supramaxilla,supramaxillae +supramembrane,supramembranes +supramolecule,supramolecules +supranasal,supranasals +supranaturalist,supranaturalists +supranet,supranets +supranuclear palsy,supranuclear palsies +supraoccipital,supraoccipitals +supraocular,supraoculars +supraorganism,supraorganisms +supraorganization,supraorganizations +suprarenal gland,suprarenal glands +suprasegmental,suprasegmentals +supraspinatus,supraspinati +suprasternal notch,suprasternal notches +supratemporal,supratemporals +supravisor,supravisors +supremacist,supremacists +suprematist,suprematists +supreme being,supreme beings +supreme court,supreme courts +Supreme Leader,Supreme Leaders +supreme sacrifice,supreme sacrifices +supremism,supremisms +supremo,supremos +supremum,suprema +sup,sups +suq,suqs +suraddition,suradditions +surah,surahs +surangular,surangulars +sura,suras,suwar +surbahar,surbahars +surbase,surbases +surburbanite,surburbanites +surchargement,surchargements +surcharger,surchargers +surcharge,surcharges +surcingle,surcingles +surcle,surcles +surcoat,surcoats +surd,surds +sure thing,sure things +suretiship,suretiships +surety bond,surety bonds +suretyship,suretyships +surface area,surface areas +surface boundary layer,surface boundary layers +surface car,surface cars +surface-conduction electron-emitter display,surface-conduction electron-emitter displays +surface energy,surface energies +surface finish,surface finishes +surface layer,surface layers +surfaceman,surfacemen +surface of revolution,surfaces of revolution +surface plasmon,surface plasmons +surfacer,surfacers +surface ship,surface ships +surface street,surface streets +surface,surfaces +surface-to-air missile,surface-to-air missiles +surface-to-surface missile,surface-to-surface missiles +surface water,surface waters +surfactant,surfactants +surfari,surfaris +surfatron,surfatrons +surfbird,surfbirds +surfboarder,surfboarders +surfboard,surfboards +surf boat,surf boats +surfboat,surfboats +surfeiter,surfeiters +surfeit water,surfeit waters +surfel,surfels +surfer,surfers +surfie,surfies +surfman,surfmen +surform,surforms +surf rider,surf riders +surf-rider,surf-riders +surfrider,surfriders +surf ski,surf skis +surgation,surgations +surgeoncy,surgeoncies +surgeoness,surgeonesses +surgeonfish,surgeonfishes,surgeonfish +surgeon general,surgeon generals,surgeons general,surgeons generals +Surgeon General,Surgeons General +surgeonry,surgeonries +surgeon's knot,surgeon's knots +surgeon,surgeons +surge protector,surge protectors +surgery,surgeries +surge suppressor,surge suppressors +surge,surges +surgical abdomen,surgical abdomens +surgical gown,surgical gowns +surgical mask,surgical masks +surgical procedure,surgical procedures +surgicenter,surgicenters +surgiholic,surgiholics +surging,surgings +suricate,suricates +suricat,suricats +surikat,surikats +surili,surilis +surimono,surimonos,surimono +Surinamer,Surinamers +Surinamese,Surinamese +surjection,surjections +surling,surlings +surmark,surmarks +surmisal,surmisals +surmiser,surmisers +surmise,surmises +surmounter,surmounters +surmullet,surmullets +surmulot,surmulots +surname,surnames +surnay,surnays +surplice,surplices +surplusage,surplusages +surplus,surpluses,surplusses +surprisal,surprisals +surprisement,surprisements +surprise party,surprise parties +surpriser,surprisers +surprise,surprises +surprize,surprizes +surquedry,surquedries +surrealist,surrealists +surreality,surrealities +surreal number,surreal numbers +surreal,surreals +surrebuttal,surrebuttals +surrebutter,surrebutters +surrejoinder,surrejoinders +surrenderee,surrenderees +surrenderer,surrenderers +surrenderor,surrenderors +surrender,surrenders +surrendry,surrendries +surreply,surreplies +surreption,surreptions +surrey,surreys +surrogate father,surrogate fathers +surrogate key,surrogate keys +surrogate mother,surrogate mothers +surrogate parent,surrogate parents +surrogate proxy,surrogate proxies +surrogate,surrogates +surrogation,surrogations +surrogatum,surrogata +surrounding,surroundings +surround,surrounds +surroyal,surroyals +sursanure,sursanures +sursie,sursies +sursolid,sursolids +sursy,sursies +surtax,surtaxes +surtext,surtexts +surtitle,surtitles +surtout,surtouts +surucucu,surucucus +surveillance camera,surveillance cameras +surveillance,surveillances +surveillant,surveillants +surveyal,surveyals +surveyee,surveyees +survey meter,survey meters +survey monument,survey monuments +surveyorship,surveyorships +surveyor,surveyors +surveyour,surveyours +survey,surveys +surview,surviews +survivalist,survivalists +survival knife,survival knifes +survival statute,survival statutes +surviving spouse,surviving spouses +survivor,survivors +survivour,survivours +susceptance,susceptances +susceptibility,susceptibilities +susceptible,susceptibles +susception,susceptions +susceptivity,susceptivities +susceptometer,susceptometers +susceptor,susceptors +suscept,suscepts +suscipient,suscipients +sushi bar,sushi bars +sushi roll,sushi rolls +sus law,sus laws +suslik,susliks +suspecter,suspecters +suspection,suspections +suspector,suspectors +suspect,suspects +suspended cymbal,suspended cymbals +suspendee,suspendees +suspender belt,suspender belts +suspender,suspenders +suspensation,suspensations +suspense account,suspense accounts +suspenser,suspensers +suspensibility,suspensibilities +suspension bridge,suspension bridges +suspension,suspensions +suspensorium,suspensoria +suspensor,suspensors +suspensory ligament,suspensory ligaments +suspensory,suspensories +suspicion,suspicions +suspiral,suspirals +suspiration,suspirations +suspire,suspires +suspition,suspitions +sussarara,sussararas +sustainable building,sustainable buildings +sustainable tourist,sustainable tourists +sustained yield,sustained yields +sustainer,sustainers +sustain,sustains +sustentacle,sustentacles +sustentation,sustentations +sustention,sustentions +susurrance,susurrances +susurration,susurrations +susurrus,susurruses +sutlership,sutlerships +sutler,sutlers +sutra,sutras +sΕ«tra,sΕ«tras +SΕ«tra,SΕ«tras +suttle,suttles +suture,sutures +SUV,SUVs +S.U.V.,S.U.V.s,S.U.V.'s +suwarrow,suwarrows +suya,suyas +suzani,suzanis +suzerain,suzerains +Suzuki reaction,Suzuki reactions +svarabhakti,svarabhaktis +svarita,svaritas +svedberg,svedbergs +svengali,svengalis +sverdrup,sverdrups +svirel,svirels +SV,SVs +swabber,swabbers +swabbie,swabbies +swabbing,swabbings +swabby,swabbies +Swabe,Swabes +Swabian,Swabians +Swabish,Swabishes +swab,swabs +Swaddler,Swaddlers +swaddle,swaddles +swaddling clothes,swaddling clothes +Swadesh list,Swadesh lists +swad,swads +swagbelly,swagbellies +swage block,swage blocks +swage,swages +swaggerer,swaggerers +swagger portrait,swagger portraits +swagger stick,swagger sticks +swagger,swaggers +swaggie,swaggies +swaggy,swaggies +swagman,swagmen +swag,swags +swag,swags +swag,swags +swainling,swainlings +swainmote,swainmotes +swain,swains +swale,swales +swallet,swallets +swallie,swallies +swallow dive,swallow dives +swallower,swallowers +swallowe,swallowes +swallowfish,swallowfish +swallow hole,swallow holes +swallow,swallows +swallow,swallows +swallowtail,swallowtails +swallowwort,swallowworts +swami,swamis +swamp azalea,swamp azaleas +swamp cooler,swamp coolers +swamper,swampers +swamp gum,swamp gums +swamphen,swamphens +swamping,swampings +swamp maple,swamp maples +swamp pine,swamp pines +swamp,swamps +swamp wallaby,swamp wallabies +swamp white oak,swamp white oaks +swan boat,swan boats +swan dive,swan dives +swanee whistle,swanee whistles +swan goose,swan geese +swang,swangs +swanherd,swanherds +swanimote,swanimotes +swankie,swankies +swank,swanks +swanling,swanlings +swanmark,swanmarks +swannery,swanneries +swanpan,swanpans +swan song,swan songs +swansong,swansongs +Swan,Swans +swan,swans,swan +swan upper,swan uppers +swape,swapes +swap file,swap files +swapfile,swapfiles +swap meet,swap meets +swapmeet,swapmeets +swapper,swappers +swapportunity,swapportunities +swap,swaps +swaption,swaptions +sward,swards +swaree,swarees +swarmer,swarmers +swarming,swarmings +swarm spore,swarm spores +swarmspore,swarmspores +swarm,swarms +swartback,swartbacks +swart,swarts +swartzite,swartzites +swashbuckler,swashbucklers +swasher,swashers +swashway,swashways +swastika,swastikas +swatchel,swatchels +swatch,swatches +swather,swathers +swathe,swathes +swathing,swathings +swath,swaths +Swati,Swatis,Swati +swat,swats +SWAT,SWATs +swatter,swatters +swatting,swattings +S wave,S waves +S-wave,S-waves +sway bar,sway bars +swaybar,swaybars +sway-bracing,sway-bracings +swayer,swayers +swaying,swayings +sway,sways +Swazilander,Swazilanders +Swazi,Swazis +Swazi,Swazis,Swazi +swazzle,swazzles +SWCNT,SWCNTs +sweam,sweams +swear box,swear boxes +swearer,swearers +swear,swears +swear word,swear words +swearword,swearwords +sweatband,sweatbands +sweatbox,sweatboxes +sweatdrop,sweatdrops +sweater dress,sweater dresses +sweater-dress,sweater-dresses +sweaterdress,sweaterdresses +sweater girl,sweater girls +sweatermaker,sweatermakers +sweater,sweaters +sweater vest,sweater vests +sweat gland,sweat glands +sweating iron,sweating irons +sweat lodge,sweat lodges +sweatmeat,sweatmeats +sweatpant,sweatpants +sweat pore,sweat pores +sweat shirt,sweat shirts +sweatshirt,sweatshirts +sweat shop,sweat shops +sweatshop,sweatshops +sweatsuit,sweatsuits +sweb,swebs +Swedenborgian,Swedenborgians +swede,swedes +Swede,Swedes +Swedish drink,Swedish drinks +Swedish Vallhund,Swedish Vallhunds +Swedophone,Swedophones +sweepage,sweepages +sweepback,sweepbacks +sweeper,sweepers +sweeping day,sweeping days +sweep saw,sweep saws +sweeps stunt,sweeps stunts +sweepstake,sweepstakes +sweep,sweeps +sweepwasher,sweepwashers +sweet-and-sour sauce,sweet-and-sour sauces +sweet basil,sweet basils +sweet birch,sweet birches +sweet bread,sweet breads +sweetbread,sweetbreads +sweetbrier,sweetbriers +sweet cherry,sweet cherries +sweet chestnut,sweet chestnuts +sweetener,sweeteners +sweetfish,sweetfishes,sweetfish +sweet flag,sweet flags +sweet gale,sweet gales +sweetgum,sweetgums +sweet gum tree,sweet gum trees +sweetheart deal,sweetheart deals +sweetheart neckline,sweetheart necklines +sweetheart,sweethearts +sweetie,sweeties +sweeting,sweetings +sweetkin,sweetkins +sweet leaf,sweet leaves +sweetleaf,sweetleaves,sweetleafs +sweetling,sweetlings +sweetlips,sweetlips +sweetmaker,sweetmakers +sweetmeat,sweetmeats +sweet oil,sweet oils +sweet orange,sweet oranges +sweet pea,sweet peas +sweetpea,sweetpeas +sweet potato,sweet potatoes +sweet seventeen,sweet seventeens +sweet shop,sweet shops +sweetshop,sweetshops +sweet sixteen,sweet sixteens +sweetsop,sweetsops +sweet spot,sweet spots +sweet tooth,sweet tooths +sweetvetch,sweetvetches +sweet water,sweet waters +sweetwater,sweetwaters +sweetwort,sweetworts +sweet young thing,sweet young things +sweety,sweeties +sweight,sweights +sweinmote,sweinmotes +sweller,swellers +swellfish,swellfishes,swellfish +swellhead,swellheads +swelling,swellings +swell,swells +swelltoad,swelltoads +swelter,swelters +swept path,swept paths +sweven,swevens +SWF,SWFs +swidden,swiddens +swift boat,swift boats +swifter,swifters +swiftie,swifties +swiftlet,swiftlets +swift,swifts +swigger,swiggers +swig,swigs +swike,swikes +swiller,swillers +swillking,swillkings +swill,swills +swimathon,swimathons +swim bladder,swim bladders +swim-bladder,swim-bladders +swimbladder,swimbladders +swim cap,swim caps +swim fin,swim fins +swimfin,swimfins +swim lane,swim lanes +swimlane,swimlanes +swimmeret,swimmerets +swimmer,swimmers +swimming bell,swimming bells +swimming costume,swimming costumes +swimming crab,swimming crabs +swimming goggles,swimming goggles +swimming hole,swimming holes +swimming pool,swimming pools +swimming trunks,swimming trunks +swimmist,swimmists +swimsuit,swimsuits +swim,swims +swindler,swindlers +swindle,swindles +swinecote,swinecotes +swineherder,swineherders +swineherd,swineherds +swineling,swinelings +swinepipe,swinepipes +swinery,swineries +swinestone,swinestones +swinesty,swinesties +swine,swine,swines +swingarm,swingarms +swingboat,swingboats +swing bridge,swing bridges +swingbridge,swingbridges +swingby,swingbys +swing dog,swing dogs +swing door,swing doors +swingebuckler,swingebucklers +swingel,swingels +swinger,swingers +swinger,swingers +swinge,swinges +swingframe,swingframes +swinging bunt,swinging bunts +swinging-door chad,swinging-door chads +swinglebar,swinglebars +swingle,swingles +swingletail,swingletails +swingletree,swingletrees +swing loan,swing loans +swingman,swingmen +swingometer,swingometers +swing riot,swing riots +swingset,swingsets +swing shift,swing shifts +swing state,swing states +swing,swings +swingtree,swingtrees +swing voter,swing voters +swing vote,swing votes +swinker,swinkers +swink,swinks +swipecard,swipecards +swiper,swipers +swiple,swiples +swipple,swipples +swire,swires +swirlie,swirlies +swirl,swirls +swirly,swirlies +swisher,swishers +swishing,swishings +swish,swishes +Swiss Army knife,Swiss Army knives +Swiss arrow,Swiss arrows +Swiss bank account,Swiss bank accounts +Swiss bank,Swiss banks +Swissess,Swissesses +Swiss franc,Swiss francs +Swiss German,Swiss Germans +Swiss roll,Swiss rolls +Swiss shower,Swiss showers +Swiss,Swisses,Swiss +switcharoo,switcharoos +switchback,switchbacks +switchblade,switchblades +switchboard,switchboards +switchel,switchels +switcheroo,switcheroos +switcher,switchers +switchgirl,switchgirls +switch hitter,switch hitters +switch-hitter,switch-hitters +switch hook,switch hooks +switchhook,switchhooks +switch horn,switch horns +switching,switchings +switchman,switchmen +switchout,switchouts +switchover,switchovers +switch pitcher,switch pitchers +switchroom,switchrooms +switch,switches +switchyard,switchyards +Switzer,Switzers +swivel chair,swivel chairs +swivel gun,swivel guns +swivel,swivels +swivet,swivets +swiving,swivings +swiz,swizes +swizzle stick,swizzle sticks +swizzle,swizzles +swizz,swizzes +SWM,SWMs +swobber,swobbers +swob,swobs +swod,swods +swoe,swoes +swomp,swomps +swooner,swooners +swoon,swoons +swooper,swoopers +swoopstake,swoopstakes +swoop,swoops +swoose,swooses,sweese +swoosh,swooshes +swopper,swoppers +swop,swops +sword arm,sword arms +sword-bearer,sword-bearers +swordbearer,swordbearers +swordbelt,swordbelts +swordbill,swordbills +swordboat,swordboats +sword-breaker,sword-breakers +sworder,sworders +sworde,swordes +swordfighter,swordfighters +swordfight,swordfights +swordfishing boat,swordfishing boats +swordfish sucker,swordfish suckers +swordfish,swordfish,swordfishes +sword hand,sword hands +swordick,swordicks +sword knot,sword knots +swordmaker,swordmakers +swordman,swordmen +sword of Damocles,swords of Damocles +swordplayer,swordplayers +swordplay,swordplays +swordpoint,swordpoints +swordsmanship,swordsmanships +swordsman,swordsmen +swordsmith,swordsmiths +swordswoman,swordswomen +s-word,s-words +sword,swords +swordtail,swordtails +swot,swots +swot vac,swot vacs +swough,swoughs +swound,swounds +swown,swowns +swung dash,swung dashes +swype,swypes +SXT,SXTs +sybarite,sybarites +Sybarite,Sybarites +Sybil,Sybils +syboe,syboes +sybo,sybos,syboes +sycamine,sycamines +sycamore maple,sycamore maples +sycee,sycees +syce,syces +sycettid,sycettids +sycite,sycites +sycock,sycocks +sycomore fig,sycomore figs +sycomore,sycomores +syconium,syconia +sycophancy,sycophancies +sycophant,sycophants +sycosis,sycoses +Sydney funnel-web spider,Sydney funnel-web spiders +Sydneyite,Sydneyites +Sydney-sider,Sydney-siders +Sydneysider,Sydneysiders +sydnone,sydnones +Syeda,Syedas +syenite,syenites +syght,syghts +syke,sykes +syle,syles +syli,sylis +syllaba anceps,syllabae ancipites +syllabarium,syllabariums,syllabaria +syllabary,syllabaries +syllabe,syllabes +syllabic abbreviation,syllabic abbreviations +syllabic break,syllabic breaks +syllabic rhyme,syllabic rhymes +syllabic,syllabics +syllabist,syllabists +syllable,syllables +syllabogram,syllabograms +syllabub,syllabubs +syllabus,syllabi,syllabuses +sylloge,sylloges +syllogism,syllogisms +syllogizer,syllogizers +sylphide,sylphides +sylphid,sylphids +sylph,sylphs +sylvanite,sylvanites +sylvan,sylvans +sylvate,sylvates +Sylvian fissure,Sylvian fissures +sylvicolid,sylvicolids +sylviculturist,sylviculturists +sylviid,sylviids +sylvine,sylvines +sylvinite,sylvinites +symarr,symarrs +symar,symars +symbal,symbals +symbiogenesis,symbiogeneses +symbiont,symbionts +symbiosis,symbioses +symbiote,symbiotes +symbiotic star,symbiotic stars +symbiotic,symbiotics +symblepharon,symblepharons,symblephara +symbolic expression,symbolic expressions +symbolic link,symbolic links +symbolist,symbolists +symbolizer,symbolizers +symbologist,symbologists +symbol,symbols +symlink,symlinks +symmetric difference,symmetric differences +symmetric function,symmetric functions +symmetric group,symmetric groups +symmetrician,symmetricians +symmetric matrix,symmetric matrices +symmetric polynomial,symmetric polynomials +symmetrisation,symmetrisations +symmetrist,symmetrists +symmetrization,symmetrizations +symmetry,symmetries +symmocid,symmocids +symmoriid,symmoriids +sympathectomy,sympathectomies +sympathetic detonation,sympathetic detonations +sympathetic vibration,sympathetic vibrations +sympathiser,sympathisers +sympathist,sympathists +sympathizer,sympathizers +sympathoexcitation,sympathoexcitations +sympatholytic,sympatholytics +sympathomimetic,sympathomimetics +sympathy card,sympathy cards +sympathy,sympathies +sympatry,sympatries +sympercent,sympercents +symphonic poem,symphonic poems +symphoniette,symphoniettes +symphonist,symphonists +symphony orchestra,symphony orchestras +symphony,symphonies +symphysanodontid,symphysanodontids +symphysis pubis,symphyses pubis +symphysis,symphyses +symphysotomy,symphysotomies +symphysy,symphysies +symphytognathid,symphytognathids +sympiesometer,sympiesometers +sympiezometer,sympiezometers +symplasia,symplasias +symplast,symplasts +symplectomorphism,symplectomorphisms +symplesiomorphy,symplesiomorphies +symploce,symploces +sympode,sympodes +sympodium,sympodia +symporter,symporters +symport,symports +symposiac,symposiacs +symposiarch,symposiarchs +symposiast,symposiasts +symposium,symposiums,symposia +symproportionation,symproportionations +symptomatologist,symptomatologists +symptom journal,symptom journals +symptom,symptoms +synΓ¦resis,synΓ¦reses +synΓ¦sthesia,synΓ¦sthesiΓ¦,synΓ¦sthesias +synaesthesia,synaesthesias +synaesthete,synaesthetes +synΓ¦sthete,synΓ¦sthetes +synagog,synagogs +synagogue-goer,synagogue-goers +synagoguegoer,synagoguegoers +synagogue,synagogues +synanceiid,synanceiids +synandrium,synandria +synangium,synangia +synantherologist,synantherologists +synaphobranchid,synaphobranchids +synapomorphy,synapomorphies +synapophysis,synapophyses +synapse,synapses +synapsid,synapsids +synapsin,synapsins +synapsis,synapses +synaptase,synaptases +synapticula,synapticulae,synapticulas +synaptid,synaptids +synaptiphilid,synaptiphilids +synaptobrevin,synaptobrevins +synaptojanin,synaptojanins +synaptoneurosome,synaptoneurosomes +synaptopathy,synaptopathies +synaptophysin,synaptophysins +synaptosome,synaptosomes +synaptotagmin,synaptotagmins +synarchy,synarchies +synarthrosis,synarthroses +synaxid,synaxids +synaxis,synaxes +synbranchid,synbranchids +syncarid,syncarids +syncarpium,syncarpia +syncarp,syncarps +synchondrosis,synchondroses +synchrocyclotron,synchrocyclotrons +synchroid,synchroids +synchromesh,synchromeshes +synchronicity,synchronicities +synchronisation proxy,synchronisation proxies +synchronisation,synchronisations +synchronised swimmer,synchronised swimmers +synchronization domain,synchronization domains +synchronization gear,synchronization gears +synchronization proxy,synchronization proxies +synchronization,synchronizations +synchronized clock,synchronized clocks +synchronized swimmer,synchronized swimmers +synchronology,synchronologies +synchronous orbit,synchronous orbits +synchronous speed,synchronous speeds +synchrophasor,synchrophasors +synchroscope,synchroscopes +synchrotron,synchrotrons +synch,synchs +synchysis,synchyses +synchysite,synchysites +syncitium,syncitia +synclinal,synclinals +syncline,synclines +synclinorium,synclinoriums,synclinoria +syncope,syncopes +syncopist,syncopists +syncretism,syncretisms +syncretist,syncretists +syncretization,syncretizations +syncrisis,syncrises +sync,syncs +syncword,syncwords +syncytialization,syncytializations +syncytin,syncytins +syncytiotrophoblast,syncytiotrophoblasts +syncytium,syncytia +syndactyle,syndactyles +syndapin,syndapins +syndecan,syndecans +syndemic,syndemics +syndesmosis,syndesmoses +syndeton,syndetons +syndicalism,syndicalisms +syndicalist,syndicalists +syndicate,syndicates +syndication agency,syndication agencies +syndication,syndications +syndicator,syndicators +syndick,syndicks +syndic,syndics +syndoche,syndoches +syndrome,syndromes +synecdoche,synecdoches +synecdochy,synecdochies +synechdoche,synechdoches +synecism,synecisms +synecologist,synecologists +syneresis,synereses +synergid,synergids +synergist,synergists +synergy,synergies +synesthete,synesthetes +synexin,synexins +synform,synforms +synfuel,synfuels +syngameon,syngameons +syngamid,syngamids +syngnathid,syngnathids +syngraph,syngraphs +synizesis,synizeses +synkinesia,synkinesias +synlestid,synlestids +synnema,synnemata +synneurosis,synneuroses +synocil,synocils +synocracy,synocracies +synodal,synodals +synodic month,synodic months +synodic period,synodic periods +synodist,synodists +synodontid,synodontids +synod,synods +synoecism,synoecisms +synΕ“cism,synΕ“cisms +synomone,synomones +synonyme,synonymes +synonymia,synonymiae +synonymicon,synonymicons +synonymist,synonymists +synonymization,synonymizations +synonym ring,synonym rings +synonym,synonyms +synonymy,synonymies +synopsis,synopses +Synoptic,Synoptics +synoptist,synoptists +synosteosis,synosteoses +synostosis,synostoses +synotaxid,synotaxids +synovectomy,synovectomies +synovial capsule,synovial capsules +synovial membrane,synovial membranes +synoviocyte,synoviocytes +synoviopathy,synoviopathies +synovium,synovia +synphilin,synphilins +synsacrum,synsacrums,synsacra +synset,synsets +syntactician,syntacticians +syntagma,syntagmata,syntagmas +syntagmeme,syntagmemes +syntagm,syntagms +syntaxeme,syntaxemes +syntax highlighting,syntax highlightings +syntaxin,syntaxins +syntax,syntaxes +synteliid,synteliids +syntenin,syntenins +synthase,synthases +synthemid,synthemids +synthemistid,synthemistids +synthesiser,synthesisers +synthesis,syntheses +synthesist,synthesists +synthesizer,synthesizers +synthespian,synthespians +synthetase,synthetases +synthetic air,synthetic airs +synthetic fiber,synthetic fibers +synthetic paper,synthetic papers +synthetic,synthetics +syntheton,synthetons +synthone,synthones +synthon,synthons +synthronus,synthroni +synth,synths +syntrophin,syntrophins +syntroph,syntrophs +synt,synts +syntype,syntypes +synucleinopathy,synucleinopathies +syphilide,syphilides +syphilitic,syphilitics +syphiloderm,syphiloderms +syphilologist,syphilologists +syphon,syphons +Syracusan,Syracusans +syrah,syrahs +syren,syrens +syrette,syrettes +Syriacism,Syriacisms +Syriacist,Syriacists +Syriac,Syriacs +Syrianism,Syrianisms +Syrian,Syrians +Syriasm,Syriasms +syringa,syringas +syringe,syringes +syringocoele,syringocoeles +syringogastrid,syringogastrids +syringomyelia,syringomyelias +syringotome,syringotomes +syringotomy,syringotomies +syrinx,syrinxes,syringes +syrma,syrmas +syrnolid,syrnolids +Syrophoenician,Syrophoenicians +syrop,syrops +syrphian,syrphians +syrphid,syrphids +syrphus fly,syrphus flies +syrphus,syrphuses +syrtis,syrtes +syrt,syrts +syrt,syrts +sysadmin,sysadmins +sysad,sysads +syscall,syscalls +sysop,sysops +system architecture,system architectures +systematic element name,systematic element names +systematicist,systematicists +systematic name,systematic names +systematiser,systematisers +systematism,systematisms +systematist,systematists +systematization,systematizations +systematizer,systematizers +systematology,systematologies +systemic circulation,systemic circulations +systemizer,systemizers +system of equations,systems of equations +system pull,system pulls +systempunkt,systempunkts +systems analyst,systems analysts +systems architecture,systems architectures +systems science,systems sciences +system,systems +systole,systoles +systolic blood pressure,systolic blood pressures +systray,systrays +systrophiid,systrophiids +systyle,systyles +sythe,sythes +syzygy,syzygies +szmikite,szmikites +szomolnokite,szomolnokites +T1,T1s +taaffeite,taaffeites +taarof,taarofs +taa,taas +taa,taas +tabanid,tabanids +tabard,tabards +Tabasaran,Tabasarans +Tabassaran,Tabassarans +tabbouleh,tabboulehs +tab control,tab controls +tabebuia,tabebuias +tabefaction,tabefactions +tabellion,tabellions +tabernacle,tabernacles +Tabernacle,Tabernacles +taberna,tabernas +taber,tabers +tabes dorsalis,tabes dorsales +tabes,tabes +tabinet,tabinets +tabiya,tabiyas +tabla,tablas +tablature,tablatures +table apple,table apples +tableau,tableaux,tableaus +tableau vivant,tableaux vivants +tablebase,tablebases +table board,table boards +tablebook,tablebooks +table cloth,table cloths +table-cloth,table-cloths +tablecloth,tablecloths +table dancer,table dancers +table dance,table dances +table decoration,table decorations +table d'hΓ΄te,tables d'hΓ΄te +tableful,tablefuls,tablesful +table-hopper,table-hoppers +tablehopper,tablehoppers +table lamp,table lamps +tableland,tablelands +table linen,table linens +table manners,table manners +tableman,tablemen +tablemate,tablemates +tablemat,tablemats +tablement,tablements +table mountain,table mountains +table of contents,tables of contents +tabler,tablers +table saw,table saws +tablescape,tablescapes +table scrap,table scraps +table setting,table settings +tablespace,tablespaces +tablespoonful,tablespoonfuls,tablespoonsful +tablespoon,tablespoons +table,tables +tablet computer,tablet computers +tabletop,tabletops +tablet PC,tablet PCs +tablet,tablets +table wine,table wines +tabling,tablings +tablinum,tablinums +tabloid,tabloids +tabnab,tabnabs +taboo,taboos +taborer,taborers +taboret,taborets +taborine,taborines +Taborite,Taborites +tabor,tabors +tabor,tabors +tabouret,tabourets +tabour,tabours +tab page,tab pages +tabret,tabrets +tab stop,tab stops +tab,tabs +tab,tabs +tab,tabs +tab,tabs +Tab,Tabs +tabula,tabulae +tabulation,tabulations +tabulator,tabulators +tacamahaca,tacamahacas +tacamahac,tacamahacs +tace,taces +tacheometer,tacheometers +tache,taches +tache,taches +tache,taches +tachina,tachinas,tachinae +tachinid,tachinids +tachistoscope,tachistoscopes +tachocline,tachoclines +tachograph,tachographs +tachometer,tachometers +tachometre,tachometres +tacho,tachos +tach,tachs +tachyglossid,tachyglossids +tachykinin,tachykinins +tachylite,tachylites +tachylyte,tachylytes +tachymeter,tachymeters +tachymetre,tachymetres +tachyon,tachyons +tachyphylaxis,tachyphylaxes +tachysystole,tachysystoles +tachyzoite,tachyzoites +tack claw,tack claws +tacker,tackers +tacket,tackets +tackey,tackeys +tackie,tackies +tackifier,tackifiers +tacklebox,tackleboxes +tackle fall,tackle falls +tackler,tacklers +tackle twill,tackle twills +tacksman,tacksmen +tacksman,tacksmen +tack,tacks +tack,tacks +tacnode,tacnodes +taco bumper,taco bumpers +taco fest,taco fests +taconite,taconites +taco salad,taco salads +taco,tacos +tactical aeromedical evacuation,tactical aeromedical evacuations +tactical air commander,tactical air commanders +tactical air control center,tactical air control centers +tactical call sign,tactical call signs +tactician,tacticians +tactick,tacticks +tactic,tactics +tactometer,tactometers +tact,tacts +Taczanowski's tinamou,Taczanowski's tinamous +tadago-pie,tadago-pies +tadger,tadgers +tadpole shrimp,tadpole shrimps +tadpole,tadpoles +TAED,TAEDs +tael,taels +taeniacanthid,taeniacanthids +taeniasis,taeniases +tΓ¦niasis,tΓ¦niases +taenia,taenias,taeniae +tΓ¦nia,tΓ¦nias,tΓ¦niΓ¦ +taenicide,taenicides +tΓ¦nicide,tΓ¦nicides +taenidium,taenidia +taenifuge,taenifuges +taeniid,taeniids +taeniodont,taeniodonts +taeniolabidid,taeniolabidids +taeniola,taeniloae +taeniopterygid,taeniopterygids +taenite,taenites +tafferel,tafferels +tafferer,tafferers +taffeta,taffetas +taffrail log,taffrail logs +taffrail,taffrails +taff,taffs +Taffy,Taffys +tafone,tafoni +tafsir,tafsir +TAF,TAFs +Tagalog,Tagalog,Tagalogs +tagalong,tagalongs +tagboard,tagboards +tag cloud,tag clouds +tag end,tag ends +tagete,tagetes +taggant,taggants +taggee,taggees +tagger,taggers +tagging interface,tagging interfaces +tagging,taggings +tagholder,tagholders +tagine,tagines +taglet,taglets +taglia,taglias +tag line,tag lines +tagline,taglines +taglioni,taglionis +taglock,taglocks +tagma,tagmata +tagmeme,tagmemes +tag question,tag questions +tag sale,tag sales +tag,tags +tagtail,tagtails +tag team,tag teams +taguan,taguans +tagua nut,tagua nuts +tagua palm,tagua palms +tahasil,tahasils +taha,tahas +tahil,tahils +Tahitian chestnut,Tahitian chestnuts +Tahitian,Tahitians +tahr,tahrs +tahsil,tahsils +tai chi chuan,tai chi chuans +tai chi,tai chis +taiga,taigas +taig,taigs +taiji,taijis +taikonaut,taikonauts +taiko,taikos +tailage,tailages +tailback,tailbacks +tail-bay,tail-bays +tail block,tail blocks +tailblock,tailblocks +tailboard,tailboards +tail bone,tail bones +tailbone,tailbones +tailbud,tailbuds +tail call,tail calls +tailcoat,tailcoats +tailcup,tailcups +tail dragger,tail draggers +taildragger,taildraggers +tailed frog,tailed frogs +Tail End Charlie,Tail End Charlies +Tail-End Charlie,Tail-End Charlies +tailender,tailenders +tail end,tail ends +tail-end,tail-ends +taileron,tailerons +tailer,tailers +tail fin,tail fins +tailfin,tailfins +tailgate party,tailgate parties +tailgater,tailgaters +tailgate,tailgates +tail gunner,tail gunners +tailhead,tailheads +tailing,tailings +taillamp,taillamps +taillie,taillies +tail lift,tail lifts +tail light,tail lights +taillight,taillights +tailorbird,tailorbirds +tailoress,tailoresses +tailoring,tailorings +tailor's dummy,tailors' dummies +tailor's ham,tailors' hams +tailor,tailors +tailour,tailours +tail pad,tail pads +tailpiece,tailpieces +tailpin,tailpins +tailpipe,tailpipes +tailplane,tailplanes +tailrace,tailraces +tail recursion,tail recursions +tail rhyme,tail rhymes +tailsitter,tailsitters +tailspin,tailspins +tailspot,tailspots +tailstock,tailstocks +tailstrike,tailstrikes +tail,tails +tailwheel,tailwheels +tailwhip,tailwhips +tailwind,tailwinds +tailzie,tailzies +taimen,taimens +tainoceratid,tainoceratids +tainter gate,tainter gates +tainter,tainters +taint,taints +taint,taints +taint,taints +tainture,taintures +taintworm,taintworms +taipan,taipans +taipan,taipans +taipo,taipos +taira,tairas +tairn,tairns +tait,taits +Taiwanese,Taiwanese +tajassu,tajassus +Tajikistani,Tajikistani +Tajik,Tajiks +tajine,tajines +takaful,takafuls +takahe,takahes +takahΔ“,takahΔ“s +taka,takas +takbir,takbirs +takeaway,takeaways +takeback,takebacks +takedown,takedowns +take-home,take-homes +takehome,takehomes +take-off,take-offs +takeoff,takeoffs +take or pay,take or pays +takeout double,takeout doubles +takeout,takeouts +takeover bid,takeover bids +takeover,takeovers +taker,takers +take sign,take signs +take,takes +Take Thatter,Take Thatters +take up,take-ups +take-up,take-ups +takeup,takeups +takfirism,takfirisms +takfiri,takfiris +takin,takins +takir,takirs +takkie,takkies +taklu,taklus +takyr,takyrs +talapoin,talapoins +talaq,talaqs +talar,talars +tala,talas +talbot,talbots +talbot,talbots +talbotype,talbotypes +talbotypist,talbotypists +talc,talcs +talcum powder,talcum powders +tale bearer,tale bearers +tale-bearer,tale-bearers +talebearer,talebearers +talebearing,talebearings +talebook,talebooks +talectomy,talectomies +taled,taleds +talegalla,talegallas +talent-spotter,talent-spotters +talent,talents +taler,talers +talesman,talesmen +talesman,talesmen +tales,tales +tale,tales +tale,tales +taleteller,taletellers +Taliban,Taliban,Talibans +Talibaptist,Talibaptists +Talib,Talibs +talinum,talinums +talipot palm,talipot palms +talipot,talipots +talisman,talismans +talitrid,talitrids +talk-aholic,talk-aholics +talkaholic,talkaholics +talkaholic,talkaholics +talk aloud protocol,talk aloud protocols +talk-aloud protocol,talk-aloud protocols +talkathon,talkathons +talkback,talkbacks +talkboard,talkboards +talk box,talk boxes +talkbox,talkboxes +talkee,talkees +talker,talkers +talkfest,talkfests +talkie,talkies +talking clock,talking clocks +talking drum,talking drums +talking head,talking heads +talking point,talking points +talking-point,talking-points +talking shop,talking shops +talking statue,talking statues +talking-to,talkings-to +talk page,talk pages +talk radio,talk radios +talk-radio,talk-radios +talk shop,talk shops +talk show,talk shows +talkshow,talkshows +talk,talks +tallage,tallages +tallat,tallats +tallboy,tallboys +tall-case clock,tall-case clocks +tall drink of water,tall drinks of water +tallero,talleros +tallet,tallets +tallgrass,tallgrasses +tallier,talliers +Tallinner,Tallinners +tallis,tallises,talleitim,tallism +tallith,talliths +tallit,tallits,tallitot +tall man,tall men +tall oil,tall oils +tall one,tall ones +tallophyte,tallophytes +tall order,tall orders +tallot,tallots +tallower,tallowers +tallow tree,tallow trees +tall pawn,tall pawns +tall pocosin,tall pocosins +tall poppy,tall poppies +tall ship,tall ships +tall story,tall stories +tall tale,tall tales +Tall White,Tall Whites +tally ho,tally hos +tally-ho,tally-hos +tallyho,tallyhos +tallyman,tallymen +tally room,tally rooms +tally shop,tally shops +tally,tallies +tallywacker,tallywackers +tallywhacker,tallywhackers +talma,talmas +talmouse,talmouses +Talmudist,Talmudists +talonid,talonids +talon,talons +talookdar,talookdars +talook,talooks +talopyranose,talopyranoses +Talossan,Talossans +talpid,talpids +talukdar,talukdars +taluk,taluks +taluqdar,taluqdars +taluq,taluqs +talus,tali +talus,taluses +talwar,talwars +talweg,talwege,talwegs +Talysh,Talyshs +tamada,tamadas +Tamagotchi,Tamagotchis +tamale,tamales +tamal,tamales +tamandua,tamanduas +tamanoir,tamanoirs +tamanu,tamanus +tamarack,tamaracks +tamarao,tamaraos +tamarau,tamaraus +tamaraw,tamaraws,tamaraw +Tamari lattice,Tamari lattices +tamarillo,tamarillos +tamarin,tamarins +tamarisk,tamarisks +tamavidin,tamavidins +tambala,tambalas +tambon,tambon +Tambookie,Tambookies +tambourine,tambourines +tambourinist,tambourinists +tambourin,tambourins +tambour,tambours +tambou,tambous +tambura,tamburas +tamburin,tamburins +tamburitza,tamburitzas +tamer,tamers +Tamilian,Tamilians +Tamil,Tamils +tamis,tamises +tamkin,tamkins +tammy,tammies +tammy,tammies +tammy,tammies +tam o'shanter,tam o'shanters +tam-o'-shanter,tam-o'-shanters +tampan,tampans +tampeon,tampeons +tamperer,tamperers +tamper,tampers +tamping iron,tamping irons +tampion,tampions +tampoe,tampoes +tamponade,tamponades +tampon,tampons +tampoon,tampoons +tam,tams +tam-tam,tam-tams +Tamul,Tamuls +tanager,tanagers +Tanaina,Tanainas,Tanaina +tanaostigmatid,tanaostigmatids +tana,tanas +tanbur,tanburs +tanda,tandas +tandem engine,tandem engines +tandem gait,tandem gait +tandem,tandems +T and O map,T and O maps +tandoor,tandoors +tangalung,tangalungs +Tanganyikan,Tanganyikans +tangasaurid,tangasaurids +tangelo,tangelos +tangence,tangences +tangency,tangencies +tangent plane,tangent planes +tangent,tangents +tangerine,tangerines +Tangerine,Tangerines +tangible asset,tangible assets +tangibleness,tangiblenesses +tangible,tangibles +tangled nest spider,tangled nest spiders +tangler,tanglers +tangle,tangles +tangle,tangles +tango,tangos,tangoes +tangram,tangrams +tang,tangs +tang,tangs +tang,tangs +tang,tangs +tangun,tanguns +Tangutologist,Tangutologists +tangyuan,tangyuans +tanist,tanists +taniwha,taniwha +tankage,tankages +tankard,tankards +tanka,tankas +Tanka,Tankas +tankbuster,tankbusters +tank destroyer,tank destroyers +tankdrome,tankdromes +tank engine,tank engines +tanker aircraft,tanker aircraft +tanker boot,tanker boots +tanker,tankers +tankette,tankettes +tankful,tankfuls,tanksful +tankia,tankias +tankie,tankies +tankini,tankinis +tankling,tanklings +tank loaf,tank loaves +tankmate,tankmates +tankodrome,tankodromes +tank park,tank parks +tank slapper,tank slappers +tank,tanks +tank,tanks +tank top,tank tops +tanktop,tanktops +tank town,tank towns +tank trap,tank traps +tank wagon,tank wagons +tankwagon,tankwagons +tankyrase,tankyrases +tan line,tan lines +tanling,tanlings +tannase,tannases +tannate,tannates +tanner,tanners +tanner,tanners +tannery,tanneries +tannic acid,tannic acids +tannicity,tannicities +tannie,tannies +tanning bed,tanning beds +tannin,tannins +tannoy,tannoys +tanoak,tanoaks +tanooki,tanooki,tanookis +tanrec,tanrecs +tanru,tanru +tan shen,tan shens +tanshinone,tanshinones +tansu,tansus,tansu +tantalate,tantalates +tantalism,tantalisms +tantalite,tantalites +tantalization,tantalizations +tantalizer,tantalizers +tantalus,tantaluses +tantamount,tantamounts +tan,tans +tantara,tantaras +tantivy,tantivies +tanto knife,tanto knifes +tantony pig,tantony pigs +tanto,tantos +tantra,tantras +tantrum,tantrums +tanuki,tanuki,tanukis +tanween,tanweens +tanwin,tanwins +tanyard,tanyards +tanycyte,tanycytes +tanyderid,tanyderids +tanypezid,tanypezids +Tanzanian,Tanzanians +tanzanite,tanzanites +taoiseach,taoiseachs,taoisigh +Taoism,Taoisms +Taoist,Taoists +taotie,taoties +tap and go,tap and gos +tapa,tapas +tapayaxin,tapayaxins +tap-dancer,tap-dancers +tap dance,tap dances +tap drill,tap drills +tape deck,tape decks +tape delay,tape delays +tape drive,tape drives +tapejarid,tapejarids +tape library,tape libraries +tapeline,tapelines +tape measure,tape measures +tape player,tape players +taper candle,taper candles +tape recorder,tape recorders +taperer,taperers +tapering,taperings +taper pin,taper pins +taper,tapers +taper,tapers +tape safe,tape safes +tapescript,tapescripts +tapespondent,tapespondents +tapestry,tapestries +tapetail,tapetails +tape,tapes +tapeti,tapetis +tapet,tapets +tapetum lucidum,tapeta lucida +tapetum,tapeta +tape-worm,tape-worms +tapezine,tapezines +taphophile,taphophiles +taphouse,taphouses +tapinocephalid,tapinocephalids +tapinosis,tapinoses +tap in,tap ins +tap-in,tap-ins +tapioca pearl,tapioca pearls +tapioca pudding,tapioca puddings +tapirid,tapirids +tapir,tapirs +tapiser,tapisers +tapis,tapises +tapotement,tapotements +tappee,tappees +tapper,tappers +tappet,tappets +tapping,tappings +tappit hen,tappit hens +taproom,taprooms +taproot,taproots +tapster,tapsters +tap-tackle,tap-tackles +tap,taps +tap,taps +tap,taps +tapu,tapus +taqua nut,taqua nuts +taqueria,taquerias +taquerΓ­a,taquerΓ­as +taquito,taquitos +tarakihi,tarakihis +taramosalata,taramosalatas +taran,tarans +tarantass,tarantasses +tarantella,tarantellas +tarantula hawk,tarantula hawks +tarantula killer,tarantula killers +tarantula,tarantulas,tarantulae +Tarascan,Tarascans +Tarasco,Tarascos +tarasque,tarasques +taratantara,taratantaras +tarator,tarators +tarbaby,tarbabies +tarbagan,tarbagans +tarball,tarballs +tar boil,tar boils +tar-boil,tar-boils +tarboosh,tarbooshes +tar-brush,tar-brushes +tarbrush,tarbrushes +tardigrade,tardigrades +tardis,tardises +Tardis,Tardises +TARDIS,TARDISes +tardive dyskinesia,tardive dyskinesias +tardling,tardlings +tardo,tardos +'tard,'tards +tard,tards +tardyon,tardyons +tardy slip,tardy slips +tardy,tardies +Tareen,Tareens,Tareen +Tarentine,Tarentines +tarentula,tarentulas +tare,tares +tare,tares +targe,targes +target audience,target audiences +target cell,target cells +target domain,target domains +targeted killing,targeted killings +targeteer,targeteers +targeter,targeters +target group,target groups +targetier,targetiers +targeting,targetings +target language,target languages +target market,target markets +target rating point,target rating points +target,targets +target text,target texts +Targumist,Targumists +Targum,Targumim +targum,targums,targumim +tarhana,tarhanas +Tar Heel,Tar Heels +tariff,tariffs +taring,tarings +tarin,tarins +tariqa,tariqas +tariqat,tariqats +tarkhan,tarkhans +Tarkhun,Tarkhuns +tarlatan,tarlatans +tarmacadam,tarmacadams +tarmac,tarmacs +tarnisher,tarnishers +tarn,tarns +tarogato,tarogatos +tarotist,tarotists +tarot,tarots +tarpan,tarpans +tarpaper,tarpapers +tarpaulin,tarpaulins +tarphyceratid,tarphyceratids +tarpit,tarpits +tarpot,tarpots +tarp,tarps +tarpum,tarpums +tarrace,tarraces +tarradiddle,tarradiddles +Tarragonan,Tarragonans +tarriance,tarriances +tarrier,tarriers +tarrier,tarriers +tarrock,tarrocks +tarry,tarries +tarsal bone,tarsal bones +tarsale,tarsalia +tarsal,tarsals +tar sand,tar sands +tarsand,tarsands +tarsectomy,tarsectomies +tarsel,tarsels +tarse,tarses +tarse,tarses +tarse,tarses +tarsia,tarsias +tarsier,tarsiers +tarsiid,tarsiids +tarsipedid,tarsipedids +tarsomere,tarsomeres +tarsometatarsus,tarsometatarsi +tarsonemid,tarsonemids +tarsorrhaphy,tarsorrhaphies +tarsotomy,tarsotomies +tarsus,tarsi +tartan,tartans +tartan,tartans +tartan tax,tartan taxes +tartare sauce,tartare sauces +Tartarian,Tartarians +tartaric acid,tartaric acids +tartarization,tartarizations +tar,tars +tar,tars +tar,tars +tartar sauce,tartar sauces +Tartar,Tartars +tart burner,tart burners +tarte flambΓ©e,tarte flambΓ©es +Tartessian,Tartessians +tarte Tatin,tartes Tatin +tartlet,tartlets +tartness,tartnesses +tartramate,tartramates +tartramide,tartramides +tartrate,tartrates +tartronate,tartronates +tart,tarts +tart,tarts +tartuffe,tartuffes +tarweed,tarweeds +tarwhine,tarwhines,tarwhine +Tarzan,Tarzans +Tasbeha,Tasbehas +taser,tasers +tasimeter,tasimeters +taskbar,taskbars +taskboard,taskboards +tasker,taskers +task force,task forces +task-force,task-forces +taskforce,taskforces +tasklist,tasklists +taskmaster,taskmasters +taskmistress,taskmistresses +task,tasks +taslet,taslets +Tasmanian blue gum,Tasmanian blue gums +Tasmanian devil,Tasmanian devils +Tasmanian,Tasmanians +Tasmanian tiger,Tasmanian tigers +Tasmanian wolf,Tasmanian wolves +tassell,tassells +tasselseed,tasselseeds +tassel,tassels +tasseographer,tasseographers +tasse,tasses +tasset,tassets +tassie,tassies +tass,tasses +tass,tasses +tastant,tastants +tas,tasses +taste bud,taste buds +tastebud,tastebuds +tastefulness,tastefulnesses +tastelessness,tastelessnesses +tastemaker,tastemakers +taster,tasters +tastevin,tastevins +tastiness,tastinesses +tasting menu,tasting menus +tasting,tastings +tast,tasts +Taswegian,Taswegians +TATA box,TATA boxes +tataki,tatakis +tatami,tatamis,tatami +Tatarian,Tatarians +Tatar,Tatars +tata,tatas +tataupa,tataupas +Tataupa tinamou,Tataupa tinamous +tatch,tatches +tatee,tatees +tater,taters +tath,taths +tatonnement,tatonnements +tatouay,tatouays +tatou,tatous +tatpurusa,tatpurusas +tatpuruαΉ£a,tatpuruαΉ£as +tatta,tattas +tat,tats +tat,tats +Tat,Tats +tatterdemalion,tatterdemalions +tattersall,tattersalls +tatter,tatters +tattie cake,tattie cakes +tattie scone,tattie scones +tattie,tatties +tatting,tattings +tattler,tattlers +tattletale,tattletales +tattle tell,tattle tells +tattoo artist,tattoo artists +tattooee,tattooees +tattooer,tattooers +tattoo gun,tattoo guns +tattooing,tattooings +tattooist,tattooists +tattoo machine,tattoo machines +tattoo,tattoos +tattoo,tattoos +tattoo,tattoos +tatt,tatts +tattva,tattvas +tatty cake,tatty cakes +tatty scone,tatty scones +tatty,tatties +tatu,tatus +Tatzelwurm,Tatzelwurms +tau lepton,tau leptons +tau neutrino,tau neutrinos +taunter,taunters +tauntress,tauntresses +taunt,taunts +tauon,tauons +tauopathy,tauopathies +taupe,taupes +taurate,taurates +Taurean,Taureans +tauridor,tauridors +taurocholate,taurocholates +tauroctony,tauroctonies +tauromachian,tauromachians +Taurus,Tauruses +tau,taus +tautochrone,tautochrones +tautogram,tautograms +tautog,tautogs +tautologia,tautologias +tautologist,tautologists +tautomerase,tautomerases +tautomerization,tautomerizations +tautomer,tautomers +tautonym,tautonyms +Tavastian,Tavastians +taverna,tavernas +taverner,taverners +taverning,tavernings +tavernkeeper,tavernkeepers +tavernman,tavernmen +tavern,taverns +tavla,tavlas +tav,tavs +tawaf,tawafs +tawdry lace,tawdry laces +tawer,tawers +tawery,taweries +tawn,tawns +tawny-breasted tinamou,tawny-breasted tinamous +tawny owl,tawny owls +tawpie,tawpies +tawse,tawses +taws,tawses +taw,taws +taw,taws +taw,taws +tawyer,tawyers +taxable income,taxable incomes +taxable,taxables +taxane,taxanes +tax assessment,tax assessments +tax authority,tax authorities +tax bite,tax bites +taxbite,taxbites +tax bracket,tax brackets +tax break,tax breaks +tax clinic,tax clinics +tax collector,tax collectors +tax dodger,tax dodgers +taxee,taxees +taxel,taxels +taxer,taxers +tax evader,tax evaders +taxgatherer,taxgatherers +tax haven,tax havens +taxiarch,taxiarchs +taxibus,taxibuses +taxicab distance,taxicab distances +taxicab,taxicabs +taxi dancer,taxi dancers +taxi-dancer,taxi-dancers +taxidermist,taxidermists +taxi driver,taxi drivers +taxifolin,taxifolins +taximan,taximen +taximeter,taximeters +tax incentive,tax incentives +taxine,taxines +taxi pole,taxi poles +taxi rank,taxi ranks +taxi stand,taxi stands +taxis,taxes +taxi,taxis,taxies +taxiway,taxiways +tax lot,tax lots +taxman,taxmen +taxobox,taxoboxes +taxodiacean,taxodiaceans +taxodium,taxodiums +tax office,tax offices +taxogram,taxograms +taxoid,taxoids +taxol,taxols +taxonomic system,taxonomic systems +taxonomist,taxonomists +taxonomizer,taxonomizers +taxonomy,taxonomies +taxon,taxa +taxor,taxors +taxpayer,taxpayers +tax protester,tax protesters +tax rate,tax rates +tax reduction,tax reductions +tax resister,tax resisters +tax return,tax returns +tax revenue,tax revenues +tax shelter,tax shelters +tax shield,tax shields +tax stamp,tax stamps +tax value,tax values +taxwoman,taxwomen +tayassuid,tayassuids +tayberry,tayberries +Taylor series,Taylor series +tayra,tayras +tay,tays +Tayto,Taytos +tazel,tazels +tazia,tazias +tazi,tazis +tazza,tazzas,tazze +t-barb,t-barbs +T-bill,T-bills +TBM,TBMs +T-bone steak,T-bone steaks +T-bone,T-bones +TB,TBs +tbyte,tbytes +T-carrier,T-carriers +TCA,TCAs +T cell,T cells +T-cell,T-cells +tcf,tcf +Tchaikovskian,Tchaikovskians +tchervonets,tchervontsy +tchetverik,tchetveriks +tchetvert,tchetverts +tchick,tchicks +tchotchke,tchotchkes +TCL,TCLs +t-conorm,t-conorms +t-crosser,t-crossers +TCR,TCRs +T-Day,T-Days +TDRS,TDRSs +tea and toaster,tea and toasters +tea-and-toaster,tea-and-toasters +teabagger,teabaggers +teabagging,teabaggings +tea bag,tea bags +teabag,teabags +teaberry,teaberries +teabox,teaboxes +tea caddy,tea caddies +teacake,teacakes +tea cart,tea carts +tea ceremony,tea ceremonies +teacherage,teacherages +teacheress,teacheresses +teachership,teacherships +teacher's pet,teacher's pets,teachers' pets +teacher,teachers +tea chest,tea chests +teache,teaches +teaching hospital,teaching hospitals +teaching,teachings +teach-in,teach-ins +tea cloth,tea cloths +tea cosy,tea cosies,tea cozies +tea cozy,tea cozies +teacupful,teacupfuls,teacupsful +tea cup,tea cups +tea-cup,tea-cups +teacup,teacups +tea dance,tea dances +teade,teades +tea egg,tea eggs +teagle,teagles +Teague,Teagues +teahadist,teahadists +teahead,teaheads +tea house,tea houses +teahouse,teahouses +tea jenny,tea jennies +teakettler,teakettlers +tea kettle,tea kettles +teakettle,teakettles +tea leaf,tea leaves +tea-leaf,tea-leaves +tealeaf,tealeaves +tea light,tea lights +tealight,tealights +teal,teals +teamaker,teamakers +teambuilder,teambuilders +teamer,teamers +teamkiller,teamkillers +team-mate,team-mates +teammate,teammates +team player,team players +teamsheet,teamsheets +team sport,team sports +Teamster,Teamster +teamster,teamsters +team,teams +tea pad,tea pads +tea party,tea parties +Tea Party,Tea Parties +tea plant,tea plants +teapot,teapots +teapoy,teapoys +tearaway,tearaways +tear-down,tear-downs +teardown,teardowns +teardrop,teardrops +teardrop tubeshoulder,teardrop tubeshoulders +tear duct,tear ducts +tearer,tearers +teare,teares +tear gas,tear gases +tear gland,tear glands +tear-jerker,tear-jerkers +tearjerker,tearjerkers +tea room,tea rooms +tearoom,tearooms +tearpit,tearpits +tear sheet,tear sheets +tearsheet,tearsheets +tearstain,tearstains +tear,tears +tear,tears +tearthumb,tearthumbs +teaseler,teaselers +teasel,teasels +teaser rate,teaser rates +teaser,teasers +tea service,tea services +tease,teases +tea set,tea sets +tea shop,tea shops +teashop,teashops +teasing,teasings +teasle,teasles +Teasmade,Teasmades +teaspoonful,teaspoonfuls,teaspoonsful +teaspoon,teaspoons +tea strainer,tea strainers +tea table,tea tables +teatard,teatards +teathe,teathes +tea-time,tea-times +teatime,teatimes +tea towel,tea towels +tea-towel,tea-towels +teatowel,teatowels +tea tray,tea trays +teatray,teatrays +tea tree,tea trees +tea trolley,tea trolleys +teat,teats +tea-urn,tea-urns +tea wagon,tea wagons +teaze-hole,teaze-holes +teazel,teazels +teazer,teazers +teazer,teazers +teazle,teazles +tebibit,tebibits +tebibyte,tebibytes +techie,techies +technetate,technetates +technical analysis,technical analyses +technical analyst,technical analysts +technical drawing,technical drawings +technical foul,technical fouls +technicality,technicalities +technical knockout,technical knockouts +technical stop,technical stops +technical tap,technical taps +technical,technicals +technical tee,technical tees +technical term,technical terms +technician,technicians +technicist,technicists +Technicolor yawn,Technicolor yawns +technic,technics +technifermion,technifermions +technigluon,technigluons +techniphone,techniphones +techniquark,techniquarks +technique,techniques +technism,technisms +technobureaucracy,technobureaucracies +technobureaucrat,technobureaucrats +technocomplex,technocomplexes +technocracy,technocracies +technocrat,technocrats +technocritic,technocritics +technoecosystem,technoecosystems +technofix,technofixes +techno geek,techno geeks +technogeek,technogeeks +technoid,technoids +technojunkie,technojunkies +technolect,technolects +technological university,technological universities +technologist,technologists +technology transfer,technology transfers +technology tree,technology trees +tech-nomad,tech-nomads +technomad,technomads +technonerd,technonerds +technopagan,technopagans +technopath,technopaths +technopeasant,technopeasants +technophile,technophiles +technophilia,technophilias +technophobe,technophobes +technophobia,technophobias +technoplegic,technoplegics +technopolis,technopolises,technopoleis +technopolymer,technopolymers +technopoly,technopolies +technopreneur,technopreneurs +technorealist,technorealists +technosexual,technosexuals +technoshaman,technoshamans +technosociety,technosocieties +technosol,technosols +technosphere,technospheres +technostructure,technostructures +technotard,technotards +technote,technotes +technothriller,technothrillers +technotopian,technotopians +techno-utopian,techno-utopians +technoutopian,technoutopians +technoweenie,technoweenies +technowizard,technowizards +tech,techs +tečka,tečky +tecnonym,tecnonyms +'tec,'tecs +tectibranchiate,tectibranchiates +tectibranch,tectibranchs +tectiform,tectiforms +tectivirus,tectiviruses +tectonicist,tectonicists +tectonic plate,tectonic plates +tectonic uplift,tectonic uplifts +tectonophysicist,tectonophysicists +tectorium,tectoria +tectosilicate,tectosilicates +tectosphere,tectospheres +tectrix,tectrices +tect,tects +tectum,tecta +tedder,tedders +teddy bear,teddy bears +teddy boy,teddy boys +Teddy boy,Teddy boys +teddy,teddies +tede,tedes +Te Deum,Te Deums +tedge,tedges +ted,teds +Ted,Teds +tee line,tee lines +teelseed,teelseeds +teemer,teemers +teen-ager,teen-agers +teenager,teenagers +tee-name,tee-names +teener,teeners +teenpreneur,teenpreneurs +teen,teens +teen,teens +teenth,teenths +teeny-bopper,teeny-boppers +teenybopper,teenyboppers +teepee,teepees +tee shirt,tee shirts +teeshirt,teeshirts +Teessider,Teessiders +teest,teests +teetan,teetans +tee,tees +tee,tees +teetee,teetees +teetee,teetees +teeterboarder,teeterboarders +teeterboard,teeterboards +teeter-tail,teeter-tails +teeter-totter,teeter-totters +teetertotter,teetertotters +teethbrush,teethbrushes +teether,teethers +teething ring,teething rings +teetotaler,teetotalers +teetotaller,teetotallers +teetotum,teetotums +teet,teets +teewit,teewits +teff,teffs +tegastid,tegastids +tegestologist,tegestologists +tegg,teggs +tegmen,tegmina +tegmentum,tegmentums +teg,tegs +teguexin,teguexins +tegula,tegulae +tegument,teguments +tegu,tegus +te-hee,te-hees +tehsildar,tehsildars +tehsil,tehsils +teichoic acid,teichoic acids +teichuronic acid,teichuronic acids +teicoplanin,teicoplanins +teiid,teiids +teil,teils +teilzone,teilzones +teind,teinds +teinoscope,teinoscopes +teint,teints +teinture,teintures +Tejano,Tejanos +tekke,tekkes +teknonym,teknonyms +tektite,tektites +tektosilicate,tektosilicates +telamon,telamons,telamones +telangiectasia,telangiectasias +telangiectasis,telangiectases +tela,telas +telautograph,telautographs +telco,telcos +teld,telds +telebooth,telebooths +telebriefing,telebriefings +telebureau,telebureaus,telebureaux +telecall,telecalls +telecaster,telecasters +telecast,telecasts +telecenter,telecenters +telecentre,telecentres +telecheck,telechecks +telecine,telecines +telecipher,teleciphers +teleclass,teleclasses +teleclinic,teleclinics +telecoil,telecoils +telecommand,telecommands +telecommunicator,telecommunicators +telecommuter,telecommuters +telecomputer,telecomputers +telecom,telecoms +teleconference,teleconferences +teleconnection,teleconnections +telecon,telecons +telecontroller,telecontrollers +teleconverter,teleconverters +telecopier,telecopiers +telecopy,telecopies +telecottage,telecottages +telecourse,telecourses +teledensity,teledensities +teledrama,teledramas +teledu,teledus +telefacsimile,telefacsimiles +telefactor,telefactors +telefax,telefaxes +telefelony,telefelonies +telega,telegas +telegeusid,telegeusids +telegramme,telegrammes +telegram,telegrams +telegraph code,telegraph codes +telegrapher,telegraphers +telegraphing,telegraphings +telegraphist,telegraphists +telegraph line,telegraph lines +telegraphone,telegraphones +telegraph pole,telegraph poles +telegraph post,telegraph posts +telegraph,telegraphs +telegraphy,telegraphies +telehandler,telehandlers +teleiophile,teleiophiles +telejournalist,telejournalists +telelecture,telelectures +telemanipulator,telemanipulators +telemarketer,telemarketers +telemark turn,telemark turns +telemeeting,telemeetings +telementor,telementors +telemeter,telemeters +telemetre,telemetres +telemicroscope,telemicroscopes +telemid,telemids +telemonitor,telemonitors +telemovie,telemovies +telencephalon,telencephalons,telencephala +telenovela,telenovelas +telenovel,telenovels +telenurse,telenurses +teleoanalysis,teleoanalyses +teleological argument,teleological arguments +teleologist,teleologists +teleology,teleologies +teleomorph,teleomorphs +teleonomist,teleonomists +teleoperation,teleoperations +teleoperator,teleoperators +teleosaurid,teleosaurids +teleosaur,teleosaurs +teleostean,teleosteans +teleost,teleosts +telepaper,telepapers +telepathist,telepathists +telepath,telepaths +telepatient,telepatients +telephone answering machine,telephone answering machines +telephone book,telephone books +telephone booth,telephone booths +telephone box,telephone boxes +telephone call,telephone calls +telephone card,telephone cards +telephone conference,telephone conferences +telephone directory,telephone directories +telephone jack,telephone jacks +telephone kiosk,telephone kiosks +telephone line,telephone lines +telephone number,telephone numbers +telephone operator,telephone operators +telephone pole,telephone poles +telephoner,telephoners +telephone,telephones +telephonist,telephonists +telephonograph,telephonographs +telephotographer,telephotographers +telephotographic lens,telephotographic lenses +telephotograph,telephotographs +telephoto lens,telephoto lenses +telephoto,telephotos +teleplay,teleplays +telepoint,telepoints +telepolariscope,telepolariscopes +teleportal,teleportals +teleportation,teleportations +teleporter,teleporters +teleport,teleports +teleprinter,teleprinters +teleprint,teleprints +teleprocessor,teleprocessors +teleprogramme,teleprogrammes +teleprogram,teleprograms +teleprompter,teleprompters +telepsychiatrist,telepsychiatrists +telepsychic,telepsychics +teleputer,teleputers +teleradiologist,teleradiologists +telerecording,telerecordings +telerobot,telerobots +telesatellite,telesatellites +telescopefish,telescopefishes,telescopefish +telescope,telescopes +telescopic star,telescopic stars +telescopist,telescopists +telescreen,telescreens +teleseller,telesellers +teleseminar,teleseminars +teleserial,teleserials +teleshopper,teleshoppers +teleshow,teleshows +telesm,telesms +telespectator,telespectators +telespectroscope,telespectroscopes +telestation,telestations +telestereoscope,telestereoscopes +telestich,telestichs +telestrator,telestrators +telesurgeon,telesurgeons +telesurgery,telesurgeries +telesync,telesyncs +teleteacher,teleteachers +tele,teles +teletherapy,teletherapies +telethermometer,telethermometers +telethermoscope,telethermoscopes +telethon,telethons +teletimer,teletimers +teletsunami,teletsunamis,teletsunami +Teletubby,Teletubbies +teletutorial,teletutorials +teletutor,teletutors +teletype,teletypes +teletypewriter,teletypewriters +teletypist,teletypists +teleutospore,teleutospores +televangelist,televangelists +televillage,televillages +televisionary,televisionaries +television channel,television channels +television network,television networks +television personality,television personalities +television program,television programs +television series,television series +television set,television sets +television station,television stations +televisor,televisors +teleworker,teleworkers +telicity,telicities +teliospore,teliospores +telium,telia +tell-all,tell-alls +tellane,tellanes +tellee,tellees +tellenol,tellenols +tellen,tellens +teller,tellers +telling off,tellings off +telling-off,tellings-off,telling-offs +telling,tellings +tellinid,tellinids +tellin,tellins +tell-tale compass,tell-tale compasses +telltale compass,telltale compasses +telltale,telltales +tell,tells +tell,tells +tellurane,telluranes +tellurate,tellurates +telluret,tellurets +tellurian,tellurians +tellurian,tellurians +tellurion,tellurions +tellurite,tellurites +tellurobismuthite,tellurobismuthites +tellurolate,tellurolates +tellurometalate,tellurometalates +tellurometallate,tellurometallates +tellurometer,tellurometers +tellurone,tellurones +telluronium,telluroniums +tellurophene,tellurophenes +telly,tellys,tellies +telmatherinid,telmatherinids +telmatologist,telmatologists +teloblast,teloblasts +telocoel,telocoels +telodendrion,telodendrions +telodendron,telodendrons +telogen,telogens +telomere,telomeres +telomerization,telomerizations +telomer,telomers +Teloogoo,Teloogoos +telopeptide,telopeptides +telophase,telophases +telosome,telosomes +telotroch,telotrochs +telotype,telotypes +telpherage,telpherages +telpher,telphers +telpochcalli,telpochcallis +telsid,telsids +telson,telsons +tel,tels +tel,tels +Telugu,Telugus,Telugu +telyn,telyns +temblor,temblors +temenos,temene +temescal,temescals +teme,temes +Temminck's tragopan,Temminck's tragopans +temnodontosaurid,temnodontosaurids +temnospondyl,temnospondyls +temorid,temorids +temperament,temperaments +temperance,temperances +temperateness,temperatenesses +temperate rainforest,temperate rainforests +temperate zone,temperate zones +temperature coefficient,temperature coefficients +temperature inversion,temperature inversions +temperature,temperatures +temperaunce,temperaunces +temperer,temperers +temperment,temperments +temper tantrum,temper tantrums +temper,tempers +tempest in a teapot,tempests in teapots +tempestite,tempestites +tempest,tempests +tempietto,tempiettos +templar,templars +Templar,Templars +template method pattern,template method patterns +template method,template methods +templater,templaters +template strand,template strands +template,templates +templatization,templatizations +temple-goer,temple-goers +templegoer,templegoers +temple,temples +temple,temples +temple,temples +templet,templets +templon,templons +tempo mark,tempo marks +temporal bone,temporal bones +temporal case,temporal cases +temporal hour,temporal hours +temporality,temporalities +temporalization,temporalizations +temporal lobe,temporal lobes +temporal,temporals +temporal,temporals +temporalty,temporalties +temporariness,temporarinesses +temporary gentleman,temporary gentlemen +temporary restraining order,temporary restraining orders +temporary,temporaries +temporary tooth,temporary teeth +temporist,temporists +temporizer,temporizers +temporomandibular joint,temporomandibular joints +temporoparietalis muscle,temporoparietalis muscles +tempo,tempos,tempi +tempotron,tempotrons +temptation,temptations +temp,temps +tempter,tempters +temptress,temptresses +temse,temses +tenace,tenaces +tenacity,tenacities +tenacle,tenacles +tenaculum,tenacula +tenaille,tenailles +tenaillon,tenaillons +tenancy by the entirety,tenancies by the entirety +tenancy for life,tenancies for life +tenancy,tenancies +tenant farmer,tenant farmers +tenant-in-chief,tenants-in-chief +tenantry,tenantries +tenant saw,tenant saws +tenant,tenants +tenascin,tenascins +tenase,tenases +tenaunt,tenaunts +ten-cent store,ten-cent stores +tench,tench,tenches +tendance,tendances +tendency,tendencies +tendency tone,tendency tones +tendentiousness,tendentiousnesses +tenderer,tenderers +tenderfoot,tenderfeet,tenderfoots +tenderiser,tenderisers +tenderizer,tenderizers +tenderling,tenderlings +tenderloin steak,tenderloin steaks +tenderloin,tenderloins +tenderness,tendernesses +tenderometer,tenderometers +tenderoni,tenderonis +tenderpreneur,tenderpreneurs +tender,tenders +tender,tenders +ten-dollar word,ten-dollar words +tendonectomy,tendonectomies +tendon of Achilles,tendons of Achilles +tendon,tendons +tendrac,tendracs +tendril,tendrils +tendron,tendrons +tendry,tendries +tendu,tendus +tenebrionid,tenebrionids +tenebrionoid,tenebrionoids +tenement,tenements +tenent,tenents +tenesmus,tenesmuses +tenet,tenets +ten foot pole,ten foot poles +ten-for,ten-fors +ten-gallon hat,ten-gallon hats +tengellid,tengellids +tenge,tenges,tenge +Tengmalm's owl,Tengmalm's owls +tengu,tengus +teniacide,teniacides +teniafuge,teniafuges +tenia,tenias +tenicide,tenicides +ten-key calculator,ten-key calculators +tennantite,tennantites +tennaunt,tennaunts +tenner,tenners +tennesi,tennesi +Tennessean,Tennesseans +Tennesseean,Tennesseeans +tennis ball,tennis balls +tennis club,tennis clubs +tennis court,tennis courts +tennis dress,tennis dresses +tennis elbow,tennis elbows +tennis player,tennis players +tennis racket,tennis rackets +tennis racquet,tennis racquets +tennis shoe,tennis shoes +tenno,tennos +Tenochcan,Tenochcans +tenocyte,tenocytes +tenolysis,tenolyses +tenonectomy,tenonectomies +tenon saw,tenon saws +tenon,tenons +tenontosaur,tenontosaurs +tenor clef,tenor clefs +tenorist,tenorists +tenoroon,tenoroons +tenor,tenors +tenotome,tenotomes +tenotomy,tenotomies +tenour,tenours +tenpence,tenpences +ten penny nail,ten penny nails +ten-penny nail,ten-penny nails +tenpenny nail,tenpenny nails +ten-percenter,ten-percenters +tenpercentery,tenpercenteries +tenpin,tenpins +ten-pounder,ten-pounders +tenpounder,tenpounders +ten pound pom,ten pound poms +ten pound Pom,ten pound Poms +ten pound tourist,ten pound tourists +tenrecid,tenrecids +tenrec,tenrecs +Tenrikyoist,Tenrikyoists +ten sack,ten sacks +tenscore,tenscores +tensegrity,tensegrities +tenseness,tensenesses +tense,tenses +tenside,tensides +tensies,tensies +tensile strain,tensile strains +tensile strength,tensile strengths +tensimeter,tensimeters +tensin,tensins +tensiometer,tensiometers +tensioner,tensioners +tension,tensions +tension wrench,tension wrenches +tensome,tensomes +tensometer,tensometers +tensor,tensors +tensor tympani,tensor tympanis +ten-strike,ten-strikes +tentacle,tentacles +tentaculite,tentaculites +tentaculocyst,tentaculocysts +tentaculum,tentacula +tentative,tentatives +tentative wound,tentative wounds +tent caterpillar,tent caterpillars +tent embassy,tent embassies +tenten,tentens +Tenterfield whistle,Tenterfield whistles +tenterhook,tenterhooks +tenter,tenters +tentful,tentfuls,tentsful +tenth grade,tenth grades +tenthmeter,tenthmeters +tenthmetre,tenthmetres +tenthredinid,tenthredinids +tenth,tenths +tentigo,tentigos +tent-maker,tent-makers +tentmaker,tentmakers +tentmate,tentmates +tentorial notch,tentorial notches +tentorium,tentoria +tentory,tentories +tent peg,tent pegs +tentpole film,tentpole films +tent pole movie,tent pole movies +tent-pole movie,tent-pole movies +tentpole movie,tentpole movies +tent pole,tent poles +tent-pole,tent-poles +tentpole,tentpoles +tent,tents +tent,tents +tent,tents +tent,tents +tentwallah,tentwallahs +tenue,tenues +tenuipalpid,tenuipalpids +tenuis,tenues +tenure,tenures +tenuto,tenutos +teocalli,teocallis +teosinte,teosintes +tepal,tepals +tepary,teparies +tepee,tepees +tepe,tepes +tephritid,tephritids +tephrosia,tephrosias +tepidarium,tepidariums,tepidaria +teppanyaki,teppanyakis +tepui,tepuis +Tepui tinamou,Tepui tinamous +tepuy,tepuys +tequila cream,tequila creams +tequila sunrise,tequila sunrises +tequilero,tequileros +tera amp,tera amps +tera-amp,tera-amps +terabase,terabases +terabit,terabits +terabuck,terabucks +terabyte,terabytes +teraelectron volt,teraelectron volts +teraelectronvolt,teraelectronvolts +teraflop,teraflops +teragramme,teragrammes +teragram,teragrams +terai hat,terai hats +terai,terais +tera-joule,tera-joules +terajoule,terajoules +terakatal,terakatals +teralitre,teralitres +teralumen,teralumens +terameter,terameters +terametre,terametres +tera-ohm,tera-ohms +teraohm,teraohms +teraparsec,teraparsecs +teraphim,teraphims +teraph,teraphim +terapin,terapins +teraponid,teraponids +terapontid,terapontids +terasecond,teraseconds +teras,terata +teratembiid,teratembiids +teratism,teratisms +teratoblastoma,teratoblastomas,teratoblastomata +teratocarcinoma,teratocarcinomata +teratogenesis,teratogeneses +teratogenic,teratogenics +teratogen,teratogens +teratoid,teratoids +teratologist,teratologists +teratoma,teratomas,teratomata +teraton,teratons +teratophiliac,teratophiliacs +teratornithid,teratornithids +teratorn,teratorns +teratosaurid,teratosaurids +teratosis,teratoses +tera-volt,tera-volts +teravolt,teravolts +teravoxel,teravoxels +terawatt-hour,terawatt-hours +tera-watt,tera-watts +terawatt,terawatts +terbium oxide,terbium oxides +tercelet,tercelets +tercel gentle,tercel gentles,tercels gentle +tercel,tercels +tercentenary,tercentenaries +tercentennial,tercentennials +terce,terces +tercet,tercets +tercian,tercians +tercile,terciles +terebate,terebates +terebellid,terebellids +terebene,terebenes +terebinth,terebinths +terebra,terebras,terebrae +terebratula,terebratulas +terebratulid,terebratulids +terebrid,terebrids +teredine,teredines +teredinid,teredinids +teredo,teredos,teredoes +terephthalate,terephthalates +terfluorene,terfluorenes +tergipedid,tergipedids +tergite,tergites +tergiversation,tergiversations +tergiversator,tergiversators +tergum,terga +terin,terins +teriyaki,teriyakis +termagant,termagants +termbase,termbases +termer,termers +termgraph,termgraphs +terminal acetylene,terminal acetylenes +terminal control area,terminal control areas +terminal figure,terminal figures +terminal object,terminal objects +terminal s,terminal Ss +terminal stria,terminal striae +terminal symbol,terminal symbols +terminal,terminals +terminal velocity,terminal velocities +termination shock,termination shocks +termination,terminations +terminative case,terminative cases +terminative,terminatives +terminator,terminators +terminist,terminists +terminographer,terminographers +terminologist,terminologists +terminology,terminologies +terminus ad quem,termini ad quem +terminus,termini,terminuses +termitaphidid,termitaphidids +termitarium,termitariums,termitaria +termitary,termitaries +termite,termites +termiticide,termiticides +termitid,termitids +term limit,term limits +term of address,terms of address +term of art,terms of art +term of endearment,terms of endearment +termopsid,termopsids +termor,termors +term paper,term papers +term,terms +ternary alloy,ternary alloys +ternary code,ternary codes +ternary complex,ternary complexes +ternary compound,ternary compounds +ternary computer,ternary computers +ternary name,ternary names +ternary operator,ternary operators +ternary,ternaries +terneplate,terneplates +ternion,ternions +tern,terns +tern,terns +terpene,terpenes +terpenoid,terpenoids +terper,terpers +terphenyl,terphenyls +terpinene,terpinenes +terpineol,terpineols +terpin,terpins +terpolymer,terpolymers +terpsichorean,terpsichoreans +terp,terps +terp,terps +terrace chant,terrace chants +terraced house,terraced houses +terrace,terraces +terracide,terracides +terracing,terracings +terraformer,terraformers +terrain park,terrain parks +terrain,terrains +terrane,terranes +Terran,Terrans +terrapene,terrapenes +terrapin,terrapins +terraranan,terraranans +terrarium,terrariums,terraria +terrar,terrars +terra,terrae +terreen,terreens +terrel,terrels +terremote,terremotes +terrene,terrenes +terreplein,terrepleins +terrestrial planet,terrestrial planets +terrestrial telescope,terrestrial telescopes +terrestrial,terrestrials +terre-tenant,terre-tenants +terret,terrets +terre-verte,terres-vertes,terre-vertes +terribleness,terriblenesses +terriculament,terriculaments +terrier,terriers +terrier,terriers +terrifier,terrifiers +terrine,terrines +territoriality,territorialities +territorial matrix,territorial matrices +territorial pissing,territorial pissings +territorial sea,territorial seas +territorial,territorials +territorial water,territorial waters +Territorian,Territorians +territory,territories +territ,territs +terroirist,terroirists +terroir,terroirs +terror bird,terror birds +terroriser,terrorisers +terrorist fist jab,terrorist fist jabs +terrorist,terrorists +terrorizer,terrorizers +terr,terrs +terrycloth,terrycloths +terseness,tersenesses +tersulphide,tersulphides +tersulphuret,tersulphurets +ter-tenant,ter-tenants +tertial,tertials +tertian,tertians +tertiary alcohol,tertiary alcohols +tertiary amine,tertiary amines +tertiary color,tertiary colors +tertiary colour,tertiary colours +tertiary industry,tertiary industries +tertiary phosphine,tertiary phosphines +tertiary sector,tertiary sectors +tertiary source,tertiary sources +tertiary structure,tertiary structures +tertiary,tertiaries +tertile,tertiles +tertium quid,tertium quids +tertulia,tertulias +terutero,teruteros +terylene,terylenes +terzanelle,terzanelles +terza rima,terze rime +terzet,terzets +terzetto,terzettos +tesh,teshes +Tesla coil,Tesla coils +Teslascope,Teslascopes +tesla,teslas +tessaratomid,tessaratomids +tessarine,tessarines +tesselation,tesselations +tessella,tessellae +tesseract,tesseracts +tesseradecade,tesseradecades +tessera,tesserae +tessitura,tessiture +testacean,testaceans +testacellid,testacellids +testamentary guardian,testamentary guardians +testament,testaments +testamur,testamurs +testa,testas,testae,testΓ¦ +testate,testates +testator,testators +testatour,testatours +testatrix,testatrices +test bed,test beds +testbed,testbeds +test bench,test benches +testbench,testbenches +test card,test cards +test case,test cases +test drive,test drives +testee,testees +test entry,test entries +testeria,testerias +testeric,testerics +testern,testerns +tester,testers +tester,testers +tester,testers +teste,testes +test harness,test harnesses +testicle,testicles +testification,testifications +testificator,testificators +testifier,testifiers +testimonial,testimonials +testimony,testimonies +testing,testings +testis,testes +testivation,testivations +Test match,Test matches +Test nation,Test nations +testone,testones +teston,testons +testoon,testoons +test paper,test papers +test-paper,test-papers +test pattern,test patterns +test portion,test portions +test run,test runs +Test side,Test sides +test site,test sites +test,tests +test,tests +test,tests +Test,Tests +test tube baby,test tube babies +test tube,test tubes +testudinid,testudinids +testudo,testudos,testudoes,testudines +tetanic,tetanics +tetanization,tetanizations +tetanocerid,tetanocerids +tetanomotor,tetanomotors +tetanuran,tetanurans +tetany,tetanies +tetartemorion,tetartemorions +tetch,tetches +tete-a-tete,tete-a-tetes +tΓͺte-Γ -tΓͺte,tΓͺte-Γ -tΓͺtes +tΓͺte-de-pont,tΓͺtes-de-pont +tetel,tetels +tethered aerostat,tethered aerostats +tetherin,tetherins +tether,tethers +tethinid,tethinids +tethydan,tethydans +tethyid,tethyids +tetillid,tetillids +tetraacetate,tetraacetates +tetraalkylammonium,tetraalkylammoniums +tetraamine,tetraamines +tetraazide,tetraazides +tetrablemmid,tetrablemmids +tetraborate,tetraborates +tetraboride,tetraborides +tetrabranchiate,tetrabranchiates +tetrabromide,tetrabromides +tetrabromocuprate,tetrabromocuprates +tetrabutylammonium,tetrabutylammoniums +tetracampid,tetracampids +tetracarbonate,tetracarbonates +tetracarbonyl,tetracarbonyls +tetracarboxylic acid,tetracarboxylic acids +tetracation,tetracations +tetrachloride,tetrachlorides +tetrachlorobiphenyl,tetrachlorobiphenyls +tetrachlorocuprate,tetrachlorocuprates +tetrachord,tetrachords +tetrachotomy,tetrachotomies +tetrachromate,tetrachromates +tetrachromat,tetrachromats +tetracolon,tetracolons,tetracola +tetraconch,tetraconches +tetracontagon,tetracontagons +tetracontane,tetracontanes +tetracoral,tetracorals +tetracosane,tetracosanes +tetractinellid,tetractinellids +tetractinomorph,tetractinomorphs +tetracube,tetracubes +tetracuspid,tetracuspids +tetracyanocuprate,tetracyanocuprates +tetracycle,tetracycles +tetracycline,tetracyclines +tetracyclin,tetracyclins +tetracyclization,tetracyclizations +tetradecagon,tetradecagons +tetradecamer,tetradecamers +tetradecane,tetradecanes +tetradecanoyl,tetradecanoyls +tetradecenoyl,tetradecenoyls +tetradecimal,tetradecimals +tetradecyl,tetradecyls +tetradecyltrimethylammonium,tetradecyltrimethylammoniums +Tetradite,Tetradites +tetradonematid,tetradonematids +tetradontid,tetradontids +tetradont,tetradonts +tetradrachma,tetradrachmas +tetradrachm,tetradrachms +tetrad,tetrads +tetradymia,tetradymias +tetradymite,tetradymites +tetraedrum,tetraedrums +tetraene,tetraenes +tetraether,tetraethers +tetraethylammonium,tetraethylammoniums +tetraethylorthosilicate,tetraethylorthosilicates +tetraflate,tetraflates +tetraflexagon,tetraflexagons +tetrafluoride,tetrafluorides +tetrafluoroberyllate,tetrafluoroberyllates +tetrafluoroborate,tetrafluoroborates +tetragnathid,tetragnathids +tetragonitid,tetragonitids +tetragon,tetragons +tetragonurid,tetragonurids +tetragramme,tetragrammes +tetragram,tetragrams +tetragraph,tetragraphs +tetrahalide,tetrahalides +tetrahalomethane,tetrahalomethanes +tetrahedron,tetrahedrons,tetrahedra +tetrahemihexahedron,tetrahemihexahedra +tetrahexahedron,tetrahexahedrons,tetrahexahedra +tetrahexylammonium,tetrahexylammoniums +tetrahydrate,tetrahydrates +tetrahydride,tetrahydrides +tetrahydroborate,tetrahydroborates +tetrahydrochloride,tetrahydrochlorides +tetrahydrofolate,tetrahydrofolates +tetrahydrogestrinone,tetrahydrogestrinones +tetrahydroimidazole,tetrahydroimidazoles +tetrahydropyran,tetrahydropyrans +tetrahydropyridine,tetrahydropyridines +tetrahydrothiophene,tetrahydrothiophenes +tetrahydroxyanthradione,tetrahydroxyanthradiones +tetrahydroxyanthraquinone,tetrahydroxyanthraquinones +tetrahydroxyborate,tetrahydroxyborates +tetraiodide,tetraiodides +tetrakaidecagon,tetrakaidecagons +tetrakaidecahedron,tetrakaidecahedrons +tetrakaidekahedron,tetrakaidekahedrons,tetrakaidekahedra +tetrakishexahedron,tetrakishexahedrons,tetrakishexahedra +tetrakisphosphate,tetrakisphosphates +tetrakosane,tetrakosanes +tetralemma,tetralemmas,tetralemmata +tetraline,tetralines +tetralin,tetralins +tetralogy,tetralogies +tetralone,tetralones +tetraloop,tetraloops +tetramerid,tetramerids +tetramerisation,tetramerisations +tetramerization,tetramerizations +tetramer,tetramers +tetrameter,tetrameters +tetramethylammonium auride,tetramethylammonium aurides +tetramethylammonium,tetramethylammonia +tetramethylbenzidine,tetramethylbenzidines +tetramethylene,tetramethylenes +tetramethylimidazoline,tetramethylimidazolines +tetramethylpentadecane,tetramethylpentadecanes +tetramethylpiperidine,tetramethylpiperidines +tetramethylrhodamine,tetramethylrhodamines +tetramethyluronium,tetramethyluroniums +tetrametre,tetrametres +tetramine,tetramines +tetramorph,tetramorphs +tetramutant,tetramutants +tetranaphthyl,tetranaphthyls +tetraneutron,tetraneutrons +tetranitrate,tetranitrates +tetranitride,tetranitrides +tetranitro,tetranitros +tetranorditerpenoid,tetranorditerpenoids +tetranortriterpenoid,tetranortriterpenoids +tetranucleosome,tetranucleosomes +tetranucleotide,tetranucleotides +tetranychid,tetranychids +tetraodon,tetraodons +tetraodontid,tetraodontids +tetraonid,tetraonids +tetraose,tetraoses +tetraoxane,tetraoxanes +tetraoxide,tetraoxides +tetraoxygen,tetraoxygens +tetrapeptide,tetrapeptides +tetraphene,tetraphenes +tetraphenol,tetraphenols +tetraphenylborate,tetraphenylborates +tetraphenyl,tetraphenyls +tetraphid,tetraphids +tetraphosphate,tetraphosphates +tetraphosphide,tetraphosphides +tetraplegia,tetraplegias +tetraplegic,tetraplegics +tetraplex,tetraplexes +tetraplicate,tetraplicates +tetraploid,tetraploids +tetrapneumonian,tetrapneumonians +tetrapod,tetrapods +tetrapody,tetrapodies +tetraptote,tetraptotes +tetraptych,tetraptychs +tetrapyrrole,tetrapyrroles +tetraquark,tetraquarks +tetrarchate,tetrarchates +tetrarch,tetrarchs +tetrarchy,tetrarchies +tetraribonucleotide,tetraribonucleotides +tetraric acid,tetraric acids +tetrarogid,tetrarogids +tetrasaccharide,tetrasaccharides +tetrasilicide,tetrasilicides +tetrasiloxane,tetrasiloxanes +tetraspanin,tetraspanins +tetraspan,tetraspans +tetraspore,tetraspores +tetrasquillid,tetrasquillids +tetrastich,tetrastichs +tetrastyle,tetrastyles +tetrasulfide,tetrasulfides +tetrasulfonate,tetrasulfonates +tetrasulphur tetranitride,tetrasulphur tetranitrides +tetrasyllable,tetrasyllables +tetrataenite,tetrataenites +tetraterpene,tetraterpenes +tetraterpenoid,tetraterpenoids +tetra,tetras +tetratheist,tetratheists +tetrathiomolybdate,tetrathiomolybdates +tetrathionate,tetrathionates +tetrathiophosphate,tetrathiophosphates +tetrathlon,tetrathlons +tetratomid,tetratomids +tetratriacontane,tetratriacontanes +tetratricopeptide,tetratricopeptides +tetrazine,tetrazines +tetrazole,tetrazoles +tetrazolinone,tetrazolinones +tetrazolium,tetrazoliums +tetrazolyl,tetrazolyls +tetrazone,tetrazones +tetrevangelium,tetrevangelia +tetriamond,tetriamonds +tetrigid,tetrigids +Tetris,Tetrises +tetri,tetri +tetrode,tetrodes +tetrodon,tetrodons +tetrodont,tetrodonts +tetrofosmin,tetrofosmins +tetrolate,tetrolates +tetrol,tetrols +tetromino,tetrominoes +tetrone,tetrones +tetrose,tetroses +tetroxide,tetroxides +tetter,tetters +tettigarctid,tettigarctids +tettigonid,tettigonids +tettigoniid,tettigoniids +tettix,tettixes +Teucrian,Teucrians +teucrin,teucrins +teucrium,teucriums +teuk,teuks +TEU,TEUs +Teutonicism,Teutonicisms +Teuton,Teutons +Tewan,Tewans +tewel,tewels +tewhit,tewhits +tewtaw,tewtaws +tew,tews +Texan,Texans +texaphyrin,texaphyrins +Texas blind snake,Texas blind snakes +Texas heart shot,Texas heart shots +Texas leaguer,Texas leaguers +Texas mickey,Texas mickeys +Texas ratio,Texas ratios +texas,texases +texel,texels +Texican,Texicans +text adventure,text adventures +textaholic,textaholics +texta,textas +textbase,textbases +textboard,textboards +textbook,textbooks +text box,text boxes +textbox,textboxes +text editor,text editors +texter,texters +tex,texes +text file,text files +textfile,textfiles +textile cone,textile cones +textile,textiles +textiloma,textilomas +textiquette,textiquettes +textism,textisms +text link,text links +textman,textmen +text message,text messages +textome,textomes +texton,textons +textonym,textonyms +textphone,textphones +textshop,textshops +textspeak,textspeaks +textualist,textualists +textuarist,textuarists +textuary,textuaries +textuist,textuists +texture map,texture maps +texture,textures +texturizer,texturizers +teyne,teynes +tey,teys +tg-girl,tg-girls +TG girl,TG girls +TG-girl,TG-girls +t-girl,t-girls +TGP,TGPs +TGV,TGVs +thaa,thaas +thabilitho,thabilithos +thack,thacks +thack,thacks +thagomizer,thagomizers +Thai basil,Thai basils +Thaification,Thaifications +Thailander,Thailanders +Thai numeral,Thai numerals +Thai Ridgeback,Thai Ridgebacks +Thai,Thai,Thais +thalamocoele,thalamocoeles +thalamotomy,thalamotomies +thalamus,thalami,thalamuses +thalassaemia,thalassaemias +thalassemia,thalassemias +thalassian,thalassians +thalassinid,thalassinids +thalassiosiroid,thalassiosiroids +thalassoceratid,thalassoceratids +thalassocracy,thalassocracies +thalassotherapist,thalassotherapists +thalassotherapy,thalassotherapies +thalattosaurid,thalattosaurids +thaler,thalers +thalia,thalias +thalictrum,thalictrums +thalidomide baby,thalidomide babies +thallate,thallates +thallation,thallations +thallogen,thallogens +thallophyte,thallophytes +thallus,thalli +thalweg,thalwege,thalwegs +thamnocephalid,thamnocephalids +thamnophile,thamnophiles +thamnophilid,thamnophilids +Thamud,Thamuds +thanadar,thanadars +thanage,thanages +thana,thanas +thanatocoenose,thanatocoenoses +thanatocracy,thanatocracies +thanatography,thanatographies +thanatologist,thanatologists +thanatophile,thanatophiles +thanatopsis,thanatopses +thanedom,thanedoms +thane,thanes +thangka,thangkas +thang,thangs +thanka,thankas +thanksgiver,thanksgivers +Thanksgiving Day,Thanksgiving Days +thanksgiving,thanksgivings +thank,thanks +thank you,thank yous +thank-you,thank-yous +thankyou,thankyous +tharcake,tharcakes +tharm,tharms +thar,thars +tharybid,tharybids +Thatcherist,Thatcherists +Thatcherite,Thatcherites +thatcher,thatchers +thatching,thatchings +that clause,that clauses +Thatter,Thatters +that,thats +thaught,thaughts +thaumaleid,thaumaleids +thaumatichthyid,thaumatichthyids +thaumatrope,thaumatropes +thaumaturge,thaumaturges +thaumaturgist,thaumaturgists +thaumaturgus,thaumaturguses,thaumaturgi +thaumaturgy,thaumaturgies +thaumavore,thaumavores +thaumetopoeid,thaumetopoeids +thave,thaves +thawb,thawbs +thaw,thaws +theaflavin,theaflavins +thealogy,thealogies +theanthropist,theanthropists +thearch,thearchs +thearchy,thearchies +theatergoer,theatergoers +theater-in-the-round,theaters-in-the-round +theater of war,theaters of war +theater,theaters +Theatine,Theatines +theatre-goer,theatre-goers +theatregoer,theatregoers +theatre-in-the-round,theatres-in-the-round +theatremaker,theatremakers +theatre of war,theatres of war +theatre,theatres +theatrical film,theatrical films +theatricalism,theatricalisms +theatricality,theatricalities +theatricalization,theatricalizations +theatrical prop,theatrical props +theatrical,theatricals +theave,theaves +ThebΓ¦an,ThebΓ¦ans +Thebaic,Thebaics +Theban,Thebans +Theban year,Theban years +thebe,thebe +thecamoebid,thecamoebids +thecaphore,thecaphores +theca,thecas,thecae +thecium,thecia +thecodontosaurid,thecodontosaurids +thecodont,thecodonts +thecoma,thecomas,thecomata +thede,thedes +thee,thees +theft,thefts +thegndom,thegndoms +thegn,thegns +theif,theives,theifs +theileriid,theileriids +Theistic Satanist,Theistic Satanists +theist,theists +thelaziid,thelaziids +Thelemite,Thelemites +thelion,thelions +thelium,thelia +thematicization,thematicizations +thematic map,thematic maps +thematic relation,thematic relations +thematic,thematics +thematisation,thematisations +thematization,thematizations +thematology,thematologies +theme park,theme parks +theme song,theme songs +theme,themes +themistid,themistids +thenar,thenars +theobroma,theobromas +theocon,theocons +theocracy,theocracies +theocratical,theocraticals +theocrat,theocrats +theodicy,theodicies +theodolite,theodolites +theogonist,theogonists +theogony,theogonies +theologaster,theologasters +theologer,theologers +theologian,theologians +theologist,theologists +theologizer,theologizers +theologoumenon,theologoumena +theolog,theologs +theologue,theologues +theomachist,theomachists +theomachy,theomachies +theomaniac,theomaniacs +theomania,theomanias +theonellamide,theonellamides +the one,the ones +theonym,theonyms +theophany,theophanies +theophilanthropist,theophilanthropists +theophilosophy,theophilosophies +theophobe,theophobes +theophobia,theophobias +theophobist,theophobists +theorbist,theorbists +theorbo,theorbos +theorematist,theorematists +theorem,theorems +theoretical oxygen demand,theoretical oxygen demands +theoretical plate,theoretical plates +theoretical probability,theoretical probabilities +theoretician,theoreticians +theoric,theorics +theorisation,theorisations +theorist,theorists +theorization,theorizations +theorizer,theorizers +theorizing,theorizings +theory of knowledge,theories of knowledge +theory of relativity,theories of relativity +theosopher,theosophers +theosophist,theosophists +theosoph,theosophs +theotherapy,theotherapies +therapeutic abortion,therapeutic abortions +therapeutic vaccine,therapeutic vaccines +therapeutic window,therapeutic windows +therapeutist,therapeutists +theraphosid,theraphosids +therapist,therapists +therapod,therapods +theraponid,theraponids +therapsid,therapsids +therapy,therapies +Theravadan,Theravadans +Theravada,Theravadas +Theravadin,Theravadins +therblig,therbligs +thereminist,thereminists +theremin,theremins +there,theres +therevid,therevids +theriaca,theriacas +theriac,theriacs +therian,therians +therianthrope,therianthropes +theridiid,theridiids +theridiosomatid,theridiosomatids +theriodont,theriodonts +therioherpetid,therioherpetids +therizinosaurian,therizinosaurians +therizinosaurid,therizinosaurids +therizinosaur,therizinosaurs +thermal analysis,thermal analyses +thermal break,thermal breaks +thermal camera,thermal cameras +thermal compound,thermal compounds +thermal conductance,thermal conductances +thermal conductivity,thermal conductivities +thermal credit,thermal credits +thermal cycler,thermal cyclers +thermal energy,thermal energies +thermal gel,thermal gels +thermalisation,thermalisations +thermalization,thermalizations +thermal lance,thermal lances +thermal lithosphere,thermal lithospheres +thermal neutron,thermal neutrons +thermal printer,thermal printers +thermal rocket,thermal rockets +thermal spring,thermal springs +thermal,thermals +thermal turbulence,thermal turbulences +thermantidote,thermantidotes +thermet,thermets +thermic lance,thermic lances +Thermidorian,Thermidorians +thermionic valve,thermionic valves +thermion,thermions +thermister,thermisters +thermistor,thermistors +thermite reaction,thermite reactions +thermite,thermites +thermoacidophile,thermoacidophiles +thermobarometer,thermobarometers +thermobattery,thermobatteries +thermochemist,thermochemists +thermocline,thermoclines +thermoconductance,thermoconductances +thermocouple,thermocouples +thermocurrent,thermocurrents +thermocycler,thermocyclers +thermodenuder,thermodenuders +thermodesorber,thermodesorbers +thermodesorption,thermodesorptions +thermodiffractogram,thermodiffractograms +thermodynamicist,thermodynamicists +thermodynamic state,thermodynamic states +thermodynamic system,thermodynamic systems +thermodynamic temperature,thermodynamic temperatures +thermoelectrometer,thermoelectrometers +thermoelement,thermoelements +thermofield,thermofields +thermogram,thermograms +thermograph,thermographs +thermohaline circulation,thermohaline circulations +thermohydrometer,thermohydrometers +thermojet,thermojets +thermokarst,thermokarsts +thermologist,thermologists +thermolysis,thermolyses +thermometer,thermometers +thermometre,thermometres +thermomultiplier,thermomultipliers +thermonuclear weapon,thermonuclear weapons +thermopane,thermopanes +thermopause,thermopauses +thermophile,thermophiles +thermophone,thermophones +thermophysiology,thermophysiologies +thermopile,thermopiles +thermoplanet,thermoplanets +thermoplastic resin,thermoplastic resins +thermopower,thermopowers +thermoprinter,thermoprinters +thermoreceptor,thermoreceptors +thermoremanent magnetization,thermoremanent magnetizations +thermoresistance,thermoresistances +thermoscope,thermoscopes +thermosensitivity,thermosensitivities +thermosensor,thermosensors +thermoset,thermosets +thermosphere,thermospheres +thermostat,thermostats +thermos,thermoses +thermotaxis,thermotaxes +thermotherapy,thermotherapies +thermotolerance,thermotolerances +thermotropism,thermotropisms +thermotype,thermotypes +therm,therms +theroid,theroids +therophyte,therophytes +theropodan,theropodans +theropod,theropods +thesaurus,thesauri,thesauruses +thescelosaurid,thescelosaurids +thesicle,thesicles +thesis,theses +thesmothete,thesmothetes +thespian,thespians +Thespian,Thespians +thespid,thespids +Thesprotian,Thesprotians +thesp,thesps +Thessalian,Thessalians +Thessalonian,Thessalonians +Thessalonican,Thessalonicans +thetan,thetans +theta rhythm,theta rhythms +theta,thetas +theta wave,theta waves +thetine,thetines +theurge,theurges +theurgist,theurgists +thew,thews +thew,thews +thiaazahelicene,thiaazahelicenes +thiabendazole,thiabendazoles +thiacalixarene,thiacalixarenes +thiadiazepine,thiadiazepines +thiadiazole,thiadiazoles +thiadiazoline,thiadiazolines +thiadiazol,thiadiazols +thiahelicene,thiahelicenes +thial,thials +thiambutene,thiambutenes +thianthrene,thianthrenes +thiarid,thiarids +thiasarch,thiasarches +thiasote,thiasotes +thiasus,thiasuses +thiatriazole,thiatriazoles +thiatriazoline,thiatriazolines +thiazate,thiazates +thiazide,thiazides +thiazine,thiazines +thiazole,thiazoles +thiazolidinedione,thiazolidinediones +thiazoline,thiazolines +thiazolino,thiazolinos +thiazolium,thiazoliums +thiazolyl,thiazolyls +thiazyl,thiazyls +thiazyne,thiazynes +Thibetan,Thibetans +Thibetian,Thibetians +thible,thibles +thickbill,thickbills +thickener,thickeners +thickening agent,thickening agents +thickening,thickenings +thicket,thickets +thicket tinamou,thicket tinamous +thickhead,thickheads +thickie,thickies +thick-knee,thick-knees +thicknesser,thicknessers +thicko,thickos,thickoes +thickset,thicksets +thickskin,thickskins +thickskull,thickskulls +thick space,thick spaces +thick-tailed bushbaby,thick-tailed bushbabies +thickwit,thickwits +thicky,thickies +thief ant,thief ants +thief in law,thieves in law +thief in the night,thieves in the night +thief-taker,thief-takers +thief,thieves +thief tube,thief tubes +thienone,thienones +thienopyridine,thienopyridines +thienyl,thienyls +thiepane,thiepanes +thiepine,thiepines +thiepin,thiepins +thietane,thietanes +thievery,thieveries +thigger,thiggers +thighbone,thighbones +thighboot,thighboots +thigh-high,thigh-highs +thigh master,thigh masters +thigh slapper,thigh slappers +thigh-slapper,thigh-slappers +thigh,thighs +thigmotropism,thigmotropisms +thiirane,thiiranes +thiirene,thiirenes +thiller,thillers +thill,thills +thimbleberry,thimbleberries +thimbleeye,thimbleeyes +thimbleful,thimblefuls,thimblesful +thimblerigger,thimbleriggers +thimblerig,thimblerigs +thimble,thimbles +thimbleweed,thimbleweeds +thin client,thin clients +thin-film transistor,thin-film transistors +thingamabob,thingamabobs +thingamajig,thingamajigs +thinger,thingers +thinge,thinges +thing-in-itself,things-in-themselves +thingman,thingmen +thingmy,thingmies +thingo,thingos +thing,things +Thing,Things +thingummabob,thingummabobs +thingummy,thingummies +thingy,thingies +thinhorn sheep,thinhorn sheep +thinhorn,thinhorns +think aloud protocol,think aloud protocols +thinker,thinkers +thinking cap,thinking caps +thinking distance,thinking distances +thinking man's crumpet,thinking man's crumpets +thinko,thinkos +think piece,think pieces +think-tanker,think-tankers +thinktanker,thinktankers +think tank,think tanks +think-tank,think-tanks +thinktank,thinktanks +thinner,thinners +thinocorid,thinocorids +thinozerconid,thinozerconids +thin space,thin spaces +thin,thins +thioacetal,thioacetals +thioacetate,thioacetates +thioacetic acid,thioacetic acids +thioacetyl,thioacetyls +thioacid,thioacids +thioalcohol,thioalcohols +thioaldehyde,thioaldehydes +thioamide,thioamides +thioanhydride,thioanhydrides +thioanisole,thioanisoles +thioanisol,thioanisols +thioarsenite,thioarsenites +thioate,thioates +thiobacillus,thiobacilli +thiobarbiturate,thiobarbiturates +thiobenzoate,thiobenzoates +thiocane,thiocanes +thiocarbamate,thiocarbamates +thiocarbamide,thiocarbamides +thiocarbamoyl,thiocarbamoyls +thiocarbazide,thiocarbazides +thiocarbazone,thiocarbazones +thiocarbonate,thiocarbonates +thiocarbonyl,thiocarbonyls +thiocarboxylate,thiocarboxylates +thiocarboxylic acid,thiocarboxylic acids +thiochromone,thiochromones +thiocine,thiocines +thiocresol,thiocresols +thiocyanate,thiocyanates +thiocyanic acid,thiocyanic acids +thiocyanide,thiocyanides +thioesterification,thioesterifications +thioester,thioesters +thioether,thioethers +thiofuran,thiofurans +thiogalactopyranoside,thiogalactopyranosides +thiogalactoside,thiogalactosides +thiogallate,thiogallates +thioglucosidase,thioglucosidases +thioglucoside,thioglucosides +thioglycolate,thioglycolates +thioglycollate,thioglycollates +thioglycoside,thioglycosides +thiohemiacetal,thiohemiacetals +thiohemiketal,thiohemiketals +thiohydantoin,thiohydantoins +thioic acid,thioic acids +thioimidate,thioimidates +thioketal,thioketals +thioketone,thioketones +thiokinase,thiokinases +thiolactam,thiolactams +thiolactone,thiolactones +thiolane,thiolanes +thiolase,thiolases +thiolate,thiolates +thiolation,thiolations +thiol,thiols +thiomalate,thiomalates +thiometalate,thiometalates +thiometallate,thiometallates +thiomolybdate,thiomolybdates +thionaphthene,thionaphthenes +thionate,thionates +thione,thiones +thionic acid,thionic acids +thionin,thionins +thionylamine,thionylamines +thionyl,thionyls +thiopeptide,thiopeptides +thioperoxide,thioperoxides +thiophene,thiophenes +thiophenol,thiophenols +thiophosphate,thiophosphates +thiophthene,thiophthenes +thiopurine,thiopurines +thiopyran,thiopyrans +thioquinone,thioquinones +thioredoxin,thioredoxins +thiosemicarbazide,thiosemicarbazides +thiosemicarbazone,thiosemicarbazones +thiosulfate,thiosulfates +thiosulfine,thiosulfines +thiosulfonate,thiosulfonates +thiosulfonic acid,thiosulfonic acids +thiosulphate,thiosulphates +thiotolene,thiotolenes +thiotoluene,thiotoluenes +thiotriphosphate,thiotriphosphates +thiotroph,thiotrophs +thiouracil,thiouracils +thiourea,thioureas +thiouridine,thiouridines +thioxanthene,thioxanthenes +thioxanthone,thioxanthones +thioxene,thioxenes +third baseman,third basemen +thirdborn,thirdborns +thirdborough,thirdboroughs +third camp,third camps +third-class citizen,third-class citizens +third-class entity,third-class entities +third-class object,third-class objects +third class,third classes +third-class value,third-class values +third conditional,third conditionals +third cousin,third cousins +third culture kid,third culture kids +third-degree burn,third-degree burns +third-degree relative,third-degree relatives +third down,third downs +third eye,third eyes +third finger,third fingers +third gear,third gears +third gender,third genders +third-grader,third-graders +third grade,third grades +third inversion,third inversions +third leg,third legs +third man,third men +third normal form,third normal forms +third officer,third officers +third order stream,third order streams +third-party claim,third-party claims +third party processor,third party processors +third penny,third pennies +third-person plural,third-person plurals +third-person shooter,third-person shooters +third-person singular,third-person singulars +third rail,third rails +third-rate,third-rates +third session,third sessions +third slip,third slips +third umpire,third umpires +third way,third ways +third wheel,third wheels +thirl,thirls +thirster,thirsters +thirstland,thirstlands +thirst,thirsts +Thirsty Thursday,Thirsty Thursdays +thirteener,thirteeners +thirteenth,thirteenths +thirtieth,thirtieths +thirty-eighth,thirty-eighths +thirty-fifth,thirty-fifths +thirty-first,thirty-firsts +thirty-fourth,thirty-fourths +thirty-ninth,thirty-ninths +thirty-oneth,thirty-oneths +thirty-second note,thirty-second notes +thirty-second,thirty-seconds +thirty-seventh,thirty-sevenths +thirty-sixth,thirty-sixths +thirtysomething,thirtysomethings +thirty-third,thirty-thirds +thirty,thirties +thirty-three,thirty-threes +thirty-twomo,thirty-twomos +thirtytwomo,thirtytwomos +this,thises +thistle sage,thistle sages +thistle,thistles +thistle tube,thistle tubes +thistlewarp,thistlewarps +thiuram,thiurams +thiuret,thiurets +thneed,thneeds +thobe,thobes +tholeiite,tholeiites +tholepin,tholepins +thole,tholes +tholin,tholins +tholos,tholoi +tholtan,tholtans +tholus,tholi +Thomaean,Thomaeans +ThomΓ¦an,ThomΓ¦ans +Thomas,Thomases +Thomean,Thomeans +thomisid,thomisids +Thomist,Thomists +Thomite,Thomites +Thompson submachine gun,Thompson submachine guns +Thomsonian,Thomsonians +thomsonite,thomsonites +thong,thongs +'t Hooft operator,'t Hooft operators +thoracentesis,thoracenteses +thoracic cage,thoracic cages +thoracic cavity,thoracic cavities +thoracic,thoracics +thoracic vertebra,thoracic vertebras +thoracic wall,thoracic walls +thoracocentesis,thoracocenteses +thoracometer,thoracometers +thoracoplasty,thoracoplasties +thoracoscope,thoracoscopes +thoracoscopy,thoracoscopies +thoracostomy,thoracostomies +thoracotomy,thoracotomies +thorax,thoraces,thoraxes +thorn apple,thorn apples +thornapple,thornapples +thornback,thornbacks +thornbill,thornbills +thornbird,thornbirds +thornbush,thornbushes +thornbut,thornbuts +thornfish,thornfishes +thornhog,thornhogs +thorn in someone's side,thorns in someone's side +thorntail,thorntails +thorn,thorns +thorny lacewing,thorny lacewings +thorofare,thorofares +thoroughbrace,thoroughbraces +thoroughbred,thoroughbreds +Thoroughbred,Thoroughbreds +thoroughfare,thoroughfares +thoroughpin,thoroughpins +thorough,thoroughs +thoroughwort,thoroughworts +thorpe,thorpes +thorp,thorps +Thor's beard,Thor's beards +Thor's hammer,Thor's hammers +thort,thorts +tho't,tho'ts +thought balloon,thought balloons +thought bubble,thought bubbles +thought experiment,thought experiments +thought-form,thought-forms +thoughtform,thoughtforms +thoughtlet,thoughtlets +thoughtograph,thoughtographs +thought process,thought processes +thought-process,thought-processes +thoughtscape,thoughtscapes +thought shower,thought showers +thought-terminating clichΓ©,thought-terminating clichΓ©s +thought,thoughts +thought-world,thought-worlds +thoughtworld,thoughtworlds +thousandaire,thousandaires +thousand,thousands +thousandth,thousandths +thou,thou +thou,thous +thowel,thowels +thowl,thowls +thowt,thowts +thraciid,thraciids +thrall,thralls +thraneen,thraneens +thranite,thranites +thrapple,thrapples +thrashel,thrashels +thrasher,thrashers +thrashing floor,thrashing floors +thrashingfloor,thrashingfloors +thrashing,thrashings +thrash metaller,thrash metallers +thraupid,thraupids +thrave,thraves +thrawl,thrawls +thread count,thread counts +threader,threaders +threadfin,threadfins,threadfin +threadfish,threadfishes,threadfish +threadjacker,threadjackers +threadjacking,threadjackings +thread pool pattern,thread pool patterns +thread pool,thread pools +thread snake,thread snakes +thread,threads +threadworm,threadworms +threap,threaps +threaric acid,threaric acids +threatened abortion,threatened abortions +threatened species,threatened species +threatener,threateners +threatening,threatenings +threatning,threatnings +threatscape,threatscapes +threat,threats +threave,threaves +three-and-out,three-and-outs +three-bagger,three-baggers +three-card monte,three-card montes +three-card trickster,three-card tricksters +three-center two-electron bond,three-center two-electron bonds +three-cornered jack,three-cornered jacks +three-decker,three-deckers +three-finger salute,three-finger salutes +threefin,threefins +three halfpence,three halfpennies +three kings' cake,three kings' cakes +three-legged race,three-legged races +three-line whip,three-line whips +threeling,threelings +three L,three Ls +three-martini lunch,three-martini lunches +three-milk cake,three-milk cakes +three-minute warning,three-minute warnings +three-peat,three-peats +threepeat,threepeats +threepenny bit,threepenny bits +threepenny-bit,threepenny-bits +three-piece suit,three-piece suits +three-point line,three-point lines +three-point turn,three-point turns +three-quarter back,three-quarter backs +three-quarter bathroom,three-quarter bathrooms +three-quarter brother,three-quarter brothers +three-quarter sibling,three-quarter siblings +three-quarter sister,three-quarter sisters +three-quarter,three-quarters +threequel,threequels +three ring circus,three ring circuses +three-ring circus,three-ring circuses +three Rs,three Rs +threescore,threescores +threeside,threesides +threesies,threesies +threesome,threesomes +three-space,three-spaces +threespace,threespaces +threespine stickleback,threespine sticklebacks +three,threes +three-time loser,three-time losers +three-way switch,three-way switches +three-way,three-ways +threeway,threeways +three-wheeler,three-wheelers +threitol,threitols +threne,threnes +threnode,threnodes +threnodist,threnodists +threnody,threnodies +threofuranose,threofuranoses +threofuranoside,threofuranosides +threonine,threonines +threonucleic acid,threonucleic acids +threonyl,threonyls +threose nucleic acid,threose nucleic acids +threose,threoses +thresherman,threshermen +thresher shark,thresher sharks +thresher,threshers +threshing floor,threshing floors +threshing-floor,threshing-floors +threshold,thresholds +threshwold,threshwolds +threskiornithid,threskiornithids +thribble,thribbles +thricecock,thricecocks +thrice-monthly,thrice-monthlies +thriftlessness,thriftlessnesses +thrift shop,thrift shops +thrillcraft,thrillcraft +thriller,thrillers +thrillfest,thrillfests +thrill killer,thrill killers +thrill-killer,thrill-killers +thrill killing,thrill killings +thrill kill,thrill kills +thrill-seeker,thrill-seekers +thrillseeker,thrillseekers +thrill,thrills +thrinaxodontid,thrinaxodontids +thripid,thripids +thripple,thripples +thrips,thrips +thrip,thrips +thriver,thrivers +thriving,thrivings +throat back,throat backs +throatband,throatbands +throat-boll,throat-bolls +throate,throates +throatful,throatfuls +throating,throatings +throatlash,throatlashes +throat latch,throat latches +throatlatch,throatlatches +throat microphone,throat microphones +throat,throats +throbber,throbbers +throbbing,throbbings +throb,throbs +throe,throes +throffer,throffers +thrombectomy,thrombectomies +thrombelastogram,thrombelastograms +thrombendarterectomy,thrombendarterectomies +thrombendarteriectomy,thrombendarteriectomies +thromboaspiration,thromboaspirations +thrombocyte,thrombocytes +thrombocythaemia,thrombocythaemias +thrombocythemia,thrombocythemias +thrombocytosis,thrombocytoses +thromboelastogram,thromboelastograms +thromboembolism,thromboembolisms +thrombo-endarterectomy,thrombo-endarterectomies +thromboendarterectomy,thromboendarterectomies +thrombo-endarteriectomy,thrombo-endarteriectomies +thromboendarteriectomy,thromboendarteriectomies +thromboendoarterectomy,thromboendoarterectomies +thrombolectin,thrombolectins +thrombolite,thrombolites +thrombophilia,thrombophilias +thromboplastin,thromboplastins +thrombopoietin,thrombopoietins +thrombosis,thromboses +thrombospondin,thrombospondins +thromboxane,thromboxanes +thrombspondin,thrombspondins +thrombus,thrombi +throne room,throne rooms +Throne Speech,Throne Speeches +throne,thrones +throng,throngs +thropple,thropples +throstle,throstles +throttle body,throttle bodies +throttlehold,throttleholds +throttler,throttlers +throttle,throttles +through and through,through and throughs +through ball,through balls +through-ball,through-balls +throughfall,throughfalls +throughflow,throughflows +throughgang,throughgangs +throughgoing,throughgoings +Through-hole technology,Through-hole technologies +through line,through lines +throughline,throughlines +throughput,throughputs +through-stone,through-stones +through,throughs +through train,through trains +through variable,through variables +throughway,throughways +throwable,throwables +throwaway line,throwaway lines +throw-away,throw-aways +throwback,throwbacks +throwboard,throwboards +throw-crook,throw-crooks +throw-down,throw-downs +throwdown,throwdowns +throwdown,throwdowns +thrower,throwers +throwe,throwes +throwie,throwies +throwing axe,throwing axes +throwing-axe,throwing-axes +throwing ax,throwing axes +throwing-ax,throwing-axes +throwing knife,throwing knives +throwing stick,throwing sticks +throw-in,throw-ins +throw-off,throw-offs +throw out,throw outs +throw-out,throw-outs +throwout,throwouts +throw pillow,throw pillows +throw rug,throw rugs +throwster,throwsters +throw,throws +throw,throws +throw,throws +throw-up,throw-ups +throwup,throwups +thrumb,thrumbs +thrum,thrums +thruppence,thruppences +thrushel,thrushels +thrusher,thrushers +thrushling,thrushlings +thrush nightingale,thrush nightingales +thrush,thrushes +thrush,thrushes +thruster,thrusters +thrust fault,thrust faults +thrusting,thrustings +thrustle,thrustles +thrust reverser,thrust reversers +thrust,thrusts +thrutch,thrutches +thruway,thruways +thryonomyid,thryonomyids +thud,thuds +thugocracy,thugocracies +thug,thugs +thuja,thujas +thujene,thujenes +thujone,thujones +thumbboard,thumbboards +thumb drive,thumb drives +thumber,thumbers +thumbhole,thumbholes +thumbies,thumbies +thumbikins,thumbikins +thumbkin,thumbkins +thumb knot,thumb knots +thumbnail,thumbnails +thumboard,thumboards +thumbpad,thumbpads +thumb position,thumb positions +thumbprint,thumbprints +thumbsbreadth,thumbsbreadths +thumbscrew,thumbscrews +thumbs down,thumbs down +thumbs-down,thumbs down +thumbshot,thumbshots +thumb sketch,thumb sketches +thumb-sketch,thumb-sketches +thumbsketch,thumbsketches +thumbstick,thumbsticks +thumbstroke,thumbstrokes +thumbsucker,thumbsuckers +thumbs up,thumbs up +thumbs-up,thumbs-up +thumbtack,thumbtacks +thumb,thumbs +thumb war,thumb wars +thumbwheel,thumbwheels +thumby,thumbies +thumper,thumpers +thump,thumps +thump-thump,thump-thumps +thunderbird,thunderbirds +Thunderbird,Thunderbirds +thunderblast,thunderblasts +thunderbolt beetle,thunderbolt beetles +thunderbolt,thunderbolts +thunderboomer,thunderboomers +thunderbox,thunderboxes +thunderburst,thunderbursts +thunderclap,thunderclaps +thunder cloud,thunder clouds +thundercloud,thunderclouds +thundercrack,thundercracks +thundercunt,thundercunts +thunderdunk,thunderdunks +thunderegg,thundereggs +thunderer,thunderers +thunderflash,thunderflashes +thunder god,thunder gods +thundergod,thundergods +thunderhead,thunderheads +thundering,thunderings +thunderlight,thunderlights +thunder lizard,thunder lizards +thundermug,thundermugs +thunder pot,thunder pots +thundershower,thundershowers +thundersquall,thundersqualls +thunderstick,thundersticks +thunderstone,thunderstones +thunderstorm,thunderstorms +thunderworm,thunderworms +thunk,thunks +thunnid,thunnids +thunny,thunnies +thurible,thuribles +thurifer,thurifers +Thuringian,Thuringians +thuringite,thuringites +thurl,thurls +thurrock,thurrocks +Thursday,Thursdays +thurse,thurses +thurst,thursts +thus and so,thus and sos +thus and such,thus and suches +thussock,thussocks +thuya,thuyas +thwacker,thwackers +thwack,thwacks +thwaite,thwaites +thwaite,thwaites +thwarter,thwarters +thwarting,thwartings +thwart,thwarts +thwittle,thwittles +thyasirid,thyasirids +thyatirid,thyatirids +thylacine,thylacines +thylacinid,thylacinids +thylacoleonid,thylacoleonids +thylacomyid,thylacomyids +thylacosmilid,thylacosmilids +thylakoid,thylakoids +thymate,thymates +thymectomy,thymectomies +thymene,thymenes +thyme,thymes +thymidine,thymidines +thymidylate,thymidylates +thymocyte,thymocytes +thymoleptic,thymoleptics +thymoma,thymomas +thymoquinone,thymoquinones +thymotic acid,thymotic acids +thymus,thymi +thynge,thynges +thyratron,thyratrons +thyreocorid,thyreocorids +thyreophoran,thyreophorans +thyreophorid,thyreophorids +thyridid,thyridids +thyristor,thyristors +thyrocyte,thyrocytes +thyrofissure,thyrofissures +thyroglobulin,thyroglobulins +thyroglossal duct,thyroglossal ducts +thyrohyal,thyrohyals +thyroid cartilage,thyroid cartilages +thyroidectomy,thyroidectomies +thyroid gland,thyroid glands +thyroidotomy,thyroidotomies +thyroid,thyroids +thyropharyngeus,thyropharyngei +thyroplasty,thyroplasties +thyropterid,thyropterids +thyrotomy,thyrotomies +thyrotoxicosis,thyrotoxicoses +thyrotoxin,thyrotoxins +thyrotrope,thyrotropes +thyrse,thyrses +thyrsus,thyrsi +thysanid,thysanids +thysanopteran,thysanopterans +thysanopter,thysanopters +thysanoteuthid,thysanoteuthids +thysanuran,thysanurans +tian,tians +tiara,tiaras +tiarella,tiarellas +tiar,tiars +Tibetan antelope,Tibetan antelopes +Tibetan fox,Tibetan foxes +Tibetan Mastiff,Tibetan Mastiffs +Tibetan script,Tibetan scripts +Tibetan,Tibetans +tibiale,tibialia +tibial,tibials +tibia,tibias,tibiae +tibicen,tibicines +tibiotarsus,tibiotarsi +tibrie,tibries +tib,tibs +tib,tibs +tiburon,tiburons +tical,ticals +ticcer,ticcers +ticement,ticements +tice,tices +tichel,tichels +tich,tiches +tick bite,tick bites +tickbite,tickbites +tick box,tick boxes +tickbox,tickboxes +ticker tape parade,ticker tape parades +ticker,tickers +ticket-collector,ticket-collectors +ticket designator,ticket designators +ticketer,ticketers +ticket-holder,ticket-holders +ticketholder,ticketholders +ticketing,ticketings +ticket inspector,ticket inspectors +ticket-inspector,ticket-inspectors +ticket machine,ticket machines +ticket office,ticket offices +ticket-of-leave,tickets-of-leave +ticket point mileage,ticket point mileages +ticket printer,ticket printers +ticket stamping machine,ticket stamping machines +ticket-stamping machine,ticket-stamping machines +ticket,tickets,tix +ticket time limit,ticket time limits +ticket tout,ticket touts +ticket vending machine,ticket vending machines +tickey box,tickey boxes +tickey-box,tickey-boxes +tickey,tickeys +ticking-off,tickings-off +ticking,tickings +tickler coil,tickler coils +tickler,ticklers +tickle,tickles +tick mark,tick marks +tickmark,tickmarks +tickseed,tickseeds +ticktack,ticktacks +tick,ticks +tick,ticks +tick,ticks +ticktock,ticktocks +ticky box,ticky boxes +ticky box,ticky boxes +ticky-box,ticky-boxes +ticky,tickies +Tico,Ticos +ticpolonga,ticpolongas +tic,tics +tidal bore,tidal bores +tidal current,tidal currents +tidal energy,tidal energies +tidal force,tidal forces +tidal island,tidal islands +tidalite,tidalites +tidal river,tidal rivers +tidal volume,tidal volumes +tidal wave,tidal waves +tidbit,tidbits +tiddler,tiddlers +tiddly,tiddlies +tiddlywink,tiddlywinks +tide day,tide days +tide dial,tide dials +tidefall,tidefalls +tide gate,tide gates +tide gauge,tide gauges +tideland,tidelands +tideline,tidelines +tide lock,tide locks +tidemark,tidemarks +tide mill,tide mills +tidepool,tidepools +tide rip,tide rips +tidesman,tidesmen +tide table,tide tables +tide,tides +tide waiter,tide waiters +tidewaiter,tidewaiters +tidewater,tidewaters +tideway,tideways +tide wheel,tide wheels +tidge,tidges +tidier,tidiers +tidife,tidifes +tiding,tidings +tidying,tidyings +tidy,tidies +tidytips,tidytips +tieback,tiebacks +tiebar,tiebars +tiebeam,tiebeams +tiebreaker,tiebreakers +tie-break,tie-breaks +tiebreak,tiebreaks +tie clip,tie clips +tied house,tied houses +tiedown,tiedowns +tie-dye,tie-dyes +tie in,tie ins +tie-in,tie-ins +Tiele,Tiele +tiemaker,tiemakers +tiepin,tiepins +Tierce de Picardie,Tierces de Picardie +tiercelet,tiercelets +tiercel,tiercels +tierce,tierces +tiercet,tiercets +tie rod,tie rods +tier,tiers +tier,tiers +tie tack,tie tacks +tie,ties +tie-up,tie-ups +tiewig,tiewigs +tie wrap,tie wraps +tiffany,tiffanies +tiffin,tiffins +tiff,tiffs +tifo,tifos +tift,tifts +tigella,tigellae +tigelle,tigelles +tiger beetle,tiger beetles +tiger bench,tiger benches +tiger cub,tiger cubs +tiger economy,tiger economies +tigerfish,tigerfish,tigerfishes +tiger kidnap,tiger kidnaps +tiger lily,tiger lilies +tiger-lily,tiger-lilies +tiger mom,tiger moms +tiger mother,tiger mothers +tiger moth,tiger moths +tiger mum,tiger mums +tiger nut,tiger nuts +tiger prawn,tiger prawns +tiger salamander,tiger salamanders +tiger's eye,tiger's eyes +tiger shark,tiger sharks +tiger snake,tiger snakes +tiger team,tiger teams +tiger,tigers +Tiger,Tigers +Tigger,Tiggers +tightass,tightasses +tight end,tight ends +tightener,tighteners +tightening gel,tightening gels +tightening,tightenings +tighter,tighters +tight five,tight fives +tighthead,tightheads +tigh,tighs +tight junction,tight junctions +tightlacer,tightlacers +tight loop,tight loops +tight rope,tight ropes +tight-rope,tight-ropes +tightrope,tightropes +tightrope walker,tightrope walkers +tight ship,tight ships +tight spot,tight spots +tightwad,tightwads +tightwire,tightwires +tiglon,tiglons +tignon,tignons +tigon,tigons +tigress,tigresses +tigre,tigres +tigrillo,tigrillos +Tijani,Tijanis +Tijuanan,Tijuanans +tike,tikes +tiki bar,tiki bars +tiki,tikis +tiki torch,tiki torchs +tikka,tikkas +tikoloshe,tikoloshes +Tikopian,Tikopians +tik,tik +tilaka,tilakas +tilak,tilaks +tilapia,tilapias,tilapia +tilbury,tilburies +tilde,tildes +tilefish,tilefish,tilefishes +tilemaker,tilemakers +tiler,tilers +tilery,tileries +tile saw,tile saws +tileset,tilesets +tilestone,tilestones +tile,tiles +Tillamook,Tillamooks,Tillamook +tillandsia,tillandsias +tiller extension,tiller extensions +tillerman,tillermen +tiller,tillers +tiller,tillers +tiller,tillers +tillet,tillets +Tilley lamp,Tilley lamps +tillite,tillites +tillman,tillmen +tillodont,tillodonts +tillow,tillows +till-tapper,till-tappers +till,tills +till,tills +till,tills +tilly,tillies +tilly,tillies +tilt barrier,tilt barriers +tilter,tilters +tilt hammer,tilt hammers +tilting,tiltings +tiltmeter,tiltmeters +tiltorama,tiltoramas +tilt rail,tilt rails +tilt,tilts +tilt,tilts +tilt-yard,tilt-yards +tiltyard,tiltyards +timaliid,timaliids +timar,timars +timbalero,timbaleros +timbale,timbales +timbal,timbals +timber camp,timber camps +timberdoodle,timberdoodles +timberhead,timberheads +timber hitch,timber hitches +timbering,timberings +timberland,timberlands +timber line,timber lines +timberline,timberlines +timberling,timberlings +timberman,timbermen +timber nigger,timber niggers +timber,timbers +timber wolf,timber wolves +timberwolf,timberwolves +timber yard,timber yards +timberyard,timberyards +timbrelist,timbrelists +timbrel,timbrels +timbre,timbres +timburine,timburines +time and material,time and materials +time attack,time attacks +time average,time averages +time ball,time balls +time-ball,time-balls +timebase,timebases +time bill,time bills +time-bill,time-bills +time bomb,time bombs +time-bomb,time-bombs +timebomb,timebombs +time-book,time-books +timebook,timebooks +time box,time boxes +timebox,timeboxes +time capsule,time capsules +timecard,timecards +time clock,time clocks +time code,time codes +timecode,timecodes +time constant,time constants +timecourse,timecourses +time delay,time delays +time-delay,time-delays +time deposit,time deposits +time difference,time differences +time dilatation,time dilatations +time domain,time domains +timed text,timed texts +time exposure,time exposures +time-exposure,time-exposures +time frame,time frames +timeframe,timeframes +time horizon,time horizons +time immemorial,times immemorial +time interval,time intervals +time-keeper,time-keepers +timekeeper,timekeepers +time killer,time killers +time-killer,time-killers +timekiller,timekillers +time limit,time limits +time-limit,time-limits +timelimit,timelimits +time line,time lines +time-line,time-lines +timeline,timelines +timeling,timelings +time loan,time loans +time lock,time locks +time-lock,time-locks +timelock,timelocks +timelord,timelords +time machine,time machines +timenoguy,timenoguys +time note,time notes +time of day,times of day +time of departure,times of departure +time-of-flight,times-of-flight +time of pitch,time of pitches +time of the month,times of the month +time of year,times of year +time out of mind,times out of mind +time out,time outs +time-out,time-outs +timeout,timeouts +timepiece,timepieces +time-pleaser,time-pleasers +timepleaser,timepleasers +timepoint,timepoints +time preference,time preferences +time reversal,time reversals +timer,timers +time-saver,time-savers +timesaver,timesavers +time scale,time scales +time-scale,time-scales +timescale,timescales +timescape,timescapes +time series,time series +timeserver,timeservers +time-share,time-shares +timeshare,timeshares +time sheet,time sheets +timesheet,timesheets +timeshift,timeshifts +time signal,time signals +time-signal,time-signals +time signature,time signatures +time-signature,time-signatures +time sink,time sinks +time slice,time slices +timeslice,timeslices +time-slicing,time-slicings +timeslip,timeslips +time slot,time slots +time-slot,time-slots +timeslot,timeslots +timespan,timespans +times sign,times signs +times table,times tables +time-stamp,time-stamps +timestamp,timestamps +time standard,time standards +timestep,timesteps +timestream,timestreams +Time stretch analog-to-digital converter,Time stretch analog-to-digital converters +time study,time studies +timesuck,timesucks +time table,time tables +time-table,time-tables +timetable,timetables +time test,time tests +time-traveler,time-travelers +time-traveller,time-travellers +time trialist,time trialists +time trial,time trials +time tunnel,time tunnels +time warp,time warps +timewarp,timewarps +time-waster,time-wasters +timewaster,timewasters +timewave,timewaves +time zone,time zones +time-zone,time-zones +timezone,timezones +timing belt,timing belts +timist,timists +timmer,timmers +timocracy,timocracies +timocrat,timocrats +timoneer,timoneers +Timonian,Timonians +Timonism,Timonisms +Timonist,Timonists +Timonization,Timonizations +timpanist,timpanists +timpanum,timpanums,timpana +timple,timples +tim-whiskey,tim-whiskeys,tim-whiskies +tinaja,tinajas +tinamid,tinamids +tinamou,tinamous +tin anniversary,tin anniversaries +tin bath,tin baths +tin can,tin cans +tinchel,tinchels +tinclad,tinclads +tin cry,tin cries +tinct,tincts +tinctumutation,tinctumutations +tinctura,tincturae +tincturation,tincturations +tincture,tinctures +tindal,tindals +tindarid,tindarids +tindariid,tindariids +tinder-box,tinder-boxes +tinderbox,tinderboxes +tin dog,tin dogs +tindora,tindoras +tind,tinds +tin ear,tin ears +tinea,tineas,tineae +tineid,tineids +tineman,tinemen +tineodid,tineodids +tine,tines +tinfoiler,tinfoilers +tin-foil hat,tin-foil hats +tinfoil hat,tinfoil hats +tinful,tinfuls,tinsful +tinger,tingers +tinge,tinges +tingid,tingids +tingler,tinglers +tingle,tingles +tingling,tinglings +tin god,tin gods +ting,tings +ting,tings +tinhorn,tinhorns +Tinkerbell,Tinkerbells +tinkerbird,tinkerbirds +tinkerer,tinkerers +tinkering,tinkerings +tinker,tinkers +tinkler,tinklers +tinkler,tinklers +tinkle,tinkles +tinkling,tinklings +tin knocker,tin knockers +tink,tinks +tinley,tinleys +tin lizzie,tin lizzies +tin Lizzie,tin Lizzies +Tin Lizzie,Tin Lizzies +tin man,tin men +tinman,tinmen +tin mine,tin mines +tinmine,tinmines +tinmouth,tinmouths +tinner,tinners +tinnie,tinnies +tinning,tinnings +tinnitus,tinnituses +tinodontid,tinodontids +tin opener,tin openers +tin-opener,tin-openers +tin plate,tin plates +tinplate,tinplates +tin-pot dictator,tin-pot dictators +tinpot dictator,tinpot dictators +tin sandwich,tin sandwiches +tinsmith,tinsmiths +tinsmithy,tinsmithies +tinsnips,tinsnips +tin soldier,tin soldiers +tin tabernacle,tin tabernacles +tintack,tintacks +tintamar,tintamars +tinta,tintas +tinter,tinters +tintinnabulation,tintinnabulations +tinto de verano,tintos de verano +tint,tints +tintype,tintypes +tin whistle,tin whistles +tinygram,tinygrams +tiny,tinies +tiΓ³ de Nadal,tions de Nadal +tipcart,tipcarts +tipcat,tipcats +tip credit,tip credits +tiphiid,tiphiids +tipi,tipis +Ti plasmid,Ti plasmids +Tipler cylinder,Tipler cylinders +tipline,tiplines +tip-off,tip-offs +tipoff,tipoffs +tip of the hat,tips of the hat +tip out,tip outs +tip over,tip overs +tippee,tippees +tipper,tippers +tippet,tippets +tipping point,tipping points +tipping,tippings +tippler,tipplers +tipple,tipples +tippling,tipplings +tippy,tippies +tippy-toe,tippy-toes +tippytoe,tippytoes +tip sheet,tip sheets +tipsheet,tipsheets +tipstaff,tipstaffs,tipstaves +tipster,tipsters +tip,tips +tip,tips +tip,tips +tip,tips +tip,tips +tip,tips +tiptoer,tiptoers +tip-toe,tip-toes +tiptoe,tiptoes +tip-top,tip-tops +tiptop,tiptops +tipula,tipulas,tipulae +tipulid,tipulids +tipuna,tipunas +tip wage credit,tip wage credits +tiqueur,tiqueurs +tirade,tirades +tirailleur,tirailleurs +tiramisu,tiramisus +Tiranan,Tiranans +tire barrier,tire barriers +tire bead,tire beads +tire gauge,tire gauges +tire iron,tire irons +tire kicker,tire kickers +tiremaker,tiremakers +tire-pressure gauge,tire-pressure gauges +tire-pressure,tire-pressures +tire,tires +tire,tires +tirewoman,tirewomen +tiring-room,tiring-rooms +tiring,tirings +tirma,tirmas +tiro,tiros +Tirthankara,Tirthankaras +tirtha,tirthas +tisane,tisanes +tisan,tisans +tisar,tisars +tischeriid,tischeriids +tissotiid,tissotiids +tissue culture,tissue cultures +tissue paper,tissue papers +tissue,tissues +titanate,titanates +Titanian,Titanians +titanic acid,titanic acids +titanichthyid,titanichthyids +titanium alloy,titanium alloys +titanium dioxide,titanium dioxides +titanium nitride,titanium nitrides +titanium oxide,titanium oxides +titanium sand,titanium sands +titanium suboxide,titanium suboxides +titanium white,titanium whites +titanoecid,titanoecids +titanoideid,titanoideids +titanomagnetite,titanomagnetites +titanosaurian,titanosaurians +titanosaurid,titanosaurids +titanosauriform,titanosauriforms +titanosauroid,titanosauroids +titanosaur,titanosaurs +titanosilicate,titanosilicates +titanosuchid,titanosuchids +titanothere,titanotheres +titanotheriid,titanotheriids +titanotherium,titanotheriums +titanowodginite,titanowodginites +titan,titans +Titan,Titans +titanyl,titanyls +titbit,titbits +titch,titches +titer,titers +titfer,titfers +tit for tat,tit for tats +tit fuck,tit fucks +titfuck,titfucks +tither,tithers +tithe,tithes +tithingman,tithingmen +tithing,tithings +tithi,tithis +tithonometer,tithonometers +tithymal,tithymals +titian,titians +Titicaca frog,Titicaca frogs +titillation,titillations +ti,tis +titi,titis +tit juice,tit juices +titlark,titlarks +title character,title characters +title deed,title deeds +title defect,title defects +titleholder,titleholders +titlene,titlenes +title page,title pages +title policy,title policies +titler,titlers +titler,titlers +title,titles +title track,title tracks +titling,titlings +titlist,titlists +titlo,titlos +titman,titmen +titmouse,titmouses,titmice +Titoist,Titoists +titrant,titrants +titration,titrations +titrator,titrators +titre,titres +titterel,titterels +titter,titters +titter-totter,titter-totters +tittie,titties +tit,tits +tit,tits +tit,tits +tittlebat,tittlebats +tittle,tittles +tittup,tittups +titty bar,titty bars +titty,titties +titty twister,titty twisters +titubation,titubations +titular see,titular sees +titular,titulars +titulary,titularies +tit wank,tit wanks +titwank,titwanks +tiver,tivers +tiyin,tiyin +tiyn,tiyn +tizz,tizzes +tizzy,tizzies +tjalk,tjalks +tjommie,tjommies +T-junction,T-junctions +tjuringa,tjuringas +tjurunga,tjurungas +tlachtli,tlachtlis +tlaquimilolli,tlaquimilolli +Tlingit,Tlingits +tmesis,tmeses +TMI,TMIs +tmRNA,tmRNAs +t-norm,t-norms +TNO,TNOs +toadeater,toadeaters +toadfish,toadfish,toadfishes +toadflax,toadflaxes +toad in the hole,toads in the hole +toadlet,toadlets +toadling,toadlings +toadskin,toadskins +toadsticker,toadstickers +toadstone,toadstones +toadstool,toadstools +toad-strangler,toad-stranglers +toad,toads +toady,toadies +to and fro,to and fros +toastcrumb,toastcrumbs +toasted cheese,toasted cheeses +toaster oven,toaster ovens +toaster,toasters +toastie maker,toastie makers +toastie,toasties +toasting,toastings +toastmaker,toastmakers +toastmaster,toastmasters +toastmistress,toastmistresses +toast of the town,toasts of the town +toast rack,toast racks +toastrack,toastracks +toa,toas +toat,toats +tobacconist,tobacconists +tobaccophile,tobaccophiles +tobaccophobe,tobaccophobes +tobacco pipe,tobacco pipes +Tobagonian,Tobagonians +tobamovirus,tobamoviruses +tobiano,tobianos +tobine,tobines +tobogganer,tobogganers +tobogganist,tobogganists +toboggan slide,toboggan slides +toboggan,toboggans +tobogin,tobogins +tobravirus,tobraviruses +to-bread,to-breads +Toby mush,Toby mushes +toby,tobies +toccata,toccatas +Tocharian,Tocharians +tocher,tochers +toches,tocheses +tochis,tochises +tockay,tockays +tock,tocks +tocodynamometer,tocodynamometers +tocolytic,tocolytics +tocopherol,tocopherols +tocopheryl,tocopheryls +tocoquinone,tocoquinones +tocororo,tocororos +toco,tocos +toco toucan,toco toucans +tocotrienol,tocotrienols +tocsin,tocsins +to-day,to-days +today,todays +toddick,toddicks +toddler,toddlers +todd,todds +toddy cat,toddy cats +toddy palm,toddy palms +toddy,toddies +tode,todes +tode,todes +todger dodger,todger dodgers +todger,todgers +todid,todids +to-do list,to-do lists +todorokite,todorokites +to-do,to-dos +todo,todos +to-draw,to-draws +tod,tods +tod,tods +tody,todies +toea,toea +toeboard,toeboards +toe box,toe boxes +toebox,toeboxes +toecap,toecaps +toe edge,toe edges +toe hold,toe holds +toe-hold,toe-holds +toehold,toeholds +toe job,toe jobs +toejob,toejobs +toenail,toenails +toe pick,toe picks +toepick,toepicks +toepiece,toepieces +toe-poke,toe-pokes +toepoke,toepokes +toeprint,toeprints +toe rag,toe rags +toe rag,toe rags +toe rag,toe rags +toerag,toerags +toe ring,toe rings +toering,toerings +toe shoe,toe shoes +toeshoe,toeshoes +toeside,toesides +toe sock,toe socks +toe stop,toe stops +toe tapper,toe tappers +toe-tapper,toe-tappers +toe,toes +toe touch,toe touches +to-fall,to-falls +tofall,tofalls +toffee apple,toffee apples +toff,toffs +toffy,toffies +Tofitian,Tofitians +toftman,toftmen +toft,tofts +tofuburger,tofuburgers +tofurky,tofurkies +tofu,tofus +toga party,toga parties +toga,togas,togae,togΓ¦ +togemans,togemans +togethership,togetherships +toge,toges +togey,togeys +toggle bolt,toggle bolts +toggle iron,toggle irons +toggle joint,toggle joints +toggle switch,toggle switches +toggle,toggles +Togolander,Togolanders +Togolese,Togolese +togrog,togrogs +tog,togs +togue,togue +toheroa,toheroas +toiler,toilers +toilet baby,toilet babies +toilet book,toilet books +toilet bowl,toilet bowls +toilet brush,toilet brushes +toilet jack,toilet jacks +toilet paper,toilet papers +toilet roll,toilet rolls +toiletry,toiletries +toilet seat,toilet seats +toilet table,toilet tables +toilette,toilettes +toilet tissue,toilet tissues +toilet,toilets +toilet water,toilet waters +toil,toils +to-infinitive,to-infinitives +toise,toises +tokaji,tokajis +tokamak,tokamaks +tokay gecko,tokay geckos,tokay geckoes +Tokay gecko,Tokay geckos,Tokay geckoes +tokay,tokays +Tokelauan,Tokelauans +token economy,token economies +tokeniser,tokenisers +tokenizer,tokenizers +token ring,token rings +token,tokens +toker,tokers +toke,tokes +toke,tokes +toke tube,toke tubes +Tokharian,Tokharians +tokhes,tokheses +tokin,tokins +tokin,tokins +tokoeka,tokoekas +tokoloshe,tokoloshes +tokonoma,tokonomas +toktokkie,toktokkies +tokyoite,tokyoites +Tokyoite,Tokyoites +tolah,tolahs +Tolai,Tolais,Tolai +tolar,tolars,tolarjev +tola,tolas +tolbooth,tolbooths +tolbot,tolbots +toledo,toledos +tolerator,tolerators +tolerization,tolerizations +tolerogen,tolerogens +tole,toles +Tolkienite,Tolkienites +toll barrier,toll barriers +toll-bar,toll-bars +tollbar,tollbars +toll booth,toll booths +tollbooth,tollbooths +toll bridge,toll bridges +toll call,toll calls +toll-collector,toll-collectors +toller,tollers +toller,tollers +tollgate,tollgates +tollhouse,tollhouses +tollie,tollies +tolling agreement,tolling agreements +tolling agreement,tolling agreements +tollkeeper,tollkeepers +toll-like receptor,toll-like receptors +toll line,toll lines +tollman,tollmen +toll plaza,toll plazas +toll road,toll roads +tollroad,tollroads +toll,tolls +toll,tolls +tollway,tollways +tolmen,tolmens +tolsey,tolseys +Toltec,Toltecs,Toltec +tolt,tolts +tolt,tolts +toluamide,toluamides +toluate,toluates +toluenesulfonate,toluenesulfonates +toluenesulfonic acid,toluenesulfonic acids +toluenesulfonyl,toluenesulfonyls +toluic acid,toluic acids +toluidide,toluidides +toluidine,toluidines +toluole,toluoles +toluric acid,toluric acids +toluyl,toluyls +tolyl,tolyls +tolypeutine,tolypeutines +tomahawk mark,tomahawk marks +tomahawk,tomahawks +Tomahawk,Tomahawks +tomalley,tomalleys +Tom and Jerry,Tom and Jerries +toman,tomans +tomatillo,tomatillos +tomatinase,tomatinases +tomato can,tomato cans +tomato juice,tomato juices +tomato paste,tomato pastes +tomato purΓ©e,tomato purΓ©es +tomato,tomatoes,tomatos +tombak,tombaks +tombΓ©,tombΓ©s +tombola,tombolas +tombolo,tombolos +tom boy,tom boys +tomboy,tomboys +tombstoner,tombstoners +tombstone,tombstones +tomb,tombs +tombusvirus,tombusviruses +tom cat,tom cats +tomcat,tomcats +Tom Collins,Tom Collinses +tomelet,tomelets +tomentum,tomenta +tome,tomes +tomfool,tomfools +tomgirl,tomgirls +tomium,tomia +tomjohn,tomjohns +Tom Jones,Tom Joneses +tomling,tomlings +tommy bar,tommy bars +tommy cooker,tommy cookers +Tommy gun,Tommy guns +Tommy John surgery,Tommy John surgeries +tommyknocker,tommyknockers +tommy logge,tommy logges +Tommy,Tommies +tomnoddy,tomnoddies +tomogram,tomograms +tomographer,tomographers +tomograph,tomographs +tomography,tomographies +tomorrow night,tomorrow nights +to-morrow,to-morrows +tomorrow,tomorrows +tomosynthesis,tomosyntheses +tompion,tompions +tompot blenny,tompot blennies +tomrig,tomrigs +tomset,tomsets +tom tit,tom tits +tom-tit,tom-tits +tomtit,tomtits +tom,toms +tom,toms +tom-tom,tom-toms +Tom Tom,Tom Toms +tonal center,tonal centers +tonalist,tonalists +tonalite,tonalites +tonality,tonalities +tonal,tonals +to-name,to-names +toname,tonames +tonation,tonations +tona,tonas +tonca bean,tonca beans +tondo,tondos +tone arm,tone arms +tonearm,tonearms +tone mark,tone marks +toneme,tonemes +tone number,tone numbers +tone of voice,tones of voice +tonepad,tonepads +tone poem,tone poems +toner,toners +tone,tones +tonewheel,tonewheels +tonfa,tonfas +Tongan,Tongans +tonga,tongas +tongkang,tongkangs +tong,tongs +tong,tongs +tonguage,tonguages +tongue and groove,tongue and grooves +tongue clacker,tongue clackers +tongue-clacker,tongue-clackers +tongue depressor,tongue depressors +tonguefish,tonguefishes,tonguefish +tonguefucker,tonguefuckers +tonguefuck,tonguefucks +tongue kiss,tongue kisses +tongue lashing,tongue lashings +tongue-lashing,tongue-lashings +tongueless frog,tongueless frogs +tonguelet,tonguelets +tongue map,tongue maps +tongue-pad,tongue-pads +tonguepad,tonguepads +tongue ring,tongue rings +tongue-shell,tongue-shells +tonguester,tonguesters +tongue,tongues +tongue twister,tongue twisters +tongue-twister,tongue-twisters +tongueworm,tongueworms +tonguing,tonguings +tonicity,tonicities +tonicization,tonicizations +tonick,tonicks +tonic,tonics +tonic,tonics +tonight,tonights +toning,tonings +Toni,Tonis +tonka bean,tonka beans +tonk,tonks +tonk,tonks +Tonk,Tonks +tonlet,tonlets +ton mile,ton miles +tonneau cover,tonneau covers +tonneau,tonneaus,tonneaux +tonner,tonners +tonne,tonnes +tonnid,tonnids +tonofibril,tonofibrils +tonofilament,tonofilaments +ton of refrigeration,tons of refrigeration +tonometer,tonometers +tonophant,tonophants +tonoplast,tonoplasts +tonos,tonoi +tonqua bean,tonqua beans +tonquin bean,tonquin beans +tonsilitis,tonsilitises +tonsillectomy,tonsillectomies +tonsillolith,tonsilloliths +tonsillotome,tonsillotomes +tonsillotomy,tonsillotomies +tonsilotome,tonsilotomes +tonsilotomy,tonsilotomies +tonsil,tonsils +tonsor,tonsors +tonsure,tonsures +tontine,tontines +ton,tons +ton,tons +Tonto,Tontos +ton-up,ton-ups +Tony crony,Tony cronies +Tony Lumpkin,Tony Lumpkins +tony,tonies +tookie,tookies +tool and die,tool and dies,tools and dies +toolbag,toolbags +tool bar,tool bars +tool-bar,tool-bars +toolbar,toolbars +toolbelt,toolbelts +toolbox,toolboxes +toolchain,toolchains +tool chest,tool chests +toolie,toolies +tooling,toolings +tool kit,tool kits +toolkit,toolkits +toolmaker,toolmakers +tool of choice,tools of choice +tool path,tool paths +toolpath,toolpaths +tool post,tool posts +toolpost,toolposts +tool-pusher,tool-pushers +toolpusher,toolpushers +tool-rest,tool-rests +toolset,toolsets +toolshed,toolsheds +toolsmith,toolsmiths +toolstock,toolstocks +tooltip,tooltips +tool,tools +toom,tooms +tooner,tooners +toonie,toonies +toonophile,toonophiles +toon,toons +toon,toons +toon,toons +toosh,tooshes +tooter,tooters +toothache,toothaches +toothake,toothakes +toothbill,toothbills +toothbrusher,toothbrushers +toothbrushing,toothbrushings +toothbrush mustache,toothbrush mustaches +toothbrush,toothbrushes +toothcomb,toothcombs +tooth-drawer,tooth-drawers +toothdrawer,toothdrawers +toothed whale,toothed whales +tooth fairy,tooth fairies +toothfish,toothfishes,toothfish +toothful,toothfuls +toothing,toothings +toothlet,toothlets +toothmark,toothmarks +toothmug,toothmugs +toothpaste,toothpastes +toothpicker,toothpickers +toothpick,toothpicks +toothpuller,toothpullers +tooth shell,tooth shells +toothshell,toothshells +tooth socket,tooth sockets +tooth,teeth +toothwort,toothworts +tootsie,tootsies +toot,toots +Top 40,Top 40s +top and tail,tops and tails +top antiquark,top antiquarks +top-arch,top-archs +toparch,toparchs +Toparch,Toparchs +toparchy,toparchies +topark,toparks +top-armour,top-armours +topazolite,topazolites +top banana,top bananas +topbar,topbars +top-block,top-blocks +topboot,topboots +top-chain,top-chains +topcloth,topcloths +topcoat,topcoats +top dead center,top dead centers +top deck,top decks +top dog,top dogs +top dollar,top dollars +top edge,top edges +topee,topees +toper,topers +tope,topes +tope,topes +tope,topes +tope,topes +topgallant,topgallants +top gun,top guns +tophaike,tophaikes +top-hamper,top-hampers +top hand,top hands +top hat,top hats +tophat,tophats +Tophet,Tophets +tophus,tophi +topiarist,topiarists +topicalization,topicalizations +topical,topicals +topicity,topicities +topick,topicks +topic map,topic maps +topic sentence,topic sentences +topic,topics +topi,topi +top kill,top kills +topknot,topknots +topless,toplesses +top-level domain,top-level domains +toplight,toplights +top line,top lines +top line,top lines +topline,toplines +top loader,top loaders +topman,topmen +topmast,topmasts +topminnow,topminnows +top of mind awareness,top of mind awarenesses +top-of-mind awareness,top-of-mind awarenesses +topographer,topographers +topographical map,topographical maps +topographist,topographists +topograph,topographs +topography,topographies +topoisomerase,topoisomerases +topoisomerization,topoisomerizations +topoisomer,topoisomers +topolect,topolects +topological group,topological groups +topological insulator,topological insulators +topological space,topological spaces +topologist,topologists +topology,topologies +topomerization,topomerizations +topomer,topomers +toponium,toponiums,toponia +toponomist,toponomists +toponym,toponyms +topophotomap,topophotomaps +top order,top orders +toposcope,toposcopes +topos,topoi,toposes +topo,topos +topotype,topotypes +topozone,topozones +topper,toppers +toppiece,toppieces +toppie,toppies +topping,toppings +toppling,topplings +top-poster,top-posters +top-post,top-posts +toppyup,toppyups +top quark,top quarks +top-rope,top-ropes +topsail,topsails +top scorer,top scorers +topscorer,topscorers +top seed,top seeds +top sheet,top sheets +topshell,topshells +topsider,topsiders +topside,topsides +topsite,topsites +tops'l,tops'ls +topsman,topsmen +topsoil,topsoils +top-spinner,top-spinners +topstone,topstones +top tier,top tiers +top-to-bottom,top-to-bottoms +top,tops +toque,toques +toque,toques +toquet,toquets +toquilla palm,toquilla palms +toquilla,toquillas +toqui,toquis +Torah,Torahs +torbanite,torbanites +Torbay sole,Torbay soles +torbie,torbies +torchbearer,torchbearers +torchecul,torcheculs +torcher,torchers +torchier,torchiers +torching,torchings +torchlight,torchlights +torchman,torchmen +torchon,torchons +torch runner,torch runners +torch singer,torch singers +torch song,torch songs +torch,torches +torchwood,torchwoods +torc,torcs +toreador,toreadors +torelon,torelons +torero,toreros +tore,tores +toret,torets +torgoch,torgochs +Toriphile,Toriphiles +Torlakian,Torlakians +Torlak,Torlaks +torma,tormas +tormenter,tormenters +tormentil,tormentils +tormentor,tormentors +tormentour,tormentours +tormentress,tormentresses +torment,torments +tormogen,tormogens +tornadocane,tornadocanes +tornado,tornados +tornado,tornados,tornadoes +tornaria,tornarias,tornariae +tornid,tornids +tornillo,tornillos +tornoceratid,tornoceratids +toroid,toroids +Torontarian,Torontarians +Toronto blessing,Toronto blessings +Torontonian,Torontonians +torosaurus,torosauruses +torovirus,toroviruses +torpedinid,torpedinids +torpedo boat,torpedo boats +torpedo bomber,torpedo bombers +torpedo punt,torpedo punts +torpedo roll,torpedo rolls +torpedo,torpedoes,torpedos +torpedo tube,torpedo tubes +torq,torqs +torque spanner,torque spanners +torque,torques +torque,torques +torque wrench,torque wrenches +torquoselectivity,torquoselectivities +torrand,torrands +Torrens title,Torrens titles +torrent,torrents +torrent,torrents +torrert,torrerts +Torricellian barometer,Torricellian barometers +torridincolid,torridincolids +torril,torrils +torrion,torrions +torripsamment,torripsamments +torrock,torrocks +torrox,torroxes +torr,torrs +torsade,torsades +torsalo,torsalos +torsal,torsals +torsel,torsels +torse,torses +torsion angle,torsion angles +torsion,torsions +torsion wrench,torsion wrenches +torsk,torsks +torsor,torsors +torso,torsos,torsi +torta,tortas +torteau,torteaus +torte,tortes +tortfeasor,tortfeasors +tortie,torties +tortilla chip,tortilla chips +tortilla,tortillas +tortillon,tortillons +tortious interference,tortious interferences +tortoiseshell cat,tortoiseshell cats +tortoise shell,tortoise shells +tortoise,tortoises +tortoni,tortonis +tor,tors +tor,tors +tortricid,tortricids +tortrix,tortrixes +tort,torts +torture chamber,torture chambers +torturee,torturees +torturer,torturers +torturess,torturesses +torture stake,torture stakes +torture,tortures +torturing,torturings +torula,torulas,torulae +torus,tori,toruses +torvosaurid,torvosaurids +Torx head,Torx heads +torymid,torymids +tory,tories +Tory,Tories +Tosca,Toscas +tosheroon,tosheroons +tosher,toshers +tospovirus,tospoviruses +tossed salad,tossed salads +tossel,tossels +tosser,tossers +tossing,tossings +tosspiece,tosspieces +tosspot,tosspots +toss,tosses +toss-up question,toss-up questions +toss-up,toss-ups +tossup,tossups +tostada,tostadas +tostone,tostones +tosylamide,tosylamides +tosylate,tosylates +tosylation,tosylations +tosylimine,tosylimines +tosyl,tosyls +total clearance,total clearances +total eclipse,total eclipses +totalisator,totalisators +totalitarianist,totalitarianists +totalitarian,totalitarians +totalizator,totalizators +totalizer,totalizers +total loss,total losses +totally ordered set,totally ordered sets +total ordering relation,total ordering relations +total order,total orders +total return swap,total return swaps +total revenue,total revenues +total synthesis,total syntheses +total,totals +totative,totatives +tota,totas +tote bag,tote bags +tote board,tote boards +totemist,totemists +totem pole,totem poles +totem,totems +Totenkopf,Totenkopfs +toter,toters +tote,totes +tote,totes +t'othersider,t'othersiders +totient,totients +totivirus,totiviruses +Totten trust,Totten trusts +totterer,totterers +totter,totters +tot,tots +toubab,toubabs +toucan crossing,toucan crossings +toucanet,toucanets +toucan,toucans +touch-and-go landing,touch-and-go landings +touch-and-go,touch-and-gos +toucha,touchas +touchback,touchbacks +touchbox,touchboxes +touchdown dance,touchdown dances +touchdown,touchdowns +toucher,touchers +touch hole,touch holes +touch-hole,touch-holes +touchhole,touchholes +touchline,touchlines +touch-mark,touch-marks +touchmark,touchmarks +touch-me-not,touch-me-nots +touch-needle,touch-needles +touchpad,touchpads +touch panel,touch panels +touchpanel,touchpanels +touch-paper,touch-papers +touchpaper,touchpapers +touch piece,touch pieces +touchpoint,touchpoints +touch screen,touch screens +touch-screen,touch-screens +touchscreen,touchscreens +touchstone,touchstones +touch-tone,touch-tones +touchtone,touchtones +touch,touches +touch-typist,touch-typists +touch-up,touch-ups +touchup,touchups +tough-cake,tough-cakes +tough call,tough calls +tough case,tough cases +tough cookie,tough cookies +tough crowd,tough crowds +toughener,tougheners +tougher nut to crack,tougher nuts to crack +toughest nut to crack,toughest nuts to crack +toughie,toughies +toughness,toughnesses +tough nut to crack,tough nuts to crack +toughra,toughras +tough row to hoe,tough rows to hoe +tough titty,tough titties +tough,toughs +toughy,toughies +tounge,tounges +toupee,toupees +toupe,toupes +toupet,toupets +touraco,touracos +tourbillion,tourbillions +tourbillon,tourbillons +tour bus,tour buses +tour de force,tours de force +tour d'horizon,tours d'horizon +tourelle,tourelles +tourer,tourers +Touretter,Touretters +Tourettism,Tourettisms +tourgoer,tourgoers +tour guide,tour guides +touring car,touring cars +touring company,touring companies +touring motorcycle,touring motorcycles +touring side,touring sides +touring squad,touring squads +tourist office,tourist offices +touristscape,touristscapes +tourist,tourists +tourist trap,tourist traps +tourist visa,tourist visas +tourmaline,tourmalines +tour match,tour matches +tour mate,tour mates +tourmate,tourmates +tournament,tournaments +tournery,tourneries +tourney,tourneys +tourniquet,tourniquets +tourn,tourns +tournure,tournures +tour of duty,tours of duty +touronaut,touronauts +tour operator,tour operators +tourscape,tourscapes +tourtiere,tourtieres +tourtiΓ¨re,tourtiΓ¨res +tour,tours +tour,tours +tousche,tousches +touser,tousers +touse,touses +touter,touters +tout,touts +tovarich,tovariches +tovarishch,tovarishches +tovarish,tovarishes +tovero,toveros +towage,towages +towall,towalls +tow bar,tow bars +towbar,towbars +towboater,towboaters +towboat,towboats +towee,towees +towelette,towelettes +towelhead,towelheads +towel-horse,towel-horses +towel rail,towel rails +towel snap,towel snaps +towel,towels +tower crane,tower cranes +towering inferno,towering infernos +tower of Babel,towers of Babel +Tower of Babel,Towers of Babel +tower of silence,towers of silence +tower of strength,towers of strength +tower,towers +tower,towers +tow-head,tow-heads +towhead,towheads +towhee,towhees +towing bitt,towing bitts +towkay,towkays +towline,towlines +town bicycle,town bicycles +town car,town cars +town center,town centers +town centre,town centres +town clerk,town clerks +town crier,town criers +townee,townees +towne,townes +townful,townfuls,townsful +town hall,town halls +townhall,townhalls +townhome,townhomes +town house,town houses +townhouse,townhouses +townie,townies +townland,townlands +townlet,townlets +townscape,townscapes +township,townships +townsite,townsites +townsman,townsmen +town square,town squares +townswoman,townswomen +town,towns +towny,townies +towpath,towpaths +towre,towres +towrope,towropes +towsack,towsacks +towship,towships +tow,tows +tow,tows +tow truck,tow trucks +tow-truck,tow-trucks +towtruck,towtrucks +toxaemia,toxaemias +toxΓ¦mia,toxΓ¦mias,toxΓ¦miΓ¦ +toxalbumin,toxalbumins +toxaphene,toxaphenes +toxemia,toxemias +toxicant,toxicants +toxication,toxications +toxicologist,toxicologists +toxicomania,toxicomanias +toxicosis,toxicoses +toxic shock syndrome,toxic shock syndromes +toxidrome,toxidromes +toxification,toxifications +toxine,toxines +toxinosis,toxinoses +toxin,toxins +toxocarid,toxocarids +toxochelyid,toxochelyids +toxodontid,toxodontids +toxodon,toxodons +toxodont,toxodonts +toxoid,toxoids +toxophilite,toxophilites +toxophore,toxophores +toxoplasma,toxoplasmas +toxopneustid,toxopneustids +toxotes,toxotai +toxotid,toxotids +toybox,toyboxes +toy boy,toy boys +toy-boy,toy-boys +toyboy,toyboys +toy dog,toy dogs +toy drive,toy drives +toyer,toyers +Toy Fox Terrier,Toy Fox Terriers +Toyger,Toygers +toyhouse,toyhouses +toyi-toyi,toyi-toyis +toymaker,toymakers +toyman,toymen +toy poodle,toy poodles +toyseller,toysellers +toy shop,toy shops +toyshop,toyshops +toy soldier,toy soldiers +toystore,toystores +toy,toys +toywoman,toywomen +toywort,toyworts +TPB,TPBs +T perm,T perms +tpyo,tpyos +trabea,trabeae +trabeculation,trabeculations +trabecula,trabeculae,trabeculas +traceback,tracebacks +trace element,trace elements +trace fossil,trace fossils +tracepoint,tracepoints +tracer,tracers +tracery,traceries +trace,traces +traceur,traceurs +tracheary,trachearies +tracheate,tracheates +trachea,tracheas,tracheae,tracheΓ¦ +tracheid cell,tracheid cells +tracheid,tracheids +trachelectomy,trachelectomies +trachelipod,trachelipods +trachelorrhaphy,trachelorrhaphies +tracheocele,tracheoceles +tracheole,tracheoles +tracheophyte,tracheophytes +tracheoscopy,tracheoscopies +tracheostomy,tracheostomies +tracheotome,tracheotomes +tracheotomy,tracheotomies +trachichthyid,trachichthyids +trachinid,trachinids +trachipterid,trachipterids +trachodontid,trachodontids +trachodont,trachodonts +trachoma,trachomas +trach,trachs +trachyceratid,trachyceratids +trachylid,trachylids +trachymedusa,trachymedusas,trachymedusae +trachypachid,trachypachids +trachypterid,trachypterids +trachyte,trachytes +trachytid,trachytids +trachyuropodid,trachyuropodids +tracing,tracings +trackball,trackballs +trackbar,trackbars +trackbed,trackbeds +track bike,track bikes +track cyclist,track cyclists +trackee,trackees +trackerball,trackerballs +tracker mortgage,tracker mortgages +tracker,trackers +trackie,trackies +tracking shot,tracking shots +tracklement,tracklements +tracklisting,tracklistings +tracklist,tracklists +tracklog,tracklogs +trackman,trackmen +trackmaster,trackmasters +trackmo,trackmos +trackpad,trackpads +track record,track records +trackschuyt,trackschuyts +trackscout,trackscouts +track spike,track spikes +track stand,track stands +tracksuit,tracksuits +track,tracks +trackway,trackways +trackwidth,trackwidths +Tractarian,Tractarians +tractate,tractates +tractator,tractators +tract home,tract homes +tract house,tract houses +traction alopecia,traction alopecias +tractioneer,tractioneers +traction engine,traction engines +traction,tractions +Tractite,Tractites +tractlet,tractlets +tractor beam,tractor beams +Tractor Boy,Tractor Boys +tractor,tractors +tractor-trailer,tractor-trailers +tractory,tractories +tractotomy,tractotomies +tractricoid,tractricoids +tractrix,tractrices +tract,tracts +trad bolted,trads bolted +trade acceptance,trade acceptances +trade balance,trade balances +trade book,trade books +trade card,trade cards +tradecraft,tradecrafts +trade deal,trade deals +trade deficit,trade deficits +trade dispute,trade disputes +trade diversion,trade diversions +trade fair,trade fairs +trade-in,trade-ins +trade-last,trade-lasts +tradeline,tradelines +trade magazine,trade magazines +trademark erosion,trademark erosions +trademark symbol,trademark symbols +trade mark,trade marks +trademark,trademarks +trade name,trade names +tradename,tradenames +trade newspaper,trade newspapers +trade-off,trade-offs +tradeoff,tradeoffs +trade paperback,trade paperbacks +trade route,trade routes +trader,traders +tradescantia,tradescantias +trade secret,trade secrets +trade show,trade shows +tradeshow,tradeshows +tradesman's entrance,tradesman's entrances +tradesman,tradesmen +tradespeople,tradespeoples +tradesperson,tradespersons,tradespeople +trades unionist,trades unionists +trades union,trades unions +trade surplus,trade surpluses +tradeswoman,tradeswomen +trade unionist,trade unionists +trade union,trade unions +trade war,trade wars +trade wind,trade winds +trade-wind,trade-winds +tradie,tradies +trading card,trading cards +trading floor,trading floors +trading partner,trading partners +trading pit,trading pits +trading post,trading posts +trading stamp,trading stamps +traditional art,traditional arts +traditional county,traditional counties +traditionalist,traditionalists +traditional marriage,traditional marriages +traditional medicine,traditional medicines +traditional owner,traditional owners +traditionary,traditionaries +traditioner,traditioners +traditionist,traditionists +tradition,traditions +traditor,traditors +trad,trads +traducer,traducers +traducian,traducians +traduction,traductions +traduct,traducts +trafficator,trafficators +traffic beam,traffic beams +traffic boy,traffic boys +traffic calming,traffic calmings +traffic circle,traffic circles +traffic cone,traffic cones +traffic conference area,traffic conference areas +traffic island,traffic islands +traffic jam,traffic jams +trafficker,traffickers +trafficking,traffickings +traffic light,traffic lights +traffic-light,traffic-lights +traffic paddle,traffic paddles +traffic school,traffic schools +traffic signal box,traffic signal boxes +traffic signal,traffic signals +traffic sign,traffic signs +traffic ticket,traffic tickets +traffic violation,traffic violations +traffic warden,traffic wardens +tragacanth,tragacanths +tragedian,tragedians +tragedienne,tragediennes +tragΓ©dienne,tragΓ©diennes +tragedie,tragedies +tragedy of the commons,tragedies of the commons +tragedy,tragedies +tragematopolist,tragematopolists +tragic flaw,tragic flaws +tragic hero,tragic heroes +tragicomedian,tragicomedians +tragicomedy,tragicomedies +tragic,tragics +tragΕ“dy,tragΕ“diΓ¦ +tragopan,tragopans +tragulid,tragulids +tragus,tragi +trahison des clercs,trahisons des clercs +trailbaston,trailbastons +trail bike,trail bikes +trailblazer,trailblazers +trailerful,trailerfuls +trailer hitch,trailer hitches +trailer park,trailer parks +trailer park trash,trailer park trash +trailer sailer,trailer sailers +trailer,trailers +trailer truck,trailer trucks +trail hand,trail hands +trailhand,trailhands +trailhead,trailheads +trailing arbutus,trailing arbutus +trailing axle,trailing axles +trailing edge,trailing edges +trailing truck,trailing trucks +trailing wheel,trailing wheels +trail mix,trail mixes +trail,trails +trainable,trainables +trainband,trainbands +train-bearer,train-bearers +trainbearer,trainbearers +train bottle,train bottles +traincrew,traincrews +traineeship,traineeships +trainee,trainees +trainel,trainels +trainer,trainers +trainful,trainfuls,trainsful +trainiac,trainiacs +training bra,training bras +training wheel,training wheels +trainload,trainloads +trainman,trainmen +trainmaster,trainmasters +train of thinking,trains of thinking +train of thoughts,trains of thoughts +train of thought,trains of thought +train operating company,train operating companies +trains command,trains commands +train set,train sets +train shed,train sheds +trainshed,trainsheds +train spotter,train spotters +trainspotter,trainspotters +train station,train stations +train track,train tracks +train,trains +train,trains +trainway,trainways +train wreck,train wrecks +train-wreck,train-wrecks +trainwreck,trainwrecks +trainyard,trainyards +traipse,traipses +traiteur,traiteurs +traitoress,traitoresses +traitor,traitors +traitour,traitours +traitress,traitresses +trait,traits +trajection,trajections +trajectory,trajectories +traject,trajects +trake,trakes +tralatition,tralatitions +tramadol,tramadols +trama,tramas +tramcar,tramcars +tram driver,tram drivers +tramel,tramels +tram line,tram lines +tramline,tramlines +trammeler,trammelers +trammeller,trammellers +trammel,trammels +tramontana,tramontanas +tramontane,tramontanes +tramper,trampers +trampette,trampettes +trampler,tramplers +trample,tramples +trampling,tramplings +trampoline,trampolines +trampolinist,trampolinists +tramp stamp,tramp stamps +tramp steamer,tramp steamers +tramp,tramps +tramroad,tramroads +tram route,tram routes +tram stop,tram stops +tramstop,tramstops +tram track,tram tracks +tram,trams +tram,trams +tramway,tramways +trancester,trancesters +trance,trances +tranche,tranches +tranchet,tranchets +trangram,trangrams +trank,tranks +trannel,trannels +trannie,trannies +tranny chaser,tranny chasers +tranny,trannies +tranq,tranqs +tranquiliser,tranquilisers +tranquilization,tranquilizations +tranquilizer,tranquilizers +tranquillisation,tranquillisations +tranquilliser,tranquillisers +tranquillization,tranquillizations +tranquillizer,tranquillizers +transacetylase,transacetylases +transactinide,transactinides +transaction,transactions +transaction utility,transaction utilities +transactivation,transactivations +transactivator,transactivators +transactor,transactors +transacylase,transacylases +Transalpine,Transalpines +transamidation,transamidations +transaminase,transaminases +transannulation,transannulations +transat,transats +transaxle,transaxles +transcarbamoylase,transcarbamoylases +transcarbamylase,transcarbamylases +transcarboxylation,transcarboxylations +Transcaspian,Transcaspians +Transcaucasian,Transcaucasians +transceiver,transceivers +transcendental critique,transcendental critiques +transcendental ego,transcendental egos +transcendental Ego,transcendental Egos +Transcendental Ego,Transcendental Egos +transcendental function,transcendental functions +transcendental idealism,transcendental idealisms +transcendentalist,transcendentalists +transcendental meditation,transcendental meditations +transcendental number,transcendental numbers +transcendental realism,transcendental realisms +transcendental,transcendentals +transcendent,transcendents +transcender,transcenders +transcension,transcensions +transception,transceptions +transceptor,transceptors +transchelation,transchelations +transclusion,transclusions +transcobalamin,transcobalamins +transcoder,transcoders +transcoding,transcodings +transcompiler,transcompilers +transconductance,transconductances +transconjugant,transconjugants +transcortin,transcortins +transcribbler,transcribblers +transcriber,transcribers +transcriptase,transcriptases +transcription factor,transcription factors +transcriptionist,transcriptionists +transcription,transcriptions +transcriptome,transcriptomes +transcriptor,transcriptors +transcriptosome,transcriptosomes +transcript,transcripts +transcursion,transcursions +transcytosis,transcytoses +transdermal patch,transdermal patches +transdermal,transdermals +transducer,transducers +transducin,transducins +transductant,transductants +transection,transections +transect,transects +transelevator,transelevators +transept,transepts +transesterase,transesterases +transesterification,transesterifications +transe,transes +trans fat,trans fats +transfat,transfats +trans fatty acid,trans fatty acids +transfectant,transfectants +transfection,transfections +transfeminist,transfeminists +transferable skill,transferable skills +transfer agent,transfer agents +transferal,transferals +transferase,transferases +transferee,transferees +transfer function,transfer functions +transfer list,transfer lists +transferor,transferors +transfer payment,transfer payments +transferral,transferrals +transfer rate,transfer rates +transferred sense,transferred senses +transferrence,transferrences +transferrer,transferrers +transfer tax,transfer taxes +transfer window,transfer windows +transfiguration,transfigurations +transfinite number,transfinite numbers +transfinite,transfinites +transfixion,transfixions +transfix,transfixes +transfluence,transfluences +transfluorescence,transfluorescences +transflux,transfluxes +transformant,transformants +transformational grammar,transformational grammars +transformation,transformations +transformer,transformers +transform fault,transform faults +transformist,transformists +transformity,transformities +transform,transforms +transfretation,transfretations +transfuge,transfuges +transfugitive,transfugitives +transfusion,transfusions +transgenderist,transgenderists +transgene,transgenes +transgenic,transgenics +trans girl,trans girls +transgirl,transgirls +transglutaminase,transglutaminases +transglycosidase,transglycosidases +transglycosylase,transglycosylases +transglycosylation,transglycosylations +transgression,transgressions +transgressor,transgressors +transgressour,transgressours +trans guy,trans guys +transguy,transguys +transhipment,transhipments +transhumance,transhumances +transhumanist,transhumanists +transhuman,transhumans +transiency,transiencies +transient ischaemic attack,transient ischaemic attacks +transient ischemic attack,transient ischemic attacks +transient,transients +transilience,transiliences +transillumination,transilluminations +transilluminator,transilluminators +transinfection,transinfections +transire,transires +transistor radio,transistor radios +transistor,transistors +transition element,transition elements +transitioner,transitioners +transition function,transition functions +transitionist,transitionists +transition metal,transition metals +transition point,transition points +transition state,transition states +transition temperature,transition temperatures +transition town,transition towns +transition,transitions +transition zone,transition zones +transitive verb,transitive verbs +transitivity,transitivities +transit lane,transit lanes +transitologist,transitologists +Transjordanian,Transjordanians +Trans-Jordanian,Trans-Jordanians +translate,translates +translating dictionary,translating dictionaries +translational energy,translational energies +translation dictionary,translation dictionaries +translative case,translative cases +translative,translatives +translatome,translatomes +translatorese,translatoreses +translatorship,translatorships +translator,translators +translatour,translatours +translatress,translatresses +translatrix,translatrices +translavation,translavations +translin,translins +transliteration,transliterations +transliterator,transliterators +translocalization,translocalizations +translocase,translocases +translocation,translocations +translocator,translocators +translocon,translocons +trans man,trans men +transman,transmen +trans-mat,trans-mats +transmat,transmats +transmembrane,transmembranes +transmetalation,transmetalations +transmetallation,transmetallations +transmethylation,transmethylations +transmigrant,transmigrants +transmigration,transmigrations +transmigrator,transmigrators +transmission electron diffraction,transmission electron diffractions +transmission electron microscope,transmission electron microscopes +transmissionist,transmissionists +transmission line,transmission lines +transmission medium,transmission media +transmission tower,transmission towers +transmission,transmissions +transmissivity,transmissivities +transmissometer,transmissometers +transmitivity,transmitivities +transmittal,transmittals +transmittance,transmittances +transmitter,transmitters +transmogrification,transmogrifications +transmon,transmons +transmutationist,transmutationists +transmutation,transmutations +transmuter,transmuters +transnational,transnationals +trans-Neptunian object,trans-Neptunian objects +Transnistrian,Transnistrians +transom,transoms +transom window,transom windows +transonance,transonances +transorbital,transorbitals +Transoxianan,Transoxianans +transparence,transparences +transpeptidase,transpeptidases +transpeptidation,transpeptidations +transperson,transpersons,transpeople +transphobe,transphobes +transphobia,transphobias +transplantation,transplantations +transplantee,transplantees +transplanter,transplanters +transplant,transplants +transponder,transponders +transpondian,transpondians +Transpondian,Transpondians +transportability,transportabilities +transportable,transportables +transport cafΓ©,transport cafΓ©s +transporter bridge,transporter bridges +transporter,transporters +transportin,transportins +transportome,transportomes +transport ship,transport ships +transport vesicle,transport vesicles +transpose conjugate,transpose conjugates +transposer,transposers +transpose,transposes +transpose,transposes +transposition,transpositions +transposon,transposons +transpressionism,transpressionisms +transpression,transpressions +transputer,transputers +transpyloric plane,transpyloric planes +transregulator,transregulators +transrepression,transrepressions +transreption,transreptions +transsection,transsections +transsexuality,transsexualities +transsexual,transsexuals +transsphenoidal adenomectomy,transsphenoidal adenomectomies +transsulfuration,transsulfurations +transtheism,transtheisms +transubstantiation,transubstantiations +transubstantiator,transubstantiators +transudate,transudates +transudation,transudations +transumpt,transumpts +transuranium element,transuranium elements +Transvaalian,Transvaalians +transvaluation,transvaluations +transvection,transvections +transversality condition,transversality conditions +transversality,transversalities +transversal,transversals +transverse colon,transverse colons +transverse plane,transverse planes +transverse,transverses +transverse wave,transverse waves +transversion,transversions +transvestite,transvestites +transwell,transwells +transwestite,transwestites +trans woman,trans women +transwoman,transwomen +Transylvanian,Transylvanians +tranter,tranters +trant,trants +trapanner,trapanners +trapan,trapans +trapdoor function,trapdoor functions +trapdoor spider,trapdoor spiders +trap door,trap doors +trapdoor,trapdoors +trapes,trapeses +trape,trapes +trapeze artist,trapeze artists +trapeze dress,trapeze dresses +trapeze,trapezes +trapeziid,trapeziids +trapezist,trapezists +trapezium,trapeziums,trapezia +trapezius,trapezii,trapeziuses +trapezohedron,trapezohedra,trapezohedrons +trapezoid bone,trapezoid bones +trapezoid,trapezoids +traphole,trapholes +trapline,traplines +trap maker,trap makers +trapmaker,trapmakers +trapper,trappers +trapping,trappings +trapping,trappings +Trappist,Trappists +traps case,traps cases +trap set,trap sets +trapset,trapsets +trapshooter,trapshooters +trapstick,trapsticks +trap,traps +trash bag,trash bags +trashbag,trashbags +trash can,trash cans +trashcan,trashcans +trash drawer,trash drawers +trashman,trashmen +trashsport,trashsports +trattoria,trattorias,trattorie +traumatic alopecia,traumatic alopecias +traumatic brain injury,traumatic brain injuries +traumatic,traumatics +traumatisation,traumatisations +traumatism,traumatisms +traumatization,traumatizations +traumatizer,traumatizers +traumatologist,traumatologists +trauma,traumas,traumata +traunce,traunces +traunch,traunches +traunter,traunters +travail,travails,travaux +travel agency,travel agencies +travel agent,travel agents +travelator,travelators +travel document,travel documents +traveler's check,travelers' checks +traveler,travelers +traveling salesman,traveling salesmen +traveling,travelings +traveller,travellers +Traveller,Travellers +travelling salesman,travelling salesmen +travelling wave,travelling waves +travelling wave tube,travelling wave tubes +travellour,travellours +travell,travells +travelog,travelogs +travelogue,travelogues +travelour,travelours +travel system,travel systems +traveltime,traveltimes +traversal,traversals +traverser,traversers +traverse,traverses +traversodontid,traversodontids +traverso,traversos +travesty,travesties +trave,traves +travois,travoises,travois +travuniid,travuniids +trawlboat,trawlboats +trawlerman,trawlermen +trawler,trawlers +trawlnet,trawlnets +trawl,trawls +trawlwarp,trawlwarps +trawlwire,trawlwires +traybake,traybakes +traycase,traycases +trayful,trayfuls,traysful +trayline,traylines +tray table,tray tables +tray-table,tray-tables +tray,trays +tray,trays +T-ray,T-rays +t*rd,t*rds +treacherousness,treacherousnesses +treacher,treachers +treachery,treacheries +treachour,treachours +treacle paper,treacle papers +treadboard,treadboards +treader,treaders +treadle,treadles +treadmiller,treadmillers +treadmill,treadmills +treadplate,treadplates +tread,treads +treadwheel,treadwheels +treague,treagues +treant,treants +treasonist,treasonists +treason,treasons +treasure chest,treasure chests +treasure flower,treasure flowers +treasure house,treasure houses +treasure hunt,treasure hunts +treasure map,treasure maps +treasurership,treasurerships +treasurer,treasurers +treasuress,treasuresses +treasure trail,treasure trails +treasure trove,treasure troves +treasure-trove,treasure-troves +Treasury bill,Treasury bills +treasury tag,treasury tags +treater,treaters +treatiser,treatisers +treatise,treatises +treatize,treatizes +treat,treats +treat with contempt,treat with contempts +treatymaker,treatymakers +treaty,treaties +treble clef,treble clefs +treble hook,treble hooks +treble,trebles +treblet,treblets +trebuchet,trebuchets +trebucket,trebuckets +trecena,trecenas +trechaleid,trechaleids +treckschuyt,treckschuyts +treddle,treddles +treddle,treddles +treebank,treebanks +treecreeper,treecreepers +tree-cricket,tree-crickets +tree farm,tree farms +tree fern,tree ferns +tree frog,tree frogs +treefrog,treefrogs +treeful,treefuls,treesful +tree hollow,tree hollows +treehopper,treehoppers +tree house,tree houses +treehouse,treehouses +tree hugger,tree huggers +tree-hugger,tree-huggers +treehugger,treehuggers +tree kangaroo,tree kangaroos +tree kingfisher,tree kingfishers +tree lawn,tree lawns +treelength,treelengths +treelet,treelets +tree line,tree lines +tree-line,tree-lines +treeline,treelines +treeling,treelings +treemap,treemaps +treenail,treenails +tree of heaven,trees of heaven +tree pangolin,tree pangolins +treepie,treepies +tree pipit,tree pipits +tree rabbit,tree rabbits +tree rat,tree rats +tree ring,tree rings +tree-ring,tree-rings +treescape,treescapes +tree shrew,tree shrews +tree-shrew,tree-shrews +treeshrew,treeshrews +treespace,treespaces +tree stand,tree stands +treestand,treestands +tree surgeon,tree surgeons +tree tent,tree tents +treetop,treetops +tree,trees,treen +tree trunk,tree trunks +treetrunk,treetrunks +treewidth,treewidths +trefoil knot,trefoil knots +trefoil,trefoils +trefot,trefots +tregetour,tregetours +tregnum,tregnums +treillage,treillages +trekker,trekkers +Trekker,Trekkers +Trekkie,Trekkies +trekschuit,trekschuits +trek,treks +trellis,trellises +tremanotid,tremanotids +trematochampsid,trematochampsids +trematode,trematodes +trematode worm,trematode worms +trematopid,trematopids +trematopsid,trematopsids +trematosaurid,trematosaurids +trema,tremata +trematurid,trematurids +tremble dance,tremble dances +trembler,tremblers +tremble,trembles +trembling poplar,trembling poplars +trembling,tremblings +tremblor,tremblors +tremella,tremellas +tremie,tremies +tremoctopodid,tremoctopodids +tremolando,tremolandos +tremolo,tremolos +tremoring,tremorings +tremor,tremors +tremour,tremours +tremulant,tremulants +trenail,trenails +trenchancy,trenchancies +trench coat,trench coats +trenchcoat,trenchcoats +trench cut,trench cuts +trencherful,trencherfuls +trencher-man,trencher-men +trencherman,trenchermen +trencher,trenchers +trench fever,trench fevers +trenchful,trenchfuls +trench mentality,trench mentalities +trenchmore,trenchmores +trench mortar,trench mortars +trench plate,trench plates +trench stick,trench sticks +trench,trenches +trenchwork,trenchworks +trender,trenders +trendite,trendites +trendle,trendles +trendlet,trendlets +trend line,trend lines +trendline,trendlines +trendoid,trendoids +trendsetter,trendsetters +trendspotter,trendspotters +trend,trends +trendwatcher,trendwatchers +trendwhore,trendwhores +trendy,trendies +trental,trentals +trepang,trepangs +trepanner,trepanners +trepan,trepans +trepan,trepans +trephination,trephinations +trephine,trephines +trepidancy,trepidancies +treponematosis,treponematoses +treponema,treponemas +treponeme,treponemes +trequel,trequels +tresayle,tresayles +trespasser,trespassers +trespass,trespasses +tressel,tressels +tress,tresses +tressure,tressures +trestle bed,trestle beds +trestle board,trestle boards +trestle-board,trestle-boards +trestleboard,trestleboards +trestle bridge,trestle bridges +trestle tree,trestle trees +trestletree,trestletrees +trestle,trestles +trestlework,trestleworks +tres-tyne,tres-tynes +trething,trethings +tretis,tretises +tret,trets +trevally,trevallies +trevet,trevets +trevi,trevis +trev,trevs +trey,treys +trez,trezes +triacanthid,triacanthids +triacanthodid,triacanthodids +triacetylene,triacetylenes +triacle,triacles +triacontahedron,triacontahedra +triacontane,triacontanes +triacontanol,triacontanols +triaconter,triaconters +triactinomyxon,triactinomyxons +triacylglycerol,triacylglycerols +triadduct,triadducts +triad,triads +triaenonychid,triaenonychids +triakid,triakids +triakisoctahedron,triakisoctahedrons,triakisoctahedra +triakontadipole,triakontadipoles +trial and error,trials and errors +trial balance,trial balances +trial balloon,trial balloons +trial by fire,trials by fire +trial by ordeal,trials by ordeal +trialist,trialists +trialist,trialists +triality,trialities +trialkylphosphine,trialkylphosphines +trialkyltin,trialkyltins +trialler,triallers +triallist,triallists +trialogue,trialogues +trial run,trial runs +trial,trials +triamide,triamides +triamine,triamines +triamond,triamonds +triangle test,triangle tests +triangle,triangles +triangle wave,triangle waves +triangle worshipper,triangle worshippers +triangulane,triangulanes +triangular colon,triangular colons +triangular division,triangular divisions +triangularis muscle,triangularis muscles +triangular number,triangular numbers +triangular prism,triangular prisms +triangular pyramid,triangular pyramids +triangulator,triangulators +triaose,triaoses +triarchy,triarchies +triarius,triarii +triarsane,triarsanes +triarsine,triarsines +triarylamine,triarylamines +triarylphosphine,triarylphosphines +triathlete,triathletes +triathlon,triathlons +triatic stay,triatic stays +triatoma,triatomas +triatome,triatomes +triatomine,triatomines +triazanaphthalene,triazanaphthalenes +triazane,triazanes +triaza,triazas +triazene,triazenes +triazide,triazides +triazinane,triazinanes +triazine,triazines +triazole,triazoles +triazolide,triazolides +triazoline,triazolines +triazolinone,triazolinones +triazolone,triazolones +triazolopyridine,triazolopyridines +triazolyl,triazolyls +tribade,tribades +tribadist,tribadists +tribal chief,tribal chiefs +tribalist,tribalists +tribality,tribalities +tribal,tribals +tribar,tribars +tribber,tribbers +tribble,tribbles +tribble,tribbles +Tribecan,Tribecans +tribelet,tribelets +tribesman,tribesmen +tribesperson,tribespersons,tribespeople +tribeswoman,tribeswomen +tribe,tribes +tribikos,tribikoses +triblet,triblets +tribologist,tribologists +tribometer,tribometers +tribosystem,tribosystems +tribotest,tribotests +triboulet,triboulets +tribrach,tribrachs +tribrid modeller,tribrid modellers +tribrid,tribrids +tribrid vehicle,tribrid vehicles +tribromide,tribromides +tribromoacetate,tribromoacetates +tribulation,tribulations +tribunal,tribunals +tribuneship,tribuneships +tribune,tribunes +tributary,tributaries +tribute band,tribute bands +tributer,tributers +tribute,tributes +tributor,tributors +tributyltin,tributyltins +tributyrate,tributyrates +tricam,tricams +tricaprin,tricaprins +tricarballylate,tricarballylates +tricarbonyl,tricarbonyls +tricarboxylate,tricarboxylates +tricarboxylic acid,tricarboxylic acids +tricar,tricars +tricast,tricasts +tricast,tricasts +tricategory,tricategories +trication,trications +trica,tricae +tricenarian,tricenarians +tricenary,trecenaries +tricentenary,tricentenaries +tricentennial,tricentennials +triceps,triceps,tricepses +tricep,triceps +triceratops,triceratopses +trice,trices +trichechid,trichechids +trichiasis,trichiases +trichilemmoma,trichilemmomas +trichina,trichinas,trichinae +trichinella,trichinellas +trichinellid,trichinellids +trichinellosis,trichinelloses +trichinoscope,trichinoscopes +trichinosis,trichinoses +trichion,trichions +trichite,trichites +trichiurid,trichiurids +trichloride,trichlorides +trichloroacetate,trichloroacetates +trichlorobenzene,trichlorobenzenes +trichlorobiphenyl,trichlorobiphenyls +trichloroethane,trichloroethanes +trichloromethyl,trichloromethyls +trichlorophenol,trichlorophenols +trichlorostannate,trichlorostannates +trichobezoar,trichobezoars +trichoblast,trichoblasts +trichobothrium,trichobothria +trichobranchia,trichobranchiae +trichocerid,trichocerids +trichocyst,trichocysts +trichodactylid,trichodactylids +trichodiscoma,trichodiscomas +trichodontid,trichodontids +trichoepithelioma,trichoepitheliomas,trichoepitheliomata +trichofolliculoma,trichofolliculomas +trichogen,trichogens +trichogrammatid,trichogrammatids +trichogyne,trichogynes +tricholemmoma,tricholemmomas +trichologist,trichologists +trichology,trichologies +trichomaniac,trichomaniacs +trichoma,trichomas +trichome,trichomes +trichomonad,trichomonads +trichomonosis,trichomonoses +trichomycterid,trichomycterids +trichoniscid,trichoniscids +trichonotid,trichonotids +trichophile,trichophiles +trichophore,trichophores +trichophyte,trichophytes +trichophyton,trichophytons +trichopteran,trichopterans +trichopter,trichopters +trichopterygid,trichopterygids +trichord,trichords +trichoride,trichorides +trichostatin,trichostatins +trichothecene,trichothecenes +trichotomy,trichotomies +trichotropid,trichotropids +trichromat,trichromats +trichuriasis,trichuriases +trichurid,trichurids +trick cyclist,trick cyclists +trickeration,trickerations +tricker,trickers +tricker,trickers +trickery,trickeries +tricking,trickings +trickle,trickles +trickle-up trend,trickle-up trends +trickment,trickments +trick of the trade,tricks of the trade +trick-or-treater,trick-or-treaters +trick play,trick plays +trick question,trick questions +trick shot,trick shots +trickshot,trickshots +trickster,tricksters +trick,tricks +trick up one's sleeve,tricks up one's sleeve +tricky slave,tricky slaves +triclad,triclads +triclavianist,triclavianists +triclinium,tricliniums,triclinia +tricoherence,tricoherences +tricolon,tricolons +tricolon,tricolons,tricola +tricolor,tricolors +tricolour,tricolours +tricolpate,tricolpates +triconodontid,triconodontids +triconodont,triconodonts +tricorder,tricorders +tri-corn hat,tri-corn hats +tricorn,tricorns +tricosane,tricosanes +tricoteuse,tricoteuses +trictenotomid,trictenotomids +tricube,tricubes +triculture,tricultures +tricuspid,tricuspids +tricuspid valve,tricuspid valves +tricyanide,tricyanides +tricycle,tricycles +tricyclist,tricyclists +tricyclon,tricyclons +tridacna,tridacnas +tridacnid,tridacnids +tridactylid,tridactylids +triddler,triddlers +tridecagon,tridecagons +tridecamer,tridecamers +tridecane,tridecanes +tridecapeptide,tridecapeptides +tridecyl,tridecyls +tridenchthoniid,tridenchthoniids +Tridentine,Tridentines +trident,tridents +trideoxynucleotide,trideoxynucleotides +tridiagonalization,tridiagonalizations +triding,tridings +triduan,triduans +triduum,tridua +tridymite,tridymites +triene,trienes +triennial,triennials +triennium,trienniums,triennia +trierarch,trierarches +trierarchy,trierarchies +trier of fact,triers of fact +trier,triers +triester,triesters +Triestino,Triestinos +triethylammonium,triethylammoniums +trie,tries +triexciton,triexcitons +trifecta,trifectas +triffid,triffids +triflate,triflates +triflation,triflations +trifler,triflers +triflic acid,triflic acids +triflic,triflics +trifluoracetate,trifluoracetates +trifluoride,trifluorides +trifluoroacetate,trifluoroacetates +trifluoroacetic,trifluoroacetics +trifluoroborate,trifluoroborates +trifluoroethane,trifluoroethanes +trifluoroethanol,trifluoroethanols +trifluoromethoxy,trifluoromethoxys +trifluoromethylation,trifluoromethylations +trifluoromethyl,trifluoromethyls +Trifluvian,Trifluvians +Trifluvienne,Trifluviennes +Trifluvien,Trifluviens +triforium,triforia +trifuran,trifurans +trifurcation,trifurcations +trigamist,trigamists +trigeminal nerve,trigeminal nerves +trigeminus,trigemini +trigesimo-secundo,trigesimo-secundos +trigger finger,trigger fingers +triggerfish,triggerfish,triggerfishes +trigger guard,trigger guards +triggering,triggerings +triggerman,triggermen +trigger,triggers +trigger warning,trigger warnings +trigintal,trigintals +triglid,triglids +triglyceridaemia,triglyceridaemias +triglyceride,triglycerides +triglyph,triglyphs +trigonalid,trigonalids +trigone,trigones +trigonid,trigonids +trigoniid,trigoniids +trigonochlamydid,trigonochlamydids +trigonometric cofunction,trigonometric cofunctions +trigonometric function,trigonometric functions +trigonometric series,trigonometric series +trigon,trigons +trig point,trig points +trigram,trigrams +trigraph,trigraphs +trig,trigs +trig,trigs +trihalide,trihalides +trihalogenomethane,trihalogenomethanes +trihalomethane,trihalomethanes +trihedron,trihedrons,trihedra +triheptadecanoate,triheptadecanoates +trihexose,trihexoses +trihexoside,trihexosides +trihydrate,trihydrates +trihydride,trihydrides +trihydrochloride,trihydrochlorides +trihydroxyanthraquinone,trihydroxyanthraquinones +trihydroxybenzoate,trihydroxybenzoates +triiodide,triiodides +triisodontid,triisodontids +trijet,trijets +triketone,triketones +trike,trikes +trikini,trikinis +trilayer,trilayers +trilby,trilbies +trilemma,trilemmas +trilepton,trileptons +trilingualist,trilingualists +trilingual,trilinguals +trilinguist,trilinguists +triliteral,triliterals +trilithon,trilithons,trilitha +trilith,triliths +triller,trillers +trilling,trillings +trillionairess,trillionairesses +trillionaire,trillionaires +trillionth,trillionths +trillium,trilliums +trillo,trillos,trilloes,trilli +trill,trills +trilobite,trilobites +trilobitoide,trilobitoides +trilobitologist,trilobitologists +trilobitomorph,trilobitomorphs +trilogarithm,trilogarithms +trilogy,trilogies +trilophosaurid,trilophosaurids +trimaran,trimarans +trimatrix,trimatrices,trimatrixes +trimba,trimbas +trimerisation,trimerisations +trimerization,trimerizations +trimerorhachid,trimerorhachids +trimer,trimers +trimester,trimesters +trimeter,trimeters +trimethobenzamide,trimethobenzamides +trimethoxyamphetamine,trimethoxyamphetamines +trimethylacetate,trimethylacetates +trimethylaluminum,trimethylaluminums +trimethylammonium,trimethylammoniums +trimethylation,trimethylations +trimethylguanosine,trimethylguanosines +trimethylpentane,trimethylpentanes +trimethylphenyl,trimethylphenyls +trimethylsilylation,trimethylsilylations +trimethylsilyl,trimethylsilyls +trimethyltransferase,trimethyltransferases +trimetre,trimetres +trimillennial,trimillennials +trimmer,trimmers +trimming,trimmings +trimonthly,trimonthlies +trimorph,trimorphs +trimotor,trimotors +trimphone,trimphones +trim tab,trim tabs +trim,trims +trimuon,trimuons +trimusculid,trimusculids +trinary star system,trinary star systems +trinary star,trinary stars +trinary,trinaries +trinchado,trinchados +trindle,trindles +trine,trines +tringa,tringas +tringle,tringles +Trinidadian and Tobagonian,Trinidadians and Tobagonians,Trinidadians +Trinidadian,Trinidadians +trinitarian,trinitarians +Trinitarian,Trinitarians +trinitrate,trinitrates +trinitride,trinitrides +Trini,Trinis +trinitrobenzene,trinitrobenzenes +trinitrocresol,trinitrocresols +trinitrotoluene,trinitrotoluenes +trinity,trinities +trinketer,trinketers +trinket,trinkets +trink,trinks +trinomen,trinomina +trinomial,trinomials +trinominal,trinominals +trinucleon,trinucleons +trinucleosome,trinucleosomes +trinucleotide repeat disorder,trinucleotide repeat disorders +trinucleotide,trinucleotides +trinxat,trinxats +triode,triodes +triodontid,triodontids +triok,trioks +triole,trioles +triolet,triolets +triol,triols +triomino,triominoes +trione,triones +trion,trions +trionychid,trionychids +trionychoid,trionychoids +triopsid,triopsids +trior,triors +triosephosphate,triosephosphates +triose,trioses +trio sonata,trio sonatas +trio,trios +trioval,triovals +trioxane,trioxanes +trioxide,trioxides +trioxolane,trioxolanes +triozid,triozids +tripalmitate,tripalmitates +tripang,tripangs +tripartition,tripartitions +tripcode,tripcodes +trip cord,trip cords +Tripehound,Tripehounds +tripel,tripels +tripeman,tripemen +tripeptide,tripeptides +tripeptidyl,tripeptidyls +triperchlorate,triperchlorates +triperoxide,triperoxides +tripersonalist,tripersonalists +tripery,triperies +trip hammer,trip hammers +triphammer,triphammers +triphase catalyst,triphase catalysts +triphenylethylene,triphenylethylenes +triphenylphosphine,triphenylphosphines +triphibian,triphibians +triphone,triphones +triphorid,triphorids +triphosphatase,triphosphatases +triphosphate,triphosphates +triphosphoinositide,triphosphoinositides +triphosphonucleoside,triphosphonucleosides +triphosphopyridine nucleotide,triphosphopyridine nucleotides +triphosphoric acid,triphosphoric acids +triphoton,triphotons +triphthong,triphthongs +triplane,triplanes +triple acrostic,triple acrostics +triple agent,triple agents +triple bar,triple bars +triple bluff,triple bluffs +triple bogey,triple bogeys +triple bond,triple bonds +triple century,triple centuries +triple check,triple checks +triple-click,triple-clicks +triple crown,triple crowns +Triple Crown,Triple Crowns +triple double,triple doubles +tripled pawn,tripled pawns +triple fault,triple faults +triplefin,triplefins +triple goddess,triple goddesses +tripleheader,tripleheaders +triple jumper,triple jumpers +triple-jumper,triple-jumpers +triple malt,triple malts +triple negative breast cancer,triple negative breast cancers +triple O,triple O's +triple play,triple plays +triple point,triple points +triple reassortant,triple reassortants +triple sec,triple secs +triple star system,triple star systems +triple star,triple stars +triplestore,triplestores +triple-tail,triple-tails +triple threater,triple threaters +triple-threater,triple-threaters +triple threat,triple threats +tripleton,tripletons +triple,triples +triple-triple,triple-triples +triplet,triplets +triple whammy,triple whammies +triple witching hour,triple witching hours +triplex,triplexes +triplicate,triplicates +triplication,triplications +tripline,triplines +triplon,triplons +triplot,triplots +tripmate,tripmates +tripodian,tripodians +tripod,tripods +tripody,tripodies +tripoint,tripoints +tripole,tripoles +Tripolitanian,Tripolitanians +Tripolitan,Tripolitans +tripoli,tripolis +tripolyphosphate,tripolyphosphates +tripos,triposes +tripper,trippers +trippet,trippets +tripping line,tripping lines +trip switch,trip switches +triptan,triptans +tripterygiid,tripterygiids +trip tic,trip tics +tripton,triptons +triptote,triptotes +trip to the woodshed,trips to the woodshed +trip,trips +triptycene,triptycenes +triptych,triptychs +tripulant,tripulants +tripus,tripodes +tripwire,tripwires +triquark,triquarks +triquetral bone,triquetral bones +triquetral,triquetrals +triquetra,triquetras,triquetrae +triquetrum,triquetra +trirachodontid,trirachodontids +triradical,triradicals +triradius,triradii +trireme,triremes +trisaccharide,trisaccharides +trisection,trisections +triselane,triselanes +triselenide,triselenides +trisexual,trisexuals +trishaw,trishaws +trisilicate,trisilicates +trisiloxane,trisiloxanes +triskaidecagon,triskaidecagons +triskaidekaphobic,triskaidekaphobics +triskele,triskeles +triskelion,triskelions,triskelia +tris legomenon,tris legomena +trisnitrate,trisnitrates +trisoctahedron,trisoctahedrons,trisoctahedra +trisoligonucleotide,trisoligonucleotides +trisome,trisomes +trisomic,trisomics +trisomy,trisomies +trispast,trispasts +trispectrum,trispectra +trisphosphate,trisphosphates +Tristan chord,Tristan chords +tristearate,tristearates +tristetraprolin,tristetraprolins +triste,tristes +tristichopterid,tristichopterids +tristimulus,tristimuli +trist,trists +trist,trists +trisulfide,trisulfides +trisulphide,trisulphides +trisyllabic,trisyllabics +trisyllable,trisyllables +tritagonist,tritagonists +tritanopia,tritanopias +tritave,tritaves +trite law,trite laws +triterpene,triterpenes +triterpenoid,triterpenoids +tritheist,tritheists +tritheite,tritheites +tritheledontid,tritheledontids +trithiane,trithianes +trithing,trithings +trithiocyanate,trithiocyanates +trithionate,trithionates +trithiophosphate,trithiophosphates +tritide,tritides +tri-tip,tri-tips +tritium,tritiums +tritocerebrum,tritocerebra +tritone,tritones +tritoniid,tritoniids +triton,tritons +tritorium,tritoria +tritovum,tritova +tritoxide,tritoxides +tritozooid,tritozooids +tritriacontane,tritriacontanes +trit,trits +trituration,triturations +tritylodontid,tritylodontids +trityl,trityls +triumphal arch,triumphal arches +triumphalism,triumphalisms +triumphalist,triumphalists +triumpher,triumphers +triumph,triumphs +triumvirate,triumvirates +triumvir,triumviri,triumvirs +triungulin,triungulins +trivalent,trivalents +trivalve,trivalves +trivet table,trivet tables +trivet,trivets +trivial absolute value,trivial absolute values +trivial functional dependency,trivial functional dependencies +triviality,trivialities +trivialization,trivializations +trivializer,trivializers +trivial name,trivial names +trivial,trivials +trivia,trivia +triviid,triviids +trivium,trivia +triweekly,triweeklies +trixoscelidid,trixoscelidids +trixoscelid,trixoscelids +triyne,triynes +troad,troads +troat,troats +troble,trobles +Trobriander,Trobrianders +trocar,trocars +trochaick,trochaicks +trochaic,trochaics +trochanteriid,trochanteriids +trochanter,trochanters +trochantine,trochantines +trochar,trochars +trochee,trochees +troche,troches +trochid,trochids +trochilidist,trochilidists +trochilid,trochilids +trochilos,trochiloses +trochil,trochils +trochilus,trochiluses,trochili +troching,trochings +trochiscus,trochisci +trochisk,trochisks +trochite,trochites +trochlear nerve,trochlear nerves +trochlea,trochleae +trochoblast,trochoblasts +trochoid,trochoids +trocholitid,trocholitids +trochometer,trochometers +trochomorphid,trochomorphids +trochonematid,trochonematids +trochophore,trochophores +trochosphere,trochospheres +trochus,trochi +troffer,troffers +trogid,trogids +troglobite,troglobites +troglodyte,troglodytes +troglodytid,troglodytids +troglophile,troglophiles +trogonid,trogonids +trogonophid,trogonophids +trogon,trogons +trogossitid,trogossitids +trog,trogs +trogue,trogues +trogulid,trogulids +troika,troikas +troilist,troilists +troilite,troilites +Trojan asteroid,Trojan asteroids +Trojan horse,Trojan horses +Trojan moon,Trojan moons +Trojan planet,Trojan planets +Trojan point,Trojan points +trojan,trojans +Trojan,Trojans +trokosi,trokosis +Trokosi,Trokosis +troland,trolands +troller,trollers +trolleybus,trolleybuses,trolleybusses +trolley bus,trolley busses,trolley buses +trolley car,trolley cars +trolley dash,trolley dashes +trolley dolly,trolley dollies +trolley-dolly,trolley-dollies +trolley park,trolley parks +trolley pole,trolley poles +trolley trasher,trolley trashers +trolley,trollies,trolleys +trollopee,trollopees +trollop,trollops +troll plate,troll plates +trolltard,trolltards +troll,trolls +troll,trolls +troll,trolls +trolly,trollies +Trombe wall,Trombe walls +trombiculid,trombiculids +trombidiid,trombidiids +tromboner,tromboners +trombone,trombones +trombonist,trombonists +tromboon,tromboons +tromino,trominoes +trommel,trommels +trompement,trompements +trompe,trompes +tromp,tromps +tronage,tronages +tronator,tronators +tronc,troncs +trone,trones +trone,trones +tronk,tronks +tron,trons +troodontid,troodontids +trooper,troopers +troopial,troopials +troopmate,troopmates +troopship,troopships +troop,troops +tropΓ¦olin,tropΓ¦olins +tropΓ¦um,tropΓ¦a +tropeine,tropeines +tropein,tropeins +tropeolin,tropeolins +troper,tropers +trope,tropes +trophallaxis,trophallaxes +trophectoderm,trophectoderms +trophic cascade,trophic cascades +trophic hormone,trophic hormones +trophic level,trophic levels +trophoblast,trophoblasts +trophonema,trophonemata +trophont,trophonts +trophophase,trophophases +trophophyte,trophophytes +trophoplasm,trophoplasms +trophosome,trophosomes +trophosperm,trophosperms +trophotherapy,trophotherapies +trophozoite,trophozoites +trophy,trophies +trophy veep,trophy veeps +trophy wife,trophy wives +tropia,tropias +tropical arc,tropical arcs +tropical cyclone,tropical cyclones +tropical depression,tropical depressions +tropical disease,tropical diseases +tropicalista,tropicalistas +tropical rainforest,tropical rainforests +tropical storm,tropical storms +tropical,tropicals +tropical year,tropical years +tropicbird,tropicbirds +tropic hormone,tropic hormones +tropick,tropicks +tropic,tropics +Tropic,Tropics +tropidodiscid,tropidodiscids +tropidopheid,tropidopheids +tropidophid,tropidophids +tropidophiid,tropidophiids +tropiduchid,tropiduchids +tropidurid,tropidurids +tropilidene,tropilidenes +tropin,tropins +tropism,tropisms +tropist,tropists +tropitid,tropitids +tropology,tropologies +tropolone,tropolones +tropometer,tropometers +tropomyosin,tropomyosins +tropone,tropones +troponin,troponins +troponym,troponyms +tropopause,tropopauses +tropophyte,tropophytes +troposmia,troposmias +troposphere,tropospheres +trop.,trops. +tropylium,tropyliums +trothplight,trothplights +troth,troths +trotline,trotlines +TRO,TROs +Trotskyist,Trotskyists +Trotskyite,Trotskyites +trotter,trotters +Trotter,Trotters +trotting,trottings +trottoir,trottoirs +trot,trots +troubadour,troubadours +trouble and strife,trouble and strifes +troublecauser,troublecausers +trouble in paradise,troubles in paradise +trouble light,trouble lights +trouble maker,trouble makers +troublemaker,troublemakers +troubler,troublers +troubleshooter,troubleshooters +trouble spot,trouble spots +troublespot,troublespots +trouble ticket system,trouble ticket systems +trouble,troubles +trou-de-loup,trous-de-loup +trough-shell,trough-shells +trough,troughs +trouncer,trouncers +trouper,troupers +troupe,troupes +troupial,troupials +trousering,trouserings +trouser pocket,trouser pockets +trouser press,trouser presses +trouser snake,trouser snakes +trouser,trousers +trousseau,trousseaus,trousseaux +troutlet,troutlets +trout lily,trout lilies +troutling,troutlings +trout pout,trout pouts +trout,trout,trouts +trouvΓ¨re,trouvΓ¨res +trouveur,trouveurs +trove,troves +trowelful,trowelfuls,trowelsful +trowel machine,trowel machines +trowel,trowels +troy grain,troy grains +troy ounce,troy ounces +troyounce,troyounces +troy pound,troy pounds +TRS connector,TRS connectors +truage,truages +truancy,truancies +truand,truands +truant officer,truant officers +truant,truants +trub,trubs +trucebreaker,trucebreakers +truce,truces +truchman,truchmen +trucidation,trucidations +truckbed,truckbeds +truck driver,truck drivers +trucker's hitch,trucker's hitches +trucker,truckers +trucker,truckers +trucker,truckers +truckful,truckfuls,trucksful +truck garden,truck gardens +truckie,truckies +trucking shot,trucking shots +trucking,truckings +truckle bed,truckle beds +truckler,trucklers +truckle,truckles +trucklet,trucklets +truckload,truckloads +truckmaker,truckmakers +truckman,truckmen +truck stop,truck stops +truckstop,truckstops +truck,trucks +truckway,truckways +truckwit,truckwits +truckyard,truckyards +trudger,trudgers +trudge,trudges +true anomaly,true anomalies +true believer,true believers +true bug,true bugs +true frog,true frogs +true leaf,true leaves +true-love-knot,true-love-knots +true lover's knot,true lover's knots +truelove,trueloves +truel,truels +true name,true names +true-penny,true-pennies +truepenny,truepennies +true seal,true seals +true thrush,true thrushes +true yeast,true yeasts +trufax,trufax +truffle hog,truffle hogs +truffle oil,truffle oils +truffle,truffles +trugging-house,trugging-houses +trugg,truggs +trug,trugs +truism,truisms +Trukese,Trukese +trull,trulls +trumeau mirror,trumeau mirrors +trumeau,trumeaux +trump card,trump cards +trumpery,trumperies +trumpeter pigeon,trumpeter pigeons +trumpeter swan,trumpeter swans +trumpeter,trumpeters +trumpeting,trumpetings +trumpetress,trumpetresses +trumpet,trumpets +trump,trumps +trump,trumps +truncated icosahedron,truncated icosahedra,truncated icosahedrons +truncatellid,truncatellids +truncation,truncations +truncator,truncators +truncheoneer,truncheoneers +truncheon,truncheons +trunch,trunches +truncus,trunci +trundle bed,trundle beds +trundle cart,trundle carts +trundlehead,trundleheads +trundler,trundlers +trundletail,trundletails +trundle,trundles +trundle wheel,trundle wheels +trunion,trunions +trunkback,trunkbacks +trunk call,trunk calls +trunkfish,trunkfishes,trunkfish +trunkful,trunkfuls,trunksful +trunkline,trunklines +trunkload,trunkloads +trunk-maker,trunk-makers +trunkmaker,trunkmakers +trunk,trunks +trunnel,trunnels +trunnion,trunnions +trupial,trupials +trusser,trussers +trussing,trussings +truss,trusses +trustafarian,trustafarians +trustbuster,trustbusters +trust deed,trust deeds +trusteeship,trusteeships +trustee,trustees +truster,trusters +trust fall,trust falls +trust fund,trust funds +trustor,trustors +trust territory,trust territories +trust,trusts +trusty,trusties +truthbearer,truthbearers +truth drug,truth drugs +truther,truthers +truth function,truth functions +truthmaker,truthmakers +truth quark,truth quarks +truth serum,truth serums +truth table,truth tables +truthteller,truthtellers +truth value,truth values +trutination,trutinations +tryal,tryals +tryblidiid,tryblidiids +try cock,try cocks +try-hard,try-hards +tryhard,tryhards +tryout,tryouts +trypanicide,trypanicides +trypanid,trypanids +trypanocide,trypanocides +trypanolysis,trypanolyses +trypanosomatid,trypanosomatids +trypanosome,trypanosomes +trypanosomiasis,trypanosomiases +trypanosomicide,trypanosomicides +trypanosomid,trypanosomids +trypomastigote,trypomastigotes +trypsinogen,trypsinogens +tryptase,tryptases +tryptich,tryptichs +tryptophanyl,tryptophanyls +tryptophyl,tryptophyls +trysail,trysails +try square,try squares +trysquare,trysquares +tryster,trysters +trysting,trystings +tryst,trysts +try,tries +tsaddik,tsaddiks,tsaddikim +tsaddiq,tsaddiqs +tsadik,tsadiks,tsadikim +tsadiq,tsadiqim +tsaganomyid,tsaganomyids +Tsakonian,Tsakonians +tsamma,tsammas +tsampoy,tsampoy +tsantsa,tsantsas +tsarate,tsarates +tsardom,tsardoms +tsarevich,tsareviches,tsarevichi +tsarevitch,tsarevitches +tsarevna,tsarevnas +tsaricide,tsaricides +tsarina,tsarinas +tsarist,tsarists +tsaritsa,tsaritsas +tsaritza,tsaritzas +tsarship,tsarships +tsar,tsars +tsatlee,tsatlees +tsatske,tsatskes +tsavorite,tsavorites +tschaike,tschaikes +tscheffkinite,tscheffkinites +tschego,tschegos +tschermakite,tschermakites +tschinke,tschinkes +tseajaiid,tseajaiids +tsetse,tsetses,tsetse +TS girl,TS girls +TSgirl,TSgirls +tshatshke,tshatshkes +tsheg,tshegs +t-shirt,t-shirts +T-shirt,T-shirts +tsimbl,tsimbls +Tsimshian,Tsimshians +tsipouro,tsipoura +tsitsith,tsitsiyoth +tsk tsk,tsk tsks +tsotsitaal,tsotsitaals +tsotsi,tsotsis +T-square,T-squares +TSR,TSRs +T-stop,T-stops +T-storm,T-storms +tsuba,tsubas +tsubo,tsubo +tsubo,tsubo +tsuga,tsugas +tsunameter,tsunameters +tsunami,tsunamis,tsunami +tsundere,tsundere +tsuridono,tsuridonos +t-tail,t-tails +T Tauri star,T Tauri stars +tteok,tteoks +t test,t tests +t-test,t-tests +Tt,Tts +TT,TTs +TTY,TTYs +Tuamotuan,Tuamotuans +Tuareg,Tuaregs +tuatara,tuatara,tuataras +tuatera,tuateras +tuath,tuatha +tubaist,tubaists +tubal abortion,tubal abortions +tubal ligation,tubal ligations +tuba,tubas +tubbing,tubbings +tubby,tubbies +tub chair,tub chairs +tubectomy,tubectomies +tube feeding syndrome,tube feeding syndromes +tube foot,tube feet +tubenose,tubenoses +tuberactinomycin,tuberactinomycins +tuber cinereum,tuber cinereums +tubercle,tubercles +tuberculation,tuberculations +tubercule,tubercules +tuberculid,tuberculids +tuberculoma,tuberculomas,tuberculomata +tuberculoplasmin,tuberculoplasmins +tuberculosis,tuberculoses +tuberculum,tubercula +tuberin,tuberins +tuberoid,tuberoids +tuberose,tuberoses +tuber,tubers +tubeshoulder,tubeshoulders +tube sock,tube socks +tube steak,tube steaks +tube-steak,tube-steaks +tube top,tube tops +tube,tubes +tube tying,tube tyings +tube well,tube wells +tubewell,tubewells +tubeworm,tubeworms +tubful,tubfuls +tubicole,tubicoles +tubifex,tubifexes +tubificid,tubificids +tubiluchid,tubiluchids +tubing,tubings +tubipore,tubipores +tubiporite,tubiporites +tubist,tubists +tubivalve,tubivalves +tubman,tubmen +tub of guts,tubs of guts +tub of lard,tubs of lard +tuboplasty,tuboplasties +tub-shower,tub-showers +tubside,tubsides +tub,tubs +tubular assault,tubular assaults +tubularian,tubularians +tubularization,tubularizations +tubulation,tubulations +tubulature,tubulatures +tubule,tubules +tubulin,tubulins +tubulipore,tubulipores +tubulocyst,tubulocysts +tubulopathy,tubulopathies +tubulure,tubulures +tucan,tucans +tuccid,tuccids +tucet,tucets +tuchas,tuchases +tuches,tucheses +tuchis,tuchises +tuchun,tuchuns,tuchun +tuchus,tuchuses +tuckahoe,tuckahoes +tuck box,tuck boxes +tuckerellid,tuckerellids +tucker fucker,tucker fuckers +tuckeroo,tuckeroos +tucker,tucker +tucker,tuckers +tucket,tuckets +tucket,tuckets +tuck-in,tuck-ins +tuck shop,tuck shops +tuckshop,tuckshops +tuck,tucks +tuck,tucks +tuck,tucks +tuco-tuco,tuco-tucos +tucuma,tucumas +tucuxi,tucuxis +'tude,'tudes +tuditanid,tuditanids +tuditanomorph,tuditanomorphs +Tudor rose,Tudor roses +Tudor,Tudors +tudung,tudungs +tue-iron,tue-irons +Tuesday,Tuesdays +tue,tues +tuffet,tuffets +tuffoon,tuffoons +tufted antshrike,tufted antshrikes +tufted duck,tufted ducks +tufter,tufters +tufthunter,tufthunters +tuft,tufts +tufty,tufties +tugboater,tugboaters +tug boat,tug boats +tug-boat,tug-boats +tugboat,tugboats +tugger,tuggers +tughra,tughras +tug of love,tugs of love +tug of war,tugs of war +tug-of-war,tugs-of-war +tugrik,tugriks +tugrug,tugrugs +tug,tugs +tuille,tuilles +tuition,tuitions +tuit,tuits +tui,tuis +TUI,TUIs +Tujia,Tujias,Tujia +Tukeit Hill frog,Tukeit Hill frogs +tuk tuk,tuk tuks +tuk-tuk,tuk-tuks +tukul,tukuls +tuladi,tuladis +tule,tules +tulipist,tulipists +tulipomaniac,tulipomaniacs +tulip shell,tulip shells +tulip tree,tulip trees +tulip,tulips +tulka,tulkas +tulku,tulkus +tulle,tulles +tullibee,tullibees +tulpa,tulpas +tulwar,tulwars +tumbao,tumbaos +tumblebug,tumblebugs +tumble drier,tumble driers +tumble dryer,tumble dryers +tumbledung,tumbledungs +tumblehome,tumblehomes +tumblelog,tumblelogs +tumblerful,tumblerfuls,tumblersful +tumbler,tumblers +tumble,tumbles +tumble-turd,tumble-turds +tumbleweed moment,tumbleweed moments +tumbling mill,tumbling mills +tumbrel,tumbrels +tumbril,tumbrils +Tumbuka,Tumbukas,Tumbuka +tumescence,tumescences +tummal,tummals +tummelberry,tummelberries +tummler,tummlers +tummyache,tummyaches +tummy tuck,tummy tucks +tummy,tummies +tumorectomy,tumorectomies +tumorgenesis,tumorgeneses +tumorigenesis,tumorigeneses +tumor necrosis factor,tumor necrosis factors +tumorogenesis,tumorogeneses +tumorsphere,tumorspheres +tumor,tumors +tumourigenesis,tumourigeneses +tumour,tumours +tumpline,tumplines +tump,tumps +tump,tumps +tum,tums +tum tum,tum tums +tum-tum,tum-tums +tumtum,tumtums +tumulter,tumulters +tumult,tumults +tumultuation,tumultuations +tumulus,tumuli +tunaburger,tunaburgers +tuna melt,tuna melts +tuna,tunas +tuna,tuna,tunas +tunding,tundings +tundish,tundishes +tundra swan,tundra swans +tundra,tundras +tundra vole,tundra voles +tundra wolf,tundra wolves +tunelet,tunelets +tuner,tuners +tunesmith,tunesmiths +tune,tunes +tune-up,tune-ups +tuneup,tuneups +tungid,tungids +Tungid,Tungids +Tungoose,Tungooses +tungstate,tungstates +tungstosilicate,tungstosilicates +tung tree,tung trees +tung,tungs +tung,tungs +Tungus,Tunguses +tunica albuginea,tunicae albugineae +tunicary,tunicaries +tunicate,tunicates +tunick,tunicks +tunicle,tunicles +tunic,tunics +tuning fork,tuning forks +tuning,tunings +Tunis cake,Tunis cakes +Tunisian,Tunisians +T-unit,T-units +Tunker,Tunkers +tunk,tunks +tunk,tunks +tunnage,tunnages +tunnel broker,tunnel brokers +tunnel diode,tunnel diodes +tunneler,tunnelers +tunneller,tunnellers +tunnel rat,tunnel rats +tunnel,tunnels +tunny,tunnies +tun,tuns +tupaiid,tupaiids +tupelo,tupelos +tupik,tupiks +tupilakosaurid,tupilakosaurids +tupilak,tupilaks +tupilaq,tupilaqs +tuplet,tuplets +tuple,tuples +tupman,tupmen +tupo,tupos +tuppence,tuppences +tuppence worth,tuppence worths +tuppence-worth,tuppence-worths +tuppenceworth,tuppenceworths +Tupperware lady,Tupperware ladies +Tupperware party,Tupperware parties +tup,tups +tupuna,tupunas +tupuxuarid,tupuxuarids +tuque,tuques +turaco,turacos,turacoes +turacou,turacous +Turanian,Turanians +turband,turbands +turban shell,turban shells +turban-top,turban-tops +turbant,turbants +turban,turbans +turbary,turbaries +turbellarian,turbellarians +turbellaria,turbellarias +turbel,turbels +turbidimeter,turbidimeters +turbidite,turbidites +turbidity current,turbidity currents +turbillion,turbillions +turbinal,turbinals +turbinate bone,turbinate bones +turbinate,turbinates +turbinectomy,turbinectomies +turbinella,turbinellas +turbinellid,turbinellids +turbine,turbines +turbinid,turbinids +turbinite,turbinites +turbite,turbites +turbit,turbits +turboalternator,turboalternators +turbocharger,turbochargers +turbocompressor,turbocompressors +turbodiesel,turbodiesels +turbodrill,turbodrills +turboencabulator,turboencabulators +turboexpander,turboexpanders +turbofan,turbofans +turbogenerator,turbogenerators +turbojet,turbojets +turboloader,turboloaders +turboload,turboloads +turbomachine,turbomachines +turbomycin,turbomycins +turbonillid,turbonillids +turbopause,turbopauses +turboprop,turboprops +turbopump,turbopumps +turbo-ramjet,turbo-ramjets +turboramjet,turboramjets +turborocket,turborockets +turboshaft,turboshafts +turbosupercharger,turbosuperchargers +turbotrain,turbotrains +turbot,turbot,turbots +turbo,turbos +turbo,turbos +turbulence energy,turbulence energies +Turcism,Turcisms +Turcoman,Turcomans +turcopole,turcopoles +turcopolier,turcopoliers +Turco,Turcos +turdball,turdballs +turd burglar,turd burglars +turdid,turdids +turd in the punchbowl,turds in the punchbowl +turdlicker,turdlickers +turd net,turd nets +turd,turds +turducken,turduckens +tureenful,tureenfuls,tureensful +tureen,tureens +turf accountant,turf accountants +turf bank,turf banks +turfdom,turfdoms +turfite,turfites +turfman,turfmen +turf toe,turf toes +turf,turfs,turves,turf +turf war,turf wars +turgidity,turgidities +turgometer,turgometers +turg,turgs +Turinese,Turinese +Turing computable function,Turing computable functions +Turing degree,Turing degrees +Turing jump,Turing jumps +Turing machine,Turing machines +Turing tarpit,Turing tarpits +Turing test,Turing tests +turion,turions +turio,turios,turiones +Turke,Turkes +turkeyburger,turkeyburgers +turkey-chick,turkey-chicks +turkey-cock,turkey-cocks +turkeycock,turkeycocks +turkey frill,turkey frills +turkey-hen,turkey-hens +turkeyling,turkeylings +Turkey oak,Turkey oaks +Turkey red,Turkey reds +turkey shoot,turkey shoots +turkey-shoot,turkey-shoots +turkey slap,turkey slaps +turkey trot,turkey trots +turkey-trot,turkey-trots +turkey,turkeys +turkey vulture,turkey vultures +Turkish Angora,Turkish Angoras +Turkish bath,Turkish baths +Turkish corsair,Turkish corsairs +Turkish pizza,Turkish pizzas +Turkish Van,Turkish Vans +Turkism,Turkisms +turkis,turkises +turkle,turkles +turkling,turklings +Turkmen,Turkmens +turkois,turkoises +Turkologist,Turkologists +Turkoman,Turkomans +turkophone,turkophones +Turkophone,Turkophones +Turko,Turkos +Turk,Turks +turlet,turlets +turlough,turloughs +Turlupin,Turlupins +turmaline,turmalines +turmeric,turmerics +turmerone,turmerones +turmit,turmits +turm,turms +turn about,turn abouts +turn-about,turn-abouts +turnabout,turnabouts +turn and bank indicator,turn and bank indicators +turn around,turn arounds +turn-around,turn-arounds +turnaround,turnarounds +turnboy,turnboys +turnbroach,turnbroaches +turnbuckle,turnbuckles +turn button,turn buttons +turncloak,turncloaks +turncoat,turncoats +turncock,turncocks +turndown,turndowns +turndun,turnduns +turnep,turneps +turner,turners +turner,turners +turney,turneys +turnhalle,turnhalles,turnhallen +turnicid,turnicids +turning circle,turning circles +turning point,turning points +turning,turnings +turnip head,turnip heads +turnip shell,turnip shells +turnip,turnips +turnkey,turnkeys +turn of events,turns of events +turn-off,turn-offs +turnoff,turnoffs +turn of phrase,turns of phrase +turn of the century,turns of the centuries +turn of the year,turns of the years +turn-on,turn-ons +turnon,turnons +turn-out,turn-outs +turnout,turnouts +turnover,turnovers +turnpike,turnpikes +turnplate,turnplates +turnscrew,turnscrews +turnskin,turnskins +turnspit,turnspits +turnstile attendance,turnstile attendances +turn-stile,turn-stiles +turnstile,turnstiles +turnstone,turnstones +turntable,turntables +turntablist,turntablists +turn,turns +turn up for the book,turn ups for the book +turn up,turn ups +turn-up,turn-ups +turnup,turnups +turnverein,turnvereins +turnwrest,turnwrests +turophile,turophiles +turpin,turpins +turquoise,turquoises +turquois,turquoises +turrel,turrels +turret,turrets +turribant,turribants +turrid,turrids +turrilite,turrilites +turrilitid,turrilitids +turritella,turritellas +turritellid,turritellids +turrΓ³n,turrones +turron,turrons +turtle-back,turtle-backs +turtleback,turtlebacks +turtle dove,turtle doves +turtle-dove,turtle-doves +turtledove,turtledoves +turtle excluder device,turtle excluder devices +turtlehead,turtleheads +turtle hull,turtle hulls +turtleling,turtlelings +turtle neck,turtle necks +turtle-neck,turtle-necks +turtleneck,turtlenecks +turtle peg,turtle pegs +turtle-peg,turtle-pegs +turtler,turtlers +turtle,turtles +turtle,turtles +turtling,turtlings +tur,turs +Tuscan,Tuscans +Tuscarora,Tuscaroras,Tuscarora +tusche,tusches +tuscor,tuscors +tushie,tushies +tush,tushes +tush,tushes +tusker,tuskers +tusker,tuskers +tusk shell,tusk shells +tusk,tusks +tusk,tusks +tussler,tusslers +tussle,tussles +tussocker,tussockers +tussock,tussocks +tussore,tussores +tussuck,tussucks +tussur,tussurs +tutee,tutees +tutelage,tutelages +tutelar,tutelars +tutelary deity,tutelary deitys +tutelary,tutelaries +'tute,'tutes +tute,tutes +tuteur,tuteurs +tutilage,tutilages +tutillage,tutillages +tutorage,tutorages +tutoress,tutoresses +tutorial,tutorials +tutorship,tutorships +tutor,tutors +tutour,tutours +tutress,tutresses +tutrix,tutrices +tutsan,tutsans +Tutsi,Tutsis,Tutsi +Tutte matrix,Tutte matrices,Tutte matrixes +tutti,tuttis +tut,tuts +tut,tuts +tut tut,tut tuts +tutulemma,tutulemmas +tutu,tutus +Tuvaluan,Tuvaluans +tuwel,tuwels +tuwhit tuwhoo,tuwhit tuwhoos +tuxedo,tuxedos,tuxedoes +tux,tuxes +tuya,tuyas +tuyere,tuyeres +tuyΓ¨re,tuyΓ¨res +tuyer,tuyers +tuzla,tuzlas +tuz,tuzzes +TV dinner,TV dinners +TV game,TV games +TV guide,TV guides +TV movie,TV movies +TV series,TV series +TV set,TV sets +TV tray,TV trays +TV tuner,TV tuners +tv,tvs +TV,TVs +twaddler,twaddlers +twaddle,twaddles +twagger,twaggers +twaite,twaites +twanging,twangings +twang,twangs +twattler,twattlers +twattock,twattocks +twat,twats +TWA,TWAs +T-wave,T-waves +twayblade,twayblades +twazzock,twazzocks +tweaker,tweakers +tweaking,tweakings +tweak,tweaks +Tweedle-dee,Tweedle-dees +Tweedle-dum,Tweedle-dums +tweed,tweeds +tweeker,tweekers +tweel,tweels +tweenager,tweenagers +tweendom,tweendoms +tweener,tweeners +tweenie,tweenies +tweening,tweenings +tween,tweens +tween,tweens +tween,tweens +tween,tweens +tweenybopper,tweenyboppers +tweeny,tweenies +tweep,tweeps +tweep,tweeps,tweeple +tweer,tweers +tweese,tweeses +tweeter,tweeters +tweetfest,tweetfests +tweetheart,tweethearts +tweeting,tweetings +tweet,tweets +tweetup,tweetups +tweezer,tweezers +Twelfth cake,Twelfth cakes +twelfth grade,twelfth grades +twelfth man,twelfth men +Twelfth Night,Twelfth Nights +twelfth,twelfths +twelveling,twelvelings +twelvemonth,twelvemonths +twelvemo,twelvemos +twelve penny nail,twelve penny nails +twelve-penny nail,twelve-penny nails +twelvepenny nail,twelvepenny nails +twelvesies,twelvesies +twelve stepper,twelve steppers +twelve-stepper,twelve-steppers +twelve-step program,twelve-step programs +twelve,twelves +twelve-year-old,twelve-year-olds +twentieth,twentieths +twenty-eighth,twenty-eighths +twenty-fifth,twenty-fifths +twenty-first,twenty-firsts +twenty-five-thousander,twenty-five-thousanders +twenty-fourmo,twenty-fourmos +twentyfourmo,twentyfourmos +twenty-fourth,twenty-fourths +twenty-minute egg,twenty-minute eggs +twenty-ninth,twenty-ninths +twenty-oneth,twenty-oneths +twenty-second,twenty-seconds +twenty-seventh,twenty-sevenths +twentysomething,twentysomethings +twenty-third,twenty-thirds +twenty,twenties +twenty-two,twenty-twos +twerker,twerkers +twerk,twerks +twerk,twerks +twerk,twerks +twerp,twerps +twibill,twibills +twiblade,twiblades +twiddler,twiddlers +twiddle,twiddles +twier,twiers +twifallow,twifallows +twiffler,twifflers +twifoil,twifoils +twigger,twiggers +twigil,twigils +twigloo,twigloos +twig snake,twig snakes +twig,twigs +Twihard,Twihards +twilight industry,twilight industries +twilight,twilights +twilight zone,twilight zones +twilight zone,twilight zones +twilling,twillings +twill tape,twill tapes +twilly,twillies +twilt,twilts +twimmolation,twimmolations +twin bed,twin beds +twinberry,twinberries +twincharger,twinchargers +twin-clutch gearbox,twin-clutch gearboxes +twin crystal,twin crystals +twine reeler,twine reelers +twiner,twiners +twine,twines +twinflower,twinflowers +twinge,twinges +twinhull,twinhulls +twinjet,twinjets +Twinkie defence,Twinkie defences +twinkie,twinkies +twin killing,twin killings +twinkler,twinklers +twinkle,twinkles +twinkling,twinklings +twink,twinks +twink,twinks +twink,twinks +twink,twinks +twinleaf,twinleafs +twinling,twinlings +twinner,twinners +twinnie,twinnies +twinning,twinnings +twin prime,twin primes +twin quasar,twin quasars +twin room,twin rooms +twinset,twinsets +twinspot,twinspots +twinter,twinters +twin town,twin towns +twin tub,twin tubs +twin,twins +Twin,Twins +twip,twips +twi-reason,twi-reasons +twireason,twireasons +twire-pipe,twire-pipes +twire,twires +twire,twires +twirler,twirlers +twirling,twirlings +twirl,twirls +twirp,twirps +twissell,twissells +twissel,twissels +twist drill,twist drills +twister,twisters +twistification,twistifications +twisting,twistings +twistle,twistles +twist of fate,twists of fate +twistorian,twistorians +twistor,twistors +twist tie,twist ties +twist,twists +twisty,twisties +twitard,twitards +Twi-tard,Twi-tards +Twitard,Twitards +twitchel,twitchels +twitcher,twitchers +twitch,twitches +twite,twites +twi-thought,twi-thoughts +twithought,twithoughts +twitling,twitlings +twitten,twittens +twitterer,twitterers +twittering,twitterings +twitter,twitters +twittle-twattle,twittle-twattles +twit,twits +'twixt-brain,'twixt-brains +twixter,twixters +twizzle,twizzles +two-bagger,two-baggers +two-body problem,two-body problems +two by four,two by fours +two-by-four,two-by-fours +twoccer,twoccers +twocker,twockers +two-decker,two-deckers +two-edged sword,two-edged swords +twoer,twoers +twofer,twofers +two-fingered typing,two-fingered typings +two-fisted drinker,two-fisted drinkers +two-form,two-forms +two-four,two-fours +two-hander,two-handers +two-line pass,two-line passes +two-line whip,two-line whips +twoling,twolings +two-liter,two-liters +two L,two Ls +two-L,two-Ls +Two L,Two Ls +Two-L,Two-Ls +two-minute silence,two-minute silences +two-minute warning,two-minute warnings +twomp,twomps +twonk,twonks +two-norm,two-norms +twopence,twopences +two pennorth,two pennorths +two-percenter,two-percenters +two-piece,two-pieces +two-point conversion,two-point conversions +two pot screamer,two pot screamers +two-price advertising,two-price advertisings +t-word,t-words +two's complement,two's complements +twoscore,twoscores +two-seamer,two-seamers +two-seam fastball,two-seam fastballs +two-seater,two-seaters +two-second rule,two-second rules +two shot,two shots +two-sided ideal,two-sided ideals +twosies,twosies +twosome,twosomes +two-spirit,two-spirits +two-step,two-steps +two-stroke engine,two-stroke engines +two-stroke,two-strokes +two-timer,two-timers +twotino,twotinos +two-toed sloth,two-toed sloths +two,twos +two-up-two-down,two-up-two-downs +two-way communication,two-way communications +two-way mirror,two-way mirrors +two-way street,two-way streets +two-wheeler,two-wheelers +tw*t,tw*ts +twunt,twunts +twyblade,twyblades +twyer,twyers +twyndyllyng,twyndyllyngs +txtspk,txtspks +Tyburn ticket,Tyburn tickets +Tychonoff cube,Tychonoff cubes +tycoon,tycoons +tydeid,tydeids +tyer,tyers +tye,tyes +tyfoon,tyfoons +tyger,tygers +tying,tyings +tyiyn,tyiyns +tyke,tykes +Tyke,Tykes +tylarus,tylari +tylectomy,tylectomies +tyler,tylers +tylid,tylids +tylodinid,tylodinids +tyloma,tylomas,tylomata +tylopod,tylopods +tylosaurine,tylosaurines +tylosaur,tylosaurs +tylose,tyloses +tylosin,tylosins +tylosis,tyloses +tymbal,tymbales +tyme,tymes +tympanic membrane,tympanic membranes +tympanist,tympanists +tympani,tympanis +tympanohyal,tympanohyals +tympanoplasty,tympanoplasties +tympanostomy,tympanostomies +tympano,tympani +tympan,tympans +tympanum,tympanums,tympana +tympany,tympanies +tymp,tymps +tyndarid,tyndarids +tyne,tynes +typebar,typebars +type collection,type collections +typecutter,typecutters +typedef,typedefs +type design,type designs +type erasure,type erasures +type face,type faces +typeface,typefaces +type-founder,type-founders +typefounder,typefounders +type foundry,type foundries +type I error,type I errors +type II error,type II errors +type inference,type inferences +type introspection,type introspections +type-in,type-ins +type locality,type localities +type metal,type metals +typescript,typescripts +typesetter,typesetters +typesetting,typesettings +type site,type sites +type-site,type-sites +typesite,typesites +typestyle,typestyles +type system,type systems +type,types +typewriter,typewriters +typewritist,typewritists +typhlocolitis,typhlocolites +typhlonectid,typhlonectids +typhlopid,typhlopids +typhlosole,typhlosoles +typhoidin,typhoidins +Typhoid Mary,Typhoid Marys +typhoid,typhoids +typhon,typhons +typhoon fifth,typhoon fifths +typhoon,typhoons +typical,typicals +typicity,typicities +typification,typifications +typifier,typifiers +typing,typings +typist,typists +typodont,typodonts +typographer,typographers +typographical error,typographical errors +typographic ligature,typographic ligatures +typographist,typographists +typolite,typolites +typologist,typologists +typology,typologies +typomaniac,typomaniacs +typosquatter,typosquatters +typo,typos +tyramide,tyramides +tyranness,tyrannesses +tyrannicide,tyrannicides +tyrannid,tyrannids +tyrannie,tyrannies +tyrannosaurid,tyrannosaurids +tyrannosaurine,tyrannosaurines +tyrannosauroid,tyrannosauroids +tyrannosaur,tyrannosaurs +Tyrannosaurus rex,Tyrannosaurus rexes +tyrannosaurus,tyrannosauri,tyrannosauruses +tyranny of the majority,tyrannies of the majority,tyrannies of majorities +tyranny,tyrannies +tyrantess,tyrantesses +tyrant flycatcher,tyrant flycatchers +tyrant,tyrants +tyran,tyrans +tyraunt,tyraunts +tyre bead,tyre beads +tyre gauge,tyre gauges +tyre iron,tyre irons +tyre kicker,tyre kickers +tyremaker,tyremakers +tyre-pressure gauge,tyre-pressure gauges +tyre,tyres +Tyrian purple,Tyrian purples +Tyrian,Tyrians +tyrociny,tyrocinies +Tyrolean Hound,Tyrolean Hounds +tyrolean,tyroleans +Tyrolean,Tyroleans +tyropanoate,tyropanoates +tyrosinyl,tyrosinyls +tyrosyl,tyrosyls +tyrotoxicon,tyrotoxicons +tyro,tyros,tyroes +tyrphostin,tyrphostins +tyrranid,tyrranids +Tyrrhenian,Tyrrhenians +Tyrsenian,Tyrsenians +tysonite,tysonites +tystie,tysties +tythe,tythes +tything,tythings +tytonid,tytonids +tyubeteika,tyubeteikas +tzaddik,tzaddiks,tzaddikim +tzaddiq,tzaddiqs +tzadik,tzadiks,tzadikim +tzardom,tzardoms +tzarevich,tzareviches +tzarevna,tzarevnas +tzaricide,tzaricides +tzarina,tzarinas +tzarist,tzarists +tzaritsa,tzaritsas +tzaritza,tzaritzas +tzar,tzars +tzedakah,tzedakahs +tzedaka,tzedakas +tzigane,tziganes +tzigany,tziganies +tzitzit,tzitzits +tzolkin,tzolkins +T-zone,T-zones +UAE,UAEs +uakari,uakaris +UA,UAs +UAV,UAVs +ubac,ubacs +U-bend,U-bends +uberdork,uberdorks +ubergeek,ubergeeks +ΓΌbermensch,ΓΌbermenschen +Übermensch,Übermenschen +ubersexual,ubersexuals +ΓΌbersexual,ΓΌbersexuals +ubicity,ubicities +ubiquinone,ubiquinones +ubiquitarian,ubiquitarians +ubiquitary,ubiquitaries +ubiquitinase,ubiquitinases +ubiquitist,ubiquitists +ubiquitylase,ubiquitylases +ubistatin,ubistatins +U-boater,U-boaters +U-boat,U-boats +U-bolt,U-bolts +Ubykh,Ubykhs,Ubykh +Ucalegon,Ucalegons +UCAV,UCAVs +Uchee,Uchees +uchi-deshi,uchi-deshis +Uckewallist,Uckewallists +udaler,udalers +udalf,udalfs +udalman,udalmen +udal,udals +udand,udands +udarnik,udarniks,udarniki +udātta,udāttas +udder,udders +udept,udepts +udert,uderts +udipsamment,udipsamments +Udmurtian,Udmurtians +Udmurt,Udmurts +udoll,udolls +udometer,udometers +udox,udoxes +UDP,UDPs +'ud,'uds +udult,udults +UE,UEs +uey,ueys +ufologist,ufologists +UFO religionist,UFO religionists +UFO religion,UFO religions +ufo,ufos +UFO,UFOs +Ugandan affairs,Ugandan affairs +Ugandan,Ugandans +ugg boot,ugg boots +uggo,uggos +ugg,uggs +ugli fruit,ugli fruits +ugli,uglies +ugly duckling,ugly ducklings +ugly finder,ugly finders +ugly-finder,ugly-finders +ugly milk-cap,ugly milk-caps +Ugrian,Ugrians +Ugricist,Ugricists +ug,ugs +U-Haul lesbian,U-Haul lesbians +uhlan,uhlans +uh,uhs +Uhuru Torch,Uhuru Torchs +UIC,UICs +u-ie,u-ies +UIgG,UIgGs +uilleann piper,uilleann pipers +uilleann pipe,uilleann pipes +uintatheriid,uintatheriids +ujamaa,ujamaas +ukase,ukases +ukelele,ukeleles +ukelin,ukelins +uke,ukes +Uke,Ukes +uke,ukes,uke +Ukie,Ukies +ukiyo-e,ukiyo-e +ukiyoe,ukiyoe +Ukrainian Easter egg,Ukrainian Easter eggs +Ukrainianism,Ukrainianisms +Ukrainian,Ukrainians +ukuleleist,ukuleleists +ukulele,ukuleles +ukulelist,ukulelists +ulan,ulans +ularburong,ularburongs +ULCC,ULCCs +ulceration,ulcerations +ulcer,ulcers +ulcuscule,ulcuscules +ulexite,ulexites +ulidiid,ulidiids +uliginose,uliginoses +ULIRG,ULIRGs +ullet,ullets +ullmannite,ullmannites +ulluco,ullucos +ulmate,ulmates +ulnare,ulnares +ulna,ulnae,ulnas +uloborid,uloborids +ULOC,ULOCs +ulodendron,ulodendrons +ulodid,ulodids +ulopyranose,ulopyranoses +ulosonic acid,ulosonic acids +ulsterette,ulsterettes +Ulster fry,Ulster fries +Ulsterman,Ulstermen +ulster,ulsters +ulterior motive,ulterior motives +ultimate sacrifice,ultimate sacrifices +ultimate tensile strength,ultimate tensile strengths +ultimate,ultimates +ultimatist,ultimatists +ultimatum,ultimatums,ultimata +ultima,ultimas +ultisol,ultisols +Ultonian,Ultonians +ultrabook,ultrabooks +ultracapacitor,ultracapacitors +ultracentrifugation,ultracentrifugations +ultracentrifuge,ultracentrifuges +ultracondenser,ultracondensers +ultraconservative,ultraconservatives +ultracontig,ultracontigs +ultracrepidarian,ultracrepidarians +ultrafiche,ultrafiches +ultrafilter,ultrafilters +ultrafiltrate,ultrafiltrates +ultrafine particle,ultrafine particles +ultrafinitist,ultrafinitists +ultrafundamentalist,ultrafundamentalists +ultrahazardous activity,ultrahazardous activities +ultraintuitionist,ultraintuitionists +ultraist,ultraists +ultra large crude carrier,ultra large crude carriers +ultraleftist,ultraleftists +ultraliberal,ultraliberals +ultralight,ultralights +ultralocalization,ultralocalizations +ultra lounge,ultra lounges +ultra-lounge,ultra-lounges +ultralounge,ultralounges +ultra low frequency,ultra low frequencies +ultraloyalist,ultraloyalists +ultramafic,ultramafics +ultramarathoner,ultramarathoners +ultramarathon,ultramarathons +ultramarine ash,ultramarine ashes +ultramarine,ultramarines +ultrametamorphosis,ultrametamorphoses +ultramicroelectrode,ultramicroelectrodes +ultramicrofiche,ultramicrofiches +ultramicrometer,ultramicrometers +ultramicroscope,ultramicroscopes +ultramicrotome,ultramicrotomes +ultramodernist,ultramodernists +ultramontane,ultramontanes +ultramontanist,ultramontanists +ultranationalist,ultranationalists +ultrapeer,ultrapeers +ultraportable,ultraportables +ultraproduct,ultraproducts +ultrarace,ultraraces +ultraradical,ultraradicals +ultrarevolutionary,ultrarevolutionaries +ultrarightist,ultrarightists +ultrarunner,ultrarunners +ultrashort,ultrashorts +ultrasonic bath,ultrasonic baths +ultrasonogram,ultrasonograms +ultrasonographer,ultrasonographers +ultrasonograph,ultrasonographs +ultraspiracle,ultraspiracles +ultrastructure,ultrastructures +ultratraditionalist,ultratraditionalists +ultra,ultras +ultravacuum,ultravacuums +ultravirus,ultraviruses +ultrazoom,ultrazooms +ult,ults +ululation,ululations +ul,uls +UL,ULs +ulvospinel,ulvospinels +ulvΓΆspinel,ulvΓΆspinels +umagite,umagites +Umari,Umaris +umbellet,umbellets +umbellifer,umbellifers +umbelliferyl,umbelliferyls +umbellule,umbellules +umbel,umbels +umberstick,umbersticks +umber,umbers +umbeset,umbesets +umbethinking,umbethinkings +umbilical cord,umbilical cords +umbilical hernia,umbilical hernias +umbilical,umbilicals +umbilication,umbilications +umbilicoplasty,umbilicoplasties +umbilic,umbilics +umbilicus,umbilici,umbilicuses +umble pie,umble pies +umbo,umbones,umbos,umboes +umbraculid,umbraculids +umbrage,umbrages +umbraid,umbraids +umbraphile,umbraphiles +umbratile,umbratiles +umbra,umbras,umbrae +umbrella body,umbrella bodies +umbrella company,umbrella companies +umbrella organisation,umbrella organisations +umbrella organization,umbrella organizations +umbrella pine,umbrella pines +umbrella stand,umbrella stands +umbrella term,umbrella terms +umbrella,umbrellas +umbrel,umbrels +umbrere,umbreres +umbrette,umbrettes +Umbrian,Umbrians +umbrid,umbrids +umbriere,umbrieres +umbril,umbrils +umbrine,umbrines +umbrisol,umbrisols +umbworld,umbworlds +ume,ume ,umes +umgang,umgangs +umiac,umiacs +umiak,umiaks,umiat +umiaq,umiaqs +umkhwetha,abakwetha,abakhwetha +umlaut,umlauts,umlaute +umlungu,umlungus,abelungu +ummah,ummahs +umma,ummas +'umour,'umours +umpire,umpires +umpress,umpresses +umptillion,umptillions +ump,umps +umrah,umrahs +umstroke,umstrokes +um,um +umu,umus +umuzungu,abazungu,bazungu +umwelt,umwelts,umwelten +Umwelt,Umwelts,Umwelten +Una boat,Una boats +unaccent,unaccents +unaccusative,unaccusatives +una corda pedal,una corda pedals +unadopted road,unadopted roads +unaffected,unaffecteds +unalist,unalists +Unangan,Unangans +unanswerability,unanswerabilities +unanswerable,unanswerables +unary operation,unary operations +unary operator,unary operators +unary,unaries +unattainable,unattainables +unattended installation,unattended installations +UNA,UNAs +unauthorised term,unauthorised terms +unauthorized term,unauthorized terms +unau,unaus +unavailable energy,unavailable energies +unavailable,unavailables +unavoidable,unavoidables +unbeatable,unbeatables +unbeliever,unbelievers +unbethinking,unbethinkings +unbirthday,unbirthdays +unbirthing,unbirthings +unblocker,unblockers +unborn child,unborn children +unbosomer,unbosomers +unboxing,unboxings +unbreed,unbreeds +unburial,unburials +uncapper,uncappers +unce,unces +unce,unces +uncharted water,uncharted waters +unch,unches +uncial,uncials +uncia,unciae +unciform,unciforms +uncinate fasciculus,uncinate fasciculi +uncinus,uncini +uncle-in-law,uncles-in-law +Uncle Scrooge,Uncle Scrooges +Uncle Tom,Uncle Toms +uncle,uncles +uncommitted logic array,uncommitted logic arrays +uncompression,uncompressions +unconcern,unconcerns +unconcession,unconcessions +unconference,unconferences +unconformist,unconformists +unconformity,unconformities +unconscionability,unconscionabilities +unconventional,unconventionals +uncopyrightable,uncopyrightables +uncorrelation,uncorrelations +uncountable set,uncountable sets +uncountable,uncountables +uncount noun,uncount nouns +uncoupler,uncouplers +uncoupling,uncouplings +uncoverer,uncoverers +uncrossing,uncrossings +unction,unctions +unc,uncs +uncus,unci +uncuth,uncuths +undecagon,undecagons +undecahydrate,undecahydrates +undecamer,undecamers +undecane,undecanes +undecanoate,undecanoates +undecanoyl,undecanoyls +undecaoxide,undecaoxides +undecapeptide,undecapeptides +undecaprenyl,undecaprenyls +undecenoate,undecenoates +undecidability,undecidabilities +undecided,undecideds +undecillionth,undecillionths +undeclinable,undeclinables +undecylate,undecylates +undecylenate,undecylenates +undecyl,undecyls +undefeatable,undefeatables +undefinable,undefinables +underabundance,underabundances +underachievement,underachievements +underachiever,underachievers +underaction,underactions +underagent,underagents +underage,underages +underapplication,underapplications +under-approximation,under-approximations +underapproximation,underapproximations +underarm,underarms +underassistant,underassistants +underback,underbacks +underbar,underbars +underbearer,underbearers +underbelly,underbellies +underbet,underbets +underbidder,underbidders +underbid,underbids +underbite,underbites +underblow,underblows +underboard,underboards +underbody,underbodies +underbone,underbones +underboob,underboobs +underboss,underbosses +underbranch,underbranches +underbreak,underbreaks +underbridge,underbridges +underbuilder,underbuilders +underbuilding,underbuildings +underburn,underburns +undercard,undercards +undercarriage,undercarriages +undercast,undercasts +underchamberlain,underchamberlains +underclasser,underclassers +underclassman,underclassmen +underclass,underclasses +underclay,underclays +undercliff,undercliffs +undercoating,undercoatings +undercoat,undercoats +undercollar,undercollars +underconstable,underconstables +undercook,undercooks +undercoordination,undercoordinations +undercover,undercovers +undercraft,undercrafts +undercroft,undercrofts +undercurrent,undercurrents +undercutter,undercutters +undercut,undercuts +underdeck,underdecks +underdiagnosis,underdiagnoses +underdog,underdogs +underdose,underdoses +underdot,underdots +underdrain,underdrains +underdrawing,underdrawings +underearner,underearners +undereater,undereaters +undereducation,undereducations +underestimate,underestimates +underestimation,underestimations +underestimator,underestimators +underexpression,underexpressions +underfarmer,underfarmers +underfellow,underfellows +underfilling,underfillings +underfinancing,underfinancings +underfitting,underfittings +underfloor,underfloors +underflow,underflows +underframe,underframes +underfringe,underfringes +undergarment,undergarments +undergetting,undergettings +underglaze,underglazes +undergod,undergods +undergoer,undergoers +undergown,undergowns +undergraduacy,undergraduacies +undergraduate,undergraduates +undergrad,undergrads +under-grounder,under-grounders +undergrounder,undergrounders +underground railway,underground railways +underground,undergrounds +undergrove,undergroves +underhander,underhanders +underhang,underhangs +underhead,underheads +underhold,underholds +underinsured,underinsureds +underinvestment,underinvestments +underinvestor,underinvestors +underjaw,underjaws +underkeeper,underkeepers +underkeep,underkeeps +under-kimono,under-kimonos +underkind,underkinds +underkingdom,underkingdoms +underking,underkings +underlaborer,underlaborers +underlabourer,underlabourers +underlayer,underlayers +underlayment,underlayments +underlay,underlays +underlead,underleads +underleaf,underleaves +underlease,underleases +underleg,underlegs +underletter,underletters +underlever,underlevers +underliner,underliners +underliner,underliners +underline,underlines +underling,underlings +underlining,underlinings +underlip,underlips +underload,underloads +underlock,underlocks +underlooker,underlookers +underlook,underlooks +underlug,underlugs +underlying form,underlying forms +undermaster,undermasters +undermatch,undermatches +undermeal,undermeals +undermind,underminds +underminer,underminers +undermining,underminings +underminister,underministers +underministry,underministries +undermix,undermixes +undernet,undernets +underofficer,underofficers +underorder,underorders +underpad,underpads +underpair,underpairs +underpart,underparts +underpass,underpasses +underpayer,underpayers +underpayment,underpayments +underperformer,underperformers +underpetticoat,underpetticoats +underpinner,underpinners +underpinning,underpinnings +underplanting,underplantings +underplant,underplants +underplate,underplates +underplot,underplots +underpotential,underpotentials +underprediction,underpredictions +underpressure,underpressures +underprint,underprints +underprivileged,underprivileged +underproduction,underproductions +underpropper,underproppers +underprovision,underprovisions +underpuller,underpullers +underpush,underpushes +underrate,underrates +underreaction,underreactions +underrobe,underrobes +underruff,underruffs +underrun,underruns +undersampling,undersamplings +undersash,undersashes +underscore,underscores +underseal,underseals +undersecretaryship,undersecretaryships +undersecretary,undersecretaries +Under Secretary,Under Secretaries +undersend,undersends +underservant,underservants +undersetter,undersetters +undersetting,undersettings +underset,undersets +undersheet,undersheets +undershell,undershells +undershepherd,undershepherds +undersheriff,undersheriffs +undershirt,undershirts +undershrub,undershrubs +underside,undersides +undersigned,undersigneds +underskinker,underskinkers +underskirt,underskirts +undersky,underskies +undersleeve,undersleeves +undersling,underslings +underslip,underslips +undersock,undersocks +undersoil,undersoils +undersong,undersongs +underspend,underspends +undersphere,underspheres +understage,understages +understander,understanders +understatement,understatements +understater,understaters +understeer,understeers +understitch,understitches +understock,understocks +understorey,understoreys +understory,understories +understrapper,understrappers +understrap,understraps +understratum,understrata +understroke,understrokes +understructure,understructures +understudy,understudies +undersuit,undersuits +undersurface,undersurfaces +underswell,underswells +undertaker,undertakers +undertaking,undertakings +underteacher,underteachers +undertenancy,undertenancies +undertenant,undertenants +undertext,undertexts +underthing,underthings +undertide,undertides +undertie,underties +undertilde,undertildes +undertint,undertints +undertone,undertones +undertow,undertows +undertray,undertrays +undertreasurer,undertreasurers +undertreatment,undertreatments +under-trial,under-trials +undertrial,undertrials +undertrick,undertricks +undervaluation,undervaluations +undervaluer,undervaluers +undervest,undervests +underviewer,underviewers +undervote,undervotes +underwater,underwaters +underway,underways +underweening,underweenings +underwing,underwings +underwire,underwires +underwise,underwises +underwood,underwoods +Underwood,Underwoods +underwool,underwools +underworker,underworkers +underworkman,underworkmen +underworld,underworlds +Underworld,Underworlds +underwriter,underwriters +undeserver,undeservers +undesirable,undesirables +undine,undines +undirected graph,undirected graphs +undirected path,undirected paths +undocking,undockings +undocumented immigrant,undocumented immigrants +undocumented worker,undocumented workers +undoer,undoers +undoing,undoings +undress parade,undress parades +unducted fan,unducted fans +undulated antshrike,undulated antshrikes +undulated tinamou,undulated tinamous +undulationist,undulationists +undulation,undulations +undulator,undulators +undulipodium,undulipodia +und,unds +unearned income,unearned incomes +unearthing,unearthings +unearthliness,unearthlinesses +uneasiness,uneasinesses +unemployee,unemployees +unemployment benefit,unemployment benefits +unemployment insurance,unemployment insurances +unergative,unergatives +unexpired cost,unexpired costs +unfamiliarity,unfamiliarities +unfamiliar,unfamiliars +unfastener,unfasteners +unfavorite,unfavorites +unfeasibility,unfeasibilities +unfitness,unfitnesses +unfoldase,unfoldases +unfolder,unfolders +unfolding,unfoldings +unfoldome,unfoldomes +unforced error,unforced errors +unfortunate,unfortunates +unfriendly,unfriendlies +unfriend,unfriends +ungeld,ungelds +ungka-puti,ungka-putis +ungka,ungkas +ungrace,ungraces +ungual,unguals +unguent,unguents +unguiculate,unguiculates +unguilting,unguiltings +unguis,ungues,unguises +ungulate,ungulates +ungula,ungulae +ungulinid,ungulinids +unhappening,unhappenings +unhappy triad,unhappy triads +unhirable,unhirables +unhireable,unhireables +unholy trinity,unholy trinities +unibrow,unibrows +unicameralism,unicameralisms +unicasting,unicastings +unicellular,unicellulars +unicell,unicells +unicornfish,unicornfishes,unicornfish +unicorn,unicorns +unicum,unica +unicursal,unicursals +unicuspid,unicuspids +unicycle,unicycles +unicyclist,unicyclists +unidentified flying object,unidentified flying objects +unidiomaticity,idiomaticities +uniface,unifaces +unificationist,unificationists +Unificationist,Unificationists +unified type system,unified type systems +unifier,unifiers +uniform antshrike,uniform antshrikes +uniform convergence,uniform convergences +uniform crake,uniform crakes +uniformitarian,uniformitarians +uniform metric,uniform metrics +uniform resource identifier,uniform resource identifiers +Uniform Resource Locator,Uniform Resource Locators +uniform space,uniform spaces +uniform,uniforms +uniglot,uniglots +unigram,unigrams +unijunction,unijunctions +unikont,unikonts +unilateral contract,unilateral contracts +unilateralist,unilateralists +unimpressibility,unimpressibilities +uninstallation,uninstallations +uninstaller,uninstallers +uninsured,uninsureds +unintentionality,unintentionalities +uninym,uninyms +union bug,union bugs +unionbuster,unionbusters +union high school,union high schools +unionid,unionids +unionisation,unionisations +unionist,unionists +unionization,unionizations +unionization,unionizations +union job,union jobs +union man,union men +union shop,union shops +union suit,union suits +union tee,union tees +union,unions +Union,Unions +unio,unios +unipara,uniparas,uniparae +uniped,unipeds +unipeg,unipegs +unipersonalist,unipersonalists +unipod,unipods +uniporter,uniporters +uniprocessor,uniprocessors +unique factorization domain,unique factorization domains +unique factorization ring,unique factorization rings +Unique Identification Number,Unique Identification Numbers +unique identifier,unique identifiers +unique,uniques +uniquid,uniquids +uniramian,uniramians +uniselector,uniselectors +unispore,unispores +unisus,unisi +unit aircraft,unit aircraft +unitard,unitards +unitarianist,unitarianists +unitarian,unitarians +Unitarian,Unitarians +Unitarian Universalist,Unitarian Universalists +unitarization,unitarizations +unitary council,unitary councils +unitary matrix,unitary matrices +unitary state,unitary states +unitary,unitaries +unitasker,unitaskers +unit cell,unit cells +unit circle,unit circles +unit cost,unit costs +united flower,united flowers +united inch,united inches +United Statesian,United Statesians +United Statesman,United Statesmen +United Statian,United Statians +uniter,uniters +unit fine,unit fines +unit fraction,unit fractions +unitholder,unitholders +unit interval,unit intervals +unition,unitions +unit matrix,unit matrices,unit matrixes +unit of measurement,units of measurement +unit of measure,units of measure +unit operation,unit operations +unit price,unit prices +unit sphere,unit spheres +unit testing framework,unit testing frameworks +unit test,unit tests +unit,units +unit vector,unit vectors +uni,unis +univalent,univalents +univalve,univalves +univariate,univariates +universal donor,universal donors +universal grammar,universal grammars +Universalian,Universalians +Universalism,Universalisms +universalist,universalists +Universalist,Universalists +universal joint,universal joints +universal product code,universal product codes +universal property,universal properties +universal quantifier,universal quantifiers +universal set,universal sets +universal Turing machine,universal Turing machines +universal,universals +universal value,universal values +universal veil,universal veils +universe of discourse,universes of discourse +universe,universes +Universiade,Universiades +universist,universists +universitie,universities +university of life,universities of life +university,universities +universologist,universologists +univocalic,univocalics +Unixism,Unixisms +Unix weenie,Unix weenies +unjustice,unjustices +unkel,unkels +unkie,unkies +unkle,unkles +unknome,unknomes +unknotting,unknottings +unknot,unknots +unknowable,unknowables +unknown quantity,unknown quantities +unknown,unknowns +unknown unknown,unknown unknowns +unky,unkies +unlaw,unlaws +unleavened bread,unleavened breads +unlikelihood,unlikelihoods +unlikely,unlikelies +unlimited register machine,unlimited register machines +unlink,unlinks +unloader,unloaders +unloading,unloadings +unlockable,unlockables +unlocker,unlockers +unlocking,unlockings +unlooser,unloosers +unmaker,unmakers +unmaking,unmakings +unmanaged code,unmanaged codes +unmarried,unmarrieds +unmasker,unmaskers +unmasking,unmaskings +unmeaningness,unmeaningnesses +unnova,unnovas +unobservable,unobservables +unorthodox entrepreneur,unorthodox entrepreneurs +unorthodoxy,unorthodoxies +unpacker,unpackers +unpacking,unpackings +unpaired electron,unpaired electrons +unparticle,unparticles +unperson,unpersons,unpeople +unpicker,unpickers +unpicking,unpickings +unplight,unplights +unplugger,unpluggers +unpopularity,unpopularities +unpredictable,unpredictables +unprepared,unprepareds +unprintable,unprintables +unpronounceable,unpronounceables +unproof,unproofs +unpureness,unpurenesses +unqualified hostname,unqualified hostnames +unqualified prospect,unqualified prospects +unquantifiable,unquantifiables +unranking,unrankings +unraveler,unravelers +unraveller,unravellers +unravelling,unravellings +unreachable,unreachables +unrealism,unrealisms +unreality,unrealities +unregistrability,unregistrabilities +unreliable narrator,unreliable narrators +unrespectable,unrespectables +unrestrainedness,unrestrainednesses +unrhyme,unrhymes +unriddler,unriddlers +unriddling,unriddlings +unripened cheese,unripened cheeses,unripened cheese +unsalable,unsalables +unsaleable,unsaleables +unsaturated fatty acid,unsaturated fatty acids +unsaturated fat,unsaturated fats +unsaturate,unsaturates +unscrambler,unscramblers +unscrewer,unscrewers +unseasonability,unseasonabilities +unsophisticate,unsophisticates +unspoken rule,unspoken rules +unstart,unstarts +unstress,unstresses +unsubscriber,unsubscribers +unsubscription,unsubscriptions +unsub,unsubs +unsuitability,unsuitabilities +unsung hero,unsung heroes +Unsupported titles/Number sign,#,#s +unsustainability,unsustainabilities +unsympathizer,unsympathizers +untangler,untanglers +untempter,untempters +Untermensch,Untermenschen +unthinker,unthinkers +unthrift,unthrifts +untimely death,untimely deaths +untime,untimes +untouchable,untouchables +untranslatable,untranslatables +untriacontane,untriacontanes +untruism,untruisms +untrusser,untrussers +untruss,untrusses +untruthfulness,untruthfulnesses +untruth,untruths +unturkey,unturkeys +untying,untyings +un,uns +unveiler,unveilers +unveiling,unveilings +unveracity,unveracities +unwearable,unwearables +unwedding,unweddings +unwed,unweds +unwieldiness,unwieldinesses +unwinder,unwinders +unworldliness,unworldlinesses +unwrapping,unwrappings +unwritten rule,unwritten rules +unzipper,unzippers +upanayana,upanayanas +up-and-comer,up-and-comers +up and down straight draw,up and down straight draws +up-and-down straight draw,up-and-down straight draws +up and over door,up and over doors +up antiquark,up antiquarks +Upazila,Upazilas +upbeat,upbeats +up bow,up bows +upbraider,upbraiders +upbraiding,upbraidings +upbreaking,upbreakings +upbreak,upbreaks +upbringing,upbringings +upburst,upbursts +upcall,upcalls +upcard,upcards +upcast,upcasts +UPC code,UPC codes +upcharge,upcharges +upcome,upcomes +upconversion,upconversions +upconverter,upconverters +UPC,UPCs +updater,updaters +update,updates +updation,updations +updo,updos +updraft,updrafts +updraught,updraughts +upender,upenders +UPEQ,UPEQs +upfault,upfaults +upfront,upfronts +upgang,upgangs +upgaze,upgazes +upgradation,upgradations +upgrader,upgraders +upgrade,upgrades +upgrowth,upgrowths +upgush,upgushes +upheaping,upheapings +upheaval,upheavals +upher,uphers +uphill battle,uphill battles +uphiller,uphillers +uphill,uphills +upholder,upholders +upholsterer,upholsterers +uphroe,uphroes +upland antshrike,upland antshrikes +uplander,uplanders +upland,uplands +uplifter,uplifters +uplift,uplifts +uplight,uplights +up line,up lines +up-line,up-lines +upline,uplines +uplink,uplinks +uploader,uploaders +uploading,uploadings +upload,uploads +upogebiid,upogebiids +upokororo,upokororos +upper airway,upper airways +upper arm,upper arms +upper chamber,upper chambers +upperclassman,upperclassmen +upper class,upper classes +upperclasswoman,upperclasswomen +upper crust,upper crusts +upper cut,upper cuts +uppercut,uppercuts +upper esophageal sphincter,upper esophageal sphincters +upper extreme,upper extremes +upper house,upper houses +upper limit,upper limits +upper middle class,upper middle classes +upperpart,upperparts +upper quartile,upper quartiles +upper respiratory tract,upper respiratory tracts +upper set,upper sets +upper side,upper sides +upper,uppers +Upper Voltan,Upper Voltans +up quark,up quarks +uprate,uprates +uprating,upratings +uprest,uprests +upright piano,upright pianos +upright,uprights +uprisal,uprisals +uprise,uprises +uprising,uprisings +uprist,uprists +uproar,uproars +uprooter,uprooters +uprooting,uprootings +uprushing,uprushings +uprush,uprushes +upsampler,upsamplers +Upsaroka,Upsarokas,Upsaroka +upscattering,upscatterings +upseller,upsellers +upsend,upsends +upsert,upserts +upset price,upset prices +upsetter,upsetters +upsetting,upsettings +upshift,upshifts +upshock,upshocks +upshot,upshots +upside-down cake,upside-down cakes +upside down fridge,upside down fridges +upside,upsides +upsilon meson,upsilon mesons +upsilon particle,upsilon particles +upsilon,upsilons,upsila +upsitting,upsittings +upsizer,upsizers +upskip,upskips +upskirt,upskirts +upslope,upslopes +upslur,upslurs +upspeaker,upspeakers +upspring,upsprings +upstager,upstagers +upstander,upstanders +upstand,upstands +upstart,upstarts +upstater,upstaters +upstroke,upstrokes +upsurge,upsurges +upsweep,upsweeps +upswell,upswells +upswing,upswings +uptake,uptakes +upthrow,upthrows +upthrust,upthrusts +up-tick,up-ticks +uptick,upticks +uptight,uptights +uptilt,uptilts +uptoss,uptosses +uptowner,uptowners +uptown,uptowns +uptrend,uptrends +upturning,upturnings +upturn,upturns +upupid,upupids +upvalue,upvalues +upvote,upvotes +upward lightning,upward lightnings +upwarp,upwarps +upwash,upwashes +upwelling,upwellings +urachus,urachi +uracyl,uracyls +uraeotyphlid,uraeotyphlids +urΓ¦us,urΓ¦i +uraeus,uraei,uraeuses +uralite,uralites +Ural owl,Ural owls +uranate,uranates +Uranian,Uranians +urania,uranias +uraniid,uraniids +uraninite,uraninites +uraniscus,uranisci +uranism,uranisms +uranist,uranists +uranium hexafluoride,uranium hexafluorides +uranium nitride,uranium nitrides +uranolite,uranolites +uranometry,uranometries +uranoplasty,uranoplasties +uranoscopid,uranoscopids +uran-utan,uran-utans +Urartean,Urarteans +Urartian,Urartians +urate,urates +urban blight,urban blights +Urban Cowboy,Urban Cowboys +urban crawl,urban crawls +urban explorer,urban explorers +urban fabric,urban fabrics +urbanisation,urbanisations +Urbaniste,Urbanistes +urbanist,urbanists +urbanite,urbanites +urbanite,urbanites +urbanity,urbanities +urbanity,urbanities +urbanization,urbanizations +urbanizer,urbanizers +urban legend,urban legends +urban myth,urban myths +urbanologist,urbanologists +urban planner,urban planners +urban planning,urban plannings +urban reserve,urban reserves +urban sanitary district,urban sanitary districts +urbanscape,urbanscapes +urban scattering,urban scatterings +urban sprawl,urban sprawls +urbexer,urbexers +urbilaterian,urbilaterians +urbs,urbes +urceole,urceoles +urceolus,urceoli +urchin fish,urchin fishes +urchin,urchins +urchon,urchons +Urd,Urds +urea-formaldehyde resin,urea-formaldehyde resins +ureameter,ureameters +ureaplasma,ureaplasmas +urediniospore,urediniospores +uredinium,uredinia +urediospore,urediospores +uredospore,uredospores +uredo,uredos +ureide,ureides +ureidopenicillin,ureidopenicillins +ureid,ureids +ureilite,ureilites +urelement,urelements +ureohydrolase,ureohydrolases +ureterocele,ureteroceles +ureteroscope,ureteroscopes +ureterosigmoidostomy,ureterosigmoidostomies +ureterotomy,ureterotomies +ureteroureterostomy,ureteroureterostomies +ureter,ureters +urethan,urethans +urethral sphincter,urethral sphincters +urethra,urethras,urethrae,urethrΓ¦ +urethrocele,urethroceles +urethropexy,urethropexies +urethroplasty,urethroplasties +urethroscope,urethroscopes +urethroscopist,urethroscopists +urethrostomy,urethrostomies +urethrotome,urethrotomes +urethrotomy,urethrotomies +ureylene,ureylenes +ur-form,ur-forms +urform,urforms +urgency,urgencies +urger,urgers +urge,urges +urgicenter,urgicenters +urgrund,urgrunds +Urheimat,Urheimats +urial,urials +uricosuric,uricosurics +uridine,uridines +uridylate,uridylates +uridylation,uridylations +uridylylation,uridylylations +uridylyltransferase,uridylyltransferases +uridylyl,uridylyls +urinal cake,urinal cakes +urinal,urinals +urinalysis,urinalyses +urinarium,urinariums,urinaria +urinary bladder,urinary bladders +urinary break,urinary breaks +urinary meatus,urinary meatuses +urinary tract,urinary tracts +urinary,urinaries +urinater,urinaters +urination station,urination stations +urination,urinations +urinator,urinators +urinator,urinators +urinometer,urinometers +urite,urites +URI,URIs +urka,urkas +ur-language,ur-languages +urlanguage,urlanguages +urlar,urlars +URL,URLs +ur-mind,ur-minds +urne,urnes +urnfield,urnfields +urnful,urnfuls,urnsful +urning,urnings +urn,urns +urocanase,urocanases +urocanate,urocanates +urocele,uroceles +urochordate,urochordates +urochord,urochords +urochs,urochses +urocoptid,urocoptids +urocord,urocords +urocordylid,urocordylids +urocyclid,urocyclids +urocyst,urocysts +urodele,urodeles +urodelian,urodelians +urodid,urodids +uroflowmeter,uroflowmeters +urogram,urograms +urohyal,urohyals +urolagniac,urolagniacs +urolithin,urolithins +urolith,uroliths +urologist,urologists +urolophid,urolophids +uromere,uromeres +uronate,uronates +uronic acid,uronic acids +uronium,uroniums +uropatagium,uropatagia +uropathologist,uropathologists +uropathy,uropathies +uropeltid,uropeltids +urophile,urophiles +uropodid,uropodids +uropodoid,uropodoids +uropod,uropods +uroporphyrinogen,uroporphyrinogens +uropygial gland,uropygial glands +uropygid,uropygids +uropygium,uropygia +uroscopy,uroscopies +urosome,urosomes +urostege,urosteges +urosteon,urosteons,urostea +urosternite,urosternites +urostomy,urostomies +urothelium,urothelia +urothoid,urothoids +urotoxin,urotoxins +uroxanate,uroxanates +ur-poem,ur-poems +ursal,ursals +ursid,ursids +Ursid,Ursids +ursigram,ursigrams +ursodeoxycholate,ursodeoxycholates +ursoid,ursoids +ursolate,ursolates +ursolic acid,ursolic acids +urson,ursons +Ursprache,Ursprachen +Ursuline,Ursulines +ur-text,ur-texts +urtext,urtexts +urticant,urticants +urtication,urtications +URTI,URTIs +ur-type,ur-types +Uruguayan,Uruguayans +UR,URs +urushiol,urushiols +urus,uri,uruses +urva,urvas +ur-word,ur-words +urword,urwords +usager,usagers +usage,usages +usagist,usagists +USAian,USAians +U.S. American,U.S. Americans +US American,US Americans +usance,usances +Usanian,Usanians +USB adapter,USB adapters +Usbeg,Usbegs +Usbek,Usbeks +USB modem,USB modems +USB port,USB ports +USB token,USB tokens +U.S. dollar,U.S. dollars +US dollar,US dollars +use-by date,use-by dates +use case,use cases +use-case,use-cases +useful idiot,useful idiots +use-mention distinction,use-mention distinctions +Usenetter,Usenetters +user agent,user agents +userbase,userbases +userbox,userboxes +user charge,user charges +user control,user controls +user-defined function,user-defined functions +user-defined graphic,user-defined graphics +user-defined type,user-defined types +user experience,user experiences +user group,user groups +user interface,user interfaces +user name,user names +username,usernames +userpass,userpasses +user,users +use tax,use taxes +use,uses +ushabti,ushabtiu,ushabtis +ushanka,ushankas +usherette,usherettes +usher,ushers +US-ian,US-ians +usnea,usneas +Usonian,Usonians +USO,USOs +U.S. pint,U.S. pints +US pint,US pints +USP unit,USP units +USP,USPs +usquebaugh,usquebaughs +usque,usques +ussuritid,ussuritids +US survey acre,US survey acres +US survey foot,US survey feet +ustad,ustads +ustalf,ustalfs +ustand,ustands +ustav,ustavs +u-stem,u-stems +ustept,ustepts +ustert,usterts +ustilago,ustilagos,ustilagoes +ustipsamment,ustipsamments +ustoll,ustolls +ustox,ustoxes +ustulation,ustulations +ustult,ustults +usuba bocho,usuba bochos +usucaption,usucaptions +usufructuary,usufructuaries +usufruct,usufructs +usurance,usurances +usurer,usurers +usuress,usuresses +usurpation,usurpations +usurper,usurpers +usurpress,usurpresses +Utahan,Utahans +Utahn,Utahns +Utah teapot,Utah teapots +uta monogatari,uta monogatari +Uta,Utas +utensil,utensils +uterine brother,uterine brothers +uterine cycle,uterine cycles +uterine sister,uterine sisters +uterine tube,uterine tubes +uteroferrin,uteroferrins +uteroplasty,uteroplasties +uterosalpingogram,uterosalpingograms +uterotonic,uterotonics +uterus,uteri,uteruses +ute,utes +Ute,Utes +UTF,UTFs +uthappam,uthappams +utia,utias +utile,utiles +utilidor,utilidors +utilisation,utilisations +utilitarianism,utilitarianisms +utilitarianist,utilitarianists +utilitarian,utilitarians +utility belt,utility belts +utility function,utility functions +utility knife,utility knives +utility man,utility men +utilityman,utilitymen +utility model,utility models +utility player,utility players +utility pole,utility poles +utility program,utility programs +utility room,utility rooms +utility trailer,utility trailers +utility,utilities +utilization rate,utilization rates +utilization review,utilization reviews +utilization,utilizations +util,utils +utinam,utinams +UTI,UTIs +utlary,utlaries +Utonagan,Utonagans +utopianist,utopianists +utopian,utopians +utopiate,utopiates +utopia,utopias +utopist,utopists +utraquism,utraquisms +utricle,utricles +utriculus,utriculi +Utsul,Utsuls +uttapam,uttapams +utterability,utterabilities +utterance,utterances +utterance,utterances +utteraunce,utteraunces +utterer,utterers +uttering,utterings +U-tube,U-tubes +u-turn,u-turns +U-turn,U-turns +ut,uts +u,ues +uu,uus +UU,UUs +U-value,U-values +uva,uvae,uvΓ¦ +Uvean,Uveans +uvea,uveas +uvulatome,uvulatomes +uvulatomy,uvulatomies +uvula,uvulas,uvulae,uvulΓ¦ +uvulectomy,uvulectomies +uvulopalatopharyngoplasty,uvulopalatopharyngoplasties +uvulotome,uvulotomes +uvulotomy,uvulotomies +Uwaisi,Uwaisis +uwole,uwoles +uxoricide,uxoricides +Uyghur,Uyghurs +Uzbekistani,Uzbekistanis +Uzbek,Uzbeks +uzi,uzis +uzzard,uzzards +V-1,V-1s +V-2,V-2s +vaagmer,vaagmers +Vaalie,Vaalies +vacancy,vacancies +vacant lot,vacant lots +Vacation Bible School,Vacation Bible Schools +vacation day,vacation days +vacationer,vacationers +vacationgoer,vacationgoers +vacation home,vacation homes +vacationist,vacationists +vacationland,vacationlands +vacationship,vacationships +vacation,vacations +vacatur,vacaturs +vaca,vacas +vacay,vacays +vaccary,vaccaries +vaccination mark,vaccination marks +vaccinator,vaccinators +vaccinee,vaccinees +vaccine,vaccines +vaccinist,vaccinists +vaccinium,vacciniums +vaccinologist,vaccinologists +vaccinostyle,vaccinostyles +vacherin,vacherins +vacher,vachers +vachery,vacheries +vacillation,vacillations +vacillator,vacillators +vactrain,vactrains +vacuist,vacuists +vacuitie,vacuities +vacuity,vacuities +vacuolation,vacuolations +vacuole,vacuoles +vacuolin,vacuolins +vacuolization,vacuolizations +vacuous truth,vacuous truths +vacutainer,vacutainers +vacuum aspiration,vacuum aspirations +vacuum bag,vacuum bags +vacuum cleaner,vacuum cleaners +vacuum decay,vacuum decays +vacuum desiccator,vacuum desiccators +vacuum distillation,vacuum distillations +vacuum energy,vacuum energies +vacuumer,vacuumers +vacuum flask,vacuum flasks +vacuum fluorescent display,vacuum fluorescent displays +vacuum gauge,vacuum gauges +vacuum pump,vacuum pumps +vacuum tube,vacuum tubes +vacuΓΌm,vacua +vacuum,vacuums,vacua +vac,vacs +vada,vadas +vade mecum,vade mecums +vade-mecum,vade-mecums +Vade Mecum,Vade Mecums +vadge,vadges +VAD,VADs +vaejovid,vaejovids +vagabondry,vagabondries +vagabond,vagabonds +vagancy,vagancies +vagarity,vagarities +vagary,vagaries +vagation,vagations +vagility,vagilities +vagina dentata,vagina dentatas +vaginal birth,vaginal births +vaginal ring,vaginal rings +vagina,vaginas,vaginae,vaginΓ¦ +vaginectomy,vaginectomies +vaginismus,vaginismuses +vaginism,vaginisms +vaginoplasty,vaginoplasties +vaginosis,vaginoses +vaginula,vaginulas,vaginulae +vaginule,vaginules +vaginulid,vaginulids +vagitarian,vagitarians +vagotomy,vagotomies +vagrant,vagrants +vagrom,vagroms +vague,vagues +vagus nerve,vagus nerves +vagus,vagi +vagus,vagi +vahlkampfiid,vahlkampfiids +vailer,vailers +vail,vails +vail,vails +vail,vails +vaimure,vaimures +vainglory,vainglories +Vaishnava,Vaishnavas +vaishya,vaishyas +Vaishya,Vaishyas +Vaisya,Vaisyas +vaivode,vaivodes +vajajay,vajajays +va-jay-jay,va-jay-jays +vajayjay,vajayjays +vajazzle,vajazzles +vakeel,vakeels +vakil,vakils +valance,valances +Valdensian,Valdensians +valediction,valedictions +valedictorian,valedictorians +valedictory,valedictories +valence band,valence bands +valence bond,valence bonds +valence electron,valence electrons +valence isomer,valence isomers +valence issue,valence issues +valence shell,valence shells +valence,valences +valence,valences +Valencian,Valencians +valency,valencies +valentine,valentines +Valentinian,Valentinians +vale of tears,vales of tears +valeral,valerals +valerate,valerates +valerianate,valerianates +valerian,valerians +valerylene,valerylenes +valeryl,valeryls +valetudinarian,valetudinarians +valet,valets +vale,vales +valewe,valewes +valew,valews +validator,validators +valiha,valihas +valinch,valinches +valise,valises +valium,valiums +vali,valis +valkyrie,valkyries +Valkyrie,Valkyries +vallar crown,vallar crowns +vallation,vallations +vallecula,valleculas +valley boy,valley boys +valley girl,valley girls +Valley girl,Valley girls +valley,valleys +valloniid,valloniids +vallum,vallums,valla +valonia,valonias +valorisation,valorisations +valorization,valorizations +valourisation,valourisations +valourization,valourizations +valproate,valproates +valuable,valuables +valuation function,valuation functions +valuation,valuations +valuator,valuators +value-added network,value-added networks +value-added reseller,value-added resellers +value added tax,value added taxes +value add,value adds +value-add,value-adds +value bet,value bets +value date,value dates +value domain,value domains +value judgement,value judgements +value judgment,value judgments +value proposition,value propositions +value raise,value raises +valuer,valuers +value statement,value statements +value system,value systems +value theory,value theories +value type,value types +value,values +value voter,value voters +valure,valures +valvasor,valvasors +valvatid,valvatids +valva,valvae +valvelet,valvelets +valve oil,valve oils +valve train,valve trains +valvetrain,valvetrains +valve,valves +valvifer,valvifers +valvopathy,valvopathies +valvoplasty,valvoplasties +valvotomy,valvotomies +valvula,valvulae +valvule,valvules,valvulae +valvulopathy,valvulopathies +valvuloplasty,valvuloplasties +valvulotomy,valvulotomies +valyl,valyls +vambasium,vambasiums +vambrace,vambraces +vamper,vampers +vampette,vampettes +vampire bat,vampire bats +vampiress,vampiresses +vampire's teabag,vampires' teabags +vampire tea bag,vampire tea bags +vampire teabag,vampire teabags +vampirette,vampirettes +vampire,vampires +vampirisation,vampirisations +vampirist,vampirists +vampirization,vampirizations +vampirologist,vampirologists +vamplate,vamplates +vamplet,vamplets +vamp,vamps +vamp,vamps +vampyrellid,vampyrellids +vampyre,vampyres +vampyroteuthid,vampyroteuthids +vamure,vamures +vanabin,vanabins +vanadate,vanadates +vanadiate,vanadiates +vanadic acid,vanadic acids +vanadite,vanadites +vanadium-associated protein,vanadium-associated proteins +vanadium chromagen,vanadium chromagens +vanadium pentoxide,vanadium pentoxides +vanadium steel,vanadium steels +vanadocene,vanadocenes +vanadocyte,vanadocytes +Van Allen belt,Van Allen belts +Van Allen radiation belt,Van Allen radiation belts +vanaspati,vanaspatis +vanbrace,vanbraces +van-courier,van-couriers +Vancouver Island marmot,Vancouver Island marmots +Vancouverite,Vancouverites +vandalist,vandalists +vandal,vandals +Vandal,Vandals +Van de Graaff generator,Van de Graaff generators +Vandenberg catalyst,Vandenberg catalysts +van der Waals force,van der Waals forces +Vandyke brown,Vandyke browns +vandyke,vandykes +Vandyke,Vandykes +vanette,vanettes +vane,vanes +vanful,vanfuls +vanga,vangas +vangid,vangids +Van Gogh,Van Goghs +vanguardist,vanguardists +vanguard,vanguards +vang,vangs +vanikorid,vanikorids +vanilla bean,vanilla beans +vanilla extract,vanilla extracts +vanilla slice,vanilla slices +vanillate,vanillates +vanillin,vanillins +vanilloid,vanilloids +vanisher,vanishers +vanishing point,vanishing points +vanishment,vanishments +vanish,vanishes +vanitas,vanitases +vanity case,vanity cases +vanity license plate,vanity license plates +vanity number,vanity numbers +vanity plate,vanity plates +vanity press,vanity presses +vanity publisher,vanity publishers +vanity table,vanity tables +vanity,vanities +vanload,vanloads +vannellid,vannellids +vanner,vanners +vanpool,vanpools +vanquisher,vanquishers +vansire,vansires +vantage point,vantage points +vantage,vantages +vant-courier,vant-couriers +Vanuatuan,Vanuatuans +van,vans +van,vans +van,vans +vaper,vapers +vape,vapes +vaporimeter,vaporimeters +vaporisation,vaporisations +vaporiser,vaporisers +vaporization,vaporizations +vaporizer,vaporizers +vapor retarder,vapor retarders +vapor trail,vapor trails +vapor,vapors +vapour density,vapour densities +vapourer,vapourers +vapourisation,vapourisations +vapouriser,vapourisers +vapourization,vapourizations +vapour pressure,vapour pressures +vapour trail,vapour trails +vaptan,vaptans +vaquero,vaqueros,vaqueroes +vaquita,vaquitas +varactor,varactors +varanid,varanids +varanoid,varanoids +varanopid,varanopids +varanopseid,varanopseids +varanopsid,varanopsids +varan,varans +vara,varas +varchar,varchars +vardapet,vardapets +vardingale,vardingales +vardo,vardos,vardoes +varenik,vareniki +varentropy,varentropies +varenyk,varenyky +vare,vares +vare,vares +variability,variabilities +variable antshrike,variable antshrikes +variable binding,variable bindings +variable cost,variable costs +variable star,variable stars +variable,variables +variac,variacs +variance,variances +variant,variants +variate,variates +variationist,variationists +variation ratio,variation ratios +variation selector,variation selectors +variaunce,variaunces +varicellovirus,varicelloviruses +varicocelectomy,varicocelectomies +varicose vein,varicose veins +varicosis,varicoses +varicosity,varicosities +varicotomy,varicotomies +variegated horsetail,variegated horsetails +variegated star macromolecule,variegated star macromolecules +variegated tinamou,variegated tinamous +varient,varients +varier,variers +varietal,varietals +varietist,varietists +variety show,variety shows +variety store,variety stores +variety,varieties +varifocal lens,varifocal lenses +varifold,varifolds +variogram,variograms +variolation,variolations +variometer,variometers +variorum,variorums,variora +variscite,variscites +varistor,varistors +vari,varis +varix,varices +varlet,varlets +varment,varments +varmeter,varmeters +varminter,varminters +varmint,varmints +varna,varnas +Varna,Varnas +varnisher,varnishers +varnishing,varnishings +varnish,varnishes +varroid,varroids +varsity letter,varsity letters +Varsovian,Varsovians +vartabad,vartabads +vartabed,vartabeds +vartabet,vartabets +vartapet,vartapets +varunid,varunids +var,vars +varvel,varvels +varve,varves +varying hare,varying hares +vasal,vasals +vascoceratid,vascoceratids +Vasconist,Vasconists +vascular bundle,vascular bundles +vascular endothelial growth factor,vascular endothelial growth factors +vascularisation,vascularisations +vascularization,vascularizations +vascular plant,vascular plants +vascular stroma,vascular stromata +vascular tissue,vascular tissues +vasculature,vasculatures +vasculitis,vasculitides +vasculopathy,vasculopathies +vasculum,vasculums,vascula +vas deferens,vasa deferentia +vasectomy,vasectomies +vaseful,vasefuls +vaseline,vaselines +vase,vases +vasid,vasids +vasoconstriction,vasoconstrictions +vasoconstrictor,vasoconstrictors +vasodilatation,vasodilatations +vasodilator,vasodilators +vasoepididymostomy,vasoepididymostomies +vasogram,vasograms +vasoinhibitor,vasoinhibitors +vasomodulation,vasomodulations +vasomotion,vasomotions +vasopressor,vasopressors +vasoprotective,vasoprotectives +vasorelaxant,vasorelaxants +vasorelaxation,vasorelaxations +vasotocin,vasotocins +vasovasostomy,vasovasostomies +vas rectum,vasa recta +vassaless,vassalesses +vassalry,vassalries +vassal,vassals +vastel,vastels +vastitude,vastitudes +vastity,vastities +vast right-wing conspiracy,vast right-wing conspiracies +vast,vasts +vas,vasa +vataman,vatamans +vat dye,vat dyes +vaterite,vaterites +vatful,vatfuls,vatsful +Vaticanian,Vaticanians +Vaticanist,Vaticanists +vaticide,vaticides +vaticination,vaticinations +vaticinator,vaticinators +vaticine,vaticines +vatman,vatmen +vato,vatos +vatu,vatus +vat,vats +vaudevillian,vaudevillians +Vaudois,Vaudois +vaultage,vaultages +vaulter,vaulters +vaultful,vaultfuls +vaulting horse,vaulting horses +vaulting school,vaulting schools +vaulting-school,vaulting-schools +vaulting,vaultings +vault,vaults +vault,vaults +vauntage,vauntages +vaunt-courier,vaunt-couriers +vaunter,vaunters +vaunting,vauntings +vauntmure,vauntmures +vaunt,vaunts +vaunt,vaunts +vauquelinite,vauquelinites +vaut,vauts +vau,vaus +vavasor,vavasors +vavasory,vavasories +vavasour,vavasours +vav,vavs +vaward,vawards +vaw,vaws +vay-cay,vay-cays +vaye,vayes +vayvoda,vayvodas +VBAC,VBACs +V card,V cards +VCD player,VCD players +v-chip,v-chips +VCR,VCRs +VDU,VDUs +vealburger,vealburgers +veal crate,veal crates +vealer,vealers +Veblen good,Veblen goods +vector boson,vector bosons +vectorcardiogram,vectorcardiograms +vector field,vector fields +vector function,vector functions +vector graphics,vector graphics +vector image,vector images +vectorisation,vectorisations +vectorization,vectorizations +vectorizer,vectorizers +vectorpotential,vectorpotentials +vector product,vector products +vectorscope,vectorscopes +vector space,vector spaces +vector sum,vector sums +vector,vectors +vecturist,vecturists +Vedantist,Vedantists +Veddah,Veddahs +Vedda,Veddas +vederala,vederalas +vedette,vedettes +vedro,vedros,vedroes +veduta,vedutas,vedute +veejay,veejays +veel,veels +veena,veenas +veepee,veepees +veep,veeps +veering,veerings +veer,veers +veery,veeries +vee,vees +veganist,veganists +vegan,vegans +Vegan,Vegans +vega,vegas +vege-burger,vege-burgers +vegeburger,vegeburgers +vegetable fern,vegetable ferns +vegetable garden,vegetable gardens +vegetable lamb,vegetable lambs +vegetable marrow,vegetable marrows +vegetable oil,vegetable oils +vegetable,vegetables +vegetal pole,vegetal poles +vegetal,vegetals +vegetarian burger,vegetarian burgers +vegetarian hamburger,vegetarian hamburgers +vegetarian,vegetarians +vegetative cell,vegetative cells +vegetive,vegetives +veggie burger,veggie burgers +veggieburger,veggieburgers +veggie dog,veggie dogs +veggiedog,veggiedogs +veggie garden,veggie gardens +veggie,veggies +veggo,veggos,veggoes +vegivore,vegivores +Vegliote,Vegliotes +Vegliot,Vegliots +veg*n,veg*ns +veg,vegs +veg,vegs,veg +Vehicle Identification Number,Vehicle Identification Numbers +vehicle,vehicles +veigaiaid,veigaiaids +veigaiid,veigaiids +veil,veils +veining,veinings +veinlet,veinlets +veinstone,veinstones +vein,veins +veitchberry,veitchberries +vejjo,vejjos +velamen,velamina +velarium,velaria +velar nasal,velar nasals +velar,velars +velcome,velcomes +velcroid,velcroids +velcro,velcros +veldskoen,veldskoens,veldskoene +veldtschoon,veldtschoons,veldtschoon +veldt,veldts +veld,velds +velella,velellas +velellid,velellids +veleta,veletas +vele,veles +veliferid,veliferids +veliger,veligers +veliid,veliids +velitation,velitations +velleity,velleities +vellication,vellications +vellie,vellies +vellum,vellums +vell,vells +velocimeter,velocimeters +velocipede,velocipedes +velocipedist,velocipedists +velociraptor,velociraptors +velocity potential,velocity potentials +velodrome,velodromes +velometer,velometers +velopharyngeal,velopharyngeals +velophile,velophiles +velotaxi,velotaxis +velour,velours +veloutΓ©,veloutΓ©s +veltfare,veltfares +velum,vela +velure,velures +velutinid,velutinids +velverd,velverds +velvet ant,velvet ants +velvetbreast,velvetbreasts +velvet divorce,velvet divorces +Velvet Revolution,Velvet Revolutions +velvet scoter,velvet scoters +velvet shank,velvet shanks +velvet spider,velvet spiders +velvet worm,velvet worms +vena cava,vena cavae +venada,venadas +vendace,vendaces +vendange,vendanges +vendee,vendees +vender,venders +vendetta,vendettas +vendible,vendibles +vending machine,vending machines +vendor agnostic,vendor agnostics +vendor bid,vendor bids +vendor locator,vendor locators +vendress,vendresses +vendue,vendues +vend,vends +veneerer,veneerers +veneerist,veneerists +veneer,veneers +venefice,venefices +veneration,venerations +venerator,venerators +venereal disease,venereal diseases +venerealee,venerealees +venereologist,venereologists +venerid,venerids +venery,veneries +venery,veneries +venesection,venesections +Venetian blind,Venetian blinds +Venetian red,Venetian reds +Venetian swell,Venetian swells +Venetian,Venetians +venew,venews +veney,veneys +venezolano,venezolanos +Venezuelan,Venezuelans +vengeance,vengeances +vengeaunce,vengeaunces +venger,vengers +venial sin,venial sins +veniole,venioles +venireman,veniremen +venire,venires +venisonburger,venisonburgers +venitive,venitives +Venizelist,Venizelists +Venn diagram,Venn diagrams +venogram,venograms +venom,venoms +venous star,venous stars +ventage,ventages +ventail,ventails +venta,ventas +venter,venters +venter,venters +venter,venters +venthole,ventholes +ventiduct,ventiducts +ventifact,ventifacts +ventilator,ventilators +ventile,ventiles +ventiloquinone,ventiloquinones +venti,ventis +ventose,ventoses +ventouse,ventouses +ventral fin,ventral fins +ventralization,ventralizations +ventral tegmental area,ventral tegmental areas +ventral,ventrals +ventricle,ventricles +ventricular tachycardia,ventricular tachycardias +ventriculite,ventriculites +ventriculotomy,ventriculotomies +ventriculus,ventriculi +ventriloquist,ventriloquists +vent stack,vent stacks +venture capitalist,venture capitalists +venturer,venturers +venture,ventures +venturi effect,venturi effects +venturi injector,venturi injectors +venturi scrubber,venturi scrubbers +venturi tube,venturi tubes +Venturi tube,Venturi tubes +venturi,venturi +vent,vents +vent,vents +vent,vents +venue,venues +venula,venulae +venule,venules +Venus fly trap,Venus fly traps +Venus flytrap,Venus flytraps +Venus' flytrap,Venus' flytraps +Venusian,Venusians +venus,venuses +veny,venies +VEOS,VEOSes +Vepsian,Vepsians +verandah,verandahs +veranda,verandas +veratrate,veratrates +veratridine,veratridines +veratrum,veratrums +vera,veras +verbal assault,verbal assaults +verbal constipation,verbal constipations +verbalism,verbalisms +verbalist,verbalists +verbality,verbalities +verbalizer,verbalizers +verbal noun,verbal nouns +verbal substantive,verbal substantives +verbal,verbals +verbarian,verbarians +verbatim,verbatims +verbeekinid,verbeekinids +verbena,verbenas +verberation,verberations +verbform,verbforms +verbiage,verbiages +verbid,verbids +verbification,verbifications +verbigeration,verbigerations +verbile,verbiles +verbivore,verbivores +verbnoun,verbnouns +verb-object,verb-objects +verb phrase,verb phrases +verb,verbs +verdejo,verdejos +Verderer,Verderers +verderor,verderors +verdictive,verdictives +verdict,verdicts +verdingale,verdingales +verdin,verdins +verdit,verdits +verdolaga,verdolagas +verdugal,verdugals +Vereinsthaler,Vereinsthalers +verfremdungseffekt,verfremdungseffekte +Verfremdungseffekt,Verfremdungseffekte +vergaloo,vergaloos +vergaloue,vergaloues +vergeboard,vergeboards +vergΓ©e,vergΓ©es +vergence,vergences +vergency,vergencies +vergeress,vergeresses +verger,vergers +verge staff,verge staffs +verge staff,verge staffs +verge-staff,verge-staffs +vergette,vergettes +verge,verges +veridicality,veridicalities +veridiction,veridictions +verifiability,verifiabilities +verificationist,verificationists +verification,verifications +verifier,verifiers +verisimilitude,verisimilitudes +verisimility,ies +verism,verisms +verist,verists +verity,verities +Verlet list,Verlet lists +vermeil,vermeils +vermetid,vermetids +vermetus,vermeti +vermicast,vermicasts +vermicide,vermicides +vermicomposter,vermicomposters +vermicompost,vermicomposts +vermiculation,vermiculations +vermicule,vermicules +vermiform appendix,vermiform appendices,vermiform appendixes +vermifuge,vermifuges +vermileonid,vermileonids +vermilion border,vermilion borders +vermilionectomy,vermilionectomies +vermilion,vermilions +vermillion,vermillions +vermisol,vermisols +vermivore,vermivores +Vermonter,Vermonters +vermouth,vermouths +vermuth,vermuths +vernacle,vernacles +vernacularism,vernacularisms +vernacular,vernaculars +vernage,vernages +vernal equinox,vernal equinoxes +vernation,vernations +Verner alternation,Verner alternations +vernicle,vernicles +vernier caliper,vernier calipers +vernier,verniers +vernissage,vernissages +verocytotoxin,verocytotoxins +veronica,veronicas +veronicellid,veronicellids +verotoxin,verotoxins +verprolin,verprolins +verrel,verrels +verrine,verrines +verruca,verrucas,verrucae +versal,versals +versant,versants +versatilist,versatilists +versed sine,versed sines +versemaker,versemakers +verseman,versemen +versemonger,versemongers +verser,versers +verset,versets +'verse,'verses +verse,verses +vershok,vershoks +versicle,versicles +versification,versifications +versificator,versificators +versifier,versifiers +versine,versines +Versioned Object Base,Versioned Object Bases +versionist,versionists +version,versions +versipel,versipels +versor,versors +verso,versos +versta,verstas +verst,versts +verteber,vertebers +vertebral arch,vertebral arches +vertebral column,vertebral columns +vertebral,vertebrals +vertebrate,vertebrates +vertebra,vertebrΓ¦,vertebrae,vertebras +vertebre,vertebres +vertebroplasty,vertebroplasties +vertex,vertices,vertexes +vertical bar,vertical bars +vertical ellipsis,vertical ellipses +vertical interval,vertical intervals +verticality,verticalities +vertical market,vertical markets +vertical publication,vertical publications +vertical smile,vertical smiles +vertical stabilizer,vertical stabilizers +vertical,verticals +verticillaster,verticillasters +verticillium,verticilliums +verticillus,verticilli +verticil,verticils +verticity,verticities +verticle,verticles +verticordia,verticordias +verticordiid,verticordiids +vertiginid,vertiginids +vertigo,vertigos +vertiport,vertiports +vertisol,vertisols +vert ramp,vert ramps +vertue,vertues +vert,verts +vert,verts +verumontanum,verumontana +vervain,vervains +vervel,vervels +ver,vers +vervet,vervets +very important person,very important persons +very large crude carrier,very large crude carriers +Very light,Very lights +very low mass star,very low mass stars +Very pistol,Very pistols +very special episode,very special episodes +vesicant,vesicants +vesicatory,vesicatories +vesica,vesicae +vesicle,vesicles +vesicomyid,vesicomyids +vesicovaginal fistula,vesicovaginal fistulas +vesicula,vesiculae +vesosome,vesosomes +vespasienne,vespasiennes +vesper bat,vesper bats +vespertilionid,vespertilionids +vesper,vespers +vespiary,vespiaries +vespid,vespids +vespillo,vespilloes +vespivore,vespivores +vessel element,vessel elements +vesselful,vesselfuls,vesselsful +vessell,vessells +vessel,vessels +vestal,vestals +vestal virgin,vestal virgins +vesta,vestas +vest buster,vest busters +vested interest,vested interests +vested remainder subject to open,vested remainders subject to open +vested remainder,vested remainders +vestee,vestees +vestiary,vestiaries +vestibule school,vestibule schools +vestibule,vestibules +vestibulotomy,vestibulotomies +vestibulum,vestibula +vestige,vestiges +vestigial structure,vestigial structures +vestimentiferan,vestimentiferans +vestiment,vestiments +vesting,vestings +vestlet,vestlets +vestment,vestments +vestoid,vestoids +vestryman,vestrymen +vestry,vestries +vesture,vestures +vest,vests +Vesuvian,Vesuvians +vetala,vetalas +vetchling,vetchlings +vetch,vetches +veteran,veterans +veterinarian,veterinarians +veterinary hospital,veterinary hospitals +veterinary surgeon,veterinary surgeons +veterinary technician,veterinary technicians +veterinary,veterinaries +vetigastropod,vetigastropods +vetitive,vetitives +vetiver,vetivers +vetkoek,vetkoeks +vetoer,vetoers +vetoist,vetoists +veto,vetoes,vetos +vetter,vetters +vettura,vetturas,vetture +vetturino,vetturinos,vetturini +vetulicolid,vetulicolids +vet,vets +vet,vets +vexation,vexations +vexatious suit,vexatious suits +vexer,vexers +vexillary,vexillaries +vexillation,vexillations +vexilliferid,vexilliferids +vexillographer,vexillographers +vexillologist,vexillologists +vexillophile,vexillophiles +vexillum,vexilla +VFAT,VFATs +viaduct,viaducts +viagra,viagras +vial,vials +viameter,viameters +viander,vianders +viand,viands +vi-apple,vi-apples +viaticum,viatica +viator,viators +via,vias,viae +vibe,vibes +vibex,vibices +vibist,vibists +vibraculum,vibracula +vibraharp,vibraharps +vibraphone,vibraphones +vibraphonist,vibraphonists +vibraslap,vibraslaps +vibrational energy,vibrational energies +vibration,vibrations +vibratiuncle,vibratiuncles +vibratiuncula,vibratiunculΓ¦,vibratiunculae,vibratiunculas +vibratiuncule,vibratiuncules +vibratome,vibratomes +vibrator,vibrators +vibrato,vibratos +vibriosis,vibrioses +vibrio,vibrios +vibrissa,vibrissae +vibrograph,vibrographs +vibrometer,vibrometers +vibron,vibrons +vibroscope,vibroscopes +vibroslice,vibroslices +viburnum,viburnums +vicar apostolic,vicars apostolic +vicaress,vicaresses +vicariance,vicariances +vicarian,vicarians +vicariate,vicariates +Vicar of Christ,Vicars of Christ +vicar,vicars +vicary,vicaries +vice admiral,vice admirals +vice-captain,vice-captains +vice chairman,vice chairmen +vicechairman,vicechairmen +vicechair,vicechairs +vice chancellor,vice chancellors +vice-chancellor,vice-chancellors +vice director,vice directors +vicegerency,vicegerencies +vicegerent,vicegerents +viceman,vicemen +vicenarian,vicenarians +vicenin,vicenins +vice presidency,vice presidencies +vice-presidency,vice-presidencies +vice president,vice presidents +vice-president,vice-presidents +Vice President,Vice Presidents +viceregency,viceregencies +viceregent,viceregents +vicereine,vicereines +viceroyalty,viceroyalties +viceroyship,viceroyships +viceroy,viceroys +vicesimo-quarto,vicesimo-quartos +vice-skip,vice-skips +vice squad,vice squads +vice,vices +vice,vices +vichyssoise,vichyssoises +vicilin,vicilins +vicinage,vicinages +vicinal diol,vicinal diols +vicinity,vicinities +viciosity,viciosities +vicious circle,vicious circles +vicious cycle,vicious cycles +vicissitude,vicissitudes +vicissity,vicissities +Vickrey auction,Vickrey auctions +vicomtesse,vicomtesses +vicount,vicounts +victimisation,victimisations +victimiser,victimisers +victimization,victimizations +victimizer,victimizers +victimless crime,victimless crimes +victimologist,victimologists +victim,victims +victoress,victoresses +Victorian,Victorians +Victoria sponge,Victoria sponges +victoriatus,victoriati +victoria,victorias +victorine,victorines +victor,victors +Victory Day,Victory Days +victory garden,victory gardens +victory lane,victory lanes +victory lap,victory laps +victory roll,victory rolls +victory,victories +victour,victours +victress,victresses +victrice,victrices +victrola,victrolas +victualer,victualers +victualler,victuallers +victuall,victualls +victual,victuals +vicugna,vicugnas +vicuna,vicunas +vicuΓ±a,vicuΓ±as +vicus,vici +Vidalia,Vidalias +vidame,vidames +vidcap,vidcaps +vidcast,vidcasts +vidder,vidders +viddy,viddies +video arcade game,video arcade games +video arcade,video arcades +videoblogger,videobloggers +videoblog,videoblogs +videoboard,videoboards +videobook,videobooks +videocall,videocalls +video camera,video cameras +videocamera,videocameras +videocam,videocams +video card,video cards +videocassette recorder,videocassette recorders +videocassette,videocassettes +videocast,videocasts +video chat,video chats +video conference,video conferences +videoconference,videoconferences +videocon,videocons +videodisc,videodiscs +videodisk,videodisks +video DVD,video DVDs +videoframe,videoframes +video game console,video game consoles +video gamer,video gamers +videogamer,videogamers +video games console,video games consoles +video game,video games +videogame,videogames +videogramme,videogrammes +videogram,videograms +videographer,videographers +videoholic,videoholics +video ho,video hoes +video jockey,video jockeys +video journalist,video journalists +videojournalist,videojournalists +video laryngoscope,video laryngoscopes +videolibrary,videolibraries +videolink,videolinks +videomaker,videomakers +video nasty,video nasties +videophile,videophiles +videophone,videophones +video photographer,video photographers +video projector,video projectors +video recording,video recordings +videorecording,videorecordings +video referee,video referees +video rhythm,video rhythms +videoscreen,videoscreens +videotaper,videotapers +videotape,videotapes +videotaping,videotapings +videotelephone,videotelephones +videoterminal,videoterminals +video,videos,videmus +videowall,videowalls +videozine,videozines +vidette,videttes +vidicon,vidicons +vidiot,vidiots +vidphone,vidphones +vidscreen,vidscreens +viduid,viduids +vid,vids +vielle,vielles +Vienna loaf,Vienna loaves +Vienna roll,Vienna rolls +Vienna sausage,Vienna sausages +Viennese,Viennese +Viennese waltz,Viennese waltzes +viennoiserie,viennoiseries +Vietnamese balm,Vietnamese balms +Vietnamese coriander,Vietnamese corianders +Vietnamese sandwich,Vietnamese sandwiches +Vietnamese,Vietnamese +Vietnam,Vietnams +view camera,view cameras +viewer,viewers +viewfinder,viewfinders +viewgraph,viewgraphs +viewing audience,viewing audiences +viewing,viewings +view model,view models +viewpoints framework,viewpoints frameworks +view-point,view-points +viewpoint,viewpoints +viewport,viewports +viewscreen,viewscreens +viewser,viewsers +viewshed,viewsheds +viewspaper,viewspapers +view,views +viga,vigas +VigenΓ¨re cipher,VigenΓ¨re ciphers +vigia,vigias +vigilance committee,vigilance committees +vigilante,vigilantes +vigilantism,vigilantisms +vigil,vigils +vigily,vigilies +vigintile,vigintiles +vigintillionth,vigintillionths +vigintillion,vigintillions +vigintivirate,vigintivirates +vigna,vignas +vigneron,vignerons +vignette,vignettes +vignettist,vignettists +vigonia,vigonias +vigoroso,vigorosos +vigor,vigors +vig,vigs +vihara,viharas +vihar,vihars +vihuela,vihuelas +Viking,Vikings +vila,vilas,vile +vilayet,vilayets +vilifier,vilifiers +village bike,village bikes +village cart,village carts +village green,village greens +village hall,village halls +village idiot,village idiots +villager,villagers +village,villages +villagisation,villagisations +villagization,villagizations +villainess,villainesses +villain,villains +villainy,villainies +villakin,villakins +villanella,villanellas +villanelle,villanelles +villanellist,villanellists +villanel,villanels +villan,villans +Villan,Villans +villa,villas +villein,villeins +villosity,villosities +villotta,villottas +villus,villi +vill,vills +vimentin,vimentins +vimpa,vimpae +vim,vims +vinaigrette,vinaigrettes +vinca,vincas +Vincentian,Vincentians +vincent,vincents +vincture,vinctures +vinculin,vinculins +vinculum,vincula,vinculums +vindaloo,vindaloos +vindication,vindications +vindicator,vindicators +vindoline,vindolines +vinedresser,vinedressers +vinegarette,vinegarettes +vinegaroon,vinegaroons +vinegar pie,vinegar pies +vinegarroon,vinegarroons +vinegar valentine,vinegar valentines +vine-grower,vine-growers +vinegrower,vinegrowers +vine leaf,vine leaves +vine-leaf,vine-leaves +vine maple,vine maples +viner,viners +vinery,vineries +vinette,vinettes +vine,vines +vineyardist,vineyardists +vineyard,vineyards +vingle,vingles +vingtaine,vingtaines +vin jaune,vins jaunes +vinometer,vinometers +vinotherapy,vinotherapies +vintager,vintagers +vintage,vintages +vintenar,vintenars +vintner,vintners +vintry,vintries +vinyard,vinyards +vinyasa,vinyasas +vinylation,vinylations +vinyl composition tile,vinyl composition tiles +vinylene,vinylenes +vinylidene,vinylidenes +vinylogue,vinylogues +vinylporphyrin,vinylporphyrins +vinylpyrrolidone,vinylpyrrolidones +vinyl record,vinyl records +violacein,violaceins +viola clef,viola clefs +viola da gamba,viola da gambas +violar,violars +violater,violaters +violation,violations +violator,violators +viola,violas +viola,violas +violent,violents +violet red,violet reds +violet-tip,violet-tips +violet,violets +violet wand,violet wands +violinist,violinists +violinmaker,violinmakers +violinophone,violinophones +violin,violins +violist,violists +viologen,viologens +violoncellist,violoncellists +violoncello,violoncellos +violone,violones +viol,viols +viperfish,viperfishes,viperfish +viperid,viperids +viper,vipers +VIPoma,VIPomas,VIPomata +V.I.P.,V.I.P.s +VIP,VIPs +viraemia,viraemias +virago,viragos +viral envelope,viral envelopes +viral load,viral loads +viral,virals +virama,viramas +vircator,vircators +virelai,virelais +virelay,virelays +virement,virements +viremia,viremias +vireonid,vireonids +vireo,vireos,vireoes +virescence,virescences +vireton,viretons +vire,vires +virgalieu,virgalieus +virgate,virgates +virger,virgers +virge,virges +virginal membrane,virginal membranes +virginals,virginals +virginal,virginals +virgin birth,virgin births +virgin fields epidemic,virgin fields epidemics +virgin field,virgin fields +virgin forest,virgin forests +Virginian,Virginians +Virginia reel,Virginia reels +Virgin Islander,Virgin Islanders +Virgin Mary,Virgin Marys +virgin territory,virgin territories +virgin,virgins +Virgoan,Virgoans +Virgouleuse,Virgouleuses +Virgo,Virgos +virgularian,virgularians +virgule,virgules +virialization,virializations +virial,virials +viricide,viricides +viricide,viricides +viridity,viridities +virid,virids +virile member,virile members +virilization,virilizations +virion,virions +virl,virls +virogenesis,virogeneses +viroid,viroids +virole,viroles +virologist,virologists +virome,viromes +virophage,virophages +viroplasm,viroplasms +virosis,viroses +virostatic,virostatics +virotherapy,virotherapies +virtopsy,virtopsies +virtual address,virtual addresses +virtual community,virtual communities +virtual desktop,virtual desktops +virtual Friday,virtual Fridays +virtual function,virtual functions +virtualisation,virtualisations +virtualiser,virtualisers +virtualist,virtualists +virtualist,virtualists +virtuality,virtualities +virtualization,virtualizations +virtualizer,virtualizers +virtual machine,virtual machines +virtual market,virtual markets +virtual method,virtual methods +virtual organization,virtual organizations +virtual particle,virtual particles +virtual private network,virtual private networks +virtual private server,virtual private servers +virtual proxy,virtual proxies +virtual reality,virtual realities +virtual temperature,virtual temperatures +virtual,virtuals +virtuecrat,virtuecrats +virtue name,virtue names +virtuoso,virtuosos,virtuosi +virtuous circle,virtuous circles +virucide,virucides +virusoid,virusoids +virus,viri,viruses +Visa card,Visa cards +visage,visages +viΕ‘ap,viΕ‘aps +visard,visards +visarga,visargas +visa run,visa runs +visa,visas +Visa,Visas +vis-Γ -vis,vis-Γ -vis +visbreaker,visbreakers +viscacha rat,viscacha rats +viscacha,viscachas +viscerocranium,viscerocraniums,viscerocrania +viscidity,viscidities +viscometer,viscometers +viscosimeter,viscosimeters +viscotoxin,viscotoxins +viscountcy,viscountcies +viscountess,viscountesses +viscountship,viscountships +viscount,viscounts +viscounty,viscounties +viscous damper,viscous dampers +viscus,viscera +vise,vises +vishap,vishaps +visible minority,visible minorities +Visigoth,Visigoths +visile,visiles +visionary,visionaries +visioner,visioners +visionist,visionists +vision panel,vision panels +vision quest,vision quests +vision statement,vision statements +visitability,visitabilities +visitant,visitants +visitation,visitations +visiter,visiters +visite,visites +visiting ant,visiting ants +visiting card,visiting cards +visiting team,visiting teams +visitor design pattern,visitor design patterns +visitor pattern,visitor patterns +visitorship,visitorships +visitor team,visitor teams +visitor,visitors +Visitor,Visitors +visitour,visitours +visit,visits +vison,visons +visor,visors +viss,visses +vista,vistas +visto,vistos +visual artist,visual artists +visual art,visual arts +visual binary,visual binaries +visual call sign,visual call signs +visual diary,visual diaries +visual display unit,visual display units +visualisation,visualisations +visualization,visualizations +visualizer,visualizers +visual novel,visual novels +visual poem,visual poems +visual presenter,visual presenters +visual,visuals +vis,vires +vis,visses +vital capacity,vital capacities +vital force,vital forces +vital function,vital functions +vitalist,vitalists +vitality,vitalities +vitalization,vitalizations +vital organ,vital organs +vital spark,vital sparks +vital statistic,vital statistics +vitamer,vitamers +vitamine,vitamines +vitamin,vitamins +vitamiser,vitamisers +vita,vitae +vitelligene,vitelligenes +vitellin,vitellins +vitellogene,vitellogenes +vitiation,vitiations +viticulturist,viticulturists +vitiligo,vitiligos +vitiosity,vitiosities +vitrand,vitrands +vitrectomy,vitrectomies +vitrella,vitrellae +vitreomacular adhesion,vitreomacular adhesions +vitreous body,vitreous bodies +vitrine,vitrines +vitrinid,vitrinids +vitriolate,vitriolates +vitriol,vitriols +vitta,vittae +vittle,vittles +vituperation,vituperations +vituperator,vituperators +vityaz,vityazes +vivacity,vivacities +vivandiere,vivandieres +vivandiΓ¨re,vivandiΓ¨res +vivarium,vivariums,vivaria +Vivarta,Vivartas +vivary,vivaries +viva,vivas +viverravid,viverravids +viverrid,viverrids +viverrine,viverrines +viveur,viveurs +vivid,vivids +vivification,vivifications +viviparid,viviparids +viviparous blenny,viviparous blennies +viviparous eelpout,viviparous eelpouts +viviparous lizard,viviparous lizards +vivisectionist,vivisectionists +vivisection,vivisections +vivisector,vivisectors +vixen,vixens +vizard,vizards +vizcacha,vizcachas +vizierate,vizierates +Vizier Azem,Vizier Azems +vizier,viziers +vizir,vizirs +vizor,vizors +vizsla,vizslas +Vizsla,Vizslas,Vizslak,VizslΓ‘k +VJ,VJs +Vladika,Vladikas +VLCC,VLCCs +vlei,vleis +VLM,VLMs +VLOC,VLOCs +vlogger,vloggers +vlog,vlogs +vly,vlies +V moth,V moths +V-neck,V-necks +voblast,voblasts +vobla,voblas +VOB,VOBs +vocable,vocables +vocabulary,vocabularies +vocabulary word,vocabulary words +vocabulist,vocabulists +vocal chord,vocal chords +vocal cord,vocal cords +vocal fold,vocal folds +vocalisation,vocalisations +vocalise,vocalises +vocalism,vocalisms +vocalist,vocalists +vocalization,vocalizations +vocalizer,vocalizers +vocal sac,vocal sacs +vocal,vocals +vocational school,vocational schools +vocation,vocations +vocative case,vocative cases +vocative,vocatives +voceru,voceri +vociferation,vociferations +vociferator,vociferators +vocoder,vocoders +vocoid,vocoids +vocologist,vocologists +vocule,vocules +VOC,VOCs +voc.,voc.,vocs.,voc's +vodcaster,vodcasters +vodcast,vodcasts +voder,voders +vodka luge,vodka luges +vodkatini,vodkatinis +vodka tonic,vodka tonics +vodka,vodkas +Vodouisant,Vodouisants +vodouist,vodouists +vodyanoi,vodyanois +vodyanoy,vodyanoys +voΓ«l,voΓ«ls +voe,voes +vogad,vogads +vogle,vogles +voguer,voguers +vogue,vogues +vogue word,vogue words +Vogul,Voguls +voice actor,voice actors +voice actress,voice actresses +voicebank,voicebanks +voice box,voice boxes +voicebox,voiceboxes +voice call sign,voice call signs +voice coil,voice coils +voicegram,voicegrams +voice lift,voice lifts +voicemailbox,voicemailboxes +voice message,voice messages +voice onset time,voice onset times +voice-over,voice-overs +voiceover,voiceovers +voiceprint,voiceprints +voice talent,voice talents +voice,voices +voice vote,voice votes +voicing,voicings +voicist,voicists +voidance,voidances +voidee,voidees +voider,voiders +voiding knife,voiding knives +voiding,voidings +void,voids +void,voids +voile,voiles +voir dire,voir dires +voiturette,voiturettes +voiture,voitures +voivodeship,voivodeships +voivode,voivodes +voivod,voivods +voix cΓ©leste,voix cΓ©lestes +voken,vokens +volador,voladors +volante,volantes +volant piece,volant pieces +VolapΓΌkist,VolapΓΌkists +volary,volaries +volatile organic compound,volatile organic compounds +volatilisation,volatilisations +volatilization,volatilizations +volatilizer,volatilizers +volator,volators +vol-au-vent,vol-au-vent +volborthellid,volborthellids +volborthite,volborthites +volcanicity,volcanicities +volcaniclastic,volcaniclastics +volcanist,volcanists +volcanologist,volcanologists +volcano rabbit,volcano rabbits +volcano,volcanos,volcanoes +volery,voleries +vole,voles +vole,voles +Volhynian,Volhynians +volitation,volitations +volition,volitions +volitive,volitives +VΓΆlkerwanderung,VΓΆlkerwanderungen +Volkswagen,Volkswagens +volk,volks +volleyballer,volleyballers +volleyer,volleyers +volley,volleys +volplane,volplanes +Volsce,Volsces +Volscian,Volscians +voltage multiplier,voltage multipliers +voltage spike,voltage spikes +voltage,voltages +voltaic battery,voltaic batteries +voltaic cell,voltaic cells +voltaic couple,voltaic couples +voltameter,voltameters +voltammeter,voltammeters +voltammogram,voltammograms +voltampere,voltamperes +Voltan,Voltans +voltaplast,voltaplasts +voltatype,voltatypes +volta,voltas +voltigeur,voltigeurs +voltmeter,voltmeters +voltmetre,voltmetres +volt,volts +volt,volts +volumenometer,volumenometers +volumescope,volumescopes +volumeter,volumeters +volumetric analysis,volumetric analyses +volumetric flask,volumetric flasks +volume,volumes +volumist,volumists +volumizer,volumizers +volumometer,volumometers +voluntarist,voluntarists +voluntaryist,voluntaryists +voluntary muscle,voluntary muscles +voluntary,voluntaries +volunteer,volunteers +voluntourist,voluntourists +volupere,voluperes +voluptuary,voluptuaries +volutation,volutations +voluta,volutas,volutae +volute,volutes +volutid,volutids +volution,volutions +volutomitrid,volutomitrids +volvatellid,volvatellids +volva,volvas +vΓΆlva,vΓΆlvas +volva,volvas,volvae +volvelle,volvelles +vol,vols +vol.,vols. +Volvo,Volvos +volvox,volvoxes +volvulus,volvuli +volyer,volyers +Volynian,Volynians +vombatid,vombatids +vomer bone,vomer bones +vomer,vomers +vomica,vomicas +vomic nut,vomic nuts +vomit comet,vomit comets +vomiter,vomiters +vomiting,vomitings +vomition,vomitions +vomitive,vomitives +vomitorium,vomitoria,vomitoriums +vomitory,vomitories +vomito,vomitos +vomitoxin,vomitoxins +vomitus,vomita +Von KΓ‘rmΓ‘n vortex street,Von KΓ‘rmΓ‘n vortex streets +von Neumann machine,von Neumann machines +Von Restorff effect,Von Restorff effects +vontsira,vontsiras +voodoo doll,voodoo dolls +voodooist,voodooists +voorleser,voorlesers +voorlooper,voorloopers +Voortrekker,Voortrekkers +vorago,voragoes,voragines +vorarephile,vorarephiles +Voronezhian,Voronezhians +Voronoi diagram,Voronoi diagrams +VΓ΅ro,VΓ΅ros +vortal,vortals +vortensity,vortensities +vortexer,vortexers +vortex mixer,vortex mixers +vortexon,vortexons +vortex,vortexes,vortices +vorticellid,vorticellids +vorticist,vorticists +vortilon,vortilons +vorton,vortons +VOR,VORs +votaress,votaresses +votarist,votarists +votary,votaries +votator,votators +vote bank,vote banks +voteen,voteens +vote mob,vote mobs +vote of confidence,votes of confidence +vote of no confidence,votes of no confidence +vote of thanks,votes of thanks +voter,voters +votesheet,votesheets +vote,votes +Vote,Votes +voting booth,voting booths +voting machine,voting machines +voting slip,voting slips +voting station,voting stations +voting system,voting systems +voting,votings +votist,votists +votive candle,votive candles +votive,votives +vot'ress,vot'resses +votress,votresses +votress,votresses +VOT,VOTs +vouchee,vouchees +voucher,vouchers +vouchment,vouchments +vouchor,vouchors +vouchsafer,vouchsafers +vouch,vouches +voulge,voulges +voussoir,voussoirs +vowel harmony,vowel harmonies +vowelisation,vowelisations +vowelization,vowelizations +vowel quantity,vowel quantities +vowel,vowels +vower,vowers +vowe,vowes +vow,vows +vox angelica,vox angelicas +voxel,voxels +vox humana,vox humanas +voxmap,voxmaps +vox populi,vox populis +vox pop,vox pops +voyager,voyagers +voyageur,voyageurs +voyage,voyages +voyaging,voyagings +voyce,voyces +voyeurist,voyeurists +voyeur,voyeurs +voyeuse,voyeuses +voyol,voyols +vozhd,vozhds +v-perfect,v-perfects +VPL,VPLs +VPN,VPNs +vraicqueur,vraicqueurs +vraka,vrakes +VRE,VREs +v-ring,v-rings +vrouw,vrouws +VSB,VSBs +vsic,vsics +V sign,V signs +V-sign,V-signs +V speed,V speeds +vtable,vtables +Vth,Vths +VTR,VTRs +vt,vts +V-twin,V-twins +vugg,vuggs +vugh,vughs +vug,vugs +Vulcan cannon,Vulcan cannons +vulcanicity,vulcanicities +vulcanist,vulcanists +vulcanizate,vulcanizates +vulcanizer,vulcanizers +vulcanodontid,vulcanodontids +vulcanoid,vulcanoids +vulcanologist,vulcanologists +vulcano,vulcanos,vulcanoes +Vulcan,Vulcans +vulgar fraction,vulgar fractions +vulgarian,vulgarians +vulgarisation,vulgarisations +vulgarism,vulgarisms +vulgarity,vulgarities +vulgarization,vulgarizations +vulgarizer,vulgarizers +vulgate,vulgates +vulnerability index,vulnerability indexes,vulnerability indices +vulnerary,vulneraries +vuln,vulns +vulpicide,vulpicides +vulpine,vulpines +vulture capitalist,vulture capitalists +vultureling,vulturelings +vulture,vultures +vulva,vulvas,vulvae,vulvΓ¦ +vulvectomy,vulvectomies +VU meter,VU meters +vurp,vurps +vuvuzela,vuvuzelas +vuvuzelist,vuvuzelists +v,vs,v's +v.,vv +v-word,v-words +VXer,VXers +vygie,vygies +vyomanaut,vyomanauts +vysar,vysars +W-2,W-2s +waag,waags +waaw,waaws +wabbit,wabbits +wabbit,wabbits +wabbling,wabblings +wackadoo,wackadoos +wackaloon,wackaloons +wackjob,wackjobs +wacko,wackos +wack,wacks +Wacoan,Wacoans +WAC,WACs +wadalite,wadalites +Wada test,Wada tests +Wadati-Benioff zone,Wadati-Benioff zones +wadcutter,wadcutters +waddie,waddies +waddler,waddlers +waddle,waddles +wadd,wadds +waddy,waddies +waddy,waddies +wader,waders +wade,wades +wadge,wadges +wading bird,wading birds +wading pool,wading pools +wadi,wadis +wadmal,wadmals +wadmol,wadmols +wadsetter,wadsetters +wadset,wadsets +wad,wads +wady,wadies +waeg,waegs +waferer,waferers +wafer,wafers +wafflehouse,wafflehouses +waffle iron,waffle irons +waffler,wafflers +waffle,waffles +waffling,wafflings +WAFF,WAFFs +wafter,wafters +wafter,wafters +wafting,waftings +wafture,waftures +waft,wafts +wage earner,wage earners +wagel,wagels +wageman,wagemen +wagenboom,wagenbooms +wagerer,wagerers +wagering,wagerings +wager,wagers +wager,wagers +wage slavery,wage slaverys +wage slave,wage slaves +wage,wages +Wagga,Waggas +waggel,waggels +wagger-pagger-bagger,wagger-pagger-baggers +wagger,waggers +waggie,waggies +waggin,waggins +waggle dance,waggle dances +waggler,wagglers +waggle,waggles +waggoner,waggoners +waggon,waggons +wag-halter,wag-halters +Wagnerian,Wagnerians +wagonbuilder,wagonbuilders +wagoner's axe,wagoner's axes +wagoner,wagoners +wagonette,wagonettes +wagonful,wagonfuls,wagonsful +wagonload,wagonloads +wagonmaker,wagonmakers +wagon train,wagon trains +wagon,wagons +wagonway,wagonways +wagon wheel,wagon wheels +wagonwright,wagonwrights +wagpastie,wagpasties +wagtail,wagtails +wag,wags +WAG,WAGs +wagyu,wagyu +Wahabee,Wahabees +Wahabi,Wahabis +waheela,waheelas +Wahhabist,Wahhabists +Wahhabite,Wahhabites +Wahhabi,Wahhabis +wahine,wahines +wahoo,wahoos +wahoo,wahoos +wahoo,wahoos +wah-wah pedal,wah-wah pedals +wah,wahs +wah-wah,wah-wahs +waiata,waiatas,waiata +waift,waifts +waif,waifs +waikavirus,waikaviruses +waileress,waileresses +wailer,wailers +wailing,wailings +wail,wails +wainage,wainages +wainscot,wainscots +wain,wains +wainwright,wainwrights +Wainwright,Wainwrights +wairua,wairuas,wairua +wair,wairs +waistband,waistbands +waistbelt,waistbelts +waist chain,waist chains +waist cincher,waist cinchers +waistcloth,waistcloths +waistcoateer,waistcoateers +waistcoating,waistcoatings +waistcoat,waistcoats +waister,waisters +waisting,waistings +waistline,waistlines +waist,waists +Waitaha penguin,Waitaha penguins +waitee,waitees +waiter's friend,waiter's friends +waiter,waiters +waiting game,waiting games +waiting list,waiting lists +waiting move,waiting moves +waiting room,waiting rooms +waitlist,waitlists +waitoreke,waitoreke +waitperson,waitpersons,waitpeople +waitress mom,waitress moms +waitress,waitresses +waitron,waitrons +waitron,waitrons +wait state,wait states +waitstate,waitstates +wait,waits +waiverer,waiverers +waiver,waivers +waive,waives +waive,waives +waivode,waivodes +wai,wais +waiwode,waiwodes +wajib saum,wajib saums +waka gashira,waka gashira +wakashu,wakashu +waka,wakas,waka +wakeboarder,wakeboarders +wakeboard tower,wakeboard towers +wakeboard,wakeboards +wakefieldite,wakefieldites +wakefield,wakefields +Wake Islander,Wake Islanders +wakener,wakeners +wake-over,wake-overs +wakeover,wakeovers +wakerobin,wakerobins +waker-upper,waker-uppers +waker,wakers +wakeskater,wakeskaters +waketime,waketimes +wake-up call,wake-up calls +wakeup call,wakeup calls +wake-up,wake-ups +wakeup,wakeups +wake,wakes +wake,wakes +wake,wakes +wakf,wakfs +waking dream,waking dreams +waking life,waking lives +wakizashi,wakizashi +Walachian,Walachians +Waldense,Waldenses +Waldensian,Waldensians +waldgrave,waldgraves +waldheimia,waldheimias +Waldorf salad,Waldorf salads +Waldorf,Waldorfs +waldo,waldos,waldoes +wald,walds +wald,walds +waler,walers +wale,wales +wale,wales +wali,walis +wāli,wālis +walkability,walkabilities +walkabout,walkabouts +walkathon,walkathons +walkaway,walkaways +Walkerism,Walkerisms +walker,walkers +walkie talkie,walkie talkies +walkie-talkie,walkie-talkies +walking cane,walking canes +walking carpet,walking carpets +walking fern,walking ferns +walking fish,walking fish,walking fishes +walking frame,walking frames +walking palm,walking palms +walking patient,walking patients +walking stick,walking sticks +walking-stick,walking-sticks +walkingstick,walkingsticks +walking,walkings +walkingway,walkingways +walk in the snow,walks in the snow +walk-in,walk-ins +walkman,walkmans +Walkman,Walkmans +walk-off,walk-offs +walk of life,walks of life +walk of shame,walks of shame +walk on the wild side,walks on the wild side +walk-on,walk-ons +walkon,walkons +walkout,walkouts +walk-over,walk-overs +walkover,walkovers +walk policy,walk policies +walkthrough,walkthroughs +walkthru,walkthrus +walk-up,walk-ups +walkup,walkups +walk,walks +walkway,walkways +Walkyr,Walkyrs +walky-talky,walky-talkies +wallaba,wallabas +wallaby,wallabies +Wallachian,Wallachians +wallah,wallahs +wallaroo,wallaroos +wallbird,wallbirds +wallboard,wallboards +wall brown,wall browns +wallchart,wallcharts +wall chaser,wall chasers +wall clock,wall clocks +wallclock,wallclocks +wallcovering,wallcoverings +wall crawler,wall crawlers +wall-crawler,wall-crawlers +wallcrawler,wallcrawlers +wallcrossing,wallcrossings +walled garden,walled gardens +wall energy,wall energies +waller,wallers +waller,wallers +walleteer,walleteers +wallet,wallets +walleyed pike,walleyed pike +walleye,walleyes,walleye +wallflower,wallflowers +wallhacker,wallhackers +wallhack,wallhacks +wallhick,wallhicks +wall jump,wall jumps +wall kick,wall kicks +wall lizard,wall lizards +wall of death,walls of death +wall of silence,walls of silence +wall of text,walls of text +Walloon,Walloons +walloper,wallopers +walloping,wallopings +wallop,wallops +wallower,wallowers +wallow,wallows +wallpaperer,wallpaperers +wall-pecker,wall-peckers +wall plug,wall plugs +wallplug,wallplugs +wallpress,wallpresses +wall railing,wall railings +wall ride,wall rides +wall socket,wall sockets +wall unit,wall units +wall,walls +wall,walls +wall,walls +wall wart,wall warts +wallyball,wallyballs +wally,wallies +Walmartian,Walmartians +walrus,walruses,walrus,walrusser +Walser,Walsers +Walter Mitty,Walter Mittys +waltron,waltrons +waltzer,waltzers +waltz,waltzes +wambenger,wambengers +wamble,wambles +wame,wames +Wampanoag,Wampanoags +wampee,wampees +wampum belt,wampum belts +wampum,wampums,wampum +wamp,wamps +wamus,wamuses +wananga,wananga +wanbelief,wanbeliefs +wanbeliever,wanbelievers +wanderer,wanderers +Wanderer,Wanderers +wandering albatross,wandering albatrosses +wandering spider,wandering spiders +wandering star,wandering stars +wandering,wanderings +wanderjahr,wanderjahrs,wanderjahre +wanderoo,wanderoos +wanderstar,wanderstars +wander,wanders +wanderword,wanderwords +Wanderwort,WanderwΓΆrter,Wanderworts +wande,wandes +wandmaker,wandmakers +wand of peace,wands of peace +wand,wands +wane,wanes +wane,wanes +wane,wanes +waney,waneys +wanfortune,wanfortunes +wangan,wangans +wanger,wangers +wanger,wangers +wanghee,wanghees +wangler,wanglers +wangle,wangles +wangtooth,wangteeth +wang,wangs +wang,wangs +wang,wangs +wanhope,wanhopes +wanhorn,wanhorns +waning moon,waning moons +waning,wanings +wanion,wanions +wankapin,wankapins +wank bank,wank banks +Wankel engine,Wankel engines +wanker,wankers +wankette,wankettes +wankface,wankfaces +wankfest,wankfests +wankhead,wankheads +wankjob,wankjobs +wank sock,wank socks +wankstain,wankstains +wank,wanks +wannabee,wannabees +wannabe,wannabes +wannigan,wannigans +want ad,want ads +want-away,want-aways +wanter,wanters +wanting,wantings +want list,want lists +wantok,wantoks +wanton,wantons +wantwit,wantwits +wanty,wanties +WAN,WANs +wapatoo,wapatoos +wapato,wapatos +wapentake,wapentakes +wapinschaw,wapinschaws +wapinshaw,wapinshaws +wapiti,wapitis +wappato,wappatos,wappatoes +wapper,wappers +wappet,wappets +wapp,wapps +wap,waps +waqf,awqaf,waqfs +waratah,waratahs +warbird,warbirds +warble fly,warble flies +warblefly,warbleflies +warbler,warblers +warble,warbles +warble,warbles +warbling,warblings +war bond,war bonds +war bonnet,war bonnets +warbonnet,warbonnets +war bride,war brides +war cemetery,war cemeteries +warchalker,warchalkers +war chest,war chests +war child,war children +warclub,warclubs +war crime,war crimes +war criminal,war criminals +war cry,war cries +warcry,warcries +war daddy,war daddies +war dance,war dances +War Democrat,War Democrats +wardenry,wardenries +wardenship,wardenships +warden system,warden systems +warden,wardens +warder,warders +wardialer,wardialers +Wardian case,Wardian cases +wardmate,wardmates +wardmote,wardmotes +war dog,war dogs +wardress,wardresses +wardriver,wardrivers +wardrive,wardrives +wardrobe malfunction,wardrobe malfunctions +wardrobe mistress,wardrobe mistresses +wardrober,wardrobers +wardrobe,wardrobes +wardroom,wardrooms +wardsman,wardsmen +wardswoman,wardswomen +ward,wards +ward,wards +Warega,Waregas +ware goose,ware geese +warehouse club,warehouse clubs +warehouseful,warehousefuls,warehousesful +warehouseman,warehousemen +warehouse,warehouses +warehousewoman,warehousewomen +warehousing,warehousings +warehou,warehou +wareroom,warerooms +warfarer,warfarers +warfighter,warfighters +wargamer,wargamers +war game,war games +wargame,wargames +war grave,war graves +warg,wargs +war hammer,war hammers +warhead,warheads +Warholite,Warholites +war horn,war horns +war-horn,war-horns +warhorn,warhorns +warhorse,warhorses +war hound,war hounds +wariangle,wariangles +warine,warines +warison,warisons +wari,waris +warkloom,warklooms +wark,warks +wark,warks +warling,warlings +warlock,warlocks +warlord,warlords +warlott,warlotts +warluck,warlucks +warmblood,warmbloods +warmdown,warmdowns +warmer,warmers +warm front,warm fronts +warm fuzzy,warm fuzzies +warming center,warming centers +warming pan,warming pans +warming,warmings +warmist,warmists +warm line,warm lines +warmline,warmlines +warmonger,warmongers +warmouth,warmouths +warm-up jacket,warm-up jackets +warmup jacket,warmup jackets +warm-up,warm-ups +warmup,warmups +warm,warms +warner,warners +warner,warners +warning coloration,warning colorations +warning track,warning tracks +warning,warnings +war of conquest,wars of conquest +war of nerves,wars of nerves +war of words,wars of words +war paint,war paints +war-paint,war-paints +warpaint,warpaints +war party,war parties +warpath,warpaths +warp bubble,warp bubbles +warp drive,warp drives +warper,warpers +warp factor,warp factors +warping,warpings +warplane,warplanes +warp speed,warp speeds +warp,warps +warragal,warragals +warrah,warrahs +warrandice,warrandices +warrant card,warrant cards +warrantee,warrantees +warranter,warranters +warrantless search,warrantless searches +warrant of attorney,warrants of attorney +warrant officer 2,warrant officers 2 +warrant officer class 1,warrant officers class 1 +warrant officer class 2,warrant officers class 2 +warrant officer,warrant officers +warrantor,warrantors +warrant,warrants +warranty,warranties +warraunt,warraunts +warrener,warreners +warren,warrens +warre,warres +warrigal,warrigals +Warrington hammer,Warrington hammers +warrior ant,warrior ants +warrioress,warrioresses +warrior,warriors +warriour,warriours +war room,war rooms +warsaw,warsaws +warship,warships +Warsovian,Warsovians +war story,war stories +wart-biter,wart-biters +warthog,warthogs +war time,war times +war tuba,war tubas +wart,warts +wartwort,wartworts +warung,warungs +war veteran,war veterans +war whoop,war whoops +war widow,war widows +waryson,warysons +war zone,war zones +warzone,warzones +wasband,wasbands +wasbian,wasbians +wase,wases +washateria,washaterias +washbag,washbags +washbasin,washbasins +wash basket,wash baskets +washbasket,washbaskets +wash bin,wash bins +washbin,washbins +washboard,washboards +washbowl,washbowls +washcloth,washcloths +washday,washdays +washdisher,washdishers +washdish,washdishes +washdown,washdowns +washerman,washermen +washer-upper,washer-uppers +washer,washers +washerwoman,washerwomen +washery,washeries +washeteria,washeterias +washhouse,washhouses +washing bear,washing bears +washing bottle,washing bottles +washing day,washing days +washing line,washing lines +washing machine,washing machines +Washingtonian,Washingtonians +washing-up liquid,washing-up liquids +washitsu,washitsus +washkit,washkits +washlet,washlets +washline,washlines +washload,washloads +wash-out,wash-outs +washout,washouts +washplant,washplants +washpot,washpots +washrag,washrags +wash room,wash rooms +washroom,washrooms +washstand,washstands +washtub bass,washtub basses +wash tub,wash tubs +washtub,washtubs +wash,washes +washwoman,washwomen +wasm,wasms +waspie,waspies +waspling,wasplings +wasp spider,wasp spiders +wasp,wasps +wasp,wasps +wassailing,wassailings +wassail,wassails +was-sceptre,was-sceptres +wasserman,wassermen +wassock,wassocks +wasta,wastas +wastebasket taxon,wastebasket taxa +wastebasket,wastebaskets +waste bin,waste bins +wastebin,wastebins +wasteboard,wasteboards +wastebook,wastebooks +waste disposal unit,waste disposal units +waste disposal,waste disposals +wastegate,wastegates +wasteland,wastelands +wastel,wastels +wasteness,wastenesses +waste of space,wastes of space,wastes of spaces +waste of time,wastes of time +wasteoid,wasteoids +wastepaper basket,wastepaper baskets +wastepile,wastepiles +waste pipe,waste pipes +waste product,waste products +waster,wasters +waster,wasters +wastethrift,wastethrifts +waste tray,waste trays +wastewater,wastewaters +wasteweir,wasteweirs +wasting disease,wasting diseases +wastoid,wastoids +wastorel,wastorels +wastor,wastors +wastour,wastours +wastrel,wastrels +wataman,watamans +watasemycin,watasemycins +watchband,watchbands +watch cap,watch caps +watch-cap,watch-caps +watchcase,watchcases +watchchain,watchchains +watchdog,watchdogs +watcher,watchers +watchet,watchets +watchfire,watchfires +watch glass,watch glasses +watch house,watch houses +watchhouse,watchhouses +watchkeeper,watchkeepers +watch list,watch lists +watchlist,watchlists +watchmaker,watchmakers +watchman,watchmen +watchmate,watchmates +watch party,watch parties +watchphone,watchphones +watch pocket,watch pockets +watchpocket,watchpockets +watchpoint,watchpoints +watchstander,watchstanders +watchstrap,watchstraps +watch-tower,watch-towers +watchtower,watchtowers +watch,watches +watchwoman,watchwomen +watchword,watchwords +water bailiff,water bailiffs +water balloon,water balloons +water bath,water baths +water bear,water bears +water bed,water beds +waterbed,waterbeds +water beetle,water beetles +waterbike,waterbikes +waterbird,waterbirds +water birthing,water birthings +water birth,water births +water biscuit,water biscuits +water-blob,water-blobs +waterboard,waterboards +water boatman,water boatmen +waterboatman,waterboatmen +water body,water bodies +waterbody,waterbodies +water boiler,water boilers +waterboiler,waterboilers +waterbok,waterboks +water bomber,water bombers +waterbomber,waterbombers +water bomb,water bombs +water bottle,water bottles +waterbottle,waterbottles +water boy,water boys +waterboy,waterboys +water break,water breaks +waterbuck,waterbucks,waterbuck +water buffalo,water buffaloes +water bug,water bugs +waterbug,waterbugs +water bus,water buses +waterbus,waterbuses +water butt,water butts +water caltrop,water caltrops +water cannon,water cannons +water can,water cans +water carriage,water carriages +water carrier,water carriers +water-carrier,water-carriers +water cavy,water cavies +water chicken,water chickens +water clock,water clocks +waterclock,waterclocks +water closet,water closets +watercoaster,watercoasters +watercock,watercocks +watercolorist,watercolorists +watercolor,watercolors +watercolourist,watercolourists +watercolour,watercolours +water column,water columns +water cooler,water coolers +watercooler,watercoolers +watercourse,watercourses +water crow,water crows +water-cure,water-cures +water devil,water devils +water diviner,water diviners +water divining,water divinings +water doctor,water doctors +water dog,water dogs +waterdog,waterdogs +waterdrop,waterdrops +water dropwort,water dropworts +water dumping,water dumpings +water elephant,water elephants +water engine,water engines +waterer,waterers +waterfall model,waterfall models +waterfall,waterfalls +water feature,water features +water fight,water fights +water flag,water flags +water flea,water fleas +waterflood,waterfloods +water footprint,water footprints +water fountain,water fountains +waterfowl,waterfowl +water frame,water frames +waterfront,waterfronts +water-gang,water-gangs +Watergate salad,Watergate salads +water gate,water gates +watergate,watergates +water gauge,water gauges +water gun,water guns +water hardness,water hardnesses +water heater,water heaters +water hen,water hens +waterhen,waterhens +water hog,water hogs +water hole,water holes +water-hole,water-holes +waterhole,waterholes +water horsetail,water horsetails +water horse,water horses +waterhorse,waterhorses +water hyacinth,water hyacinths +watering can,watering cans +watering hole,watering holes +watering pot,watering pots +watering,waterings +water intoxication,water intoxications +water jet,water jets +waterjet,waterjets +water joint,water joints +waterjug,waterjugs +waterkeeper,waterkeepers +water key,water keys +water knot,water knots +Waterlander,Waterlanders +Waterlandian,Waterlandians +water landing,water landings +waterleaf,waterleaves +water lemon,water lemons +water-lettuce,water-lettuces +water level,water levels +water lily,water lilies +waterlily,waterlilies +water-line model,water-line models +water line,water lines +waterline,waterlines +water locust,water locusts +Waterloo cracker,Waterloo crackers +Waterloo,Waterloos +water main,water mains +watermaker,watermakers +waterman,watermen +watermark,watermarks +watermaster,watermasters +watermaze,watermazes +water meadow,water meadows +water-meadow,water-meadows +water melon,water melons +watermelon,watermelons +water meter,water meters +watermilfoil,watermilfoils +watermill,watermills +water mint,water mints +watermint,watermints +water mole,water moles +water monitor,water monitors +water mouse,water mice +water oak,water oaks +water opossum,water opossums +water organ,water organs +water park,water parks +waterpark,waterparks +water pick,water picks +water pig,water pigs +water pillar,water pillars +water pill,water pills +water pipe,water pipes +waterpipe,waterpipes +water pipit,water pipits +water pistol,water pistols +waterplane,waterplanes +water plantain,water plantains +water plate,water plates +waterpoint,waterpoints +water poisoning,water poisonings +waterport,waterports +water potential,water potentials +waterpot,waterpots +waterproofer,waterproofers +waterproof,waterproofs +waterquake,waterquakes +water rail,water rails +water rat,water rats +water repellent,water repellents +water-repellent,water-repellents +water rocket,water rockets +water sapphire,water sapphires +waterscape,waterscapes +water scooter,water scooters +water scorpion,water scorpions +water's edge,water's edges +water-shed,water-sheds +watershed,watersheds +watershoot,watershoots +water shrew,water shrews +watershrew,watershrews +waterside,watersides +water sign,water signs +water-skier,water-skiers +waterskier,waterskiers +waterskin,waterskins +water ski,water skis +waterski,waterskis +water slide,water slides +waterslide,waterslides +water softener,water softeners +water spaniel,water spaniels +water speedwell,water speedwells +water spider,water spiders +water sport,water sports +watersport,watersports +water spot,water spots +water spout,water spouts +waterspout,waterspouts +water stop,water stops +water strider,water striders +waterstuff,waterstuffs +water table,water tables +water tap,water taps +water taxi,water taxis +waterthrush,waterthrushes +water tick,water ticks +water tower,water towers +water tunnel,water tunnels +water turbine,water turbines +water turkey,water turkeys +water vapor,water vapors +water vapour,water vapours +water vole,water voles +waterway,waterways +waterweed,waterweeds +water wheel,water wheels +waterwheel,waterwheels +water willow,water willows +water wing,water wings +water witch,water witches +waterworks,waterworks +waterwork,waterworks +waterwort,waterworts +water year,water years +wathe,wathes +wath,waths +watsonia,watsonias +wattage,wattages +watt-hour meter,watt-hour meters +watt-hour,watt-hours +wattlebird,wattlebirds +wattle turkey,wattle turkeys +wattle,wattles +wattling,wattlings +wattmeter,wattmeters +watt,watts +watusi,watusis +Watusi,Watusis,Watusi +wat,wats +waucht,wauchts +waught,waughts +waulker,waulkers +waulking,waulkings +waveband,wavebands +wave dash,wave dashes +wavefield,wavefields +waveform,waveforms +wavefront,wavefronts +wave function,wave functions +wavefunction,wavefunctions +waveguide,waveguides +wavelength,wavelengths +wavelet,wavelets +wavemaker,wavemakers +wavemeter,wavemeters +wave number,wave numbers +wavenumber,wavenumbers +wave of the hand,waves of the hand +wave packet,wave packets +wavepacket,wavepackets +wave-particle,wave-particles +waveplate,waveplates +wavepulse,wavepulses +waverer,waverers +wavering,waverings +waver,wavers +waveshaper,waveshapers +waveshape,waveshapes +wave ski,wave skis +wavetable,wavetables +wave train,wave trains +wavetrain,wavetrains +wave vector,wave vectors +wavevector,wavevectors +wave,waves +wavey,waveys +wavicle,wavicles +waving,wavings +Wavoid,Wavoids +wavy,wavies +wawe,wawes +waw,waws +waw,waws +wax apple,wax apples +wax bean,wax beans +waxberry,waxberries +waxbill,waxbills +waxbird,waxbirds +waxcap,waxcaps +waxed end,waxed ends +wax end,wax ends +wax-end,wax-ends +waxer,waxers +waxflower,waxflowers +wax gourd,wax gourds +waxing kernel,waxing kernels +waxing moon,waxing moons +wax moth,wax moths +wax museum,wax museums +wax myrtle,wax myrtles +wax-myrtle,wax-myrtles +wax-nose,wax-noses +waxplant,waxplants +waxpod,waxpods +wax,waxes +waxwing,waxwings +waxworker,waxworkers +waxwork,waxworks +waxworm,waxworms +waxy cap,waxy caps +waxycap,waxycaps +waxy spleen,waxy spleens +wayang,wayangs +way bill,way bills +waybill,waybills +wayboard,wayboards +waye,wayes +wayfarer,wayfarers +wayfaring-tree,wayfaring-trees +waygate,waygates +waygoose,waygooses +way in,ways in +waylayer,waylayers +wayleave,wayleaves +waymaker,waymakers +waymarker,waymarkers +waymark,waymarks +wayn,wayns +wayobject,wayobjects +way of life,ways of life +way of the world,ways of the world +way out,ways out +waypoint,waypoints +waypost,wayposts +wayside pulpit,wayside pulpits +wayside,waysides +way station,way stations +waystation,waystations +way to go,ways to go +waywarden,waywardens +waywardness,waywardnesss +way,ways +way,ways +waywiser,waywisers +waywodeship,waywodeships +waywode,waywodes +wayzegoose,wayzegooses +wayzgoose,wayzgooses +Waziri,Waziris +wazir,wazirs +Wazir,Wazirs +wazoo,wazoos +wazzer,wazzers +wazzock,wazzocks +wazz,wazzes +W-boson,W-bosons +WDC,WDCs +WD,WDs +weak declension,weak declensions +weakener,weakeners +weaker vessel,weaker vessels +weakest link,weakest links +weakfish,weakfishes,weakfish +weakling,weaklings +weakly interacting massive particle,weakly interacting massive particles +weaknesse,weaknesses +weak nuclear force,weak nuclear forces +weak nuclear interaction,weak nuclear interactions +weak sister,weak sisters +weak sore,weak sores +weak verb,weak verbs +Wealdsman,Wealdsmen +weald,wealds +wealsman,wealsmen +weal,weals +weal,weals +weanel,weanels +weaner,weaners +weanling,weanlings +wean,weans +weaponeer,weaponeers +weapon of mass destruction,weapons of mass destruction +weaponsmith,weaponsmiths +weapon,weapons +wearable heater,wearable heaters +wearable,wearables +wearer,wearers +wearing,wearings +Wearsider,Wearsiders +weasand,weasands +weasel clause,weasel clauses +weasel,weasels +weasel word,weasel words +weaser,weasers +weason,weasons +weather balloon,weather balloons +weather-bit,weather-bits +weatherboard,weatherboards +Weatherby brow,Weatherby brows +Weatherby eyebrow,Weatherby eyebrows +weathercaster,weathercasters +weathercast,weathercasts +weather chart,weather charts +weathercock,weathercocks +weather deck,weather decks +weatherdeck,weatherdecks +weatherfish,weatherfishes +weather forecaster,weather forecasters +weather forecast,weather forecasts +weather front,weather fronts +weathergirl,weathergirls +weatherglass,weatherglasses +weather loach,weather loaches +weatherman,weathermen +Weatherman,Weathermen +weather map,weather maps +weatherperson,weatherpersons,weatherpeople +weatherproofer,weatherproofers +weather report,weather reports +weather shore,weather shores +weatherstripping,weatherstrippings +weatherstrip,weatherstrips +weather vane,weather vanes +weathervane,weathervanes +weatherwoman,weatherwomen +Weatherwoman,Weatherwomen +weaverbird,weaverbirds +weaverfish,weaverfishes,weaverfish +weavers' shuttle,weavers' shuttles +weaver,weavers +weave,weaves +weazand,weazands +web address,web addresses +web application,web applications +webathon,webathons +web beacon,web beacons +webber,webbers +webbing,webbings +webbook,webbooks +web browser,web browsers +Web browser,Web browsers +web bug,web bugs +webcamera,webcameras +webcammer,webcammers +webcam,webcams +webcap,webcaps +webcartoonist,webcartoonists +webcaster,webcasters +webcast,webcasts +web celeb,web celebs +webchat,webchats +webcomic,webcomics +web conference,web conferences +webconference,webconferences +Web crawler,Web crawlers +web designer,web designers +web developer,web developers +web diver,web divers +Webelo,Webelos +Weberian ossicle,Weberian ossicles +weber,webers +web feed,web feeds +webfeed,webfeeds +web-footed gecko,web-footed geckos +webfoot,webfeet +webform,webforms +webhead,webheads +webinar,webinars +Webinar,Webinars +webisode,webisodes +weblebrity,weblebrities +weblink,weblinks +webliography,webliographies +weblogger,webloggers +weblog,weblogs +webmag,webmags +webmaster,webmasters +webmeister,webmeisters +webmistress,webmistresses +webocracy,webocracies +webography,webographies +web page,web pages +web-page,web-pages +webpage,webpages +webphone,webphones +webpreneur,webpreneurs +webring,webrings +Web robot,Web robots +webroot,webroots +Web scutter,Web scutters +web server,web servers +webserver,webservers +Web service,Web services +webshop,webshops +website aggregator,website aggregators +web site,web sites +web-site,web-sites +website,websites +Web site,Web sites +Web spider,Web spiders +webspinner,webspinners +websquatter,websquatters +Websterism,Websterisms +webster,websters +webstream,webstreams +web surfer,web surfers +websurfer,websurfers +webtoon,webtoons +webtop,webtops +webumentary,webumentaries +webutation,webutations +web,webs +webworm,webworms +webzine,webzines +wecht,wechts +weck,wecks +wedbreak,wedbreaks +wedbrek,wedbreks +wedcast,wedcasts +wedding band,wedding bands +wedding breakfast,wedding breakfasts +wedding cake,wedding cakes +wedding dress,wedding dresses +wedding finger,wedding fingers +wedding gown,wedding gowns +wedding march,wedding marches +weddingmoon,weddingmoons +wedding party,wedding parties +wedding planner,wedding planners +wedding registry,wedding registries +wedding ring,wedding rings +wedding-ring,wedding-rings +wedding vow,wedding vows +wedding,weddings +weddingzilla,weddingzillas +wedeloside,wedelosides +wedfellow,wedfellows +wedge-and-dash,wedges-and-dashes +wedgebill,wedgebills +wedge heel,wedge heels +wedge issue,wedge issues +wedge politics,wedge politics +wedge product,wedge products +wedge sum,wedge sums +wedge-tailed eagle,wedge-tailed eagles +wedgetail,wedgetails +wedge,wedges +wedge,wedges +wedgie,wedgies +Wedgwood blue,Wedgwood blues +Wednesdayite,Wednesdayites +Wednesday,Wednesdays +wedsetter,wedsetters +wedsite,wedsites +weeaboo,weeaboos +weebill,weebills +weed eater,weed eaters +weedeater,weedeaters +weeder,weeders +Weedgie,Weedgies +weedgin,weedgins +weedhead,weedheads +weed hook,weed hooks +weeding,weedings +Weedjie,Weedjies +weedkiller,weedkillers +weedling,weedlings +weedscape,weedscapes +weed,weeds +weed,weeds +weedwhacker,weedwhackers +wee juggler,wee jugglers +weekday,weekdays +weekend bag,weekend bags +weekender,weekenders +weekend warrior,weekend warriors +week-end,week-ends +weekend,weekends +weeker,weekers +weeke,weekes +weekly,weeklies +weeknight,weeknights +weekwam,weekwams +week,weeks +weel,weels +weely,weelies +weenie,weenies +ween,weens +weeny-bopper,weeny-boppers +weeny,weenies +weeper,weepers +weepie,weepies +weeping fig,weeping figs +weeping,weepings +weeping willow,weeping willows +weep,weeps +weero,weeros +weesel,weesels +weet-weet,weet-weets +weeverfish,weeverfishes,weeverfish +weever,weevers +weevil,weevils +weezel,weezels +weft,wefts +weft,wefts +wehrgeld,wehrgelds +wehrwolf,wehrwolves +Weibull,Weibulls +weigela,weigelas +weigelia,weigelias +weighbeam,weighbeams +weighboard,weighboards +weighbridge,weighbridges +weigher,weighers +weighhouse,weighhouses +weighing boat,weighing boats +weighing bottle,weighing bottles +weighing funnel,weighing funnels +weighing machine,weighing machines +weighing,weighings +weigh-in,weigh-ins +weighlock,weighlocks +weighman,weighmen +weighmaster,weighmasters +weigh station,weigh stations +weighted-average cost of capital,weighted-average costs of capital +weighted average,weighted averages +weighted graph,weighted graphs +weighted mean,weighted means +weight gainer,weight gainers +weighth,weighths +weighting,weightings +weightist,weightists +weight lifter,weight lifters +weightlifter,weightlifters +weightloss,weightlosses +weight measure,weight measures +weight weenie,weight weenies +weight,weights +Weimaraner,Weimaraners +weiner dog,weiner dogs +Weingarten right,Weingarten rights +weirdie,weirdies +weirdling,weirdlings +weird number,weird numbers +weirdo,weirdoes,weirdos +weird,weirds +WEIRD,WEIRDs +weir,weirs +weissbier,weissbiers +weisswurst,weisswursts +wejack,wejacks +weka,wekas +wekeen,wekeens +welcher,welchers +Welchman,Welchmen +welch,welches +welcome mat,welcome mats +welcomer,welcomers +welcome swallow,welcome swallows +welcome,welcomes +weldability,weldabilities +welder,welders +welding,weldings +weldment,weldments +weldor,weldors +weld,welds +weld,welds +welfare Cadillac,welfare Cadillacs +welfare hotel,welfare hotels +welfare parasite,welfare parasites +welfare queen,welfare queens +welfare state,welfare states +welfarist,welfarists +welkin,welkins +welk,welks +wellbeing,wellbeings +wellbore,wellbores +well deck,well decks +welldoer,welldoers +well drink,well drinks +Wellerism,Wellerisms +well-formed formula,well-formed formulas,well-formed formulae +wellhead,wellheads +wellhole,wellholes +wellie,wellies +wellington boot,wellington boots +Wellington boot,Wellington boots +Wellingtonian,Wellingtonians +wellingtonia,wellingtonias +wellington,wellingtons +Wellington,Wellingtons +Wellington,Wellingtons +well-oiled machine,well-oiled machines +well-ordering,well-orderings +wellordering,wellorderings +well-order,well-orders +wellsite geologist,wellsite geologists +wellspring,wellsprings +well,wells +well-willer,well-willers +wellwiller,wellwillers +well-wisher,well-wishers +wellwisher,wellwishers +well-wishing,well-wishings +Welsh corgi,Welsh corgis +Welsh dresser,Welsh dressers +welsher,welshers +Welsher,Welshers +Welshism,Welshisms +Welshman,Welshmen +Welsh mortgage,Welsh mortgages +welshnut,welshnuts +Welsh onion,Welsh onions +Welsh rabbit,Welsh rabbits +Welsh rarebit,Welsh rarebits +Welshwoman,Welshwomen +Welsh yard,Welsh yards +weltanschauung,weltanschauungs,weltanschauungen +weltansicht,weltansichts +welter-weight,welter-weights +welterweight,welterweights +welter,welters +welt,welts +welwitschia,welwitschias +wem,wems +wencher,wenchers +wench,wenches +wendigo,wendigos,wendigo,wendigoes +wending,wendings +wend,wends +Wend,Wends +Wendy house,Wendy houses +wendy,wendies +wennel,wennels +wentletrap,wentletraps +went,wents +wen,wens +wen,wens +werebear,werebears +werecat,werecats +werecreature,werecreatures +weredog,weredogs +werefox,werefoxes +weregeld,weregelds +weregild,weregilds +werehyena,werehyenas +wereleopard,wereleopards +werelion,werelions +wererat,wererats +weretiger,weretigers +were,weres +werewolf,werewolves +wergeld,wergelds +wergild,wergilds +werke,werkes +werk,werks +Werner complex,Werner complexes +weroance,weroances +weroansqua,weroansquas +werowance,werowances +werowansqua,werowansquas +werst,wersts +wer,wers +werwolf,werwolves +wesand,wesands +wesil,wesils +weskit,weskits +Wesleyan,Wesleyans +Wessexian,Wessexians +West Briton,West Britons +West Brit,West Brits +westen,westens +westerly,westerlies +western blot analysis,western blot analyses +western capercaillie,western capercaillies +Western concert flute,Western concert flutes +western diamondback rattlesnake,western diamondback rattlesnakes +westerner,westerners +Westerner,Westerners +Western European,Western Europeans +western gorilla,western gorillas +western grey kangaroo,western grey kangaroos +western slaty antshrike,western slaty antshrikes +western,westerns +Western,Westerns +wester,westers +West German,West Germans +westie,westies +Westie,Westies +West Indian,West Indians +westing,westings +westling,westlings +West Lothian question,West Lothian +Westman Islander,Westman Islanders +Westminster parliamentary system,Westminster parliamentary systems +Westminster system,Westminster systems +Westphalian,Westphalians +westside,westsides +West Virginian,West Virginians +wet-and-dry-bulb hygrometer,wet-and-dry-bulb hygrometers +weta,wetas,weta +wetback,wetbacks +wet bar,wet bars +wetbird,wetbirds +wet blanket,wet blankets +wet boy,wet boys +wet cell,wet cells +wet check,wet checks +wet dock,wet docks +wet dream,wet dreams +wet end,wet ends +wet fly,wet flies +wether,wethers +wet job,wet jobs +wetland,wetlands +wet lease,wet leases +wet nurse,wet nurses +wet-nurse,wet-nurses +wetnurse,wetnurses +wet room,wet rooms +wetroom,wetrooms +wet season,wet seasons +wet suit,wet suits +wetsuit,wetsuits +wetter,wetters +wetting agent,wetting agents +wetting,wettings +wet t-shirt competition,wet t-shirt competitions +wet t-shirt contest,wet t-shirt contests +wetu,wetus,wetu +wet,wets +wet willy,wet willies +wevil,wevils +weye,weyes +weyve,weyves +wey,weys +wezand,wezands +wezon,wezons +whaap,whaaps +whac-a-mole,whac-a-moles +Whac-A-Mole,Whac-A-Moles +whachamacallit,whachamacallits +whacker,whackers +whack job,whack jobs +whackjob,whackjobs +whacko,whackos,whackoes +whack,whacks +whaitsiid,whaitsiids +whaleboater,whaleboaters +whaleboat,whaleboats +whaleburger,whaleburgers +whale catfish,whale catfishes +whale fall,whale falls +whalefall,whalefalls +whalefish,whalefishes,whalefish +whaleling,whalelings +whale louse,whale louses +whaleman,whalemen +whale oil,whale oils +whale-road,whale-roads +whaler,whalers +whale shark,whale sharks +whaleship,whaleships +whale's tail,whale's tails +whalesucker,whalesuckers +whale tail,whale tails +whale,whales +whaling station,whaling stations +whame,whames +whammy bar,whammy bars +whammy,whammies +wham,whams +whanau,whanau,whanaus +whang-doodle,whang-doodles +whangdoodle,whangdoodles +whangee,whangees +whanghee,whanghees +whang,whangs +whapper,whappers +whap,whaps +whare wānanga,whare wānanga +whare,whares +wharfie,wharfies +wharfinger,wharfingers +wharfman,wharfmen +wharf rat,wharf rats +wharfside,wharfsides +wharf,wharves,wharfs +wharl,wharls +whataboutery,whatabouteries +whatchacallit,whatchacallits +whatchamacallit,whatchamacallits +whatchamahoosey,whatchamahooseys +whatchamahoozie,whatchamahoozies +whatchamahoozy,whatchamahoozies +whatcheeriid,whatcheeriids +whatdoyoucallit,whatdoyoucallits +whateverist,whateverists +what-if,what-ifs +whatness,whatnesses +what-not shop,what-not shops +whatnot,whatnots +what's-his-face,uncountable +whatshisface,whatshisfaces +whatshisname,whatstheirnames +whatsit,whatsits +whatzit,whatzits +wha-up,wha-ups +whaup,whaups +wheal,wheals +wheal,wheals +wheatback,wheatbacks +wheatberry,wheatberries +wheatbird,wheatbirds +wheat bisk,wheat bisks +wheatear,wheatears +wheater,wheaters +wheatfield,wheatfields +wheatland,wheatlands +wheat penny,wheat pennies +wheatrick,wheatricks +wheatstack,wheatstacks +wheatstalk,wheatstalks +Wheatstone bridge,Wheatstone bridges +wheat weevil,wheat weevils +wheatworm,wheatworms +wheedler,wheedlers +wheedling,wheedlings +wheek,wheeks +wheel artist,wheel artists +wheelback,wheelbacks +wheelband,wheelbands +wheelbarrow race,wheelbarrow races +wheelbarrow,wheelbarrows +wheelbase,wheelbases +wheelbird,wheelbirds +wheelchair lift,wheelchair lifts +wheelchair user,wheelchair users +wheelchair,wheelchairs +wheel clamp,wheel clamps +wheel dog,wheel dogs +wheeler-dealer,wheeler-dealers +wheeler,wheelers +wheelful,wheelfuls +wheelhorse,wheelhorses +wheelhouse,wheelhouses +wheelie bin,wheelie bins +wheelie,wheelies +wheeling and dealing,wheelings and dealings +wheeling machine,wheeling machines +wheellock,wheellocks +wheelman,wheelmen +wheel of death,wheels of death +wheel of fortune,wheel of fortunes +wheel of life,wheels of life +wheelrim,wheelrims +wheelset,wheelsets +wheelsman,wheelsmen +wheelstand,wheelstands +wheelsucker,wheelsuckers +wheeltapper,wheeltappers +wheel,wheels +wheelwright,wheelwrights +wheely,wheelies +wheen,wheens +wheeze rate,wheeze rates +wheezer,wheezers +wheeze,wheezes +wheezing,wheezings +wheft,whefts +whelk stall,whelk stalls +whelk,whelks +whelpling,whelplings +whelp,whelps +whemmel,whemmels +whemmle,whemmles +whenwe,whenwes +when,whens +whereas,whereases +wheredunit,wheredunits +wherefore,wherefores +wherret,wherrets +wherry,wherries +whetile,whetiles +whetstone,whetstones +whetter,whetters +whetting,whettings +whet,whets +whew duck,whew ducks +whewer,whewers +wheyface,wheyfaces +which,whiches +whicker,whickers +whidah,whidahs +whid,whids +whiffet,whiffets +whiffing,whiffings +whiffler,whifflers +whiffletree,whiffletrees +whiffle,whiffles +whiff,whiffs +Whiggamore,Whiggamores +whigga,whiggas +whigger,whiggers +Whigling,Whiglings +whigship,whigships +whig,whigs +Whig,Whigs +while loop,while loops +while,whiles +whilk,whilks +whillywha,whillywhas +whimberry,whimberries +whimbrel,whimbrels +whimling,whimlings +whimperative,whimperatives +whimperer,whimperers +whimpering,whimperings +whimper,whimpers +whimsey,whimseys,whimsies +whim-wham,whim-whams +whimwham,whimwhams +whim,whims +whim,whims +whinberry,whinberries +whinchat,whinchats +whineling,whinelings +whiner,whiners +whine,whines +whinger,whingers +whinge,whinges +whing,whings +whing,whings +whinmill,whinmills +whinnock,whinnocks +whinnying,whinnyings +whinny,whinnies +whin,whins +whinyard,whinyards +whipcord,whipcords +whiplash,whiplashes +whipmaker,whipmakers +whipman,whipmen +whippador,whippadors +whipparee,whipparees +whipped vote,whipped votes +whippee,whippees +whipper-in,whipper-ins,whippers-in +whipper snapper,whipper snappers +whippersnapper,whippersnappers +whipper snipper,whipper snippers +whipper,whippers +whippet,whippets +whipping boy,whipping boys +whippit,whippits +Whipple procedure,Whipple procedures +whippletree,whippletrees +whippoorwill,whippoorwills +whip-round,whip-rounds +whipsaw,whipsaws +whipsman,whipsmen +whipstaff,whipstaffs,whipstaves +whipstalk,whipstalks +whipstall,whipstalls +whipster,whipsters +whipstick,whipsticks +whip stitch,whip stitches +whipstitch,whipstitches +whipstock,whipstocks +whiptail gulper,whiptail gulpers +whiptail,whiptails +whip,whips +whipworm,whipworms +whirlabout,whirlabouts +whirlbat,whirlbats +whirlblast,whirlblasts +whirl-bone,whirl-bones +whirlbone,whirlbones +whirler,whirlers +whirlicote,whirlicotes +whirligig beetle,whirligig beetles +whirligig,whirligigs +whirling table,whirling tables +whirling,whirlings +whirlpit,whirlpits +whirlpool galaxy,whirlpool galaxies +whirlpool,whirlpools +whirl,whirls +whirlwig,whirlwigs +whirlwind,whirlwinds +whirlybird,whirlybirds +whirlygig,whirlygigs +whirring,whirrings +whirr,whirrs +whirry,whirries +whirtle,whirtles +whir,whirs +whish,whishes +whiskbroom,whiskbrooms +whisker pole,whisker poles +whisker,whiskers +whisket,whiskets +whiskey jack,whiskey jacks +whiskey-jack,whiskey-jacks +whiskeyjack,whiskeyjacks +whiskey sour,whiskey sours +whiskey,whiskeys,whiskies +whisk fern,whisk ferns +whiskin,whiskins +whisk,whisks +whisky jack,whisky jacks +whisky-jack,whisky-jacks +whiskyjack,whiskyjacks +whisky,whiskies +whisper campaign,whisper campaigns +whisperer,whisperers +whispering campaign,whispering campaigns +whispering,whisperings +whisper,whispers +whisp,whisps +whisp,whisps +whistle-blower,whistle-blowers +whistleblower,whistleblowers +whistle-blowing,whistle-blowings +whistle note,whistle notes +whistle pig,whistle pigs +whistle-pig,whistle-pigs +whistler,whistlers +whistle-stop,whistle-stops +whistlestop,whistlestops +whistle walk,whistle walks +whistle,whistles +whistlewing,whistlewings +whistling duck,whistling ducks +whistling hare,whistling hares +whistling marmot,whistling marmots +whistling swan,whistling swans +whistling,whistlings +whist,whists +white admiral,white admirals +white ant,white ants +whiteass,whiteasses +whiteback,whitebacks +whitebark raspberry,whitebark raspberries +whitebark,whitebarks +white-beaked dolphin,white-beaked dolphins +whitebeam,whitebeams +white-bearded antshrike,white-bearded antshrikes +whitebeard,whitebeards +white bear,white bears +white beech,white beeches +white-bellied nothura,white-bellied nothuras +white-billed diver,white-billed divers +whitebill,whitebills +white blood cell,white blood cells +whiteboard,whiteboards +white boy,white boys +whiteboy,whiteboys +Whiteboy,Whiteboys +white bream,white breams +white cap,white caps +whitecap,whitecaps +white cedar,white cedars +whitecedar,whitecedars +white cell,white cells +white Christmas,white Christmases +White Cloud Mountain minnow,White Cloud Mountain minnows +white clover,white clovers +white coat,white coats +whitecoat,whitecoats +white-collar crime,white-collar crimes +white-collar worker,white-collar workers +white croaker,white croakers +white-crowned plover,white-crowned plovers +white currant,white currants +whitecurrant,whitecurrants +white dot syndrome,white dot syndromes +whited sepulcher,whited sepulchers +whited sepulchre,whited sepulchres +white dwarf,white dwarfs +white-ear,white-ears +white elephant,white elephants +white English bulldog,white English bulldogs +whitefella,whitefellas +whitefeller,whitefellers +white fir,white firs +white-fish,white-fishes +whitefish,whitefishes,whitefish +white flag,white flags +white-flippered penguin,white-flippered penguins +whitefly,whiteflies +white fox,white foxes +White Friar,White Friars +white-fronted goose,white-fronted geese +white gentian,white gentians +whitegirl,whitegirls +white glove test,white glove tests +white-glove test,white-glove tests +white gold,white golds +white gourd,white gourds +white-handed gibbon,white-handed gibbons +white hat,white hats +whitehat,whitehats +whitehead,whiteheads +white-heart,white-hearts +whiteheart,whitehearts +white hole,white holes +white horse,white horses +white iron,white irons +white knight,white knights +white knuckle ride,white knuckle rides +white-knuckle ride,white-knuckle rides +white-letter hairstreak,white-letter hairstreaks +white lie,white lies +white-lipped snail,white-lipped snails +white list,white lists +whitelist,whitelists +white maggot,white maggots +whitemail,whitemails +white man's grave,white man's graves +white man,white men +white marlin,white marlins +white marriage,white marriages +white mulberry,white mulberries +white nebula,white nebulae +whitener,whiteners +whitening,whitenings +white-nosed coati,white-nosed coatis +white note,white notes +white-out,white-outs +whiteout,whiteouts +white owl,white owls +white pages,white pages +white paper,white papers +whitepaper,whitepapers +white petrolatum,white petrolatums +white pine,white pines +white poplar,white poplars +white-pot,white-pots +whiteprint,whiteprints +white pudding,white puddings +white rhinoceros,white rhinoceros,white rhinoceroses +white-rumped hawk,white-rumped hawks +whiterump,whiterumps +White Russian,White Russians +white sapphire,white sapphires +white sauce,white sauces +white shark,white sharks +white sheep,white sheep +white-shoe firm,white-shoe firms +white-shoe,white-shoes +white-shouldered antshrike,white-shouldered antshrikes +whiteside,whitesides +white slaver,white slavers +white slave,white slaves +whitesmith,whitesmiths +white space,white spaces +whitespace,whitespaces +white spot,white spots +whitester,whitesters +white stork,white storks +white supremacist,white supremacists +white-supremacist,white-supremacists +white-tailed deer,white-tailed deer +white-tailed eagle,white-tailed eagles +white-tailed hawk,white-tailed hawks +white-tailed sea eagle,white-tailed sea eagles +whitetail,whitetails +white tea,white teas +whitethorn,whitethorns +white-throated hawk,white-throated hawks +white-throated rail,white-throated rails +white-throated tinamou,white-throated tinamous +whitethroat,whitethroats +white tie,white ties +whitetip reef shark,whitetip reef sharks +whitetip,whitetips +white truffle,white truffles +white van man,white van men +white wagtail,white wagtails +whitewall,whitewalls +whitewasher,whitewashers +whitewashing,whitewashings +whitewash,whitewashes +white wedding,white weddings +whiteweed,whiteweeds +white week,white weeks +white whale,white whales +white,whites +white willow,white willows +white wine,white wines +whitewing,whitewings +white witch,white witches +whitewood,whitewoods +whitey,whiteys,whities +white zone,white zones +whitflaw,whitflaws +whiting-mop,whiting-mops +whiting,whitings,whiting +whitling,whitlings +whitlow,whitlows +Whitmonday,Whitmondays +whitret,whitrets +whitsour,whitsours +whitster,whitsters +Whitsunday,Whitsundays +Whitsuntide,Whitsuntides +Whitsun,Whitsuns +whitten,whittens +whitterick,whittericks +whittler,whittlers +whittle,whittles +whittle,whittles +whittling,whittlings +whittret,whittrets +whitwall,whitwalls +whit,whits +Whit,Whits +Whitworth gun,Whitworth guns +whity,whities +whiz-bang,whiz-bangs +whizbang,whizbangs +whiz kid,whiz kids +whiz-kid,whiz-kids +whizkid,whizkids +whiz,whizzes +whizz-bang,whizz-bangs +whizzing stick,whizzing sticks +whizz kid,whizz kids +whizzkid,whizzkids +whizz,whizzes +whodunit,whodunits +whodunnit,whodunnits +whole enchilada,whole enchiladas +whole food,whole foods +wholefood,wholefoods +whole-genome duplication,whole-genome duplications +wholegrain,wholegrains +wholeness,wholenesses +whole note,whole notes +whole number,whole numbers +whole package,whole packages +whole rest,whole rests +wholesaler,wholesalers +wholesale,wholesales +whole shebang,whole shebangs +whole step,whole steps +wholetail,wholetails +whole-tone scale,whole-tone scales +whole tone,whole tones +whole,wholes +wholphin,wholphins +whoman,whomen +whoof,whoofs +whoomph,whoomphs +whoop-de-doo,whoop-de-doos +whoopee cushion,whoopee cushions +whoopee pie,whoopee pies +whooper swan,whooper swans +whooper,whoopers +whoopie cushion,whoopie cushions +whoopie pie,whoopie pies +whooping cough,whooping coughs +whooping crane,whooping cranes +whoopsie,whoopsies +whoopsy,whoopsies +whoop,whoops +whoosh,whooshes +whopper,whoppers +whop,whops +whore bath,whore baths +whorehound,whorehounds +whorehouse,whorehouses +whoreling,whorelings +whoremaster,whoremasters +whoremonger,whoremongers +whoreson,whoresons +whore,whores +whoring,whorings +whorler,whorlers +whorl foot,whorl feet +whorl,whorls +whortleberry,whortleberries +whortle,whortles +whort,whorts +whosit,whosits +Whovian,Whovians +who,whos +whuffo,whuffos +whump,whumps +whupping,whuppings +whurt,whurts +whur,whurs +whuss,whusses +wh-word,wh-words +why and wherefore,why and wherefores +whydah,whydahs +whydunit,whydunits +whydunnit,whydunnits +why,whies +why,whys +wiccaning,wiccanings +Wiccaning,Wiccanings +Wiccanism,Wiccanisms +Wiccan,Wiccans +Wichitan,Wichitans +Wichita,Wichitas +WichΓ­,WichΓ­s,WichΓ­ +wich,wichs +wickedness,wickednesses +wicken tree,wicken trees +wicker,wickers +wicket gate,wicket gates +wicketkeeper,wicketkeepers +wicket maiden,wicket maidens +wicket,wickets +wicking,wickings +wickiup,wickiups +Wickliffite,Wickliffites +wicklow,wicklows +wickmaker,wickmakers +wick,wicks +wick,wicks +wick,wicks +wicky,wickies +Widal test,Widal tests +widder,widders +widdy,widdies +widdy,widdies +wide-angle lens,wide-angle lenses +wide area network,wide area networks +wide-awake hat,wide-awake hats +wideawake hat,wideawake hats +wide-awake,wide-awakes +wideawake,wideawakes +wide berth,wide berths +wide-body,wide-bodies +widebody,widebodies +wide boy,wide boys +widener,wideners +widening,widenings +wide-on,wide-ons +wideout,wideouts +wide receiver,wide receivers +widescreen,widescreens +wide shot,wide shots +wide,wides +widgeon,widgeons +widger,widgers +widget,widgets +widget,widgets +widgie,widgies +WidmanstΓ€tten figure,WidmanstΓ€tten figures +WidmanstΓ€tten pattern,WidmanstΓ€tten patterns +widow bird,widow birds +widowbird,widowbirds +widower,widowers +widow maker,widow makers +widow-maker,widow-makers +widowmaker,widowmakers +widow's cruse,widow's cruses +widow's mite,widow's mites +widow's peak,widow's peaks,widows' peaks +widow's walk,widow's walks +widow,widows +width,widths +widwe,widwes +wielder,wielders +wiener breath,wiener breaths +wiener dog,wiener dogs +Wiener filter,Wiener filters +wiener roast,wiener roasts +Wiener schnitzel,Wiener schnitzels +wiener,wieners +wienie,wienies +wier,wiers +wife beater,wife beaters +wife-beater,wife-beaters +wifebeater,wifebeaters +wife-beating question,wife-beating questions +wife-giver,wife-givers +wife-in-law,wives-in-law +wifekin,wifekins +wifelet,wifelets +wifeling,wifelings +wifelkin,wifelkins +wifestyle,wifestyles +wife-taker,wife-takers +wife,wives +wifey,wifeys +wifferdill,wifferdills +WiFier,WiFiers +wifie,wifies +wig block,wig blocks +wigeon,wigeons +wigga,wiggas +wigger,wiggers +wiggery,wiggeries +wigging,wiggings +wiggle dress,wiggle dresses +wiggler,wigglers +wiggle,wiggles +wigg,wiggs +wig head,wig heads +wight,wights +wiglet,wiglets +wigmaker,wigmakers +Wigner energy,Wigner energies +wigwag,wigwags +wigwam,wigwams +wig,wigs +Wiimote,Wiimotes +wike,wikes +wikiholic,wikiholics +wikilink,wikilinks +Wikinewsie,Wikinewsies +Wiking,Wikings +Wikipedian,Wikipedians +Wikipedia,Wikipedias +wikiproject,wikiprojects +wikiup,wikiups +wiki,wikis +Wiktionarian,Wiktionarians +wild animal,wild animals +wild ass,wild asses +wild-ass,wild-asses +wild blueberry,wild blueberries +wild boar,wild boars +wild card,wild cards +wildcard,wildcards +wildcat strike,wildcat strikes +wildcatter,wildcatters +wild cat,wild cats +wildcat,wildcats +wild cherry,wild cherries +wildcrafter,wildcrafters +wildebeest,wildebeest,wildebeests +wildering,wilderings +wildfire,wildfires +wildflower,wildflowers +wildfowl,wildfowls,wildfowl +wild garlic,wild garlics +wild goose chase,wild goose chases +wild-goose chase,wild-goose chases +wild goose,wild geese +wildgrave,wildgraves +wild horse,wild horses +Wild Hunt,Wild Hunts +wilding,wildings +wilding,wildings +wild leek,wild leeks +wildlife crossing,wildlife crossings +wildlife reserve,wildlife reserves +wildlife sanctuary,wildlife sanctuaries +wildling,wildlings +wildman,wildmen +wild pitch,wild pitches +wild purslane,wild purslanes +wild river,wild rivers +wild service tree,wild service trees +wild strawberry,wild strawberries +wild turkey,wild turkeys +wild type,wild types +wild-type,wild-types +wildtype,wildtypes +wild,wilds +wildwood,wildwoods +wile,wiles +wilga,wilgas +wilja,wiljas +wilk,wilks +will contest,will contests +will contract,will contracts +willer,willers +willet,willets +wille,willes +Williamite,Williamites +willie,willies +willing,willings +williwaw,williwaws +will-maker,will-makers +willmaker,willmakers +will of the wisp,will of the wisps +will o' the wisp,will o' the wisps +willower,willowers +willow grouse,willow grouses +willowherb,willowherbs +willow in the wind,willows in the wind +will-o'-wisp,will-o'-wisps +willow ptarmigan,willow ptarmigans +willow tit,willow tits +willow warbler,willow warblers +willow-weed,willow-weeds +willow,willows +willow-wort,willow-worts +will,wills +Will,Wills +willyer,willyers +willywaw,willywaws +willy,willies +willy,willies +willy,willies +willy willy,willy willies +willy-willy,willy-willies +Willy Wix,Willy Wixes +Wilson chamber,Wilson chambers +Wilson's petrel,Wilson's petrels +Wilson's storm petrel,Wilson's storm petrels +wiltja,wiltjas +Wilton,Wiltons +wilt,wilts +wilwe,wilwes +wimble,wimbles +wimbrel,wimbrels +wimple,wimples +wimp,wimps +WIMP,WIMPs +winal,winals +wincer,wincers +wince,winces +Winchellism,Winchellisms +Winchester bushel,Winchester bushels +Winchester measure,Winchester measures +Winchester quart,Winchester quarts +Winchester,Winchesters +winch,winches +wincing,wincings +wincopipe,wincopipes +windbag,windbags +wind band,wind bands +wind-board,wind-boards +windboard,windboards +windbore,windbores +windbreaker,windbreakers +windbreak,windbreaks +windburn,windburns +windcatcher,windcatchers +windcheater,windcheaters +wind chill,wind chills +windchill,windchills +winder,winders +winder,winders +winde,windes +windfall,windfalls +wind farm,wind farms +windfarm,windfarms +windflower,windflowers +windfucker,windfuckers +windgall,windgalls +wind gap,wind gaps +windgap,windgaps +wind harp,wind harps +wind hold,wind holds +wind-hold,wind-holds +windhold,windholds +wind horse,wind horses +windhover,windhovers +Windian,Windians +winding cloth,winding cloths +winding sheet,winding sheets +winding-up,windings-up +wind instrument,wind instruments +windjammer,windjammers +windlace,windlaces +windlass,windlasses +windlestrae,windlestraes +windlestraw,windlestraws +windle,windles +windle,windles +wind machine,wind machines +windmiller,windmillers +windmill restart,windmill restarts +wind mill,wind mills +wind-mill,wind-mills +windmill,windmills +windoid,windoids +windore,windores +window box,window boxes +window cleaner,window cleaners +window detector,window detectors +window-down,window-downs +window dresser,window dressers +window frame,window frames +windowfront,windowfronts +windowful,windowfuls,windowsful +window licker,window lickers +windowmaker,windowmakers +window manager,window managers +window of opportunity,windows of opportunity +windowpane,windowpanes +windowscreen,windowscreens +window seat,window seats +window-seat,window-seats +window-shopper,window-shoppers +window sill,window sills +windowsill,windowsills +Windows key,Windows keys +window treatment,window treatments +window,windows +windpipe,windpipes +windpuff,windpuffs +windpump,windpumps +wind rose,wind roses +windrose,windroses +windrow,windrows +wind scale,wind scales +windscreen washer,windscreen washers +windscreen,windscreens +windscreen wiper,windscreen wipers +windshield time,windshield times +windshield,windshields +windshield wiper,windshield wipers +windsled,windsleds +wind sock,wind socks +windsock,windsocks +Windsor knot,Windsor knots +wind speed,wind speeds +windspeed,windspeeds +windstorm,windstorms +windsucker,windsuckers +windsurfer,windsurfers +wind swell,wind swells +windthrow,windthrows +wind tunnel,wind tunnels +wind turbine,wind turbines +winduh,winduhs +wind-up merchant,wind-up merchants +wind up,wind ups +wind-up,wind-ups +windup,windups +Windward Islander,Windward Islanders +wind,winds +windy,windies +winebag,winebags +wine bar,wine bars +winebar,winebars +wineberry,wineberries +winebibber,winebibbers +wine bottle,wine bottles +winebox,wineboxes +wine cellar,wine cellars +wine cooler,wine coolers +wine cooper,wine coopers +winecup,winecups +wineglassful,wineglassfuls,wineglassesful +wine glass,wine glasses +wineglass,wineglasses +wine grape,wine grapes +winegrape,winegrapes +winegrower,winegrowers +wine gum,wine gums +wine key,wine keys +wine list,wine lists +winelist,winelists +winemaker,winemakers +wine moth,wine moths +wine palm,wine palms +winepress,winepresses +wine rack,wine racks +winery,wineries +wineshop,wineshops +wineskin,wineskins +winesop,winesops +winetaster,winetasters +wine thief,wine thieves +wine tosser,wine tossers +wine vinegar,wine vinegars +wine-whine merger,wine-whine mergers +wing attack,wing attacks +wing back,wing backs +wing-back,wing-backs +wingback,wingbacks +wingbase,wingbases +wingbeat,wingbeats +wingcase,wingcases +wing chair,wing chairs +wing commander,wing commanders +Wing Commander,Wing Commanders +wing corkscrew,wing corkscrews +wingco,wingcos +wing defence,wing defences +wingding,wingdings +winged bean,winged beans +winger,wingers +wingette,wingettes +wingfish,wingfishes,wingfish +winghead shark,winghead sharks +winghead,wingheads +wing in ground effect,wing in ground effects +winglet,winglets +wingman,wingmen +wingmate,wingmates +wing mirror,wing mirrors +wing nut,wing nuts +wingnut,wingnuts +wingover,wingovers +wing-play,wing-plays +wing-shell,wing-shells +wingspan,wingspans +wingspot,wingspots +wingspread,wingspreads +wingstroke,wingstrokes +wingsuit,wingsuits +wingtip,wingtips +wing,wings +winker,winkers +Winkey,Winkeys +winkfest,winkfests +winkie,winkies +winking monkey,winking monkeys +winkle picker,winkle pickers +winkle-picker,winkle-pickers +Winkler bottle,Winkler bottles +winkle,winkles +wink,winks +winky,winkies +Winmodem,Winmodems +winnard,winnards +Winnebago,Winnebagos,Winnebagoes +winners' rostrum,winners' rostrums +winner,winners +winnet,winnets +winne,winnes +winning hazard,winning hazards +winning post,winning posts +winning streak,winning streaks +winning,winnings +Winnipeg couch,Winnipeg couches +Winnipegger,Winnipeggers +Winnipeg goldeye,Winnipeg goldeye,Winnipeg goldeyes +winnower,winnowers +winnowing basket,winnowing baskets +winnowing fan,winnowing fans +winnowing machine,winnowing machines +winnowing,winnowings +winnow sheet,winnow sheets +winnow,winnows +Winogradsky test,Winogradsky tests +wino,winos +wino,winos +winrow,winrows +wintard,wintards +winter aconite,winter aconites +winterberry,winterberries +winterbourne,winterbournes +winter break,winter breaks +winter cherry,winter cherries +winter coat,winter coats +wintercreeper,wintercreepers +winterer,winterers +wintergreen,wintergreens +winter kill,winter kills +winterkill,winterkills +winter melon,winter melons +Winter Olympian,Winter Olympians +winterover,winterovers +winter rat,winter rats +winter solstice,winter solstices +winter sport,winter sports +winter squash,winter squashes +winter storm,winter storms +winter swimmer,winter swimmers +wintertide,wintertides +wintertime,wintertimes +winter,winters +winter worm,winter worms +wintler,wintlers +Wintonian,Wintonians +wintry shower,wintry showers +Wintun,Wintuns,Wintun +win,wins +win,wins +winze,winzes +wipe-out,wipe-outs +wipeout,wipeouts +wiper,wipers +wipe,wipes +wipe,wipes +wiphala,wiphalas +wiping,wipings +wire bail,wire bails +wirebird,wirebirds +wire brush,wire brushes +wire fox terrier,wire fox terriers +wire frame,wire frames +wire-frame,wire-frames +wireframe,wireframes +wire fraud,wire frauds +wire gauze,wire gauzes +wirehair,wirehairs +wirehead,wireheads +wirehouse,wirehouses +wireless adapter,wireless adapters +wireless cable,wireless cables +wireless modem,wireless modems +wireless network,wireless networks +wireless operator,wireless operators +wireless telegraphy,wireless telegraphies +wireless,wirelesses +wireline,wirelines +wiremaker,wiremakers +wireman,wiremen +wire netting,wire nettings +wire recorder,wire recorders +wire rope,wire ropes +wirer,wirers +wiresmith,wiresmiths +wire speed,wire speeds +wiretapper,wiretappers +wiretap,wiretaps +wire transfer,wire transfers +wirewalker,wirewalkers +wireworker,wireworkers +wireworm,wireworms +wiring diagram,wiring diagrams +Wirralian,Wirralians +wisard,wisards +Wisconsinite,Wisconsinites +wisdom tooth,wisdom teeth +wiseacre,wiseacres +wise apple,wise apples +wise-apple,wise-apples +wiseapple,wiseapples +wise-ass,wise-asses +wiseass,wiseasses +wisecracker,wisecrackers +wisecrack,wisecracks +wise gal,wise gals +wise guy,wise guys +wise-guy,wise-guys +wiseguy,wiseguys +wisehead,wiseheads +wiseling,wiselings +wise man,wise men +wiseman,wisemen +wisenheimer,wisenheimers +wisent,wisents +wise,wises +wishbone flower,wishbone flowers +wishbone,wishbones +wishbook,wishbooks +wisher,wishers +wishe,wishes +wish fulfilment,wish fulfilments +wishing well,wishing wells +wish list,wish lists +wishlist,wishlists +wishtonwish,wishtonwishes +wish,wishes +wisket,wiskets +wisp,wisps +wistaria,wistarias +wistiti,wistitis +wistonwish,wistonwishes +witan,witans +witch ball,witch balls +witchball,witchballs +witch doctor,witch doctors +witch-elm,witch-elms +witcher,witchers +witches' brew,witches' brews +witches' Sabbath,witches' Sabbaths +witchetty grub,witchetty grubs +witchety grub,witchety grubs +witchfinder,witchfinders +witchgrass,witchgrasses +witch-hazel cone gall aphid,witch-hazel cone gall aphids +witch hunt,witch hunts +witch-hunt,witch-hunts +witchhunt,witchhunts +witching hour,witching hours +witchling,witchlings +witchuck,witchucks +witchweed,witchweeds +witch,witches +witch,witches +wit-cracker,wit-crackers +witenagemote,witenagemotes +witenagemot,witenagemots +wite,wites +witfish,witfishes,witfish +withdraught,withdraughts +withdrawal symptom,withdrawal symptoms +withdrawal,withdrawals +withdrawer,withdrawers +withdrawing room,withdrawing rooms +withdrawl,withdrawls +witherling,witherlings +witherling,witherlings +withername,withernames +withernam,withernams +withersake,withersakes +witherweight,witherweights +witherwin,witherwins +withe,withes +withholder,withholders +withholding tax,withholding taxes +withsaw,withsaws +withsayer,withsayers +withstander,withstanders +withthrow,withthrows +withwind,withwinds +with,withs +withywind,withywinds +withy,withies +witigo,witigos +witless wonder,witless wonders +witling,witlings +witloof,witloofs +witness box,witness boxes +witnesser,witnessers +witnesse,witnesses +witness mark,witness marks +witness stand,witness stands +witness,witnesses +wit's end,wits' ends +wits' end,wits' ends +wittering,witterings +Wittgensteinian,Wittgensteinians +witticism,witticisms +witticist,witticists +wittol,wittols +witwall,witwalls +witwanton,witwantons +wit,wits +witworm,witworms +wivern,wiverns +wiver,wivers +wizardess,wizardesses +wizardling,wizardlings +wizard,wizards +wiz,wizzes +wizzard,wizzards +wkend,wkends +w**ker,w**kers +w**k,w**ks +WLRG,WLRGs +WMA,WMAs +WMD,WMDs +WMV,WMVs +WNBAer,WNBAers +w*nker,w*nkers +w*nk,w*nks +woad-waxen,woad-waxens +woald,woalds +wobbegong,wobbegongs +wobble board,wobble boards +wobbler,wobblers +wobble,wobbles +wobbling,wobblings +wobbly,wobblies +Wobbly,Wobblies +wobla,woblas +wobulator,wobulators +wodge,wodges +woefare,woefares +woe,woes +wofare,wofares +woggle,woggles +wog,wogs +wog,wogs +wog,wogs +wog,wogs +wog,wogs +Wohl-Ziegler reaction,Wohl-Ziegler reactions +woid,woids +wokou,wokous +wok,woks +wolder,wolders +wold,wolds +wolfbane,wolfbanes +wolfberry,wolfberries +wolfcoat,wolfcoats +wolf cub,wolf cubs +wolfcub,wolfcubs +Wolf Cub,Wolf Cubs +wolf dog,wolf dogs +wolfdog,wolfdogs +wolfe,wolfes +Wolffian duct,Wolffian ducts +wolffish,wolffishes,wolffish +wolf hook,wolf hooks +wolfhound,wolfhounds +wolfkin,wolfkins +wolfling,wolflings +wolfman,wolfmen +wolf pack,wolf packs +wolf-pack,wolf-packs +wolfpack,wolfpacks +wolframate,wolframates +Wolf-Rayet star,Wolf-Rayet stars +wolfsangel,wolfsangels +wolfsbane,wolfsbanes +wolf spider,wolf spiders +wolf whistle,wolf whistles +wolf-whistle,wolf-whistles +wolf,wolves +Wollaston prism,Wollaston prisms +Wollemi pine,Wollemi pines +Wollof,Wollofs +Wolof,Wolofs +wolpertinger,wolpertingers +wolphin,wolphins +wolven,wolven +wolverene,wolverenes +wolverine,wolverines +Wolverine,Wolverines +woman cave,woman caves +womance,womances +woman-child,woman-children +woman child,woman children,women children +womanhunt,womanhunts +womaniser,womanisers +womanist,womanists +womanizer,womanizers +woman of letters,women of letters +woman of means,men of means +woman of size,women of size +womanservant,womenservants +womanthrope,womanthropes +woman,women +wombat,wombats +wombgate,wombgates +womble,wombles +Womble,Wombles +wombmate,wombmates +womb,wombs +women's libber,women's libbers +women's refuge,women's refuges +women's room,women's rooms +women's shelter,women's shelters +womyn,womyn,wymyn +wonderberry,wonderberries +wonderboy,wonderboys +wonderbra,wonderbras +wonderbread,wonderbreads +wonderchild,wonderchildren +wonderdrug,wonderdrugs +wonderer,wonderers +wondergoal,wondergoals +wondering,wonderings +wonderland,wonderlands +wonder of the world,wonders of the world +wonder,wonders +wonder,wonders +Wonder,Wonders +wonderworker,wonderworkers +wonderwork,wonderworks +wonderworld,wonderworlds +wone,wones +wone,wones +wone,wones +wonger,wongers +wong,wongs +woning,wonings +wonkfest,wonkfests +wonk,wonks +wonky hole,wonky holes +won ton,won tons +wonton,wontons +won,won +woobie,woobies +wood anemone,wood anemones +wood anniversary,wood anniversaries +wood apple,wood apples +woodbind,woodbinds +woodbine,woodbines +Woodbine,Woodbines +woodbin,woodbins +wood block,wood blocks +woodblock,woodblocks +woodbox,woodboxes +Woodburytype,Woodburytypes +woodcarver,woodcarvers +woodcarving,woodcarvings +woodchat,woodchats +woodchipper,woodchippers +woodchipping,woodchippings +woodchip wallpaper,woodchip wallpapers +wood chip,wood chips +wood-chip,wood-chips +woodchip,woodchips +woodchopper,woodchoppers +woodchuck,woodchucks +woodcock,woodcock,woodcocks +woodcracker,woodcrackers +woodcraft,woodcrafts +woodcreeper,woodcreepers +woodcutter,woodcutters +woodcut,woodcuts +wood drake,wood drakes +wood duck,wood ducks +wood-elf,wood-elves +wooden anniversary,wooden anniversaries +wooden kimono,wooden kimonos +wooden spooner,wooden spooners +wooden spoon,wooden spoons +wooden-top,wooden-tops +woodentop,woodentops +wood fern,wood ferns +woodfern,woodferns +Woodford's rail,Woodford's rails +wood garlic,wood garlics +wood grouse,wood grouses +woodhacker,woodhackers +woodhack,woodhacks +woodhen,woodhens +woodhole,woodholes +woodhoopoe,woodhoopoes +wood horsetail,wood horsetails +woodhouse,woodhouses +woodie,woodies +woodknacker,woodknackers +woodlander,woodlanders +woodland,woodlands +woodlark,woodlarks +wood lemming,wood lemmings +woodline,woodlines +wood lot,wood lots +woodlot,woodlots +woodlouse spider,woodlouse spiders +woodlouse,woodlice +woodman,woodmen +woodmonger,woodmongers +wood mouse,wood mice +woodmouse,woodmice +woodnewer,woodnewers +woodnymph,woodnymphs +wood-oil,wood-oils +woodpeckerologist,woodpeckerologists +woodpecker,woodpeckers +woodpeck,woodpecks +wood pewee,wood pewees +wood pigeon,wood pigeons +woodpigeon,woodpigeons +woodpile,woodpiles +woodpusher,woodpushers +wood pussy,wood pussies +wood rail,wood rails +woodrat,woodrats +woodroof,woodroofs +woodrush,woodrushes +wood sandpiper,wood sandpipers +woods colt,woods colts +wood screw,wood screws +woodscrew,woodscrews +woodshaving,woodshavings +woodshed,woodsheds +woodshifter,woodshifters +woodshock,woodshocks +wood shop,wood shops +woodshop,woodshops +woodsia,woodsias +woodside,woodsides +woodsman,woodsmen +wood sorrel,wood sorrels +woodsorrel,woodsorrels +woodstove,woodstoves +wood strawberry,wood strawberries +woodswoman,woodswomen +woodturner,woodturners +wood turtle,wood turtles +woodwall,woodwalls +woodwardia,woodwardias +woodward,woodwards +wood wasp,wood wasps +woodwasp,woodwasps +wood white,wood whites +woodwind instrument,woodwind instruments +woodwind,woodwinds +wood,woods +woodworker,woodworkers +woodworm,woodworms +woodwose,woodwoses +woody nightshade,woody nightshades +woody pear,woody pears +woody,woodies +wooer,wooers +woofell,woofells +woofer,woofers +woof,woofs +woof,woofs +woohoo,woohoos +wooing,wooings +Wookiee,Wookiees,Wookies +Wookie,Wookies +wool classer,wool classers +wool clip,wool clips +woolder,woolders +woolding,wooldings +woolen,woolens +woolert,woolerts +wooley back,wooley backs +woolfell,woolfells +woolfel,woolfels +woolgatherer,woolgatherers +woolgrower,woolgrowers +woolhall,woolhalls +woolhat,woolhats +woolhead,woolheads +woollen,woollens +woolly adelgid,woolly adelgids +woolly back,woolly backs +woollyback,woollybacks +woolly bear,woolly bears +woollybutt,woollybutts +woolly mammoth,woolly mammoths +woolly,woolies +woolly,woollies +woolly worm,woolly worms +woolman,woolmen +woolpack,woolpacks +woolsack,woolsacks +woolshed,woolsheds +woolskin,woolskins +wool sorter,wool sorters +woolsorter,woolsorters +wool stapler,wool staplers +woolstock,woolstocks +woolyback,woolybacks +wooly bear,wooly bears +wooly mammoth,wooly mammoths +wooly,woolies +wooly worm,wooly worms +woomera,woomeras +woo-monger,woo-mongers +woonerf,woonerfs,woonerven +woopie,woopies +woo woo,woo woos +wooyen,wooyens +wop,wops +worble,worbles +worcesterberry,worcesterberries +wordaholic,wordaholics +word association,word associations +word blindness,word blindnesses +wordbook,wordbooks +word count,word counts +wordcount,wordcounts +word divider,word dividers +worder,worders +worde,wordes +wordfest,wordfests +word formation,word formations +word-formation,word-formations +word game,word games +wordgame,wordgames +word-hoard,word-hoards +wordhoard,wordhoards +wordie,wordies +word ladder,word ladders +wordle,wordles +word list,word lists +wordlist,wordlists +wordmaker,wordmakers +wordmark,wordmarks +wordmonger,wordmongers +wordnet,wordnets +word of honor,words of honor +word of honour,words of honour +wordoid,wordoids +word play,word plays +wordplay,wordplays +wordpool,wordpools +word problem,word problems +word processor,word processors +wordprocessor,wordprocessors +word salad,word salads +word search,word searches +wordshaping,wordshapings +wordsman,wordsmen +wordsmith,wordsmiths +word space,word spaces +word square,word squares +wordstock,wordstocks +Wordsworthian,Wordsworthians +word to the wise,words to the wise +word,words +woreda,woredas +workability,workabilities +workaholic,workaholics +workalike,workalikes +workaround,workarounds +workbag,workbags +workbasket,workbaskets +workbench,workbenches +workboat,workboats +workbook,workbooks +workboot,workboots +workbox,workboxes +workcamper,workcampers +work camp,work camps +workcamp,workcamps +workcation,workcations +workday,workdays +work envelope,work envelopes +worker bee,worker bees +worker,workers +work ethic,work ethics +worke,workes +workfellow,workfellows +workflow,workflows +workforce,workforces +work function,work functions +workfunction,workfunctions +workgang,workgangs +workgroup,workgroups +workhorse,workhorses +work house,work houses +workhouse,workhouses +work husband,work husbands +working animal,working animals +working class,working classes +working day,working days +working dog,working dogs +working end,working ends +working family,working families +working farm,working farms +working girl,working girls +working group,working groups +working majority,working majorities +workingman,workingmen +working mass,working masses +working part,working parts +working sail,working sails +working-storage section,working-storage sections +working time,working times +working title,working titles +working week,working weeks +workingwoman,workingwomen +working,workings +work-life balance,work-life balances +workling,worklings +worklist,worklists +workload,workloads +workloom,worklooms +workman,workmen +work marriage,work marriages +workmaster,workmasters +workmate,workmates +worknight,worknights +work of art,works of art +work of fiction,works of fiction +work order,work orders +workout warrior,workout warriors +workout,workouts +workover,workovers +work permit,work permits +workperson,workpersons,workpeople +workpiece,workpieces +work placement,work placements +workplace nursery,workplace nurseries +workplace,workplaces +workprint,workprints +workroom,workrooms +works council,works councils +workscreen,workscreens +worksheet,worksheets +workshirt,workshirts +workshoe,workshoes +workshop,workshops +worksite,worksites +work song,work songs +workspace,workspaces +work spouse,work spouses +work station,work stations +workstation,workstations +workstead,worksteads +works team,works teams +workstrand,workstrands +workstream,workstreams +work surface,work surfaces +worksurface,worksurfaces +worktable,worktables +worktext,worktexts +worktop,worktops +work-to-rule,work-to-rules +workup,workups +workweek,workweeks +work wife,work wives +workwoman,workwomen +workword,workwords +work zone,work zones +world-beater,world-beaters +worldbeater,worldbeaters +worldbuilder,worldbuilders +world car,world cars +world champion,world champions +world clock,world clocks +world cup,world cups +World Cup,World Cups +worlde,worldes +World Exposition,World Expositions +World Heritage site,World Heritage sites +World Heritage Site,World Heritage Sites +worldhood,worldhoods +worldkin,worldkins +world leader,world leaders +world line,world lines +worldline,worldlines +worldling,worldlings +world music,world musics +world order,world orders +world phone,world phones +world picture,world pictures +world power,world powers +world record,world records +world religion,world religions +worldriche,worldriches +worldsheet,worldsheets +world-soul,world-souls +World Soul,World Souls +World-Soul,World-Souls +world's soul,world's souls +world trade center,world trade centers +World Turtle,World Turtles +world view,world views +world-view,world-views +worldview,worldviews +worldvolume,worldvolumes +world war,world wars +world-war,world-wars +world-weariness,world-wearinesses +worldwisdom,worldwisdoms +wormal,wormals +worm and wheel,worms and wheels +worm burner,worm burners +wormcast,wormcasts +worm drive,worm drives +wormery,wormeries +wormfish,wormfishes +wormhole,wormholes +Wormian bone,Wormian bones +wormil,wormils +wormlet,wormlets +wormling,wormlings +worm lizard,worm lizards +wormseed,wormseeds +worm's-eye view,worm's-eye views +worm-shell,worm-shells +wormskin,wormskins +wormul,wormuls +wormwood,wormwoods +worm,worms +WORM,WORMs +wornil,wornils +worral,worrals +worrier,worriers +worriment,worriments +worrit,worrits +worryguts,worryguts +worry line,worry lines +worryment,worryments +worry wart,worry warts +worry-wart,worry-warts +worrywart,worrywarts +worry,worries +worsening,worsenings +worshiper,worshipers +worshipper,worshippers +Worship,Worships +worst case scenario,worst case scenarios +wors,wors +worthy,worthies +wort,worts +wotsit,wotsits +would-be,would-bes +woulder,woulders +woulding,wouldings +Woulfe bottle,Woulfe bottles +wounder,wounders +wounding,woundings +wound rotor,wound rotors +woundwort,woundworts +wound,wounds +wou-wou,wou-wous +woven,wovens +wowke,wowkes +wo,wos +wowser,wowsers +wow,wows +wow-wow,wow-wows +wowzer,wowzers +woylie,woylies +WPC,WPCs +WPT,WPTs +wrack,wracks +wrack,wracks +wraith,wraiths +wrake,wrakes +wramp,wramps +wrangler,wranglers +wrangle,wrangles +wrangling,wranglings +wrannock,wrannocks +wranny,wrannies +wraparound host,wraparound hosts +wraparound,wraparounds +wrapper class,wrapper classes +wrapper,wrappers +wrapping,wrappings +wraprascal,wraprascals +wrap-up,wrap-ups +wrapup,wrapups +wrap,wraps +wrasse,wrasses +wratch,wratches +wreaker,wreakers +wreaking,wreakings +wreak,wreaks +wreath,wreaths +wrecker's yard,wreckers' yards +wrecker,wreckers +wreckfish,wreckfishes,wreckfish +wrecking amendment,wrecking amendments +wrecking ball,wrecking balls +wrecking car,wrecking cars +wrecking pump,wrecking pumps +wrecking yard,wrecking yards +wreckmaster,wreckmasters +wreck,wrecks +wreck yard,wreck yards +wrencher,wrenchers +wrenching,wrenchings +wrench,wrenches +wrength,wrengths +wren,wrens +Wren,Wrens +wrest block,wrest blocks +wrest-block,wrest-blocks +wrester,wresters +wrestler,wrestlers +wrestle,wrestles +wrest,wrests +wretche,wretches +wretchock,wretchocks +wretch,wretches +wrick,wricks +wriggler,wrigglers +wriggle,wriggles +wright,wrights +wrine,wrines +wringer,wringers +wringle-wrangle,wringle-wrangles +wrinkler,wrinklers +wrinkle,wrinkles +wrinkle,wrinkles +wrinkly,wrinklies +wrist band,wrist bands +wristband,wristbands +wrister,wristers +wristguard,wristguards +wristlet,wristlets +wristlock,wristlocks +wristpad,wristpads +wristphone,wristphones +wrist rest,wrist rests +wrist shot,wrist shots +wrist spinner,wrist spinners +wrist spin,wrist spins +wriststrap,wriststraps +wristwarmer,wristwarmers +wristwatch,wristwatches +wrist,wrists +writeback,writebacks +write-down,write-downs +writedown,writedowns +write head,write heads +write-in,write-ins +write-off,write-offs +writeoff,writeoffs +writeress,writeresses +writer's block,writer's blocks +writership,writerships +writer,writers +writethrough,writethroughs +write-up,write-ups +writeup,writeups +write,writes +writhe,writhes +writhing,writhings +writing desk,writing desks +writing pad,writing pads +writing system,writing systems +writ of assistance,writs of assistance +writ of mandamus,writs of mandamus +writ-room,writ-rooms +written statement of employment,written statements of employment +writ,writs +wrongdoer,wrongdoers +wronger,wrongers +wrongful birth,wrongful births +wrongful death statute,wrongful death statutes +wrongful dismissal,wrongful dismissals +wrong-headedness,wrong-headednesses +wronghead,wrongheads +wrong number,wrong numbers +wrong rook pawn,wrong rook pawns +wrong 'un,wrong 'uns +wrong'un,wrong'uns +wrong-way concurrency,wrong-way concurrencies +wrong,wrongs +wroo,wroos +wrought iron,wrought irons +WRPG,WRPGs +WRT,WRTs +WR,WRs +wrybill,wrybills +wrymouth,wrymouths +wryneck,wrynecks +WSDL,WSDLs +w-shingling,w-shinglings +WTK,WTKs +wubber,wubbers +wub,wubs +wuffle,wuffles +wuffo,wuffos +wug word,wug words +Wuhanese,Wuhanese +wumpus,wumpuses +wunderkammer,wunderkammers +Wunderkammer,Wunderkammers,Wunderkammern +wunderkind,wunderkinder,wunderkinds +wunner,wunners +wurbagool,wurbagools +wurly,wurlies +wurmal,wurmals +wurst,wursts +wΓΌrst,wΓΌrsts +wussette,wussettes +wuss,wusses,wussies +wussy,wussies +wustite,wustites +wΓΌstite,wΓΌstites +wus,wusses +Wu-Tanger,Wu-Tangers +wuttagoonaspid,wuttagoonaspids +wu,wus +w-word,w-words +wyakin,wyakins +wyandotte,wyandottes +Wyandotte,Wyandottes +Wyandot,Wyandots +wyartite,wyartites +wych-elm,wych-elms +Wycliffite,Wycliffites +Wyclifite,Wyclifites +wyde,wydes +wye level,wye levels +wye switch,wye switches +wye,wyes +wye,wyes +wyfe,wyves +wyf,wyfs +Wykehamist,Wykehamists +wyke,wykes +wynd,wynds +wynn,wynns +wynn,wynns +wyn,wyns +wynyardiid,wynyardiids +Wyomingite,Wyomingites +wype,wypes +wyrd,wyrds +wyre,wyres +wyrm,wyrms +WYSIWYG,WYSIWYGs +wytch,wytches +wythe,wythes +wyvern,wyverns +wy,wyes +xalam,xalams +XAND,XANDs +xanthamide,xanthamides +xantham,xanthams +xanthan,xanthans +xanthate,xanthates +xanthation,xanthations +xanthelasma,xanthelasmas,xanthelasmata +xanthene dye,xanthene dyes +xanthene,xanthenes +Xanthian,Xanthians +xanthide,xanthides +xanthid,xanthids +xanthine oxidase,xanthine oxidases +xanthine,xanthines +xanthin,xanthins +Xanthippe,Xanthippes +xanthite,xanthites +xanthoastrocytoma,xanthoastrocytomas +xanthobacter,xanthobacters +xanthochrome,xanthochromes +xanthoderma,xanthodermas +xanthoderm,xanthoderms +xanthodont,xanthodonts +xanthogenate,xanthogenates +xanthogen,xanthogens +xanthogranuloma,xanthogranulomas,xanthogranulomata +xanthomatosis,xanthomatoses +xanthoma,xanthomas,xanthomata +xanthomonad,xanthomonads +xanthophore,xanthophores +xanthophyte,xanthophytes +xanthoproteate,xanthoproteates +xanthoprotein,xanthoproteins +xanthorrhoea,xanthorrhoeas +xanthoxenite,xanthoxenites +xanthuria,xanthurias +xanthyl,xanthyls +Xantippe,Xantippes +xantusid,xantusids +xantusiid,xantusiids +xarifiid,xarifiids +xat,xats +Xavierian,Xavierians +Xavierite,Xavierites +x-axis,x-axes +X boson,X bosons +xbow,xbows +Xboxer,Xboxers +X-box,X-boxes +X-chair,X-chairs +X chromosome,X chromosomes +X-chromosome,X-chromosomes +xebec,xebecs +xeme,xemes +xenacanthid,xenacanthids +xenagogue,xenagogues +xenagogy,xenagogies +Xenaphile,Xenaphiles +xenarthran,xenarthrans +xenate,xenates +xenavidin,xenavidins +Xena,Xenas +xenicid,xenicids +xeniid,xeniids +xenismos,xenismoi +xenisthmid,xenisthmids +xenoandrogen,xenoandrogens +xenoantigen,xenoantigens +xenobiologist,xenobiologists +xenobiont,xenobionts +xenobiotic,xenobiotics +xenoblast,xenoblasts +xenoceltitid,xenoceltitids +xenocide,xenocides +xenocryst,xenocrysts +xenodiagnosis,xenodiagnoses +xenodiscid,xenodiscids +xenodocheion,xenodocheia +xenodochium,xenodochia +xenoestrogen,xenoestrogens +xenogenesis,xenogeneses +xenoglossy,xenoglossies +xenograft,xenografts +xenohormone,xenohormones +xenolith,xenoliths +xenologue,xenologues +xenolog,xenologs +xenomorph,xenomorphs +xenon flash lamp,xenon flash lamps +xenon hexafluoroplatinate,xenon hexafluoroplatinates +xenonym,xenonyms +xenoparasite,xenoparasites +xenopeltid,xenopeltids +Xenophanes,Xenophaneses +xenophile,xenophiles +xenophobe,xenophobes +xenophobiac,xenophobiacs +xenophobian,xenophobians +xenophobia,xenophobias +xenophobic,xenophobics +xenophone,xenophones +xenophora,xenophoras,xenophorae +xenophorid,xenophorids +xenophyophore,xenophyophores +xenophyte,xenophytes +xenopid,xenopids +xenosaurid,xenosaurids +xenosome,xenosomes +xenotransplantation,xenotransplantations +xenotransplant,xenotransplants +xenoturbellid,xenoturbellids +xenozoonosis,xenozoonoses +xenurine,xenurines +xerafin,xerafins +xeralf,xeralfs +xerand,xerands +xeranthemum,xeranthemums +xeraphim,xeraphims +xeraphin,xeraphins +xerclod,xerclods +xerept,xerepts +xerert,xererts +xeriff,xeriffs +xerif,xerifs +xeriscaper,xeriscapers +xeriscape,xeriscapes +xerocopy,xerocopies +xeroderma,xerodermas +xerofluvent,xerofluvents +xerogel,xerogels +xerogram,xerograms +xerograph,xerographs +Xeroid,Xeroids +xeroll,xerolls +xeromammogram,xeromammograms +xeroma,xeromas +xeromorph,xeromorphs +xerophagy,xerophagies +xerophile,xerophiles +xerophthalmia,xerophthalmias +xerophyte,xerophytes +xerophytic,xerophytics +xeropsamment,xeropsamments +xeroradiogram,xeroradiograms +xeroradiograph,xeroradiographs +xerorthent,xerorthents +xerosere,xeroseres +xerosis,xeroses +xerothermic period,xerothermic periods +xerox copy,xerox copies +xeroxer,xeroxers +xerox,xeroxes +Xerox,Xeroxes +xerult,xerults +Xer,Xers +xestospongin,xestospongins +xesturgy,xesturgies +x factor,x factors +x-factor,x-factors +X factor,X factors +X-factor,X-factors +xfer,xfers +x-height,x-heights +Xian,Xians +xiaolongbao,xiaolongbaos +Xibalban,Xibalbans +xi baryon,xi baryons +Xicana,Xicanas +Xicano,Xicanos +xinesi,xinesis +Xingjiangi,Xingjiangis +xing,xings +xingzhongite,xingzhongites +x-intercept,x-intercepts +xiphihumeralis,xiphihumeralises +xiphiid,xiphiids +xiphioid,xiphioids +xiphiplastron,xiphiplastrons,xiphiplastra +xiphisternum,xiphisterna +xiphocentronid,xiphocentronids +xiphodontid,xiphodontids +xiphodon,xiphodons +xiphoid process,xiphoid processes +xiphoid,xiphoids +xiphopagus,xiphopagi +xiphosauran,xiphosaurans +xiphosuran,xiphosurans +xiphosure,xiphosures +xiphosurid,xiphosurids +xiphos,xiphoses,xiphoi +xiphydriid,xiphydriids +Xixime,Xiximes +xi,xis +XI,XIs +X-junction,X-junctions +X-linked gene,X-linked genes +X-linked trait,X-linked traits +X mark,X marks +Xmas,Xmases +XNAND,XNANDs +XNA,XNAs +xoanon,xoana +xoconostle,xoconostles +Xokleng,Xoklengs,Xokleng +Xoloitzcuintle,Xoloitzcuintles +Xoloitzcuintli,Xoloitzcuintli +Xolo,Xolos +xorn,xorns,xorn +xor,xors +XOR,XORs +XPer,XPers +X-Phile,X-Philes +X-ray absorbing glass,X-ray absorbing glasses +X-ray astronomy,X-ray astronomys +X-ray binary,X-ray binaries +X-ray fluorescence,X-ray fluorescences +X-ray microscope,X-ray microscopes +X-ray photograph,X-ray photographs +X-ray spectrometer,X-ray spectrometers +X-ray telescope,X-ray telescopes +X-ray tetra,X-ray tetras +X-ray therapy,X-ray therapies +X-ray tube,X-ray tubes +x-ray vision,x-ray visions +X-ray vision,X-ray visions +x-ray,x-rays +X-ray,X-rays +X-ring,X-rings +X-stool,X-stools +X-stretcher,X-stretchers +xtal,xtals +XTM,XTMs +Xueta,Xuetes +xu,xus +xword puzzle,xword puzzles +X,Xes +X,Xs +xyelid,xyelids +xylanase,xylanases +xylanohydrolase,xylanohydrolases +xylan,xylans +xylate,xylates +xylem,xylems +xylene,xylenes +xylidine,xylidines +xylite,xylites +xylocopid,xylocopids +xylofuranoside,xylofuranosides +xylogalacturonan,xylogalacturonans +xyloglucanase,xyloglucanases +xyloglucan,xyloglucans +xylographer,xylographers +xylograph,xylographs +xyloid jasper,xyloid jaspers +xyloketal,xyloketals +xylol,xylols +xylo-marimba,xylo-marimbas +xylomarimba,xylomarimbas +xylometer,xylometers +xylomyid,xylomyids +xylophagan,xylophagans +xylophage,xylophages +xylophagid,xylophagids +xylophone,xylophones +xylophonist,xylophonists +xylopyranose,xylopyranoses +xylopyranoside,xylopyranosides +xylopyranosyl,xylopyranosyls +xylorimba,xylorimbas +xylorutinoside,xylorutinosides +xyloryctid,xyloryctids +xylosidase,xylosidases +xyloside,xylosides +xylostroma,xylostromata +xylosylfructose,xylosylfructoses +xylosylfructoside,xylosylfructosides +xylosylprotein,xylosylproteins +xylosyltransferase,xylosyltransferases +xylotomist,xylotomists +xylo,xylos +xylulose,xyluloses +xylylene,xylylenes +xylyl,xylyls +xyrid,xyrids +xyris,xyrises +xystarch,xystarchs +xyster,xysters +xystodesmid,xystodesmids +xyston,xystons +xystos,xystoi +xystus,xysti +xyst,xysts +yaar,yaars +yaa,yaas +yabbie,yabbies +yabbut,yabbuts +yabby,yabbies +Yabim,Yabims +yacare,yacares +yacca,yaccas +yacca,yaccas +yachter,yachters +yachtful,yachtfuls,yachtsful +yachtie,yachties +yachting,yachtings +yachtman,yachtmen +yachtsmanship,yachtsmanships +yachtsman,yachtsmen +yachtsperson,yachtspersons,yachtspeople +yachtswoman,yachtswomen +yacht,yachts +yachty,yachties +yacker,yackers +yackety-yak,yackety-yaks +yack,yacks +yadda,yaddas +yad,yads,yadim +yaffingale,yaffingales +yaffler,yafflers +yaffle,yaffles +yager,yagers +Yagi antenna,Yagi antennas +Yagi-Uda antenna,Yagi-Uda antennas +yagi,yagis +yagona,yagonas +yagouaroundi,yagouaroundis +yaguarondi,yaguarondis +yaguarundi,yaguarundis +yahoo,yahoos +Yahoo,Yahoos +Yahoo,Yahoos +yahrtzeit,yahrtzeits +yahrzeit,yahrzeits +Yahtzee,Yahtzees +yah,yahs +yaird,yairds +yajna,yajnas +yakalo,yakalos +yakamik,yakamiks +yakety-yak,yakety-yaks +yakfest,yakfests +Yakima,Yakima,Yakimas +yakin,yakin,yakins +yakisoba,yakisobas +yakitori,yakitori +yakity-yak,yakity-yaks +yakker,yakkers +Yakoot,Yakoots +yaksha,yakshas +Yakut,Yakuts +yakuza,yakuza +yak,yaks +yak,yaks +yale,yales +Yalie,Yalies +yali,yalis +yaller dog,yaller dogs +yamamomo,yamamomo +yamboo,yamboos +yamen,yamens +yammerer,yammerers +yampah,yampahs +yampa,yampas +yampee,yampees +yamp,yamps +yamstchik,yamstchiks +yamstick,yamsticks +yamun,yamuns +yam,yams +yam,yams +yandere,yandere +yandy,yandies +yangban,yangbans,yangban +yanggona,yanggonas +yangmei,yangmeis +yangona,yangonas +yangpan,yangpans +yangqin,yangqins +yang,yangs +yang,yangs +yang,yangs +yankapin,yankapins +Yankee dime,Yankee dimes +Yankee Doodle,Yankee Doodles +Yankeeism,Yankeeisms +Yankee,Yankees +yanker,yankers +Yank tank,Yank tanks +yank,yanks +Yank,Yanks +Yanomamo,Yanomamos,Yanomami,Yanomamis +yanqui,yanquis +yantra,yantras +Yapese,Yapese +yapock,yapocks +yapok,yapoks +yapper,yappers +yapping,yappings +yapunyah,yapunyahs +yap,yaps +yaqona,yaqonas +yaranga,yarangas +yaravi,yaravis +yarborough,yarboroughs +yarco,yarcos +yardage,yardages +yardang,yardangs +yard ape,yard apes +yard-arm,yard-arms +yardarm,yardarms +yard bird,yard birds +yardbird,yardbirds +yarder,yarders +yardful,yardfuls +yardie,yardies +Yardie,Yardies +yardland,yardlands +yardlong bean,yardlong beans +yardman,yardmen +yardmaster,yardmasters +yard sale,yard sales +yardsale,yardsales +yardstick,yardsticks +yardwand,yardwands +yard,yards +yard,yards +yard,yards +yari,yari +yari-yari,yari-yaris +yarke,yarkes +yarl,yarls +yarmulka,yarmulkas +yarmulke,yarmulkes +yarm,yarms +yarnover,yarnovers +yarnspinner,yarnspinners +yarnut,yarnuts +yarnwindle,yarnwindles +yarpha,yarphas +yarpie,yarpies +yarraman,yarramans,yarramen +yarran,yarrans +yarringle,yarringles +yarrow,yarrows +yartseit,yartseits +yartzeit,yartzeits +yarwhelp,yarwhelps +yarwhip,yarwhips +yarwip,yarwips +yasak,yasaks +yashiki,yashikis +yashmac,yashmacs +yashmak,yashmaks +yatagan,yatagans +yataghan,yataghans +yatapoxvirus,yatapoxviruses +yate,yates +yatra,yatras +yatter,yatters +yat,yats +yaucht,yauchts +yaud,yauds +yaul,yauls +yaupon,yaupons +yaup,yaups +yautia,yautias +yawl,yawls +yawmeter,yawmeters +yawner,yawners +yawnfest,yawnfests +yawning,yawnings +yawn,yawns +yawper,yawpers +yawp,yawps +yaw,yaws +y-axis,y-axes +ya,yas +yay,yays +yazata,yazatas +Yazidi,Yazidis +yazoo,yazoos +Y chromosome,Y chromosomes +Y-chromosome,Y-chromosomes +yead,yeads +yeaghe,yeaghes +yealing,yealings +yeanling,yeanlings +year 2000 problem,year 2000 problems +year-book,year-books +yearbook,yearbooks +yearday,yeardays +yeard,yeards +year-end countdown,year-end countdowns +yearend,yearends +yeare,yeares +yearful,yearfuls +yearhundred,yearhundreds +yearling,yearlings +yearly,yearlies +yearman,yearmen +year mark,year marks +yearner,yearners +yearning,yearnings +year of the pig,years of the pig +yearsman,yearsmen +yearth,yearths +yeartide,yeartides +yeartime,yeartimes +year to date,years to date +year,years +yea-sayer,yea-sayers +yeasayer,yeasayers +yeastie beastie,yeastie beasties +yeast infection,yeast infections +yeat,yeats +yeaught,yeaughts +yea,yeas +yedding,yeddings +yedding,yeddings +yed,yeds +yed,yeds +yeepsen,yeepsens +yeep,yeeps +yeere,yeeres +yeer,yeers +yeggman,yeggmen +yegg,yeggs +yeke,yekes +yekke,yekkes +Yekke,Yekkes +yelamber,yelambers +yeldrin,yeldrins +yelk,yelks +yeller,yellers +yellow-ammer,yellow-ammers +yellowammer,yellowammers +yellow anemone,yellow anemones +yellowback,yellowbacks +yellow-bellied sapsucker,yellow-bellied sapsuckers +yellowbelly slider,yellowbelly sliders +yellow belly,yellow bellies +yellowbelly,yellowbellies +yellowberry,yellowberries +yellow-billed loon,yellow-billed loons +yellowbill,yellowbills +yellow birch,yellow birches +yellow bird's-nest,yellow bird's-nests +yellow-bird,yellow-birds +yellowbird,yellowbirds +yellow boy,yellow boys +Yellow Boy,Yellow Boys +yellow-breasted chat,yellow-breasted chats +yellow brick road,yellow brick roads +yellow-brick road,yellow-brick roads +yellow cab,yellow cabs +yellow cake,yellow cakes +yellowcake,yellowcakes +yellow card,yellow cards +yellow dog contract,yellow dog contracts +yellow dog Democrat,yellow dog Democrats +Yellow Dog Democrat,Yellow Dog Democrats +yellow dog,yellow dogs +Yellow Dog,Yellow Dogs +yellow-eyed grass,yellow-eyed grasses +yellow-eyed penguin,yellow-eyed penguins +yellowfin,yellowfin,yellowfins +yellowfish,yellowfishes,yellowfish +yellow flag,yellow flags +yellow-green alga,yellow-green algae +yellow hammer,yellow hammers +yellow-hammer,yellow-hammers +yellowhammer,yellowhammers +yellowhead,yellowheads +yellow horde,yellow hordes +yellowhorn,yellowhorns +yellowing,yellowings +yellowjacket,yellowjackets +yellow jack,yellow jacks +yellow jersey,yellow jerseys +yellow jessamine,yellow jessamines +Yellowknifer,Yellowknifers +yellow-legged tinamou,yellow-legged tinamous +yellowlegs,yellowlegs +yellow light,yellow lights +yellow locust,yellow locusts +yellowmargin triggerfish,yellowmargin triggerfishes +yellow-necked mouse,yellow-necked mice +yellow onion,yellow onions +yellow oriole,yellow orioles +yellow pages,yellow pages +yellow perch,yellow perch,yellow perches +yellow pine,yellow pines +yellow pocket,yellow pockets +yellow pond-lily,yellow pond-lilies +yellow poplar,yellow poplars +yellow press,yellow press,yellow presses +yellow rattle,yellow rattles +yellow-rattle,yellow-rattles +yellow-red,yellow-reds +yellowred,yellowreds +yellowroot,yellowroots +yellowseed,yellowseeds,yellowseed +yellow-shafted flicker,yellow-shafted flickers +yellowshanks,yellowshanks +yellow sheet,yellow sheets +yellowshins,yellowshins +yellow slug,yellow slugs +yellow spot,yellow spots +yellow state,yellow states +yellowtail amberjack,yellowtail amberjacks +yellow-tailed black cockatoo,yellow-tailed black cockatoos +yellowtail,yellowtails +yellow-throated marten,yellow-throated martens +yellowthroat,yellowthroats +yellowtop,yellowtops +yellow warbler,yellow warblers +yellow wood anemone,yellow wood anemones +yellow woodland anemone,yellow woodland anemones +yellow,yellows +yell,yells +yelm,yelms +yelper,yelpers +yelp,yelps +yelve,yelves +yeman,yemen +Yemenite,Yemenites +Yemeni,Yemenis +Yeniseian,Yeniseians +yenta,yentas +yen,yen +yen,yens +yeomanette,yeomanettes +yeoman of the guard,yeoman of the guards +yeomanry,yeomanries +Yeoman Warder,Yeomen Warders +yeoman,yeomen +yeoperson,yeopersons +yeowoman,yeowomen +yeo,yeos +yepsen,yepsens +yep,yeps +yerba mansa,yerba mansas +yerba mate,yerba mates +yerba matΓ©,yerba matΓ©s +yerba santa,yerba santas +yerb,yerbs +Yerevanian,Yerevanians +yerida,yeridas,yeridot +yerk,yerks +yermulke,yermulkes +yernut,yernuts +yero,yeros +yersinia,yersiniae +yersiniosis,yersinioses +yery,yerys +yeshiva,yeshivas,yeshivot +Yeshiva,Yeshivas,Yeshivot +yes man,yes men +yes-man,yes-men +yesman,yesmen +yes-no question,yes-no questions +yes/no question,yes/no questions +yesterday,yesterdays +yestereen,yestereens +yesterfang,yesterfangs +yestergay,yestergays +yesternoon,yesternoons +yestern,yesterns +yesterseason,yesterseasons +yestersol,yestersols +yestertide,yestertides +yestertime,yestertimes +yesterweek,yesterweeks +yester-year,yester-years +yesteryear,yesteryears +yestreen,yestreens +yest,yests +yeswoman,yeswomen +yes,yeses,yesses +yeti,yeti,yetis +yett,yetts +yet,yets +yeuk,yeuks +Yezdi,Yezdis +Yezidee,Yezidees +Yezidi,Yezidis +yidaki,yidakis +Yiddishism,Yiddishisms +Yiddishist,Yiddishists +yid,yidden,yids +Yid,Yidden,Yids +yid,yids +yield curve,yield curves +yielder,yielders +yielding parry,yielding parries +yielding,yieldings +yield stress,yield stresses +yield to maturity,yields to maturity +yield,yields +yiffer,yiffers +ying-yang,ying-yangs +y-intercept,y-intercepts +yin-yang,yin-yangs +yin,yins +yinzer,yinzers +yippie,yippies +yipping,yippings +yip,yips +yirree,yirrees +yite,yites +Y-jack,Y-jacks +yland,ylands +Y level,Y levels +ylide,ylides +ylid,ylids +YLL,YLLs +ynambu,ynambus +ynamine,ynamines +ynediol,ynediols +yngling,ynglings +Yngling,Ynglings +ynofuranose,ynofuranoses +ynolate,ynolates +ynol,ynols +yoak,yoaks +yobbery,yobberies +yobbo,yobbos,yobboes +yobibyte,yobibytes +yobo,yobos +yob,yobs +yoctoampere,yoctoamperes +yoctogramme,yoctogrammes +yoctogram,yoctograms +yoctokatal,yoctokatals +yoctoliter,yoctoliters +yoctolitre,yoctolitres +yoctometer,yoctometers +yoctometre,yoctometres +yoctonewton,yoctonewtons +yoctosecond,yoctoseconds +yodeler,yodelers +yodeller,yodellers +yodel,yodels +yodh,yodhs +yodler,yodlers +yod,yods +Yogacharya,Yogacharyas +yogasm,yogasms +yoga,yogas +yoghourt,yoghourts +yoghurt,yoghurts +yogh,yoghs +Yogiism,Yogiisms +yogini,yoginis +yogin,yogins +yogist,yogists +yogi,yogis +Yogi,Yogis +yogourt,yogourts +yogurt,yogurts +yoik,yoiks +yoit,yoits +yojana,yojanas +yojan,yojans +yoke elm,yoke elms +yokefellow,yokefellows +yokelet,yokelets +yokel,yokels +yokemate,yokemates +yoke,yokes +yokozuna,yokozuna +yok,yoks +yoldiid,yoldiids +yolk plug,yolk plugs +yolk sac,yolk sacs +yolk,yolks +Yolngu,Yolngu +yomp,yomps +yoncopin,yoncopins +yonder,yonders +Yoneda embedding,Yoneda embeddings +yoni,yonis +yonkapin,yonkapins +yonker,yonkers +Yonner,Yonners +yonsei,yonsei +Yooper,Yoopers +yopon,yopons +yopo,yopos +yopper,yoppers +yop,yops +yorga,yorgas +yoriki,yorikis +York Chocolate Cat,York Chocolate Cats +yorker,yorkers +York ham,York hams +Yorkie,Yorkies +Yorkipoo,Yorkipoos +Yorkist,Yorkists +Yorkshire fog,Yorkshire fogs +Yorkshireman,Yorkshiremen +Yorkshire pig,Yorkshire pigs +Yorkshire pudding,Yorkshire puddings +Yorkshire Terrier,Yorkshire Terriers +Yorkshirewoman,Yorkshirewomen +Yorkshire,Yorkshires +yortsayt,yortsayts +yortseit,yortseits +Yoruban,Yorubans +Yorubian,Yorubians +yottabit,yottabits +yottabyte,yottabytes +yottagram,yottagrams +yottakatal,yottakatals +yottaliter,yottaliters +yottalitre,yottalitres +yottameter,yottameters +yottametre,yottametres +yottasecond,yottaseconds +yottaton,yottatons +youee,youees +young adult,young adults +youngberry,youngberries +youngblood,youngbloods +young buck,young bucks +younger,youngers +young fogey,young fogeys +young gun,young guns +younghead,youngheads +younginid,younginids +youngin,youngins +young lady,young ladies +youngling,younglings +young man,young men +youngman,youngmen +Young's modulus,Young's moduli +youngster,youngsters +young Turk,young Turks +Young Turk,Young Turks +young'un,young'uns +youngun,younguns +younker,younkers +youpon,youpons +yourself,yourselves +youth club,youth clubs +youth detention center,youth detention centers +youth detention centre,youth detention centres +youthfest,youthfests +youthful river,youthful rivers +youth hostel,youth hostels +youthquake,youthquakes +youth worker,youth workers +youthy,youthies +youtiao,youtiaos +YouTuber,YouTubers +youtube,youtubes +YouTube,YouTubes +yout,youts +Yowah nut,Yowah nuts +yowe,yowes +yowie,yowies +yowler,yowlers +yowley,yowleys +yowling,yowlings +yowl,yowls +yo-yo,yo-yos +yoyo,yoyos +yponomeutid,yponomeutids +Yprois,Yprois +yrneh,yrnehs +ytterbium oxide,ytterbium oxides +yttrialite,yttrialites +yttrium iron garnet,yttrium iron garnets +yuan,yuans +yucca moth,yucca moths +yucca,yuccas +Yuchi,Yuchis,Yuchi +yuckel,yuckels +yuck,yucks +yuen,yuens +yuga,yugas +Yugoslavian,Yugoslavians +Yugoslav,Yugoslavs +yug,yugs +yuhina,yuhinas +yukata,yukata,yukatas +yuki-onna,yuki-onnas +Yukoner,Yukoners +yulan,yulans +yule log,yule logs +Yule log,Yule logs +yuletide,yuletides +Yuletide,Yuletides +Yule tree,Yule trees +Yule wreath,Yule wreaths +yumberry,yumberries +yum cha,yum chas +yumi,yumis +yummy mummy,yummy mummies +yunnanosaurid,yunnanosaurids +yupon,yupons +yuppie food stamp,yuppie food stamps +yuppie,yuppies +yuppy,yuppies +yupster,yupsters +yup,yups +Yuqin,Yuqins +Yurok,Yuroks,Yurok +yurt,yurts +yutz,yutzes +yu,yu +Yvette,Yvettes +zaa,zaas +zabaione,zabaiones +zabajone,zabajones +Zabaleen,Zabaleens,Zabaleen +Zabbaleen,Zabbaleens,Zabbaleen +Zabian,Zabians +zabra,zabras +zabtieh,zabtiehs +zabuton,zabutons +zacatuche,zacatuches +zack,zacks +zac,zacs +zaddick,zaddicks +zaddik,zaddiks,zaddikim +zadruga,zadrugas,zadruge +zaerthe,zaerthes +zaffre,zaffres +zafu,zafus +zagaie,zagaies +zagaye,zagayes +Zaghloulist,Zaghloulists +Zaghlulist,Zaghlulists +Zagrebian,Zagrebians +zag,zags +Zahedi,Zahedis +zaherite,zaherites +zaibatsu,zaibatsus,zaibatsu +zaildar,zaildars +zail,zails +zaimet,zaimets +zaim,zaims +zain,zains +Zairean,Zaireans +zaire,zaires +zaΓ―re,zaΓ―res,zaΓ―re +Zairian,Zairians +zaitech,zaitechs +zakouska,zakouskas,zakouski +zakuska,zakuskas,zakuski +zak,zaks +zalambdodont,zalambdodonts +zΓ‘lesΓ­ite,zΓ‘lesΓ­ites +Zamalek,Zamaleks +zamang,zamangs +zamarra,zamarras +Zambezian,Zambezians +Zambian,Zambians +Zamboangan,Zamboangans +zambomba,zambombas +Zamboni pile,Zamboni piles +Zamboni,Zambonis +zamboorak,zambooraks +zambooruk,zambooruks +Zambo,Zambos +zambuck,zambucks +Zam-buk,Zam-buks +zamburak,zamburaks +zamia,zamias +zamindari,zamindaris +zamindarship,zamindarships +zamindary,zamindaries +zamindar,zamindars +zamite,zamites +zami,zamis +Zamoran,Zamorans +zamouse,zamouses +zampogna,zampognas +zanana,zananas +zanclid,zanclids +zanclodontid,zanclodontids +zander,zanders,zander +zandmole,zandmoles +zanella,zanellas +Zanj,Zanjs +Zante currant,Zante currants +zantedeschia,zantedeschias +zantewood,zantewoods +zante,zantes +zanthoxylum,zanthoxylums +Zantiot,Zantiots +zany,zanies +zanzack,zanzacks +Zanzibari,Zanzibaris +zaouia,zaouias +Zapata rail,Zapata rails +zapateado,zapateados +Zapatista,Zapatistas +zapodid,zapodids +Zaporizhian,Zaporizhians +Zapotecan,Zapotecans +Zapotec,Zapotecs +zapote,zapotes +zapotilla,zapotillas +zapper,zappers +zapping,zappings +zaprorid,zaprorids +zaptiah,zaptiahs +zaptieh,zaptiehs +zap,zaps +Zaragozan,Zaragozans +Zarathustrian,Zarathustrians +zaratite,zaratites +zareba,zarebas +zareeba,zareebas +zarf,zarfs +zariba,zaribas +Zarma,Zarmas,Zarma +zarph,zarphs +zarthe,zarthes +zarzuela,zarzuelas +zastruga,zastrugi +zati,zatis +zatracheid,zatracheids +zatrachydid,zatrachydids +zauschneria,zauschnerias +zawiya,zawiyas +zawn,zawns +z-axis,z-axes +zax,zaxes +zayat,zayats +zaydeh,zaydehs +zayde,zaydes +Zaydi,Zaydis +zayin,zayins +zayn,zayns +za,zas +Zaza,Zazas +Z boson,Z bosons +Z-boson,Z-bosons +z-buffer,z-buffers +z car,z cars +Z-car,Z-cars +zealant,zealants +zealotist,zealotists +zealot,zealots +zealous witness,zealous witnesses +zebavidin,zebavidins +zebeck,zebecks +zebec,zebecs +zebibyte,zebibytes +zebra crossing,zebra crossings +zebra finch,zebra finches +zebrafish,zebrafishes,zebrafish +zebra fish,zebra fish,zebra fishes +zebra mongoose,zebra mongooses +zebra mussel,zebra mussels +zebra shark,zebra sharks +zebra,zebras +zebrine,zebrines +zebrinny,zebrinnies +zebrin,zebrins +zebroid,zebroids +zebrule,zebrules +zebu,zebus +zecchin,zecchins +zechin,zechins +Zed-car,Zed-cars +zedonk,zedonks +zed,zeds +zeedonk,zeedonks +zeehorse,zeehorses +zeekoe,zeekoes +Zeelander,Zeelanders +Zeeman effect,Zeeman effects +Zeeman energy,Zeeman energies +Zeeman slower,Zeeman slowers +zee,zees +zehner,zehners +zeidy,zeidies +zeid,zeids +Zeigarnik effect,Zeigarnik effects +zeitgeber,zeitgebers +zeitgeist,zeitgeists,zeitgeister +Zeitgeist,Zeitgeists,Zeitgeister +zek,zeks +zelator,zelators +zelatrice,zelatrices +zelatrix,zelatrices +Zelig,Zeligs +zelkova,zelkovas +zellige,zelliges +zellij,zellijes +zel,zels +Ε½emaitian,Ε½emaitians +zemindari,zemindaris +zemindarship,zemindarships +zemindary,zemindaries +zemindar,zemindars +zemi,zemis +zemstvo,zemstvos,zemstva +zenana,zenanas +zendik,zendiks +zendiq,zendiqs +zendo,zendos +Zener card,Zener cards +Zener diode,Zener diodes +Zen garden,Zen gardens +zenial passage,zenial passages +Zenithal Hourly Rate,Zenithal Hourly Rates +zenith,zeniths +zenzizenzic,zenzizenzics +zeolite,zeolites +zeoscope,zeoscopes +zeotrope,zeotropes +zeotype,zeotypes +zephyr,zephyrs +zeppelin,zeppelins +Zeppelin,Zeppelins +zeppola,zeppole +zeptobarn,zeptobarns +zeptogram,zeptograms +zeptoliter,zeptoliters +zeptolitre,zeptolitres +zeptometer,zeptometers +zeptometre,zeptometres +zeptomole,zeptomoles +zeptosecond,zeptoseconds +zep,zeps +zequin,zequins +zerbert,zerberts +zerconid,zerconids +zerda,zerdas +zeren,zerens,zeren +zeriba,zeribas +zerk,zerks +zero-based budget,zero-based budgets +zero conditional,zero conditionals +zero coupon bond,zero coupon bonds +zero-coupon note,zero-coupon notes +zero coupon,zero coupons +zero-day exploit,zero-day exploits +zero deflection,zero deflections +zero-emission vehicle,zero-emission vehicles +zero ending,zero endings +zerogon,zerogons +zero-hour contract,zero-hour contracts +zero hour,zero hours +zeroid,zeroids +zero-knowledge proof,zero-knowledge proofs +zero matrix,zero matrices,zero matrixes +zero object,zero objects +zero-one law,zero-one laws +zero-order design,zero-order designs +zero-order hold,zero-order holds +zero period,zero periods +zero-point energy,zero-point energies +zero point,zero points +zero-sum game,zero-sum games +zero tensor,zero tensors +zero vector,zero vectors +zester,zesters +zetacrit,zetacrits +zeta,zetas +ZETA,ZETAs +zetetic,zetetics +Zetlander,Zetlanders +zettabyte,zettabytes +zettagram,zettagrams +zettameter,zettameters +zettametre,zettametres +zettasecond,zettaseconds +zettaton,zettatons +zeuglodont,zeuglodonts +zeuglodon,zeuglodons +zeugma,zeugmata,zeugmas +zeugopod,zeugopods +zeunerite,zeunerites +Zeuthen-Segre invariant,Zeuthen-Segre invariants +zhee,zhees +zhlub,zhlubs +zhomo,zhomos +Zhongqiu,Zhongqius +zho,zhos +ziamet,ziamets +ziarat,ziarats +zibeline,zibelines +zibeth,zibeths +zibet,zibets +Zidonian,Zidonians +ziege,ziege +Ziegler's water rat,Ziegler's water rats +zigaboo,zigaboos +zigadene,zigadenes +zigeuner,zigeuners +Zigeuner,Zigeuners +ziggaboo,ziggaboos +ziggurat,ziggurats +zigsaw puzzle,zigsaw puzzles +zigsaw,zigsaws +zigzagger,zigzaggers +zigzagging,zigzaggings +zig-zag,zig-zags +zigzag,zigzags +zig,zigs +zikkurat,zikkurats +Zikri,Zikris +zikr,zikrs +zikurat,zikurats +zilde,zildes +zillah,zillahs +Zil lane,Zil lanes +zillij,zillijes +zillionaire,zillionaires +zillionth,zillionths +zillion,zillions +zill,zills +zimarra,zimarras +Zimbabwean,Zimbabweans +zimbabwe,zimbabwes +zimmer frame,zimmer frames +Zimmer frame,Zimmer frames +zinalsite,zinalsites +zincate,zincates +zincation,zincations +zinc finger,zinc fingers +zincide,zincides +zincochromite,zincochromites +zincode,zincodes +zincographer,zincographers +zincographist,zincographists +zincograph,zincographs +zincsmith,zincsmiths +zincworker,zincworkers +zindeeq,zindeeqs +zinefest,zinefests +ziner,ziners +zinester,zinesters +zine,zines +zingaro,zingaros,zingari +zinger,zingers +zingiber,zingibers +zing,zings +zinnia,zinnias +Zinn's membrane,Zinn's membranes +zinnwaldite,zinnwaldites +zino,zinos +z-intercept,z-intercepts +Zionazi,Zionazis +Zionist,Zionists +zion,zions +zip code,zip codes +zipcode,zipcodes +ZIP code,ZIP codes +Zip disk,Zip disks +Zip drive,Zip drives +zip fastener,zip fasteners +zip file,zip files +zipgun,zipguns +ziphid,ziphids +ziphiid,ziphiids +ziphioid,ziphioids +ziphosuchian,ziphosuchians +zip liner,zip liners +zip-liner,zip-liners +zipliner,zipliners +zip-line,zip-lines +zipline,ziplines +Ziploc,Ziplocs +zipperhead,zipperheads +zipperhead,zipperheads +zipper,zippers +zip wire,zip wires +zip-wire,zip-wires +zip,zips +zip,zips +zircalloy,zircalloys +zircaloid,zircaloids +zircaloy,zircaloys +zircofluoride,zircofluorides +zirconate,zirconates +zirconite,zirconites +zirconocene,zirconocenes +zirconoid,zirconoids +zirconolite,zirconolites +zirconyl,zirconyls +zircophyllite,zircophyllites +zitcom,zitcoms +zitherist,zitherists +zithern,zitherns +zither,zithers +zittern,zitterns +zit,zits +zizania,zizanias +zizel,zizels +zizith,ziziths +zizz,zizzes +zoaea,zoaeae,zoaeas +zoantharian,zoantharians +zoanthid,zoanthids +zoanthodeme,zoanthodemes +zoarchaeologist,zoarchaeologists +zoarcid,zoarcids +zoar,zoars +zobo,zobos +zocalo,zocalos +zocco,zoccos +zocle,zocles +zodariid,zodariids +zodiacal light,zodiacal lights +zodiac sign,zodiac signs +zodiac,zodiacs +zoΓ«a,zoΓ«ae +zoea,zoeae,zoeas +zoetrope,zoetropes +zograscope,zograscopes +zoilus,zoiluses,zoili +zoisite,zoisites +zoist,zoists +zoite,zoites +zokor,zokors +zoledronate,zoledronates +Zollverein,Zollvereins +zolly,zollies +zolotnik,zolotniks +zol,zols +zombie bank,zombie banks +zombie process,zombie processes +zombiesat,zombiesats +zombie strip,zombie strips +zombie,zombies +zombification,zombifications +zombi,zombis +zomboruk,zomboruks +zomb,zombs +zome,zomes +zomotherapy,zomotherapies +zonal kinetic energy,zonal kinetic energies +zonal wind,zonal winds +zona pellucida,zonae pellucidae,zonΓ¦ pellucidΓ¦ +zonation,zonations +zona,zonas +zona,zonas,zonae,zonΓ¦ +zone of action,zones of action +zone of fire,zones of fire +zone of polarizing activity,zone of polarizing activities +zone plate,zone plates +zone punch,zone punches +zoner,zoners +zone-tailed hawk,zone-tailed hawks +zonetime,zonetimes +zone,zones +Zonian,Zonians +zoning,zonings +zonitid,zonitids +zonker,zonkers +zonkey,zonkeys +zonk,zonks +zonohedron,zonohedra +zonoid,zonoids +zonoskeleton,zonoskeletons +zonotope,zonotopes +zonula,zonulae,zonulas +zonule of Zinn,zonules of Zinn +zonulet,zonulets +zonule,zonules +zonure,zonures +zony,zonies +zooarchaeologist,zooarchaeologists +zooarcheologist,zooarcheologists +zooblast,zooblasts +zoo blot,zoo blots +zoΓΆchlorella,zoΓΆchlorellae +zoochlorella,zoochlorellas,zoochlorellae +zoochore,zoochores +zoochrome,zoochromes +zoocide,zoocides +zoΓΆcide,zoΓΆcides +zoocyst,zoocysts +zoΓΆcyst,zoΓΆcysts +zoocytium,zoocytia +zoΓΆcytium,zoΓΆcytia +zoodendrium,zoodendria +zoΓΆdendrium,zoΓΆdendria +zooecium,zooecia +zoΕ“cium,zoΕ“cia +zooflagellate,zooflagellates +zoo format,zoo formats +zoofulvin,zoofulvins +zoogeographer,zoogeographers +zoogloea,zoogloeae +zoΓΆglΕ“a,zoΓΆglΕ“Γ¦ +zoogoer,zoogoers +zoogonid,zoogonids +zoografting,zoograftings +zoograft,zoografts +zoographer,zoographers +zoΓΆgrapher,zoΓΆgraphers +zoographist,zoographists +zoΓΆgraphist,zoΓΆgraphists +zooid,zooids +zoΓΆid,zoΓΆids +zookeeper,zookeepers +zoolater,zoolaters +zoolithe,zoolithes +zoologer,zoologers +zoΓΆloger,zoΓΆlogers +zoological garden,zoological gardens +zoological name,zoological names +zoologist,zoologists +zoΓΆlogist,zoΓΆlogists +zoology,zoologies +zoΓΆlogy,zoΓΆlogies +zoomastigote,zoomastigotes +zoom box,zoom boxes +zoomburb,zoomburbs +zoomer,zoomers +zoomie,zoomies +zooming,zoomings +zoom lens,zoom lenses +zoomorphism,zoomorphisms +zoΓΆmorphism,zoΓΆmorphisms +zoom,zooms +zoonite,zoonites +zoΓΆnite,zoΓΆnites +zoonose,zoonoses +zoonosis,zoonoses +zoΓΆnosis,zoΓΆnoses +zoonule,zoonules +zoΓΆnule,zoΓΆnules +zoon,zoa,zoons +zoΓΆn,zoa,zoΓΆns +zooparasite,zooparasites +zoopark,zooparks +zoophagan,zoophagans +zoophage,zoophages +zoophile,zoophiles +zoophilist,zoophilists +zoΓΆphilist,zoΓΆphilists +zoophite,zoophites +zoΓΆphite,zoΓΆphites +zoophobe,zoophobes +zoophorous,zoophorouses +zoΓΆphorous,zoΓΆphorouses +zoophyte,zoophytes +zoΓΆphyte,zoΓΆphytes +zoΓΆphytic,zoΓΆphytics +zooplankter,zooplankters +zooplasty,zooplasties +zoopraxiscope,zoopraxiscopes +zoΓΆpraxiscope,zoΓΆpraxiscopes +zoopsychologist,zoopsychologists +zoΓΆpsychology,zoΓΆpsychologies +zoosperm,zoosperms +zoΓΆsperm,zoΓΆsperms +zoosporangium,zoosporangia +zoΓΆsporangium,zoΓΆsporangia +zoospore,zoospores +zoΓΆspore,zoΓΆspores +zoosterol,zoosterols +zootechnician,zootechnicians +zootheist,zootheists +zootomist,zootomists +zoΓΆtomist,zoΓΆtomists +zootomy,zootomies +zootoxin,zootoxins +zoot-suiter,zoot-suiters +zoot suit,zoot suits +zootsuit,zootsuits +zootype,zootypes +zoot,zoots +zooxanthella,zooxanthellae +zoo,zoos +zoozoo,zoozoos +zopherid,zopherids +zopilote,zopilotes +Zoque,Zoques,Zoque +zorbonaut,zorbonauts +zorb,zorbs +z-order,z-orders +Z-order,Z-orders +zorid,zorids +zorilla,zorillas +zorille,zorilles +zoril,zorils +zori,zori,zoris +zorkmid,zorkmids +Zoroastrian,Zoroastrians +zorocratid,zorocratids +zoropsid,zoropsids +zorse,zorses +zosterophyllophyte,zosterophyllophytes +zosteropid,zosteropids +zot,zots +Zouave,Zouaves +zoysia,zoysias +zo,zos +Z-pak,Z-paks +Z score,Z scores +Z-transform,Z-transforms +zubr,zubrs +zucchetto,zucchettos +zucchini,zucchinis,zucchini +zuchetto,zuchettos +zuche,zuches +Zuchon,Zuchons +zud,zuds +zuffolo,zuffolos +zufolo,zufolos +Zuinglian,Zuinglians +zuisin,zuisins +zuke,zukes +Zululander,Zululanders +Zulu,Zulus +zumbooruk,zumbooruks +Zuni bluehead sucker,Zuni bluehead suckers +Zuni,Zunis +zunzuncito,zunzuncitos +zurkhaneh,zurkhanehs +zurna,zurnas +zurracapote,zurracapotes +zuz,zuzim,zuzzim,zuzes +z-variant,z-variants +zwanziger,zwanzigers +ZweihΓ€nder,ZweihΓ€nder +zwieback,zwiebacks +zwiebelane,zwiebelanes +Zwinglian,Zwinglians +zwischenschach,zwischenschachs +zwischenzug,zwischenzugs +zwitterion,zwitterions +zygaenid,zygaenids +zygantrum,zygantra +zygapophysis,zygapophyses +zygenid,zygenids +zygite,zygites +zygocactus,zygocacti +zygodactyle,zygodactyles +zygodactyl,zygodactyls +zygolith,zygoliths +zygomatic arch,zygomatic arches +zygomatic bone,zygomatic bones +zygomaticus,zygomatici +zygoma,zygomas,zygomata +zygomycete,zygomycetes +zygomycosis,zygomycoses +zygon,zyga,zygons +zygopetalum,zygopetalums +zygophyte,zygophytes +zygopleurid,zygopleurids +zygopteran,zygopterans +zygosis,zygoses +zygosity,zygosities +zygosperm,zygosperms +zygosphene,zygosphenes +zygosphere,zygospheres +zygosporangium,zygosporangia +zygospore,zygospores +zygotene,zygotenes +zygote,zygotes +zylonite,zylonites +zylophone,zylophones +zymad,zymads +zymase,zymases +zyme,zymes +zymin,zymins +zymodeme,zymodemes +zymogene,zymogenes +zymogen,zymogens +zymogram,zymograms +zymologist,zymologists +zymometer,zymometers +zymophyte,zymophytes +zymoscope,zymoscopes +zymosimeter,zymosimeters +zymosis,zymoses +zymurgist,zymurgists +zyophyte,zyophytes +Zyrian,Zyrians +zythepsary,zythepsaries +zythologist,zythologists +zyxin,zyxins +zyzzyva,zyzzyvas +Ξ± error,Ξ± errors +Ξ±-particle,Ξ±-particles +Ξ² error,Ξ² errors +Ξ²-particle,Ξ²-particles +Ξ²-pleated sheet,Ξ²-pleated sheets +Ξ³-globulin,Ξ³-globulins +Ξ³ ray,Ξ³ rays +Ξ³-ray,Ξ³-rays +Ξ΄-box,Ξ΄-boxes +Ξ»/4 film,Ξ»/4 films +ΞΌ-completion,ΞΌ-completions +ΞΌg/kg,ΞΌg/kg +Οƒ-additivity,Οƒ-additivities +Οƒ-algebra,Οƒ-algebras +Οƒ-finite measure,Οƒ-finite measures diff --git a/tests/data/verbs.csv b/tests/data/verbs.csv new file mode 100644 index 0000000..ec7fbdb --- /dev/null +++ b/tests/data/verbs.csv @@ -0,0 +1,9759 @@ +abandon abandons abandoned abandoned abandoning +abase abases abased abased abasing +abash abashes abashed abashed abashing +abate abates abated abated abating +abbreviate abbreviates abbreviated abbreviated abbreviating +abdicate abdicates abdicated abdicated abdicating +abduct abducts abducted abducted abducting +abet abets abetted abetted abetting +abhor abhors abhorred abhorred abhorring +abide abides abided abided abiding +abide abides abode abode abiding +abirritate abirritates abirritated abirritated abirritating +abjure abjures abjured abjured abjuring +ablate ablates ablated ablated ablating +abnegate abnegates abnegated abnegated abnegating +abolish abolishes abolished abolished abolishing +abominate abominates abominated abominated abominating +abort aborts aborted aborted aborting +abound abounds abounded abounded abounding +about-ship about-ships about-shipped about-shipped about-shipping +about-turn about-turns about-turned about-turned about-turning +aboutface aboutfaces aboutfaced aboutfaced aboutfacing +abrade abrades abraded abraded abrading +abreact abreacts abreacted abreacted abreacting +abridge abridges abridged abridged abridging +abrogate abrogates abrogated abrogated abrogating +abscess abscesses abscessed abscessed abscessing +abscise abscises abscised abscised abscising +abscond absconds absconded absconded absconding +abseil abseils abseiled abseiled abseiling +absent absents absented absented absenting +absolve absolves absolved absolved absolving +absorb absorbs absorbed absorbed absorbing +absquatulate absquatulates absquatulated absquatulated absquatulating +abstain abstains abstained abstained abstaining +abstract abstracts abstracted abstracted abstracting +abuse abuses abused abused abusing +abut abuts abutted abutted abutting +abye abys abought abought abying +accede accedes acceded acceded acceding +accelerate accelerates accelerated accelerated accelerating +accent accents accented accented accenting +accentuate accentuates accentuated accentuated accentuating +accept accepts accepted accepted accepting +access accesses accessed accessed accessing +accession accessions accessioned accessioned accessioning +accessorise accessorises accessorised accessorised accessorising +accessorize accessorizes accessorized accessorized accessorizing +acclaim acclaims acclaimed acclaimed acclaiming +acclimate acclimates acclimated acclimated acclimating +acclimatise acclimatises acclimatised acclimatised acclimatising +acclimatize acclimatizes acclimatized acclimatized acclimatizing +accommodate accommodates accommodated accommodated accommodating +accompany accompanies accompanied accompanied accompanying +accomplish accomplishes accomplished accomplished accomplishing +accord accords accorded accorded according +accost accosts accosted accosted accosting +account accounts accounted accounted accounting +accoutre accoutres accoutred accoutred accoutring +accredit accredits accredited accredited accrediting +accrete accretes accreted accreted accreting +accrue accrues accrued accrued accruing +acculturate acculturates acculturated acculturated acculturating +accumulate accumulates accumulated accumulated accumulating +accuse accuses accused accused accusing +accustom accustoms accustomed accustomed accustoming +ace aces aced aced acing +acerbate acerbates acerbated acerbated acerbating +acetify acetifies acetified acetified acetifying +acetylate acetylates acetylated acetylated acetylating +ache aches ached ached aching +achieve achieves achieved achieved achieving +achromatize achromatizes achromatized achromatized achromatizing +acidify acidifies acidified acidified acidifying +acidulate acidulates acidulated acidulated acidulating +acierate acierates acierated acierated acierating +acknowledge acknowledges acknowledged acknowledged acknowledging +acquaint acquaints acquainted acquainted acquainting +acquiesce acquiesces acquiesced acquiesced acquiescing +acquire acquires acquired acquired acquiring +acquit acquits acquitted acquitted acquitting +act acts acted acted acting +action actions actioned actioned actioning +activate activates activated activated activating +actualise actualises actualised actualised actualising +actualize actualizes actualized actualized actualizing +actuate actuates actuated actuated actuating +acuminate acuminates acuminated acuminated acuminating +ad-lib ad-libs ad-libbed ad-libbed ad-libbing +adapt adapts adapted adapted adapting +add adds added added adding +addict addicts addicted addicted addicting +addle addles addled addled addling +address addresses addressed addressed addressing +adduce adduces adduced adduced adducing +adduct adducts adducted adducted adducting +adhere adheres adhered adhered adhering +adhibit adhibits adhibited adhibited adhibiting +adjoin adjoins adjoined adjoined adjoining +adjourn adjourns adjourned adjourned adjourning +adjudge adjudges adjudged adjudged adjudging +adjudicate adjudicates adjudicated adjudicated adjudicating +adjure adjures adjured adjured adjuring +adjust adjusts adjusted adjusted adjusting +adlib adlibs adlibbed adlibbed adlibbing +admeasure admeasures admeasured admeasured admeasuring +administer administers administered administered administering +administrate administrates administrated administrated administrating +admire admires admired admired admiring +admit admits admitted admitted admitting +admix admixes admixed admixed admixing +admonish admonishes admonished admonished admonishing +adopt adopts adopted adopted adopting +adore adores adored adored adoring +adorn adorns adorned adorned adorning +adsorb adsorbs adsorbed adsorbed adsorbing +adulate adulates adulated adulated adulating +adulterate adulterates adulterated adulterated adulterating +adumbrate adumbrates adumbrated adumbrated adumbrating +advance advances advanced advanced advancing +advantage advantages advantaged advantaged advantaging +adventure adventures adventured adventured adventuring +advert adverts adverted adverted adverting +advertise advertises advertised advertised advertising +advertize advertizes advertized advertized advertizing +advise advises advised advised advising +advocate advocates advocated advocated advocating +aerate aerates aerated aerated aerating +aerify aerifies aerified aerified aerifying +aestivate aestivates aestivated aestivated aestivating +affect affects affected affected affecting +affiance affiances affianced affianced affiancing +affiliate affiliates affiliated affiliated affiliating +affirm affirms affirmed affirmed affirming +affix affixes affixed affixed affixing +afflict afflicts afflicted afflicted afflicting +afford affords afforded afforded affording +afforest afforests afforested afforested afforesting +affranchise affranchises affranchised affranchised affranchising +affray affrays affrayed affrayed affraying +affright affrights affrighted affrighted affrighting +affront affronts affronted affronted affronting +africanize africanizes africanized africanized africanizing +afrikanerize afrikanerizes afrikanerized afrikanerized afrikanerizing +age ages aged aged aging +agglomerate agglomerates agglomerated agglomerated agglomerating +agglutinate agglutinates agglutinated agglutinated agglutinating +aggrade aggrades aggraded aggraded aggrading +aggrandize aggrandizes aggrandized aggrandized aggrandizing +aggravate aggravates aggravated aggravated aggravating +aggregate aggregates aggregated aggregated aggregating +aggress aggresses aggressed aggressed aggressing +aggrieve aggrieves aggrieved aggrieved aggrieving +agist agists agisted agisted agisting +agitate agitates agitated agitated agitating +agonise agonises agonised agonised agonising +agonize agonizes agonized agonized agonizing +agree agrees agreed agreed agreeing +aid aids aided aided aiding +ail ails ailed ailed ailing +aim aims aimed aimed aiming +air airs aired aired airing +air-dash air-dashes air-dashed air-dashed air-dashing +air-dry air-dries air-dried air-dried air-drying +air-kiss air-kisses air-kissed air-kissed air-kissing +airbrush airbrushes airbrushed airbrushed airbrushing +aircondition airconditions airconditioned airconditioned airconditioning +aircool aircools aircooled aircooled aircooling +airdash airdashes airdashed airdashed airdashing +airdrop airdrops airdropped airdropped airdropping +airdry airdries airdried airdried airdrying +airfreight airfreights airfreighted airfreighted airfreighting +airkiss airkisses airkissed airkissed airkissing +airlift airlifts airlifted airlifted airlifting +airmail airmails airmailed airmailed airmailing +alarm alarms alarmed alarmed alarming +albumenize albumenizes albumenized albumenized albumenizing +alchemize alchemizes alchemized alchemized alchemizing +alcoholize alcoholizes alcoholized alcoholized alcoholizing +alert alerts alerted alerted alerting +alibi alibis alibied alibied alibiing +alien aliens aliened aliened aliening +alienate alienates alienated alienated alienating +alight alights alighted alighted alighting +alight alights alit alit alighting +align aligns aligned aligned aligning +aliment aliments alimented alimented alimenting +aline alines alined alined alining +alkalify alkalifies alkalified alkalified alkalifying +alkalize alkalizes alkalized alkalized alkalizing +allay allays allayed allayed allaying +allege alleges alleged alleged alleging +allegorize allegorizes allegorized allegorized allegorizing +alleviate alleviates alleviated alleviated alleviating +alliterate alliterates alliterated alliterated alliterating +allocate allocates allocated allocated allocating +allot allots allotted allotted allotting +allow allows allowed allowed allowing +allowance allowances allowanced allowanced allowancing +alloy alloys alloyed alloyed alloying +allude alludes alluded alluded alluding +allure allures allured allured alluring +ally allies allied allied allying +alpha-test alpha-tests alpha-tested alpha-tested alpha-testing +alphabetise alphabetises alphabetised alphabetised alphabetising +alphabetize alphabetizes alphabetized alphabetized alphabetizing +alphatest alphatests alphatested alphatested alphatesting +alter alters altered altered altering +altercate altercates altercated altercated altercating +alternate alternates alternated alternated alternating +aluminize aluminizes aluminized aluminized aluminizing +amalgamate amalgamates amalgamated amalgamated amalgamating +amass amasses amassed amassed amassing +amaze amazes amazed amazed amazing +amble ambles ambled ambled ambling +ambulate ambulates ambulated ambulated ambulating +ambuscade ambuscades ambuscaded ambuscaded ambuscading +ambush ambushes ambushed ambushed ambushing +ameliorate ameliorates ameliorated ameliorated ameliorating +amend amends amended amended amending +amerce amerces amerced amerced amercing +americanise americanises americanised americanised americanising +americanize americanizes americanized americanized americanizing +ammoniate ammoniates ammoniated ammoniated ammoniating +ammonify ammonifies ammonified ammonified ammonifying +amnesty amnesties amnestied amnestied amnestying +amortise amortises amortised amortised amortising +amortize amortizes amortized amortized amortizing +amount amounts amounted amounted amounting +amplify amplifies amplified amplified amplifying +amputate amputates amputated amputated amputating +amuse amuses amused amused amusing +anaesthetise anaesthetises anaesthetised anaesthetised anaesthetising +anaesthetize anaesthetizes anaesthetized anaesthetized anaesthetizing +anagrammatize anagrammatizes anagrammatized anagrammatized anagrammatizing +analogize analogizes analogized analogized analogizing +analyse analyses analysed analysed analysing +analyze analyzes analyzed analyzed analyzing +anastomose anastomoses anastomosed anastomosed anastomosing +anathematize anathematizes anathematized anathematized anathematizing +anatomize anatomizes anatomized anatomized anatomizing +anchor anchors anchored anchored anchoring +anele aneles aneled aneled aneling +anesthetise anesthetises anesthetised anesthetised anesthetising +anesthetize anesthetizes anesthetized anesthetized anesthetizing +anger angers angered angered angering +angle angles angled angled angling +angle-park angle-parks angle-parked angle-parked angle-parking +anglicise anglicises anglicised anglicised anglicising +anglicize anglicizes anglicized anglicized anglicizing +anglify anglifies anglified anglified anglifying +anguish anguishes anguished anguished anguishing +angulate angulates angulated angulated angulating +animadvert animadverts animadverted animadverted animadverting +animalize animalizes animalized animalized animalizing +animate animates animated animated animating +ankylose ankyloses ankylosed ankylosed ankylosing +anneal anneals annealed annealed annealing +annex annexes annexed annexed annexing +annihilate annihilates annihilated annihilated annihilating +annotate annotates annotated annotated annotating +announce announces announced announced announcing +annoy annoys annoyed annoyed annoying +annualize annualizes annualized annualized annualizing +annul annuls annulled annulled annulling +annunciate annunciates annunciated annunciated annunciating +anodise anodises anodised anodised anodising +anodize anodizes anodized anodized anodizing +anoint anoints anointed anointed anointing +anonymise anonymises anonymised anonymised anonymising +anonymize anonymizes anonymized anonymized anonymizing +answer answers answered answered answering +antagonise antagonises antagonised antagonised antagonising +antagonize antagonizes antagonized antagonized antagonizing +ante antes anted anted anteing +antecede antecedes anteceded anteceded anteceding +antedate antedates antedated antedated antedating +antevert anteverts anteverted anteverted anteverting +anthologise anthologises anthologised anthologised anthologising +anthologize anthologizes anthologized anthologized anthologizing +anthropomorphize anthropomorphizes anthropomorphized anthropomorphized anthropomorphizing +anticipate anticipates anticipated anticipated anticipating +antiquate antiquates antiquated antiquated antiquating +antique antiques antiqued antiqued antiquing +ape apes aped aped aping +aphorize aphorizes aphorized aphorized aphorizing +apocopate apocopates apocopated apocopated apocopating +apologise apologises apologised apologised apologising +apologize apologizes apologized apologized apologizing +apostatize apostatizes apostatized apostatized apostatizing +apostrophise apostrophises apostrophised apostrophised apostrophising +apostrophize apostrophizes apostrophized apostrophized apostrophizing +apotheosize apotheosizes apotheosized apotheosized apotheosizing +appal appals appalled appalled appalling +appall appals appalled appalled appalling +appeal appeals appealed appealed appealing +appear appears appeared appeared appearing +appease appeases appeased appeased appeasing +append appends appended appended appending +apperceive apperceives apperceived apperceived apperceiving +appertain appertains appertained appertained appertaining +applaud applauds applauded applauded applauding +appliqu_e appliqu_es appliqu_eed appliqu_eed appliqu_eing +apply applies applied applied applying +appoint appoints appointed appointed appointing +apportion apportions apportioned apportioned apportioning +appose apposes apposed apposed apposing +appraise appraises appraised appraised appraising +appreciate appreciates appreciated appreciated appreciating +apprehend apprehends apprehended apprehended apprehending +apprentice apprentices apprenticed apprenticed apprenticing +apprise apprises apprised apprised apprising +apprize apprizes apprized apprized apprizing +approach approaches approached approached approaching +approbate approbates approbated approbated approbating +appropriate appropriates appropriated appropriated appropriating +approve approves approved approved approving +approximate approximates approximated approximated approximating +apron aprons aproned aproned aproning +aquaplane aquaplanes aquaplaned aquaplaned aquaplaning +aquatint aquatints aquatinted aquatinted aquatinting +arbitrate arbitrates arbitrated arbitrated arbitrating +arc arcs arced arced arcing +arch arches arched arched arching +archaize archaizes archaized archaized archaizing +archive archives archived archived archiving +argue argues argued argued arguing +argufy argufies argufied argufied argufying +arise arises arose arisen arising +arm arms armed armed arming +armour armours armoured armoured armouring +aromatize aromatizes aromatized aromatized aromatizing +arouse arouses aroused aroused arousing +arraign arraigns arraigned arraigned arraigning +arrange arranges arranged arranged arranging +array arrays arrayed arrayed arraying +arrest arrests arrested arrested arresting +arrive arrives arrived arrived arriving +arrogate arrogates arrogated arrogated arrogating +arse arses arsed arsed arsing +arterialize arterializes arterialized arterialized arterializing +article articles articled articled articling +articulate articulates articulated articulated articulating +artificialize artificializes artificialized artificialized artificializing +aryanize aryanizes aryanized aryanized aryanizing +ascend ascends ascended ascended ascending +ascertain ascertains ascertained ascertained ascertaining +ascribe ascribes ascribed ascribed ascribing +ask asks asked asked asking +asperse asperses aspersed aspersed aspersing +asphalt asphalts asphalted asphalted asphalting +asphyxiate asphyxiates asphyxiated asphyxiated asphyxiating +aspirate aspirates aspirated aspirated aspirating +aspire aspires aspired aspired aspiring +assail assails assailed assailed assailing +assassinate assassinates assassinated assassinated assassinating +assault assaults assaulted assaulted assaulting +assay assays assayed assayed assaying +assemble assembles assembled assembled assembling +assent assents assented assented assenting +assert asserts asserted asserted asserting +assess assesses assessed assessed assessing +asseverate asseverates asseverated asseverated asseverating +assibilate assibilates assibilated assibilated assibilating +assign assigns assigned assigned assigning +assimilate assimilates assimilated assimilated assimilating +assist assists assisted assisted assisting +associate associates associated associated associating +assoil assoils assoiled assoiled assoiling +assort assorts assorted assorted assorting +assuage assuages assuaged assuaged assuaging +assume assumes assumed assumed assuming +assure assures assured assured assuring +asterisk asterisks asterisked asterisked asterisking +astonish astonishes astonished astonished astonishing +astound astounds astounded astounded astounding +astrict astricts astricted astricted astricting +atomise atomises atomised atomised atomising +atomize atomizes atomized atomized atomizing +atone atones atoned atoned atoning +atrophy atrophies atrophied atrophied atrophying +attach attaches attached attached attaching +attack attacks attacked attacked attacking +attain attains attained attained attaining +attaint attaints attainted attainted attainting +attemper attempers attempered attempered attempering +attempt attempts attempted attempted attempting +attend attends attended attended attending +attenuate attenuates attenuated attenuated attenuating +attest attests attested attested attesting +attire attires attired attired attiring +attitudinize attitudinizes attitudinized attitudinized attitudinizing +attorn attorns attorned attorned attorning +attract attracts attracted attracted attracting +attribute attributes attributed attributed attributing +attune attunes attuned attuned attuning +auction auctions auctioned auctioned auctioning +auctioneer auctioneers auctioneered auctioneered auctioneering +audit audits audited audited auditing +audition auditions auditioned auditioned auditioning +augment augments augmented augmented augmenting +augur augurs augured augured auguring +auscultate auscultates auscultated auscultated auscultating +auspicate auspicates auspicated auspicated auspicating +australianize australianizes australianized australianized australianizing +authenticate authenticates authenticated authenticated authenticating +author authors authored authored authoring +authorise authorises authorised authorised authorising +authorize authorizes authorized authorized authorizing +autoclave autoclaves autoclaved autoclaved autoclaving +autocomplete autocompletes autocompleted autocompleted autocompleting +autograph autographs autographed autographed autographing +autolyze autolyzes autolyzed autolyzed autolyzing +automate automates automated automated automating +automatize automatizes automatized automatized automatizing +autosave autosaves autosaved autosaved autosaving +autotomize autotomizes autotomized autotomized autotomizing +avail avails availed availed availing +avalanche avalanches avalanched avalanched avalanching +avenge avenges avenged avenged avenging +aver avers averred averred averring +average averages averaged averaged averaging +avert averts averted averted averting +aviate aviates aviated aviated aviating +avoid avoids avoided avoided avoiding +avouch avouches avouched avouched avouching +avow avows avowed avowed avowing +await awaits awaited awaited awaiting +awake awakes awoke awoken awaking +awaken awakens awakened awakened awakening +award awards awarded awarded awarding +awe awes awed awed awing +axe axes axed axed axing +azotize azotizes azotized azotized azotizing +baa baas baaed baaed baaing +babbitt babbitts babbitted babbitted babbitting +babble babbles babbled babbled babbling +baby babies babied babied babying +babysit babysits babysat babysat babysitting +back backs backed backed backing +back-burner back-burners back-burnered back-burnered back-burnering +back-heel back-heels back-heeled back-heeled back-heeling +back-pedal back-pedals back-pedalled back-pedalled back-pedalling +backbite backbites backbit backbitten backbiting +backburner backburners backburnered backburnered backburnering +backcomb backcombs backcombed backcombed backcombing +backcross backcrosses backcrossed backcrossed backcrossing +backdate backdates backdated backdated backdating +backfill backfills backfilled backfilled backfilling +backfire backfires backfired backfired backfiring +backhand backhands backhanded backhanded backhanding +backheel backheels backheeled backheeled backheeling +backlight backlights backlit backlit backlighting +backlink backlinks backlinked backlinked backlinking +backpack backpacks backpacked backpacked backpacking +backpedal backpedals backpedalled backpedalled backpedalling +backslide backslides backslid backslidden backsliding +backslide backslides backslided backslided backsliding +backspace backspaces backspaced backspaced backspacing +backstitch backstitches backstitched backstitched backstitching +backstroke backstrokes backstroked backstroked backstroking +backtrack backtracks backtracked backtracked backtracking +backwash backwashes backwashed backwashed backwashing +backwater backwaters backwatered backwatered backwatering +bad-mouth bad-mouths bad-mouthed bad-mouthed bad-mouthing +badger badgers badgered badgered badgering +badmouth badmouths badmouthed badmouthed badmouthing +baffle baffles baffled baffled baffling +bag bags bagged bagged bagging +bail bails bailed bailed bailing +bait baits baited baited baiting +baize baizes baized baized baizing +bake bakes baked baked baking +baksheesh baksheeshes baksheeshed baksheeshed baksheeshing +balance balances balanced balanced balancing +bale bales baled baled baling +balk balks balked balked balking +balkanise balkanises balkanised balkanised balkanising +balkanize balkanizes balkanized balkanized balkanizing +ball balls balled balled balling +ballast ballasts ballasted ballasted ballasting +balloon balloons ballooned ballooned ballooning +ballot ballots balloted balloted balloting +balls ballses ballsed ballsed ballsing +ballyhoo ballyhoos ballyhooed ballyhooed ballyhooing +ballyrag ballyrags ballyragged ballyragged ballyragging +bamboozle bamboozles bamboozled bamboozled bamboozling +ban bans banned banned banning +band bands banded banded banding +bandage bandages bandaged bandaged bandaging +bandy bandies bandied bandied bandying +bang bangs banged banged banging +banish banishes banished banished banishing +bank banks banked banked banking +bankroll bankrolls bankrolled bankrolled bankrolling +bankrupt bankrupts bankrupted bankrupted bankrupting +banquet banquets banqueted banqueted banqueting +bant bants banted banted banting +banter banters bantered bantered bantering +baptise baptises baptised baptised baptising +baptize baptizes baptized baptized baptizing +bar bars barred barred barring +bar-hop bar-hops bar-hopped bar-hopped bar-hopping +barbarize barbarizes barbarized barbarized barbarizing +barbecue barbecues barbecued barbecued barbecuing +barber barbers barbered barbered barbering +barde bards barded barded barding +bare bares bared bared baring +barf barfs barfed barfed barfing +bargain bargains bargained bargained bargaining +barge barges barged barged barging +barhop barhops barhopped barhopped barhopping +bark barks barked barked barking +barnstorm barnstorms barnstormed barnstormed barnstorming +barrack barracks barracked barracked barracking +barrage barrages barraged barraged barraging +barrel barrels barrelled barrelled barrelling +barrel-roll barrel-rolls barrel-rolled barrel-rolled barrel-rolling +barricade barricades barricaded barricaded barricading +barter barters bartered bartered bartering +base bases based based basing +bash bashes bashed bashed bashing +basify basifies basified basified basifying +bask basks basked basked basking +basset bassets basseted basseted basseting +bastardise bastardises bastardised bastardised bastardising +bastardize bastardizes bastardized bastardized bastardizing +baste bastes basted basted basting +bastinado bastinadoes bastinadoed bastinadoed bastinadoing +bat bats batted batted batting +batch batches batched batched batching +bate bates bated bated bating +batfowl batfowls batfowled batfowled batfowling +bath baths bathed bathed bathing +bathe bathes bathed bathed bathing +batten battens battened battened battening +batter batters battered battered battering +battle battles battled battled battling +battledore battledores battledored battledored battledoring +baulk baulks baulked baulked baulking +bawl bawls bawled bawled bawling +bay bays bayed bayed baying +bayonet bayonets bayoneted bayoneted bayoneting +bcc bcc's bcc'ed bcc'ed bcc'ing +be is was been being +beach beaches beached beached beaching +beacon beacons beaconed beaconed beaconing +bead beads beaded beaded beading +beagle beagles beagled beagled beagling +beam beams beamed beamed beaming +bean beans beaned beaned beaning +bear bears bore born bearing +bear bears bore borne bearing +beard beards bearded bearded bearding +beat beats beat beaten beating +beatbox beatboxes beatboxed beatboxed beatboxing +beatify beatifies beatified beatified beatifying +beautify beautifies beautified beautified beautifying +beaver beavers beavered beavered beavering +bechance bechances bechanced bechanced bechancing +beckon beckons beckoned beckoned beckoning +becloud beclouds beclouded beclouded beclouding +become becomes became become becoming +bed beds bedded bedded bedding +bedaub bedaubs bedaubed bedaubed bedaubing +bedazzle bedazzles bedazzled bedazzled bedazzling +bedeck bedecks bedecked bedecked bedecking +bedevil bedevils bedevilled bedevilled bedevilling +bedew bedews bedewed bedewed bedewing +bedight bedights bedighted bedighted bedighting +bedim bedims bedimmed bedimmed bedimming +bedizen bedizens bedizened bedizened bedizening +bedraggle bedraggles bedraggled bedraggled bedraggling +beef beefs beefed beefed beefing +beep beeps beeped beeped beeping +beeswax beeswaxes beeswaxed beeswaxed beeswaxing +beetle beetles beetled beetled beetling +befall befalls befell befallen befalling +befit befits befitted befitted befitting +befog befogs befogged befogged befogging +befool befools befooled befooled befooling +befoul befouls befouled befouled befouling +befriend befriends befriended befriended befriending +befuddle befuddles befuddled befuddled befuddling +beg begs begged begged begging +beget begets begat begotten begetting +beget begets begot begot begetting +beggar beggars beggared beggared beggaring +begin begins began begun beginning +begird begirds begirt begirt begirding +begrime begrimes begrimed begrimed begriming +begrudge begrudges begrudged begrudged begrudging +beguile beguiles beguiled beguiled beguiling +behave behaves behaved behaved behaving +behead beheads beheaded beheaded beheading +behold beholds beheld beheld beholding +behove behoves behoved behoved behoving +bejewel bejewels bejewelled bejewelled bejewelling +belabour belabours belaboured belaboured belabouring +belay belays belayed belayed belaying +belch belches belched belched belching +beleaguer beleaguers beleaguered beleaguered beleaguering +belie belies belied belied belying +believe believes believed believed believing +belittle belittles belittled belittled belittling +bell bells belled belled belling +bellow bellows bellowed bellowed bellowing +belly bellies bellied bellied bellying +belly-laugh belly-laughs' belly-laughed belly-laughed belly-laughing +bellyache bellyaches bellyached bellyached bellyaching +bellyland bellylands bellylanded bellylanded bellylanding +belong belongs belonged belonged belonging +belt belts belted belted belting +bemean bemeans bemeaned bemeaned bemeaning +bemire bemires bemired bemired bemiring +bemoan bemoans bemoaned bemoaned bemoaning +bemuse bemuses bemused bemused bemusing +bename benames benempt benempt benaming +bench benches benched benched benching +bench-test bench-tests bench-tested bench-tested bench-testing +benchmark benchmarks benchmarked benchmarked benchmarking +benchtest benchtests benchtested benchtested benchtesting +bend bends bent bent bending +benefice benefices beneficed beneficed beneficing +benefit benefits benefited benefited benefiting +benumb benumbs benumbed benumbed benumbing +bequeath bequeaths bequeathed bequeathed bequeathing +berate berates berated berated berating +bereave bereaves bereaved bereaved bereaving +bereave bereaves bereft bereft bereaving +berry berries berried berried berrying +berth berths berthed berthed berthing +beseech beseeches beseeched beseeched beseeching +beseem beseems beseemed beseemed beseeming +beset besets beset beset besetting +beshrew beshrews beshrewed beshrewed beshrewing +besiege besieges besieged besieged besieging +besmear besmears besmeared besmeared besmearing +besmirch besmirches besmirched besmirched besmirching +bespangle bespangles bespangled bespangled bespangling +bespatter bespatters bespattered bespattered bespattering +bespeak bespeaks bespoke bespoken bespeaking +bespread bespreads bespreaded bespreaded bespreading +besprinkle besprinkles besprinkled besprinkled besprinkling +best bests bested bested besting +besteaded besteads besteadeded besteadeded besteading +bestialize bestializes bestialized bestialized bestializing +bestir bestirs bestirred bestirred bestirring +bestow bestows bestowed bestowed bestowing +bestrew bestrews bestrewed bestrewn bestrewing +bestride bestrides bestrode bestrode bestriding +bet bets bet bet betting +beta-test beta-tests beta-tested beta-tested beta-testing +betake betakes betook betaken betaking +betatest betatests betatested betatested betatesting +bethink bethinks bethought bethought bethinking +betide betides betided betided betiding +betoken betokens betokened betokened betokening +betray betrays betrayed betrayed betraying +betroth betroths betrothed betrothed betrothing +better betters bettered bettered bettering +bewail bewails bewailed bewailed bewailing +beware bewares bewared bewared bewaring +bewilder bewilders bewildered bewildered bewildering +bewitch bewitches bewitched bewitched bewitching +bewray bewrays bewrayed bewrayed bewraying +bias biases biased biased biasing +bicker bickers bickered bickered bickering +bicycle bicycles bicycled bicycled bicycling +bid bids bade bidden bidding +bid bids bid bid bidding +bide bides bided bided biding +biff biffs biffed biffed biffing +bifurcate bifurcates bifurcated bifurcated bifurcating +big bigs bigged bigged bigging +big-note big-notes big-noted big-noted big-noting +bight bights bighted bighted bighting +bike bikes biked biked biking +bilge bilges bilged bilged bilging +bilk bilks bilked bilked bilking +bill bills billed billed billing +billet billets billeted billeted billeting +billow billows billowed billowed billowing +bimble bimbles bimbled bimbled bimbling +bin bins binned binned binning +bind binds bound bound binding +binge binges binged binged bingeing +bioassay bioassays bioassayed bioassayed bioassaying +biodegrade biodegrades biodegraded biodegraded biodegrading +birch birches birched birched birching +bird birds birded birded birding +bird's-nest bird's-nests bird's-nested bird's-nested bird's-nesting +birddog birddogs birddogged birddogged birddogging +birdie birdies birdied birdied birdieing +birdlime birdlimes birdlimed birdlimed birdliming +birdy birdies birdied birdied birdying +birl birls birled birled birling +birr birrs birred birred birring +birth births birthed birthed birthing +bisect bisects bisected bisected bisecting +bit bits bitted bitted bitting +bitch bitches bitched bitched bitching +bite bites bit bitten biting +bitmap bitmaps bitmapped bitmapped bitmapping +bitter bitters bittered bittered bittering +bituminize bituminizes bituminized bituminized bituminizing +bivouac bivouacs bivouacked bivouacked bivouacking +bivvy bivvies bivvied bivvied bivvying +blab blabs blabbed blabbed blabbing +blabber blabbers blabbered blabbered blabbering +black blacks blacked blacked blacking +black-lead black-leads black-leaded black-leaded black-leading +blackball blackballs blackballed blackballed blackballing +blackbird blackbirds blackbirded blackbirded blackbirding +blacken blackens blackened blackened blackening +blackguard blackguards blackguarded blackguarded blackguarding +blackjack blackjacks blackjacked blackjacked blackjacking +blackleg blacklegs blacklegged blacklegged blacklegging +blacklist blacklists blacklisted blacklisted blacklisting +blackmail blackmails blackmailed blackmailed blackmailing +blackmarket blackmarkets blackmarketed blackmarketed blackmarketing +blackout blackouts blackouted blackouted blackouting +blag blags blagged blagged blagging +blah blahs blahed blahed blahing +blame blames blamed blamed blaming +blanch blanches blanched blanched blanching +blandish blandishes blandished blandished blandishing +blank blanks blanked blanked blanking +blanket blankets blanketed blanketed blanketing +blare blares blared blared blaring +blarney blarneys blarneyed blarneyed blarneying +blaspheme blasphemes blasphemed blasphemed blaspheming +blast blasts blasted blasted blasting +blat blats blatted blatted blatting +blather blathers blathered blathered blathering +blaze blazes blazed blazed blazing +blazon blazons blazoned blazoned blazoning +bleach bleaches bleached bleached bleaching +blear blear bleared bleared blearing +bleat bleats bleated bleated bleating +bleed bleeds bled bled bleeding +bleep bleeps bleeped bleeped bleeping +blemish blemishes blemished blemished blemishing +blench blenches blenched blenched blenching +blend blends blended blended blending +blent blents blented blented blenting +bless blesses blessed blessed blessing +blest blests blested blested blesting +blether blethers blethered blethered blethering +blight blights blighted blighted blighting +blind blinds blinded blinded blinding +blindfold blindfolds blindfolded blindfolded blindfolding +blindside blindsides blindsided blindsided blindsiding +blink blinks blinked blinked blinking +blip blips blipped blipped blipping +bliss blisses blissed blissed blissing +blister blisters blistered blistered blistering +blitz blitzes blitzed blitzed blitzing +bloat bloats bloated bloated bloating +blob blobs blobbed blobbed blobbing +block blocks blocked blocked blocking +blockade blockades blockaded blockaded blockading +blog blogs blogged blogged blogging +blood bloods blooded blooded blooding +bloody bloodies bloodied bloodied bloodying +bloom blooms bloomed bloomed blooming +bloop bloops blooped blooped blooping +blossom blossoms blossomed blossomed blossoming +blot blots blotted blotted blotting +blotch blotches blotched blotched blotching +blouse blouses bloused bloused blousing +bloviate bloviates bloviated bloviated bloviating +blow blows blew blown blowing +blow-dry blow-dries blow-dried blow-dried blow-drying +blow-wave blow-waves blow-waved blow-waved blow-waving +blowdry blowdries blowdried blowdried blowdrying +blub blubs blubbed blubbed blubbing +blubber blubbers blubbered blubbered blubbering +bludge bludges bludged bludged bludging +bludgeon bludgeons bludgeoned bludgeoned bludgeoning +blue blues blued blued bluing +bluepencil bluepencils bluepenciled bluepenciled bluepenciling +blueprint blueprints blueprinted blueprinted blueprinting +bluff bluffs bluffed bluffed bluffing +blunder blunders blundered blundered blundering +blunge blunges blunged blunged blunging +blunt blunts blunted blunted blunting +blur blurs blurred blurred blurring +blurt blurts blurted blurted blurting +blush blushes blushed blushed blushing +bluster blusters blustered blustered blustering +board boards boarded boarded boarding +boast boasts boasted boasted boasting +boat boats boated boated boating +bob bobs bobbed bobbed bobbing +bobble bobbles bobbled bobbled bobbling +bobol bobols boboled boboled boboling +bobsleigh bobsleighs bobsleighed bobsleighed bobsleighing +bode bodes boded boded boding +bodge bodges bodged bodged bodging +body bodies bodied bodied bodying +bodycheck bodychecks bodychecked bodychecked bodychecking +bog bogs bogged bogged bogging +boggle boggles boggled boggled boggling +bogie bogies bogied bogied bogieing +boil boils boiled boiled boiling +bollock bollocks bollocked bollocked bollocking +bolster bolsters bolstered bolstered bolstering +bolt bolts bolted bolted bolting +bomb bombs bombed bombed bombing +bombard bombards bombarded bombarded bombarding +bond bonds bonded bonded bonding +bone bones boned boned boning +bong bongs bonged bonged bonging +bonk bonks bonked bonked bonking +boo boos booed booed booing +boob boobs boobed boobed boobing +booby-trap booby-traps booby-trapped booby-trapped booby-trapping +boobytrap boobytraps boobytrapped boobytrapped boobytrapping +boodle boodles boodled boodled boodling +boogie boogies boogied boogied boogying +boohoo boohoos boohooed boohooed boohooing +book books booked booked booking +bookmark bookmarks bookmarked bookmarked bookmarking +boom booms boomed boomed booming +boomerang boomerangs boomeranged boomeranged boomeranging +boondoggle boondoggles boondoggled boondoggled boondoggling +boost boosts boosted boosted boosting +boot boots booted booted booting +bootleg bootlegs bootlegged bootlegged bootlegging +bootlick bootlicks bootlicked bootlicked bootlicking +booze boozes boozed boozed boozing +bop bops bopped bopped bopping +borate borates borated borated borating +border borders bordered bordered bordering +bore bores bored bored boring +borrow borrows borrowed borrowed borrowing +bosom bosoms bosomed bosomed bosoming +boss bosses bossed bossed bossing +botanize botanizes botanized botanized botanizing +botch botches botched botched botching +bother bothers bothered bothered bothering +botox botoxes botoxed botoxed botoxing +bottle bottles bottled bottled bottling +bottle-feed bottle-feeds bottle-fed bottle-fed bottle-feeding +bottlefeed bottlefeeds bottlefed bottlefed bottlefeeding +bottleneck bottlenecks bottlenecked bottlenecked bottlenecking +bottom bottoms bottomed bottomed bottoming +boult boults boulted boulted boulting +bounce bounces bounced bounced bouncing +bound bounds bounded bounded bounding +bow bows bowed bowed bowing +bowdlerise bowdlerises bowdlerised bowdlerised bowdlerising +bowdlerize bowdlerizes bowdlerized bowdlerized bowdlerizing +bowl bowls bowled bowled bowling +bowse bowses bowsed bowsed bowsing +bowwow bowwows bowwowed bowwowed bowwowing +box boxes boxed boxed boxing +boxhaul boxhauls boxhauled boxhauled boxhauling +boycott boycotts boycotted boycotted boycotting +braai braais braaied braaied braaiing +brabble brabbles brabbled brabbled brabbling +brace braces braced braced bracing +brachiate brachiates brachiated brachiated brachiating +bracket brackets bracketed bracketed bracketing +brag brags bragged bragged bragging +braid braids braided braided braiding +brail brails brailed brailed brailing +braille brailles brailled brailled brailling +brain brains brained brained braining +brainstorm brainstorms brainstormed brainstormed brainstorming +brainwash brainwashes brainwashed brainwashed brainwashing +braise braises braised braised braising +brake brakes braked braked braking +bramble brambles brambled brambled brambling +branch branches branched branched branching +brand brands branded branded branding +brandish brandishes brandished brandished brandishing +brattice brattices bratticed bratticed bratticing +brave braves braved braved braving +brawl brawls brawled brawled brawling +bray brays brayed brayed braying +braze brazes brazed brazed brazing +brazen brazens brazened brazened brazening +breach breaches breached breached breaching +bread breads breaded breaded breading +break breaks broke broken breaking +breakaway breakaways breakawayed breakawayed breakawaying +breakdance breakdances breakdanced breakdanced breakdancing +breakfast breakfasts breakfasted breakfasted breakfasting +bream breams breamed breamed breaming +breast breasts breasted breasted breasting +breast-feed breast-feeds breast-fed breast-fed breast-feeding +breastfeed breastfeeds breastfed breastfed breastfeeding +breathalyse breathalyses breathalysed breathalysed breathalysing +breathalyze breathalyzes breathalyzed breathalyzed breathalyzing +breathe breathes breathed breathed breathing +brede bredes breded breded breding +breech breeches breeched breeched breeching +breed breeds bred bred breeding +breeze breezes breezed breezed breezing +brevet brevets brevetted brevetted brevetting +brew brews brewed brewed brewing +brey breys breyed breyed breying +bribe bribes bribed bribed bribing +brick bricks bricked bricked bricking +bridge bridges bridged bridged bridging +bridle bridles bridled bridled bridling +brief briefs briefed briefed briefing +brigade brigades brigaded brigaded brigading +brighten brightens brightened brightened brightening +brim brims brimmed brimmed brimming +brine brines brined brined brining +bring brings brought brought bringing +briquette briquettes briquetted briquetted briquetting +bristle bristles bristled bristled bristling +broach broaches broached broached broaching +broadcast broadcasts broadcast broadcast broadcasting +broadcast broadcasts broadcasted broadcasted broadcasting +broaden broadens broadened broadened broadening +broadside broadsides broadsided broadsided broadsiding +brocade brocades brocaded brocaded brocading +broddle broddles broddled broddled broddling +broider broiders broidered broidered broidering +broil broils broiled broiled broiling +broker brokers brokered brokered brokering +bromate bromates bromated bromated bromating +brominate brominates brominated brominated brominating +bronze bronzes bronzed bronzed bronzing +brood broods brooded brooded brooding +brook brooks brooked brooked brooking +browbeat browbeats browbeat browbeaten browbeating +brown browns browned browned browning +brown-bag brown-bags brown-bagged brown-bagged brown-bagging +brown-nose brown-nones brown-nosed brown-nosed brown-nosing +brownbag brownbags brownbagged brownbagged brownbagging +brownnose brownnones brownnosed brownnosed brownnosing +browse browses browsed browsed browsing +bruise bruises bruised bruised bruising +bruit bruits bruited bruited bruiting +brush brushes brushed brushed brushing +brutalise brutalises brutalised brutalised brutalising +brutalize brutalizes brutalized brutalized brutalizing +brutify brutifies brutified brutified brutifying +bubble bubbles bubbled bubbled bubbling +buck bucks bucked bucked bucking +bucket buckets bucketed bucketed bucketing +buckle buckles buckled buckled buckling +buckler bucklers bucklered bucklered bucklering +buckram buckrams buckramed buckramed buckraming +bud buds budded budded budding +buddle buddles buddled buddled buddling +buddy buddies buddied buddied buddying +budge budges budged budged budging +budget budgets budgeted budgeted budgeting +buff buffs buffed buffed buffing +buffalo buffalos buffaloed buffaloed buffaloing +buffer buffers buffered buffered buffering +buffet buffets buffeted buffeted buffeting +bug bugs bugged bugged bugging +bugger buggers buggered buggered buggering +bugle bugles bugled bugled bugling +build builds built built building +bulge bulges bulged bulged bulging +bulk bulks bulked bulked bulking +bull bulls bulled bulled bulling +bulldoze bulldozes bulldozed bulldozed bulldozing +bulletin bulletins bulletined bulletined bulletining +bulletproof bulletproofs bulletproofed bulletproofed bulletproofing +bullshit bullshits bullshitted bullshitted bullshitting +bullwhip bullwhips bullwhipped bullwhipped bullwhipping +bully bullies bullied bullied bullying +bullyrag bullyrags bullyragged bullyragged bullyragging +bulwark bulwarks bulwarked bulwarked bulwarking +bum bums bummed bummed bumming +bumble bumbles bumbled bumbled bumbling +bump bumps bumped bumped bumping +bump-start bump-starts bump-started bump-started bump-starting +bumper bumpers bumpered bumpered bumpering +bunch bunches bunched bunched bunching +bundle bundles bundled bundled bundling +bung bungs bunged bunged bunging +bungle bungles bungled bungled bungling +bunk bunks bunked bunked bunking +bunker bunkers bunkered bunkered bunkering +bunko bunkos bunkoed bunkoed bunkoing +bunny-hop bunny-hops bunny-hopped bunny-hopped bunny-hopping +bunnyhop bunnyhops bunnyhopped bunnyhopped bunnyhopping +bunt bunts bunted bunted bunting +buoy buoys buoyed buoyed buoying +bur burs burred burred burring +burble burbles burbled burbled burbling +burden burdens burdened burdened burdening +bureaucratize bureaucratizes bureaucratized bureaucratized bureaucratizing +burgeon burgeons burgeoned burgeoned burgeoning +burglarise burglarises burglarised burglarised burglarising +burglarize burglarizes burglarized burglarized burglarizing +burgle burgles burgled burgled burgling +burke burkes burked burked burking +burl burls burled burled burling +burlesque burlesques burlesqued burlesqued burlesquing +burn burns burned burned burning +burn burns burnt burnt burning +burnish burnishes burnished burnished burnishing +burp burps burped burped burping +burrow burrows burrowed burrowed burrowing +burst bursts burst burst bursting +burthen burthens burthened burthened burthening +bury buries buried buried burying +bus buses bused bused busing +bush bushes bushed bushed bushing +bushel bushels bushelled bushelled bushelling +bushwhack bushwhacks bushwhacked bushwhacked bushwhacking +busk busks busked busked busking +buss busses bussed bussed bussing +bust busts bust bust busting +bustle bustles bustled bustled bustling +busy busies busied busied busying +butcher butchers butchered butchered butchering +butt butts butted butted butting +butter butters buttered buttered buttering +button buttons buttoned buttoned buttoning +buttonhole buttonholes buttonholed buttonholed buttonholing +buttress buttresses buttressed buttressed buttressing +buy buys bought bought buying +buzz buzzes buzzed buzzed buzzing +bypass bypasses bypassed bypassed bypassing +cabal cabals caballed caballed caballing +cabbage cabbages cabbaged cabbaged cabbaging +cable cables cabled cabled cabling +cache caches cached cached caching +cachinnate cachinnates cachinnated cachinnated cachinnating +cackle cackles cackled cackled cackling +caddie caddies caddied caddied caddying +caddy caddies caddied caddied caddying +cadge cadges cadged cadged cadging +cage cages caged caged caging +cagmag cagmags cagmaged cagmaged cagmaging +cajole cajoles cajoled cajoled cajoling +cake cakes caked caked caking +calcify calcifies calcified calcified calcifying +calcine calcines calcined calcined calcining +calculate calculates calculated calculated calculating +calendar calendars calendared calendared calendaring +calender calenders calendered calendered calendering +calibrate calibrates calibrated calibrated calibrating +calk calks calked calked calking +call calls called called calling +calliper callipers callipered callipered callipering +callous callouses calloused calloused callousing +callus calluses callused callused callusing +calm calms calmed calmed calming +calque calques calqued calqued calquing +calumniate calumniates calumniated calumniated calumniating +calve calves calved calved calving +camber cambers cambered cambered cambering +camouflage camouflages camouflaged camouflaged camouflaging +camp camps camped camped camping +campaign campaigns campaigned campaigned campaigning +camphorate camphorates camphorated camphorated camphorating +can cans canned canned canning +canal canals canalled canalled canalling +canalise canalises canalised canalised canalising +canalize canalizes canalized canalized canalizing +cancel cancels cancelled cancelled cancelling +candle candles candled candled candling +candy candies candied candied candying +cane canes caned caned caning +canker cankers cankered cankered cankering +cannibalise cannibalises cannibalised cannibalised cannibalising +cannibalize cannibalizes cannibalized cannibalized cannibalizing +cannon cannons cannoned cannoned cannoning +cannonade cannonades cannonaded cannonaded cannonading +cannonball cannonballs cannonballed cannonballed cannonballing +cannulate cannulates cannulated cannulated cannulating +canoe canoes canoed canoed canoeing +canonise canonises canonised canonised canonising +canonize canonizes canonized canonized canonizing +canoodle canoodles canoodled canoodled canoodling +canopy canopies canopied canopied canopying +cant cants canted canted canting +canter canters cantered cantered cantering +cantilever cantilevers cantilevered cantilevered cantilevering +cantillate cantillates cantillated cantillated cantillating +canton cantons cantoned cantoned cantoning +canulate canulates canulated canulated canulating +canvass canvasses canvassed canvassed canvassing +cap caps capped capped capping +capacitate capacitates capacitated capacitated capacitating +caparison caparisons caparisoned caparisoned caparisoning +caper capers capered capered capering +capitalise capitalises capitalised capitalised capitalising +capitalize capitalizes capitalized capitalized capitalizing +capitulate capitulates capitulated capitulated capitulating +caponize caponizes caponized caponized caponizing +capriole caprioles caprioled caprioled caprioling +capsise capsises capsised capsised capsising +capsize capsizes capsized capsized capsizing +capsulize capsulizes capsulized capsulized capsulizing +captain captains captained captained captaining +caption captions captioned captioned captioning +captivate captivates captivated captivated captivating +capture captures captured captured capturing +caramelise caramelises caramelised caramelised caramelising +caramelize caramelizes caramelized caramelized caramelizing +caravan caravans caravanned caravanned caravanning +carbolize carbolizes carbolized carbolized carbolizing +carbonado carbonados carbonadoed carbonadoed carbonadoing +carbonate carbonates carbonated carbonated carbonating +carbonise carbonises carbonised carbonised carbonising +carbonize carbonizes carbonized carbonized carbonizing +carburet carburets carburetted carburetted carburetting +carburise carburises carburised carburised carburising +carburize carburizes carburized carburized carburizing +card cards carded carded carding +care cares cared cared caring +careen careens careened careened careening +career careers careered careered careering +caress caresses caressed caressed caressing +caricature caricatures caricatured caricatured caricaturing +carillon carillons carillonned carillonned carillonning +carjack carjacks carjacked carjacked carjacking +cark carks carked carked carking +carnify carnifies carnified carnified carnifying +carny carnies carnied carnied carnying +carol carols carolled carolled carolling +carom caroms caromed caromed caroming +carouse carouses caroused caroused carousing +carp carps carped carped carping +carpenter carpenters carpentered carpentered carpentering +carpet carpets carpeted carpeted carpeting +carpet-bomb carpet-bombs carpet-bombed carpet-bombed carpet-bombing +carpetbomb carpetbombs carpetbombed carpetbombed carpetbombing +carpool carpools carpooled carpooled carpooling +carry carries carried carried carrying +cart carts carted carted carting +cartelize cartelizes cartelized cartelized cartelizing +cartwheel cartwheels cartwheeled cartwheeled cartwheeling +carve carves carved carved carving +cascade cascades cascaded cascaded cascading +case cases cased cased casing +caseate caseates caseated caseated caseating +casefy casefies casefied casefied casefying +caseharden casehardens casehardened casehardened casehardening +cash cashes cashed cashed cashing +cashier cashiers cashiered cashiered cashiering +casserole casseroles casseroled casseroled casseroling +cast casts cast cast casting +castigate castigates castigated castigated castigating +castle castles castled castled castling +castoff castoffs castoffed castoffed castoffing +castrate castrates castrated castrated castrating +cat cats catted catted catting +catalogue catalogues catalogued catalogued cataloguing +catalyse catalyses catalysed catalysed catalysing +catalyze catalyzes catalyzed catalyzed catalyzing +catapult catapults catapulted catapulted catapulting +catcall catcalls catcalled catcalled catcalling +catch catches caught caught catching +catechize catechizes catechized catechized catechizing +categorise categorises categorised categorised categorising +categorize categorizes categorized categorized categorizing +catenate catenates catenated catenated catenating +cater caters catered catered catering +caterwaul caterwauls caterwauled caterwauled caterwauling +catfish catfishes catfished catfished catfishing +catheterize catheterizes catheterized catheterized catheterizing +catholicize catholicizes catholicized catholicized catholicizing +catnap catnaps catnapped catnapped catnapping +caucus caucuses caucused caucused caucusing +caulk caulks caulked caulked caulking +cause causes caused caused causing +cauterise cauterises cauterised cauterised cauterising +cauterize cauterizes cauterized cauterized cauterizing +caution cautions cautioned cautioned cautioning +cave caves caved caved caving +cavern caverns caverned caverned caverning +cavil cavils cavilled cavilled cavilling +cavort cavorts cavorted cavorted cavorting +caw caws cawed cawed cawing +caway caways cawayed cawayed cawaying +cc cc's cc'ed cc'ed cc'ing +cease ceases ceased ceased ceasing +cede cedes ceded ceded ceding +ceil ceils ceiled ceiled ceiling +celebrate celebrates celebrated celebrated celebrating +cellar cellars cellared cellared cellaring +cement cements cemented cemented cementing +cense censes censed censed censing +censor censors censored censored censoring +censure censures censured censured censuring +centralise centralises centralised centralised centralising +centralize centralizes centralized centralized centralizing +centre centres centred centred centring +centrifuge centrifuges centrifuged centrifuged centrifuging +centuplicate centuplicates centuplicated centuplicated centuplicating +cere ceres cered cered cering +cerebrate cerebrates cerebrated cerebrated cerebrating +certificate certificates certificated certificated certificating +certify certifies certified certified certifying +cess cesses cessed cessed cessing +chafe chafes chafed chafed chafing +chaff chaffs chaffed chaffed chaffing +chaffer chaffers chaffered chaffered chaffering +chagrin chagrins chagrined chagrined chagrining +chain chains chained chained chaining +chain-smoke chain-smokes chain-smoked chain-smoked chain-smoking +chain-stitch chain-stitches chain-stitched chain-stitched chain-stitching +chainreact chainreacts chainreacted chainreacted chainreacting +chainsmoke chainsmokes chainsmoked chainsmoked chainsmoking +chair chairs chaired chaired chairing +chalk chalks chalked chalked chalking +challan challans challaned challaned challaning +challenge challenges challenged challenged challenging +chamber chambers chambered chambered chambering +chamfer chamfers chamfered chamfered chamfering +chamois chamoises chamoised chamoised chamoising +champ champs champed champed champing +champion champions championed championed championing +chance chances chanced chanced chancing +chandelle chandelles chandelled chandelled chandelling +change changes changed changed changing +changeover changeovers changeovered changeovered changeovering +channel channels channelled channelled channelling +channel-hop channel-hops channel-hopped channel-hopped channel-hopping +channelhop channelhops channelhopped channelhopped channelhopping +channelize channelizes channelized channelized channelizing +chant chants chanted chanted chanting +chap chaps chapped chapped chapping +chaperone chaperones chaperoned chaperoned chaperoning +chapter chapters chaptered chaptered chaptering +char chars charred charred charring +character characters charactered charactered charactering +characterise characterises characterised characterised characterising +characterize characterizes characterized characterized characterizing +charbroil charbroils charbroiled charbroiled charbroiling +charcoal charcoals charcoaled charcoaled charcoaling +charge charges charged charged charging +chargesheet chargesheets chargesheeted chargesheeted chargesheeting +chargrill chargrills chargrilled chargrilled chargrilling +charm charms charmed charmed charming +chart charts charted charted charting +charter charters chartered chartered chartering +chase chases chased chased chasing +chass_e chass_es chass_ed chass_ed chass_eing +chass‹¨« chass‹¨«s chass‹¨«d chass‹¨«d chass‹¨«ing +chasten chastens chastened chastened chastening +chastise chastises chastised chastised chastising +chat chats chatted chatted chatting +chatter chatters chattered chattered chattering +chauffeur chauffeurs chauffeured chauffeured chauffeuring +chaw chaws chawed chawed chawing +cheapen cheapens cheapened cheapened cheapening +cheat cheats cheated cheated cheating +check checks checked checked checking +checker checkers checkered checkered checkering +checkmate checkmates checkmated checkmated checkmating +checkrow checkrows checkrowed checkrowed checkrowing +cheek cheeks cheeked cheeked cheeking +cheep cheeps cheeped cheeped cheeping +cheer cheers cheered cheered cheering +cheese cheeses cheesed cheesed cheesing +chelate chelates chelated chelated chelating +chelp chelps chelped chelped chelping +chemosorb chemosorbs chemosorbed chemosorbed chemosorbing +chequer chequers chequered chequered chequering +cherish cherishes cherished cherished cherishing +cherry-pick cherry-picks cherry-picked cherry-picked cherry-picking +cherrypick cherrypicks cherrypicked cherrypicked cherrypicking +chevy chevies chevied chevied chevying +chew chews chewed chewed chewing +chiack chiacks chiacked chiacked chiacking +chicane chicanes chicaned chicaned chicaning +chicken chickens chickened chickened chickening +chide chides chided chided chiding +chill chills chilled chilled chilling +chillax chillaxes chillaxed chillaxed chillaxing +chime chimes chimed chimed chiming +chin chins chinned chinned chinning +chine chines chined chined chining +chink chinks chinked chinked chinking +chip chips chipped chipped chipping +chirm chirms chirmed chirmed chirming +chirp chirps chirped chirped chirping +chirre chirrs chirred chirred chirring +chirrup chirrups chirruped chirruped chirruping +chisel chisels chiselled chiselled chiselling +chitchat chitchats chitchatted chitchatted chitchatting +chitter chitters chittered chittered chittering +chivvy chivvies chivvied chivvied chivvying +chivy chivvies chivvied chivvied chivying +chlorinate chlorinates chlorinated chlorinated chlorinating +chock chocks chocked chocked chocking +choke chokes choked choked choking +chomp chomps chomped chomped chomping +chondrify chondrifies chondrified chondrified chondrifying +choose chooses chose chosen choosing +chop chops chopped chopped chopping +chord chords chorded chorded chording +choreograph choreographs choreographed choreographed choreographing +chortle chortles chortled chortled chortling +chorus choruses chorused chorused chorusing +chow chows chowed chowed chowing +christen christens christened christened christening +christianize christianizes christianized christianized christianizing +chromakey chromakeys chromakeyed chromakeyed chromakeying +chrome chromes chromed chromed chroming +chronicle chronicles chronicled chronicled chronicling +chuck chucks chucked chucked chucking +chuckle chuckles chuckled chuckled chuckling +chuff chuffs chuffed chuffed chuffing +chug chugs chugged chugged chugging +chum chums chummed chummed chumming +chump chumps chumped chumped chumping +chunder chunders chundered chundered chundering +chunter chunters chuntered chuntered chuntering +church churches churched churched churching +churn churns churned churned churning +churr churrs churred churred churring +chute chutes chuted chuted chuting +chyack chyacks chyacked chyacked chyacking +cicatrize cicatrizes cicatrized cicatrized cicatrizing +cinch cinches cinched cinched cinching +cinchonize cinchonizes cinchonized cinchonized cinchonizing +cinder cinders cindered cindered cindering +cinematograph cinematographs cinematographed cinematographed cinematographing +cipher ciphers ciphered ciphered ciphering +circle circles circled circled circling +circuit circuits circuited circuited circuiting +circularize circularizes circularized circularized circularizing +circulate circulates circulated circulated circulating +circumambulate circumambulates circumambulated circumambulated circumambulating +circumcise circumcises circumcised circumcised circumcising +circumfuse circumfuses circumfused circumfused circumfusing +circumnavigate circumnavigates circumnavigated circumnavigated circumnavigating +circumnutate circumnutates circumnutated circumnutated circumnutating +circumscribe circumscribes circumscribed circumscribed circumscribing +circumstantiate circumstantiates circumstantiated circumstantiated circumstantiating +circumvallate circumvallates circumvallated circumvallated circumvallating +circumvent circumvents circumvented circumvented circumventing +cite cites cited cited citing +cityfy cityfies cityfied cityfied cityfying +civilise civilises civilised civilised civilising +civilize civilizes civilized civilized civilizing +clack clacks clacked clacked clacking +clad clads clad clad cladding +claim claims claimed claimed claiming +clam clams clammed clammed clamming +clamber clambers clambered clambered clambering +clamour clamours clamoured clamoured clamouring +clamp clamps clamped clamped clamping +clang clangs clanged clanged clanging +clangour clangours clangoured clangoured clangouring +clank clanks clanked clanked clanking +clap claps clapped clapped clapping +clap claps clapt clapt clapping +clapboard clapboards clapboarded clapboarded clapboarding +clapperclaw clapperclaws clapperclawed clapperclawed clapperclawing +clarify clarifies clarified clarified clarifying +clarion clarions clarioned clarioned clarioning +clash clashes clashed clashed clashing +clasp clasps clasped clasped clasping +class classes classed classed classing +classicize classicizes classicized classicized classicizing +classify classifies classified classified classifying +clatter clatters clattered clattered clattering +claver clavers clavered clavered clavering +claw claws clawed clawed clawing +clay clays clayed clayed claying +clean cleans cleaned cleaned cleaning +cleanse cleanses cleansed cleansed cleansing +clear clears cleared cleared clearing +cleat cleats cleated cleated cleating +cleave cleaves cleaved cleaved cleaving +cleck clecks clecked clecked clecking +cleft clefts clefted clefted clefting +clem clems clemmed clemmed clemming +clench clenches clenched clenched clenching +clepe clepes yclept yclept cleping +clerk clerks clerked clerked clerking +clew clews clewed clewed clewing +click clicks clicked clicked clicking +climax climaxes climaxed climaxed climaxing +climb climbs climbed climbed climbing +clinch clinches clinched clinched clinching +cling clings clung clung clinging +clink clinks clinked clinked clinking +clinker clinkers clinkered clinkered clinkering +clip clips clipped clipped clipping +cloak cloaks cloaked cloaked cloaking +clobber clobbers clobbered clobbered clobbering +clock clocks clocked clocked clocking +clog clogs clogged clogged clogging +cloister cloisters cloistered cloistered cloistering +clomb clombs clombed clombed clombing +clomp clomps clomped clomped clomping +clone clones cloned cloned cloning +clonk clonks clonked clonked clonking +clop clops clopped clopped clopping +close closes closed closed closing +closet closets closeted closeted closeting +closure closures closured closured closuring +clot clots clotted clotted clotting +clothe clothes clad clad clothing +clothe clothes clothed clothed clothing +cloture clotures clotured clotured cloturing +cloud clouds clouded clouded clouding +clout clouts clouted clouted clouting +clown clowns clowned clowned clowning +cloy cloys cloyed cloyed cloying +club clubs clubbed clubbed clubbing +clubhaul clubhauls clubhauled clubhauled clubhauling +cluck clucks clucked clucked clucking +clue clues clued clued clueing +clump clumps clumped clumped clumping +clunk clunks clunked clunked clunking +cluster clusters clustered clustered clustering +clutch clutches clutched clutched clutching +clutter clutters cluttered cluttered cluttering +clype clypes clyped clyped clyping +co-author co-authors co-authored co-authored co-authoring +co-edit co-edits co-edited co-edited co-editing +co-occur co-occurs co-occurred co-occurred co-occurring +co-opt co-opts co-opted co-opted co-opting +co-star co-stars co-starred co-starred co-starring +coach coaches coached coached coaching +coagulate coagulates coagulated coagulated coagulating +coal coals coaled coaled coaling +coalesce coalesces coalesced coalesced coalescing +coarsen coarsens coarsened coarsened coarsening +coast coasts coasted coasted coasting +coat coats coated coated coating +coauthor coauthors coauthored coauthored coauthoring +coax coaxes coaxed coaxed coaxing +cob cobs cobbed cobbed cobbing +cobble cobbles cobbled cobbled cobbling +cocainize cocainizes cocainized cocainized cocainizing +cock cocks cocked cocked cocking +cocker cockers cockered cockered cockering +cockle cockles cockled cockled cockling +cocknify cocknifies cocknified cocknified cocknifying +cocoon cocoons cocooned cocooned cocooning +cod cods codded codded codding +coddle coddles coddled coddled coddling +code codes coded coded coding +codename codenames codenamed codenamed codenaming +codify codifies codified codified codifying +coedit coedits coedited coedited coediting +coerce coerces coerced coerced coercing +coexist coexists coexisted coexisted coexisting +coextend coextends coextended coextended coextending +coextrude coextrudes coextruded coextruded coextruding +coff coffs coffed coffed coffing +coffer coffers coffered coffered coffering +cofound cofounds cofounded cofounded cofounding +cog cogs cogged cogged cogging +cogitate cogitates cogitated cogitated cogitating +cognize cognizes cognized cognized cognizing +cohabit cohabits cohabited cohabited cohabiting +cohere coheres cohered cohered cohering +cohobate cohobates cohobated cohobated cohobating +coif coifs coiffed coiffed coiffing +coiffure coiffures coiffured coiffured coiffuring +coil coils coiled coiled coiling +coin coins coined coined coining +coincide coincides coincided coincided coinciding +coinsure coinsures coinsured coinsured coinsuring +coke cokes coked coked coking +cold colds colded colded colding +cold call cold calls cold called cold called cold calling +cold-shoulder cold-shoulders cold-shouldered cold-shouldered cold-shouldering +coldshoulder coldshoulders coldshouldered coldshouldered coldshouldering +coldweld coldwelds coldwelded coldwelded coldwelding +collaborate collaborates collaborated collaborated collaborating +collapse collapses collapsed collapsed collapsing +collar collars collared collared collaring +collate collates collated collated collating +collect collects collected collected collecting +collectivise collectivises collectivised collectivised collectivising +collectivize collectivizes collectivized collectivized collectivizing +collet collets colleted colleted colleting +collide collides collided collided colliding +colligate colligates colligated colligated colligating +collimate collimates collimated collimated collimating +collocate collocates collocated collocated collocating +collogue collogues collogued collogued colloguing +collude colludes colluded colluded colluding +colly collies collied collied collying +colonise colonises colonised colonised colonising +colonize colonizes colonized colonized colonizing +color colors colored colored coloring +colorcode colorcodes colorcoded colorcoded colorcoding +colorise colorises colorised colorised colorising +colorize colorizes colorized colorized colorizing +colour colours coloured coloured colouring +comanage comanages comanaged comanaged comanaging +comb combs combed combed combing +combat combats combated combated combating +combine combines combined combined combining +combust combusts combusted combusted combusting +come comes came come coming +comfort comforts comforted comforted comforting +command commands commanded commanded commanding +commandeer commandeers commandeered commandeered commandeering +commeasure commeasures commeasured commeasured commeasuring +commemorate commemorates commemorated commemorated commemorating +commence commences commenced commenced commencing +commend commends commended commended commending +comment comments commented commented commenting +commentate commentates commentated commentated commentating +commercialise commercialises commercialised commercialised commercialising +commercialize commercializes commercialized commercialized commercializing +commingle commingles commingled commingled commingling +comminute comminutes comminuted comminuted comminuting +commiserate commiserates commiserated commiserated commiserating +commission commissions commissioned commissioned commissioning +commit commits committed committed committing +commix commixes commixed commixed commixing +commove commoves commoved commoved commoving +communalize communalizes communalized communalized communalizing +commune communes communed communed communing +communicate communicates communicated communicated communicating +communize communizes communized communized communizing +commutate commutates commutated commutated commutating +commute commutes commuted commuted commuting +comp comps comped comped comping +comp`ere comp`eres comp`ered comp`ered comp`ering +compact compacts compacted compacted compacting +companion companions companioned companioned companioning +company companies companied companied companying +compare compares compared compared comparing +comparison-shop comparison-shops comparison-shopped comparison-shopped comparison-shopping +comparisonshop comparisonshops comparisonshopped comparisonshopped comparisonshopping +compartmentalise compartmentalises compartmentalised compartmentalised compartmentalising +compartmentalize compartmentalizes compartmentalized compartmentalized compartmentalizing +compass compasses compassed compassed compassing +compel compels compelled compelled compelling +compensate compensates compensated compensated compensating +compere comperes compered compered compering +compete competes competed competed competing +compile compiles compiled compiled compiling +complain complains complained complained complaining +complect complects complected complected complecting +complement complements complemented complemented complementing +complete completes completed completed completing +complicate complicates complicated complicated complicating +compliment compliments complimented complimented complimenting +complot complots complotted complotted complotting +comply complies complied complied complying +comport comports comported comported comporting +compose composes composed composed composing +compost composts composted composted composting +compound compounds compounded compounded compounding +comprehend comprehends comprehended comprehended comprehending +compress compresses compressed compressed compressing +comprise comprises comprised comprised comprising +compromise compromises compromised compromised compromising +compute computes computed computed computing +computerise computerises computerised computerised computerising +computerize computerizes computerized computerized computerizing +comp‹¨«re comp‹¨«res comp‹¨«red comp‹¨«red comp‹¨«ring +con cons conned conned conning +concatenate concatenates concatenated concatenated concatenating +concave concaves concaved concaved concaving +conceal conceals concealed concealed concealing +concede concedes conceded conceded conceding +conceive conceives conceived conceived conceiving +concelebrate concelebrates concelebrated concelebrated concelebrating +concentrate concentrates concentrated concentrated concentrating +concentre concentres concentred concentred concentring +conceptualise conceptualises conceptualised conceptualised conceptualising +conceptualize conceptualizes conceptualized conceptualized conceptualizing +concern concerns concerned concerned concerning +concertina concertinas concertinaed concertinaed concertinaing +concertize concertizes concertized concertized concertizing +conciliate conciliates conciliated conciliated conciliating +conclude concludes concluded concluded concluding +concoct concocts concocted concocted concocting +concrete concretes concreted concreted concreting +concretize concretizes concretized concretized concretizing +concur concurs concurred concurred concurring +concuss concusses concussed concussed concussing +condemn condemns condemned condemned condemning +condense condenses condensed condensed condensing +condescend condescends condescended condescended condescending +condition conditions conditioned conditioned conditioning +condole condoles condoled condoled condoling +condone condones condoned condoned condoning +conduce conduces conduced conduced conducing +conduct conducts conducted conducted conducting +cone cones coned coned coning +confab confabs confabbed confabbed confabbing +confabulate confabulates confabulated confabulated confabulating +confect confects confected confected confecting +confederate confederates confederated confederated confederating +confer confers conferred conferred conferring +confess confesses confessed confessed confessing +confide confides confided confided confiding +configure configures configured configured configuring +confine confines confined confined confining +confirm confirms confirmed confirmed confirming +confiscate confiscates confiscated confiscated confiscating +conflate conflates conflated conflated conflating +conflict conflicts conflicted conflicted conflicting +conform conforms conformed conformed conforming +confound confounds confounded confounded confounding +confront confronts confronted confronted confronting +confuse confuses confused confused confusing +confute confutes confuted confuted confuting +conga congas congaed congaed congaing +congeal congeals congealed congealed congealing +congest congests congested congested congesting +conglobate conglobates conglobated conglobated conglobating +conglomerate conglomerates conglomerated conglomerated conglomerating +conglutinate conglutinates conglutinated conglutinated conglutinating +congratulate congratulates congratulated congratulated congratulating +congregate congregates congregated congregated congregating +conjecture conjectures conjectured conjectured conjecturing +conjoin conjoins conjoined conjoined conjoining +conjugate conjugates conjugated conjugated conjugating +conjure conjures conjured conjured conjuring +conk conks conked conked conking +conn cons conned conned conning +connect connects connected connected connecting +connive connives connived connived conniving +connote connotes connoted connoted connoting +conquer conquers conquered conquered conquering +conscientise conscientises conscientised conscientised conscientising +conscientize conscientizes conscientized conscientized conscientizing +conscript conscripts conscripted conscripted conscripting +consecrate consecrates consecrated consecrated consecrating +consent consents consented consented consenting +conserve conserves conserved conserved conserving +consider considers considered considered considering +consign consigns consigned consigned consigning +consist consists consisted consisted consisting +consociate consociates consociated consociated consociating +console consoles consoled consoled consoling +consolidate consolidates consolidated consolidated consolidating +consort consorts consorted consorted consorting +conspire conspires conspired conspired conspiring +constellate constellates constellated constellated constellating +consternate consternates consternated consternated consternating +constipate constipates constipated constipated constipating +constitute constitutes constituted constituted constituting +constitutionalize constitutionalizes constitutionalized constitutionalized constitutionalizing +constrain constrains constrained constrained constraining +constrict constricts constricted constricted constricting +constringe constringes constringed constringed constringing +construct constructs constructed constructed constructing +construe construes construed construed construing +consubstantiate consubstantiates consubstantiated consubstantiated consubstantiating +consult consults consulted consulted consulting +consume consumes consumed consumed consuming +consummate consummates consummated consummated consummating +contact contacts contacted contacted contacting +contain contains contained contained containing +containerize containerizes containerized containerized containerizing +contaminate contaminates contaminated contaminated contaminating +contango contangoes contangoed contangoed contangoing +contemn contemns contemned contemned contemning +contemplate contemplates contemplated contemplated contemplating +contemporize contemporizes contemporized contemporized contemporizing +contend contends contended contended contending +content contents contented contented contenting +contest contests contested contested contesting +contextualise contextualises contextualised contextualised contextualising +contextualize contextualizes contextualized contextualized contextualizing +continue continues continued continued continuing +contort contorts contorted contorted contorting +contour contours contoured contoured contouring +contract contracts contracted contracted contracting +contradict contradicts contradicted contradicted contradicting +contradistinguish contradistinguishes contradistinguished contradistinguished contradistinguishing +contraindicate contraindicates contraindicated contraindicated contraindicating +contrast contrasts contrasted contrasted contrasting +contravene contravenes contravened contravened contravening +contribute contributes contributed contributed contributing +contrive contrives contrived contrived contriving +control controls controlled controlled controlling +controvert controverts controverted controverted controverting +contuse contuses contused contused contusing +convalesce convalesces convalesced convalesced convalescing +convect convects convected convected convecting +convene convenes convened convened convening +conventionalize conventionalizes conventionalized conventionalized conventionalizing +converge converges converged converged converging +converse converses conversed conversed conversing +convert converts converted converted converting +convex convexes convexed convexed convexing +convey conveys conveyed conveyed conveying +convict convicts convicted convicted convicting +convince convinces convinced convinced convincing +convoke convokes convoked convoked convoking +convolute convolutes convoluted convoluted convoluting +convolve convolves convolved convolved convolving +convoy convoys convoyed convoyed convoying +convulse convulses convulsed convulsed convulsing +coo coos cooed cooed cooing +cooccur cooccurs cooccurred cooccurred cooccurring +cooey cooeys cooeyed cooeyed cooeying +cook cooks cooked cooked cooking +cool cools cooled cooled cooling +coop coops cooped cooped cooping +cooper coopers coopered coopered coopering +cooperate cooperates cooperated cooperated cooperating +coopt coopts coopted coopted coopting +coordinate coordinates coordinated coordinated coordinating +cop cops copped copped copping +cope copes coped coped coping +copolymerize copolymerizes copolymerized copolymerized copolymerizing +copper coppers coppered coppered coppering +copper-bottom copper-bottoms copper-bottomed copper-bottomed copper-bottoming +coppice coppices coppiced coppiced coppicing +coproduce coproduces coproduced coproduced coproducing +copulate copulates copulated copulated copulating +copy copies copied copied copying +copy-edit copy-edits copy-edited copy-edited copy-editing +copyedit copyedits copyedited copyedited copyediting +copyread copyreads copyread copyread copyreading +copyright copyrights copyrighted copyrighted copyrighting +coquet coquets coquetted coquetted coquetting +corbel corbels corbelled corbelled corbelling +cord cords corded corded cording +cordon cordons cordoned cordoned cordoning +core cores cored cored coring +cork corks corked corked corking +corkscrew corkscrews corkscrewed corkscrewed corkscrewing +corn corns corned corned corning +corner corners cornered cornered cornering +cornice cornices corniced corniced cornicing +corrade corrades corraded corraded corrading +corral corrals corralled corralled corraled +correct corrects corrected corrected correcting +correlate correlates correlated correlated correlating +correspond corresponds corresponded corresponded corresponding +corrival corrivals corrivaled corrivaled corrivaling +corroborate corroborates corroborated corroborated corroborating +corrode corrodes corroded corroded corroding +corrugate corrugates corrugated corrugated corrugating +corrupt corrupts corrupted corrupted corrupting +corset corsets corseted corseted corseting +coruscate coruscates coruscated coruscated coruscating +cosh coshes coshed coshed coshing +cosher coshers coshered coshered coshering +cosponsor cosponsors cosponsored cosponsored cosponsoring +cosset cossets cosseted cosseted cosseting +cost costs cost cost costing +costar costars costarred costarred costarring +costume costumes costumed costumed costuming +cosy cosies cosied cosied cosying +cote cotes coted coted coting +cotter cotters cottered cottered cottering +cotton cottons cottoned cottoned cottoning +couch couches couched couched couching +cough coughs coughed coughed coughing +counsel counsels counselled counselled counselling +count counts counted counted counting +countenance countenances countenanced countenanced countenancing +counter counters countered countered countering +counter-attack counter-attacks counter-attacked counter-attacked counter-attacking +counteract counteracts counteracted counteracted counteracting +counterattack counterattacks counterattacked counterattacked counterattacking +counterbalance counterbalances counterbalanced counterbalanced counterbalancing +counterchange counterchanges counterchanged counterchanged counterchanging +countercharge countercharges countercharged countercharged countercharging +counterclaim counterclaims counterclaimed counterclaimed counterclaiming +counterfeit counterfeits counterfeited counterfeited counterfeiting +countermand countermands countermanded countermanded countermanding +countermarch countermarches countermarched countermarched countermarching +countermine countermines countermined countermined countermining +countermove countermoves countermoved countermoved countermoving +counterplot counterplots counterplotted counterplotted counterplotting +counterpoint counterpoints counterpointed counterpointed counterpointing +counterpoise counterpoises counterpoised counterpoised counterpoising +counterproposal counterproposals counterproposaled counterproposaled counterproposaling +counterpunch counterpunches counterpunched counterpunched counterpunching +countersign countersigns countersigned countersigned countersigning +countersink countersinks countersank countersunk countersinking +countervail countervails countervailed countervailed countervailing +counterweigh counterweighs counterweighed counterweighed counterweighing +couple couples coupled coupled coupling +courier couriers couriered couriered couriering +course courses coursed coursed coursing +court courts courted courted courting +court-martial court-martials court-martialled court-martialled court-martialling +courtmartial courtmartials courtmartialled courtmartialled courtmartialling +cove coves coved coved coving +covenant covenants covenanted covenanted covenanting +cover covers covered covered covering +coverup coversup coveredup coveredup coveringup +covet covets coveted coveted coveting +cow cows cowed cowed cowing +cower cowers cowered cowered cowering +cowk cowks cowked cowked cowking +cowl cowls cowled cowled cowling +cowp cowps cowped cowped cowping +cox coxes coxed coxed coxing +cozen cozens cozened cozened cozening +cozy cozies cozied cozied cozying +crab crabs crabbed crabs crabbing +crack cracks cracked cracked cracking +crackle crackles crackled crackled crackling +cradle cradles cradled cradled cradling +cradle-snatch cradle-snatches cradle-snatched cradle-snatched cradle-snatching +cradlesnatch cradlesnatches cradlesnatched cradlesnatched cradlesnatching +craft crafts crafted crafted crafting +cram crams crammed crammed cramming +cramp cramps cramped cramped cramping +crane cranes craned craned craning +crank cranks cranked cranked cranking +crap craps crapped crapped crapping +crash crashes crashed crashed crashing +crash-dive crash-dives crash-dived crash-dived crash-diving +crash-dive crash-dives crash-dove crash-dove crash-diving +crash-land crash-lands crash-landed crash-landed crash-landing +crash-test crash-tests crash-tested crash-tested crash-testing +crashdive crashdives crashdived crashdived crashdiving +crashdive crashdives crashdove crashdove crashdiving +crashland crashlands crashlanded crashlanded crashlanding +crashtest crashtests crashtested crashtested crashtesting +crate crates crated crated crating +crater craters cratered cratered cratering +craunch craunches craunched craunched craunching +crave craves craved craved craving +crawl crawls crawled crawled crawling +crayon crayons crayoned crayoned crayoning +craze crazes crazed crazed crazing +creak creaks creaked creaked creaking +cream creams creamed creamed creaming +crease creases creased creased creasing +create creates created created creating +credential credentials credentialed credentialed credentialing +credit credits credited credited crediting +creep creeps creeped creeped creeping +creep creeps crept crept creeping +cremate cremates cremated cremated cremating +crenellate crenellates crenellated crenellated crenellating +creolise creolises creolised creolised creolising +creolize creolizes creolized creolized creolizing +creosote creosotes creosoted creosoted creosoting +crepe crepes creped creped creping +crepitate crepitates crepitated crepitated crepitating +crescendo crescendoes crescendoed crescendoed crescendoing +crest crests crested crested cresting +crevasse crevasses crevassed crevassed crevassing +crew crews crewed crewed crewing +crib cribs cribbed cribbed cribbing +crick cricks cricked cricked cricking +criminalise criminalises criminalised criminalised criminalising +criminalize criminalizes criminalized criminalized criminalizing +criminate criminates criminated criminated criminating +crimp crimps crimped crimped crimping +crimple crimples crimpled crimpled crimpling +crimson crimsons crimsoned crimsoned cringed +cringe cringes cringed cringed cringing +crinkle crinkles crinkled crinkled crinkling +cripple cripples crippled crippled crippling +crisp crisps crisped crisped crisping +criss-cross criss-crosses criss-crossed criss-crossed criss-crossing +crisscross crisscrosses crisscrossed crisscrossed crisscrossing +criticise criticises criticised criticised criticising +criticize criticizes criticized criticized criticizing +critique critiques critiqued critiqued critiquing +croak croaks croaked croaked croaking +crochet crochets crocheted crocheted crocheting +crock crocks crocked crocked crocking +crook crooks crooked crooked crooking +croon croons crooned crooned crooning +crop crops cropped cropped cropping +croquet croquets croqueted croqueted croqueting +cross crosses crossed crossed crossing +cross-breed cross-breeds cross-bred cross-bred cross-breeding +cross-check cross-checks cross-checked cross-checked cross-checking +cross-examine cross-examines cross-examined cross-examined cross-examining +cross-fade cross-fades cross-faded cross-faded cross-fading +cross-fertilise cross-fertilises cross-fertilised cross-fertilised cross-fertilising +cross-fertilize cross-fertilizes cross-fertilized cross-fertilized cross-fertilizing +cross-hatch cross-hatches cross-hatched cross-hatched cross-hatching +cross-polinate cross-polinates cross-pollinated cross-pollinated cross-pollinating +cross-post cross-posts cross-posted cross-posted cross-posting +cross-question cross-questions cross-questioned cross-questioned cross-questioning +cross-refer cross-refers cross-referred cross-referred cross-referring +crossbreed crossbreeds crossbred crossbred crossbreeding +crosscheck crosschecks crosschecked crosschecked crosschecking +crosscut crosscuts crosscut crosscut crosscutting +crossexamine crossexamines crossexamined crossexamined crossexamining +crossfertilise crossfertilises crossfertilised crossfertilised crossfertilising +crossfertilize crossfertilizes crossfertilized crossfertilized crossfertilizing +crosshatch crosshatches crosshatched crosshatched crosshatching +crossindex crossindexes crossindexed crossindexed crossindexing +crosspolinate crosspolinates crosspollinated crosspollinated crosspollinating +crosspollinate crosspollinates crosspollinated crosspollinated crosspollinating +crosspost crossposts crossposted crossposted crossposting +crossquestion crossquestions crossquestioned crossquestioned crossquestioning +crossrefer crossrefers crossreferred crossreferred crossreferring +crossreference crossreferences crossreferenced crossreferenced crossreferencing +crossruff crossruffs crossruffed crossruffed crossruffing +crossstitch crossstitches crossstitched crossstitched crossstitching +crouch crouches crouched crouched crouching +croup croups crouped crouped crouping +crow crows crowed crowed crowing +crowd crowds crowded crowded crowding +crowdsource crowdsources crowdsourced crowdsourced crowdsourcing +crown crowns crowned crowned crowning +crucify crucifies crucified crucified crucifying +cruise cruises cruised cruised cruising +crumb crumbs crumbed crumbed crumbing +crumble crumbles crumbled crumbled crumbling +crump crumps crumped crumped crumping +crumple crumples crumpled crumpled crumpling +crunch crunches crunched crunched crunching +crusade crusades crusaded crusaded crusading +crush crushes crushed crushed crushing +crust crusts crusted crusted crusting +crutch crutches crutched crutched crutching +cry cries cried cried crying +crystallise crystallises crystallised crystallised crystallising +crystallize crystallizes crystallized crystallized crystallizing +cub cubs cubbed cubbed cubbing +cube cubes cubed cubed cubing +cuckold cuckolds cuckolded cuckolded cuckolding +cuckoo cuckoos cuckooed cuckooed cuckooing +cuddle cuddles cuddled cuddled cuddling +cudgel cudgels cudgelled cudgelled cudgelling +cue cues cued cued cueing +cuff cuffs cuffed cuffed cuffing +cuirass cuirasses cuirassed cuirassed cuirassing +cull culls culled culled culling +culminate culminates culminated culminated culminating +cultivate cultivates cultivated cultivated cultivating +culture cultures cultured cultured culturing +cumber cumbers cumbered cumbered cumbering +cumulate cumulates cumulated cumulated cumulating +cup cups cupped cupped cupping +cupel cupels cupeled cupeled cupeling +curarize curarizes curarized curarized curarizing +curate curates curated curated curating +curb curbs curbed curbed curbing +curd curds curded curded curding +curdle curdles curdled curdled curdling +cure cures cured cured curing +curette curettes curetted curetted curetting +curl curls curled curled curling +curry curries curried curried currying +curse curses cursed cursed cursing +curtail curtails curtailed curtailed curtailing +curtain curtains curtained curtained curtaining +curtsy curtsies curtsied curtsied curtsying +curve curves curved curved curving +curvet curvets curvetted curvetted curvetting +cushion cushions cushioned cushioned cushioning +cuss cusses cussed cussed cussing +customise customises customised customised customising +customize customizes customized customized customizing +cut cuts cut cut cutting +cutback cutbacks cutbacked cutbacked cutbacking +cutinize cutinizes cutinized cutinized cutinizing +cwtch cwtches cwtched cwtched cwtching +cybernate cybernates cybernated cybernated cybernating +cycle cycles cycled cycled cycling +cyclostyle cyclostyles cyclostyled cyclostyled cyclostyling +cypher cyphers cyphered cyphered cyphering +dab dabs dabbed dabbed dabbing +dabble dabbles dabbled dabbled dabbling +dado dados dadoed dadoed dadoing +daff daffs daffed daffed daffing +dag dags dagged dagged dagging +dagger daggers daggered daggered daggering +dally dallies dallied dallied dallying +dam dams dammed dammed damming +damage damages damaged damaged damaging +damascene damascenes damascened damascened damascening +damask damasks damasked damasked damasking +damn damns damned damned damning +damnify damnifies damnified damnified damnifying +damp damps damped damped damping +dampen dampens dampened dampened dampening +dance dances danced danced dancing +dander danders dandered dandered dandering +dandify dandifies dandified dandified dandifying +dandle dandles dandled dandled dandling +dangle dangles dangled dangled dangling +dap daps dapped dapped dapping +dapple dapples dappled dappled dappling +dare dares dared dared daring +dark darks darked darked darking +darken darkens darkened darkened darkening +darkle darkles darkled darkled darkling +darn darns darned darned darning +dart darts darted darted darting +dash dashes dashed dashed dashing +date dates dated dated dating +dateline datelines datelined datelined datelining +daub daubs daubed daubed daubing +daunt daunts daunted daunted daunting +dawdle dawdles dawdled dawdled dawdling +dawn dawns dawned dawned dawning +day-dream daydreams' daydreamed day-dreamed daydream +daydream daydreams daydreamt daydreamt daydreaming +daze dazes dazed dazed dazing +dazzle dazzles dazzled dazzled dazzling +de-horn de-horns dehorned de-horned de-horning +de-ice de-ices de-iced de-iced de-icing +de-stress de-stresses de-stressed de-stressed de-stressing +deactivate deactivates deactivated deactivated deactivating +deaden deadens deadened deadened deadening +deadhead deadheads deadheaded deadheaded deadheading +deadlock deadlocks deadlocked deadlocked deadlocking +deafen deafens deafened deafened deafening +deal deals dealt dealt dealing +deaminize deaminizes deaminized deaminized deaminizing +debag debags debagged debagged debagging +debar debars debarred debarred debarring +debark debarks debarked debarked debarking +debase debases debased debased debasing +debate debates debated debated debating +debauch debauches debauched debauched debauching +debilitate debilitates debilitated debilitated debilitating +debit debits debited debited debiting +debouch debouches debouched debouched debouching +debrief debriefs debriefed debriefed debriefing +debug debugs debugged debugged debugging +debunk debunks debunked debunked debunking +debus debuses debused debused debusing +debut debuts debuted debuted debuting +decaffeinate decaffeinates decaffeinated decaffeinated decaffeinating +decal decals decaled decaled decaling +decalcify decalcifies decalcified decalcified decalcifying +decamp decamps decamped decamped decamping +decant decants decanted decanted decanting +decapitate decapitates decapitated decapitated decapitating +decarbonate decarbonates decarbonated decarbonated decarbonating +decarbonise decarbonises decarbonised decarbonised decarbonising +decarbonize decarbonises decarbonised decarbonised decarbonising +decarburize decarburizes decarburized decarburized decarburizing +decay decays decayed decayed decaying +decease deceases deceased deceased deceasing +deceive deceives deceived deceived deceiving +decelerate decelerates decelerated decelerated decelerating +decentralise decentralises decentralised decentralised decentralising +decentralize decentralizes decentralized decentralized decentralizing +decerebrate decerebrates decerebrated decerebrated decerebrating +decern decerns decerned decerned decerning +decertify decertifies decertified decertified decertifying +decide decides decided decided deciding +decimalise decimalises decimalised decimalised decimalising +decimalize decimalizes decimalized decimalized decimalizing +decimate decimates decimated decimated decimating +decipher deciphers deciphered deciphered deciphering +deck decks decked decked decking +declaim declaims declaimed declaimed declaiming +declare declares declared declared declaring +declass declasses declassed declassed declassing +declassify declassifies declassified declassified declassifying +decline declines declined declined declining +declutch declutches declutched declutched declutching +declutter declutters decluttered decluttered decluttering +decoct decocts decocted decocted decocting +decode decodes decoded decoded decoding +decoke decokes decoked decoked decoking +decollate decollates decollated decollated decollating +decolonise decolonises decolonised decolonised decolonising +decolonize decolonizes decolonized decolonized decolonizing +decolour decolours decoloured decoloured decolouring +decommission decommissions decommissioned decommissioned decommissioning +decompose decomposes decomposed decomposed decomposing +decompound decompounds decompounded decompounded decompounding +decompress decompresses decompressed decompressed decompressing +deconsecrate deconsecrates deconsecrated deconsecrated deconsecrating +deconstruct deconstructs deconstructed deconstructed deconstructing +decontaminate decontaminates decontaminated decontaminated decontaminating +decontrol decontrols decontrolled decontrolled decontrolling +decorate decorates decorated decorated decorating +decorticate decorticates decorticated decorticated decorticating +decouple decouples decoupled decoupled decoupling +decoy decoys decoyed decoyed decoying +decrease decreases decreased decreased decreasing +decree decrees decreed decreed decreeing +decrepitate decrepitates decrepitated decrepitated decrepitating +decribe decribes decribed decribed decribing +decriminalise decriminalises decriminalised decriminalised decriminalising +decriminalize decriminalizes decriminalized decriminalized decriminalizing +decry decries decried decried decrying +decrypt decrypts decrypted decrypted decrypting +decuple decuples decupled decupled decupling +decussate decussates decussated decussated decussating +dedicate dedicates dedicated dedicated dedicating +deduce deduces deduced deduced deducing +deduct deducts deducted deducted deducting +deed deeds deeded deeded deeding +deejay deejays deejayed deejayed deejaying +deek deeks deeked deeked deeking +deem deems deemed deemed deeming +deemphasize deemphasizes deemphasized deemphasized deemphasizing +deep fry deep fries deep fried deep fried deep frying +deep-fry deep-fries deep-fried deep-fried deep-frying +deep-six deep-sixes deep-sixed deep-sixed deep-sixing +deepen deepens deepened deepened deepening +deepfreeze deepfreezes deepfrozen deepfrozen deepfreezing +deepfry deepfries deepfried deepfried deepfrying +deepsix deepsixes deepsixed deepsixed deepsixing +deescalate deescalates deescalated deescalated deescalating +deface defaces defaced defaced defacing +defalcate defalcates defalcated defalcated defalcating +defame defames defamed defamed defaming +default defaults defaulted defaulted defaulting +defeat defeats defeated defeated defeating +defecate defecates defecated defecated defecating +defect defects defected defected defecting +defend defends defended defended defending +defer defers deferred deferred deferring +defilade defilades defiladed defiladed defilading +defile defiles defiled defiled defiling +define defines defined defined defining +deflagrate deflagrates deflagrated deflagrated deflagrating +deflate deflates deflated deflated deflating +deflect deflects deflected deflected deflecting +deflocculate deflocculates deflocculated deflocculated deflocculating +deflower deflowers deflowered deflowered deflowering +defog defogs defogged defogged defogging +defoliate defoliates defoliated defoliated defoliating +deforce deforces deforced deforced deforcing +deforest deforests deforested deforested deforesting +deform deforms deformed deformed deforming +defragment defragments defragmented defragmented defragmenting +defraud defrauds defrauded defrauded defrauding +defray defrays defrayed defrayed defraying +defriend defriends defriended defriended defriending +defrock defrocks defrocked defrocked defrocking +defrost defrosts defrosted defrosted defrosting +defuse defuses defused defused defusing +defuze defuzes defuzed defuzed defuzing +defy defies defied defied defying +degas degasses degassed degassed degassing +degauss degausses degaussed degaussed degaussing +degenerate degenerates degenerated degenerated degenerating +deglaze deglazes deglazed deglazed deglazing +deglutinate deglutinates deglutinated deglutinated deglutinating +degrade degrades degraded degraded degrading +degrease degreases degreased degreased degreasing +degustate degusts degusted degusted degusting +dehisce dehisces dehisced dehisced dehiscing +dehorn dehorns dehorned dehorned dehorning +dehumanise dehumanises dehumanised dehumanised dehumanising +dehumanize dehumanizes dehumanized dehumanized dehumanizing +dehumidify dehumidifies dehumidified dehumidified dehumidifying +dehydrate dehydrates dehydrated dehydrated dehydrating +dehydrogenize dehydrogenizes dehydrogenized dehydrogenized dehydrogenizing +dehypnotize dehypnotizes dehypnotized dehypnotized dehypnotizing +deice deices deiced deiced deicing +deify deifies deified deified deifying +deign deigns deigned deigned deigning +deject dejects dejected dejected dejecting +delaminate delaminates delaminated delaminated delaminating +delate delates delated delated delating +delay delays delayed delayed delaying +dele deles deled deled deleing +delegate delegates delegated delegated delegating +delete deletes deleted deleted deleting +deliberate deliberates deliberated deliberated deliberating +delight delights delighted delighted delighting +delimit delimits delimited delimited delimiting +delimitate delimits delimited delimited delimiting +delineate delineates delineated delineated delineating +deliquesce deliquesces deliquesced deliquesced deliquescing +deliver delivers delivered delivered delivering +delocalize delocalizes delocalized delocalized delocalizing +delouse delouses deloused deloused delousing +delude deludes deluded deluded deluding +deluge deluges deluged deluged deluging +delve delves delved delved delving +demagnetise demagnetises demagnetised demagnetised demagnetising +demagnetize demagnetizes demagnetized demagnetized demagnetizing +demagogue demagogues demagogued demagogued demagoguing +demand demands demanded demanded demanding +demarcate demarcates demarcated demarcated demarcating +dematerialize dematerializes dematerialized dematerialized dematerializing +demean demeans demeaned demeaned demeaning +dement dements demented demented dementing +demerge demerges demerged demerged demerging +demilitarise demilitarises demilitarised demilitarised demilitarising +demilitarize demilitarizes demilitarized demilitarized demilitarizing +demineralise demineralises demineralised demineralised demineralising +demineralize demineralizes demineralized demineralized demineralizing +demise demises demised demised demising +demist demists demisted demisted demisting +demit demits demitted demitted demitting +demo demos demoed demoed demoing +demob demobs demobbed demobbed demobbing +demobilise demobilises demobilised demobilised demobilising +demobilize demobilizes demobilized demobilized demobilizing +democratise democratises democratised democratised democratising +democratize democratizes democratized democratized democratizing +demodulate demodulates demodulated demodulated demodulating +demolish demolishes demolished demolished demolishing +demonetize demonetizes demonetized demonetized demonetizing +demonise demonises demonised demonised demonising +demonize demonizes demonized demonized demonizing +demonstrate demonstrates demonstrated demonstrated demonstrating +demoralise demoralises demoralised demoralised demoralising +demoralize demoralizes demoralized demoralized demoralizing +demote demotes demoted demoted demoting +demotivate demotivates demotivated demotivated demotivating +demount demounts demounted demounted demounting +demulsify demulsifies demulsified demulsified demulsifying +demur demurs demurred demurred demurring +demystify demystifies demystified demystified demystifying +demythologize demythologizes demythologized demythologized demythologizing +den dens denned denned denning +denationalise denationalises denationalised denationalised denationalising +denationalize denationalizes denationalized denationalized denationalizing +denaturalize denaturalizes denaturalized denaturalized denaturalizing +denaturize denaturizes denaturized denaturized denaturizing +denazify denazifies denazified denazified denazifying +denigrate denigrates denigrated denigrated denigrating +denitrate denitrates denitrated denitrated denitrating +denitrify denitrifies denitrified denitrified denitrifying +denizen denizens denizened denizened denizening +denominate denominates denominated denominated denominating +denote denotes denoted denoted denoting +denounce denounces denounced denounced denouncing +dent dents dented dented denting +denuclearize denuclearizes denuclearized denuclearized denuclearizing +denudate denudates denudated denudated denudating +denude denudes denuded denuded denuding +denunciate denunciates denunciated denunciated denunciating +deny denies denied denied denying +deodorise deodorises deodorised deodorised deodorising +deodorize deodorizes deodorized deodorized deodorizing +deoxidize deoxidizes deoxidized deoxidized deoxidizing +deoxygenize deoxygenizes deoxygenized deoxygenized deoxygenizing +depart departs departed departed departing +departmentalise departmentalises departmentalised departmentalised departmentalising +departmentalize departmentalizes departmentalized departmentalized departmentalizing +depasture depastures depastured depastured depasturing +depend depends depended depended depending +depersonalise depersonalises depersonalised depersonalised depersonalising +depersonalize depersonalizes depersonalized depersonalized depersonalizing +depict depicts depicted depicted depicting +depicture depictures depictured depictured depicturing +depilate depilates depilated depilated depilating +deplane deplanes deplaned deplaned deplaning +deplete depletes depleted depleted depleting +deplore deplores deplored deplored deploring +deploy deploys deployed deployed deploying +deplume deplumes deplumed deplumed depluming +depolarize depolarizes depolarized depolarized depolarizing +depoliticise depoliticises depoliticised depoliticised depoliticising +depoliticize depoliticizes depoliticized depoliticized depoliticizing +depolymerize depolymerizes depolymerized depolymerized depolymerizing +depone depones deponed deponed deponing +depopulate depopulates depopulated depopulated depopulating +deport deports deported deported deporting +depose deposes deposed deposed deposing +deposit deposits deposited deposited depositing +deprave depraves depraved depraved depraving +deprecate deprecates deprecated deprecated deprecating +depreciate depreciates depreciated depreciated depreciating +depredate depredates depredated depredated depredating +depress depresses depressed depressed depressing +depressurise depressurises depressurised depressurised depressurising +depressurize depressurizes depressurized depressurized depressurizing +deprive deprives deprived deprived depriving +depurate depurates depurated depurated depurating +depute deputes deputed deputed deputing +deputise deputises deputised deputised deputising +deputize deputizes deputized deputized deputizing +deracinate deracinates deracinated deracinated deracinating +deraign deraigns deraigned deraigned deraigning +derail derails derailed derailed derailing +derange deranges deranged deranged deranging +derate derates derated derated derating +deration derations derationed derationed derationing +dereference dereferences dereferenced dereferenced dereferencing +deregister deregisters deregistered deregistered deregistering +deregulate deregulates deregulated deregulated deregulating +derequisition derequisitions derequisitioned derequisitioned derequisitioning +derestrict derestricts derestricted derestricted derestricting +deride derides derided derided deriding +derive derives derived derived deriving +dermabrade dermabrades dermabraded dermabraded dermabrading +derogate derogates derogated derogated derogating +derrick derricks derricked derricked derricking +desalinize desalinizes desalinized desalinized desalinizing +desalt desalts desalted desalted desalting +descale descales descaled descaled descaling +descant descants descanted descanted descanting +descend descends descended descended descending +deschool deschools deschooled deschooled deschooling +describe describes described described describing +descry descries descried descried descrying +desecrate desecrates desecrated desecrated desecrating +desegregate desegregates desegregated desegregated desegregating +deselect deselects deselected deselected deselecting +desensitise desensitises desensitised desensitised desensitising +desensitize desensitizes desensitized desensitized desensitizing +desert deserts deserted deserted deserting +deserve deserves deserved deserved deserving +desexualize desexualizes desexualized desexualized desexualizing +desiccate desiccates desiccated desiccated desiccating +desiderate desiderates desiderated desiderated desiderating +design designs designed designed designing +designate designates designated designated designating +desire desires desired desired desiring +desist desists desisted desisted desisting +deskill deskills deskilled deskilled deskilling +desolate desolates desolated desolated desolating +desorb desorbs desorbed desorbed desorbing +despair despairs despaired despaired despairing +despatch despatches despatched despatched despatching +despise despises despised despised despising +despite despites despited despited despiting +despoil despoils despoiled despoiled despoiling +despond desponds desponded desponded desponding +despumate despumates despumated despumated despumating +desquamate desquamates desquamated desquamated desquamating +destabilise destabilises destabilised destabilised destabilising +destabilize destabilizes destabilized destabilized destabilizing +destine destines destined destined destining +destock destocks destocked destocked destocking +destress destresses destressed destressed destressing +destroy destroys destroyed destroyed destroying +destruct destructs destructed destructed destructing +desulphurize desulphurizes desulphurized desulphurized desulphurizing +detach detaches detached detached detaching +detail details detailed detailed detailing +detain detains detained detained detaining +detect detects detected detected detecting +deter deters deterred deterred deterring +deterge deterges deterged deterged deterging +deteriorate deteriorates deteriorated deteriorated deteriorating +determine determines determined determined determining +detest detests detested detested detesting +dethrone dethrones dethroned dethroned dethroning +detonate detonates detonated detonated detonating +detour detours detoured detoured detouring +detox detoxes detoxed detoxed detoxing +detoxicate detoxicates detoxicated detoxicated detoxicating +detoxify detoxifies detoxified detoxified detoxifying +detract detracts detracted detracted detracting +detrain detrains detrained detrained detraining +detribalize detribalizes detribalized detribalized detribalizing +detrude detrudes detruded detruded detruding +detruncate detruncates detruncated detruncated detruncating +deuterate deuterates deuterated deuterated deuterating +devalue devalues devalued devalued devaluing +devastate devastates devastated devastated devastating +develop develops developed developed developing +devest devests devested devested devesting +deviate deviates deviated deviated deviating +devil devils deviled deviled deviling +devise devises devised devised devising +devitalize devitalizes devitalized devitalized devitalizing +devitrify devitrifies devitrified devitrified devitrifying +devoice devoices devoiced devoiced devoicing +devolve devolves devolved devolved devolving +devote devotes devoted devoted devoting +devour devours devoured devoured devouring +dew dews dewed dewed dewing +diabolize diabolizes diabolized diabolized diabolizing +diadem diadems diademed diademed diademing +diagnose diagnoses diagnosed diagnosed diagnosing +diagram diagrams diagrammed diagrammed diagramming +dial dials dialled dialled dialling +dialogize dialogizes dialogized dialogized dialogizing +dialogue dialogues dialogued dialogued dialoguing +dialyze dialyzes dialyzed dialyzed dialyzing +diamond diamonds diamonded diamonded diamonding +diaper diapers diapered diapered diapering +diazotize diazotizes diazotized diazotized diazotizing +dib dibs dibbed dibbed dibbing +dibble dibbles dibbled dibbled dibbling +dice dices diced diced dicing +dichotomize dichotomizes dichotomized dichotomized dichotomizing +dick dicks dicked dicked dicking +dicker dickers dickered dickered dickering +dictate dictates dictated dictated dictating +diddle diddles diddled diddled diddling +die dies died died dying +die-cast die-casts die-cast die-cast die-casting +diet diets dieted dieted dieting +differ differs differed differed differing +differentiate differentiates differentiated differentiated differentiating +diffract diffracts diffracted diffracted diffracting +diffuse diffuses diffused diffused diffusing +dig digs dug dug digging +digest digests digested digested digesting +dight dights dighted dighted dighting +digitalise digitalises digitalised digitalised digitalising +digitalize digitalizes digitalized digitalized digitalizing +digitise digitises digitised digitised digitising +digitize digitizes digitized digitized digitizing +dignify dignifies dignified dignified dignifying +digress digresses digressed digressed digressing +dike dikes diked diked diking +dilapidate dilapidates dilapidated dilapidated dilapidating +dilate dilates dilated dilated dilating +dilly-dally dilly-dallies dilly-dallied dilly-dallied dilly-dallying +dillydally dillydallies dillydallied dillydallied dillydallying +dilute dilutes diluted diluted diluting +dim dims dimmed dimmed dimming +dimension dimensions dimensioned dimensioned dimensioning +dimidiate dimidiates dimidiated dimidiated dimidiating +diminish diminishes diminished diminished diminishing +dimple dimples dimpled dimpled dimpling +din dins dinned dinned dinning +dine dines dined dined dining +ding dings dinged dinged dinging +dink dinks dinked dinked dinking +dint dints dinted dinted dinting +dip dips dipped dipped dipping +diphthongise diphthongises diphthongised diphthongised diphthongising +diphthongize diphthongizes diphthongized diphthongized diphthongizing +direct directs directed directed directing +dirk dirks dirked dirked dirking +dirty dirties dirtied dirtied dirtying +dis disses dissed dissed dissing +disable disables disabled disabled disabling +disabuse disabuses disabused disabused disabusing +disaccord disaccords disaccorded disaccorded disaccording +disaccredit disaccredits disaccredited disaccredited disaccrediting +disaccustom disaccustoms disaccustomed disaccustomed disaccustoming +disadvantage disadvantages disadvantaged disadvantaged disadvantaging +disaffect disaffects disaffected disaffected disaffecting +disaffiliate disaffiliates disaffiliated disaffiliated disaffiliating +disaffirm disaffirms disaffirmed disaffirmed disaffirming +disafforest disafforests disafforested disafforested disafforesting +disagree disagrees disagreed disagreed disagreeing +disallow disallows disallowed disallowed disallowing +disambiguate disambiguates disambiguated disambiguated disambiguating +disannul disannuls disannulled disannulled disannulling +disappear disappears disappeared disappeared disappearing +disappoint disappoints disappointed disappointed disappointing +disapprove disapproves disapproved disapproved disapproving +disarm disarms disarmed disarmed disarming +disarrange disarranges disarranged disarranged disarranging +disarray disarrays disarrayed disarrayed disarraying +disarticulate disarticulates disarticulated disarticulated disarticulating +disassemble disassembles disassembled disassembled disassembling +disassociate disassociates disassociated disassociated disassociating +disavow disavows disavowed disavowed disavowing +disband disbands disbanded disbanded disbanding +disbar disbars disbarred disbarred disbarring +disbelieve disbelieves disbelieved disbelieved disbelieving +disbranch disbranches disbranched disbranched disbranching +disbud disbuds disbudded disbudded disbudding +disburden disburdens disburdened disburdened disburdening +disburse disburses disbursed disbursed disbursing +disc discs disced disced discing +discant discants discanted discanted discanting +discard discards discarded discarded discarding +discern discerns discerned discerned discerning +discharge discharges discharged discharged discharging +discipline disciplines disciplined disciplined disciplining +disclaim disclaims disclaimed disclaimed disclaiming +disclose discloses disclosed disclosed disclosing +discolor discolors discolored discolored discoloring +discolour discolours discoloured discoloured discolouring +discombobulate discombobulates discombobulated discombobulated discombobulating +discomfit discomfits discomfited discomfited discomfiting +discomfort discomforts discomforted discomforted discomforting +discommend discommends discommended discommended discommending +discommode discommodes discommoded discommoded discommoding +discommon discommons discommoned discommoned discommoning +discompose discomposes discomposed discomposed discomposing +disconcert disconcerts disconcerted disconcerted disconcerting +disconnect disconnects disconnected disconnected disconnecting +disconsider disconsiders disconsidered disconsidered disconsidering +discontent discontents discontented discontented discontenting +discontinue discontinues discontinued discontinued discontinuing +discord discords discorded discorded discording +discount discounts discounted discounted discounting +discountenance discountenances discountenanced discountenanced discountenancing +discourage discourages discouraged discouraged discouraging +discourse discourses discoursed discoursed discoursing +discover discovers discovered discovered discovering +discredit discredits discredited discredited discrediting +discriminate discriminates discriminated discriminated discriminating +discuss discusses discussed discussed discussing +disdain disdains disdained disdained disdaining +disembark disembarks disembarked disembarked disembarking +disembarrass disembarrasses disembarrassed disembarrassed disembarrassing +disembody disembodies disembodied disembodied disembodying +disembogue disembogues disembogued disembogued disemboguing +disembowel disembowels disembowelled disembowelled disembowelling +disembroil disembroils disembroiled disembroiled disembroiling +disenable disenables disenabled disenabled disenabling +disenchant disenchants disenchanted disenchanted disenchanting +disencumber disencumbers disencumbered disencumbered disencumbering +disendow disendows disendowed disendowed disendowing +disenfranchise disenfranchises disenfranchised disenfranchised disenfranchising +disengage disengages disengaged disengaged disengaging +disentail disentails disentailed disentailed disentailing +disentangle disentangles disentangled disentangled disentangling +disenthrall disenthrals disenthralled disenthralled disenthralling +disentitle disentitles disentitled disentitled disentitling +disentomb disentombs disentombed disentombed disentombing +disentwine disentwines disentwined disentwined disentwining +disestablish disestablishes disestablished disestablished disestablishing +disesteem disesteems disesteemed disesteemed disesteeming +disfavour disfavours disfavoured disfavoured disfavouring +disfeature disfeatures disfeatured disfeatured disfeaturing +disfigure disfigures disfigured disfigured disfiguring +disforest disforests disforested disforested disforesting +disfranchise disfranchises disfranchised disfranchised disfranchising +disfrock disfrocks disfrocked disfrocked disfrocking +disgorge disgorges disgorged disgorged disgorging +disgrace disgraces disgraced disgraced disgracing +disgruntle disgruntles disgruntled disgruntled disgruntling +disguise disguises disguised disguised disguising +disgust disgusts disgusted disgusted disgusting +dish dishes dished dished dishing +dishearten disheartens disheartened disheartened disheartening +dishevel dishevels dishevelled dishevelled dishevelling +dishonour dishonours dishonoured dishonoured dishonouring +disillusion disillusions disillusioned disillusioned disillusioning +disincentivise disincentivises disincentivised disincentivised disincentivising +disincentivize disincentivizes disincentivized disincentivized disincentivizing +disincline disinclines disinclined disinclined disinclining +disinfect disinfects disinfected disinfected disinfecting +disinfest disinfests disinfested disinfested disinfesting +disinherit disinherits disinherited disinherited disinheriting +disinhibit disinhibits disinhibited disinhibited disinhibiting +disintegrate disintegrates disintegrated disintegrated disintegrating +disinter disinters disinterred disinterred disinterring +disinterest disinterests disinterested disinterested disinteresting +disinvest disinvests disinvested disinvested disinvesting +disject disjects disjected disjected disjecting +disjoin disjoins disjoined disjoined disjoining +disjoint disjoints disjointed disjointed disjointing +dislike dislikes disliked disliked disliking +dislimn dislimns dislimned dislimned dislimning +dislocate dislocates dislocated dislocated dislocating +dislodge dislodges dislodged dislodged dislodging +dismantle dismantles dismantled dismantled dismantling +dismast dismasts dismasted dismasted dismasting +dismay dismays dismayed dismayed dismaying +dismember dismembers dismembered dismembered dismembering +dismiss dismisses dismissed dismissed dismissing +dismount dismounts dismounted dismounted dismounting +disobey disobeys disobeyed disobeyed disobeying +disoblige disobliges disobliged disobliged disobliging +disorder disorders disordered disordered disordering +disorganize disorganizes disorganized disorganized disorganizing +disorientate disorientates disorientated disorientated disorientating +disown disowns disowned disowned disowning +disparage disparages disparaged disparaged disparaging +dispatch dispatches dispatched dispatched dispatching +dispel dispels dispelled dispelled dispelling +dispel dispels dispelt dispelt dispelling +dispend dispends dispended dispended dispending +dispense dispenses dispensed dispensed dispensing +disperse disperses dispersed dispersed dispersing +dispirit dispirits dispirited dispirited dispiriting +displace displaces displaced displaced displacing +displant displants displanted displanted displanting +display displays displayed displayed displaying +displease displeases displeased displeased displeasing +displeasure displeasures displeasured displeasured displeasuring +displode displodes disploded disploded disploding +disport disports disported disported disporting +dispose disposes disposed disposed disposing +dispossess dispossesses dispossessed dispossessed dispossessing +dispraise dispraises dispraised dispraised dispraising +disprize disprizes disprized disprized disprizing +disproportion disproportions disproportioned disproportioned disproportioning +disproportionate disproportionates disproportionated disproportionated disproportionating +disprove disproves disproved disproved disproving +dispute disputes disputed disputed disputing +disqualify disqualifies disqualified disqualified disqualifying +disquiet disquiets disquieted disquieted disquieting +disrate disrates disrated disrated disrating +disregard disregards disregarded disregarded disregarding +disrelish disrelishes disrelished disrelished disrelishing +disremember disremembers disremembered disremembered disremembering +disrespect disrespects disrespected disrespected disrespecting +disrobe disrobes disrobed disrobed disrobing +disrupt disrupts disrupted disrupted disrupting +diss disses dissed dissed dissing +dissatisfy dissatisfies dissatisfied dissatisfied dissatisfying +dissect dissects dissected dissected dissecting +disseize disseizes disseized disseized disseizing +dissemble dissembles dissembled dissembled dissembling +disseminate disseminates disseminated disseminated disseminating +dissent dissents dissented dissented dissenting +dissertate dissertates dissertated dissertated dissertating +disserve disserves disserved disserved disserving +disservice disservices disserviced disserviced disservicing +dissever dissevers dissevered dissevered dissevering +dissimilate dissimilates dissimilated dissimilated dissimilating +dissimulate dissimulates dissimulated dissimulated dissimulating +dissipate dissipates dissipated dissipated dissipating +dissociate dissociates dissociated dissociated dissociating +dissolve dissolves dissolved dissolved dissolving +dissuade dissuades dissuaded dissuaded dissuading +distance distances distanced distanced distancing +distaste distastes distasted distasted distasting +distemper distempers distempered distempered distempering +distend distends distended distended distending +distil distils distilled distilled distilling +distill distils distilled distilled distilling +distinguish distinguishes distinguished distinguished distinguishing +distort distorts distorted distorted distorting +distract distracts distracted distracted distracting +distrain distrains distrained distrained distraining +distress distresses distressed distressed distressing +distribute distributes distributed distributed distributing +district districts districted districted districting +distrust distrusts distrusted distrusted distrusting +disturb disturbs disturbed disturbed disturbing +disunite disunites disunited disunited disuniting +ditch ditches ditched ditched ditching +dither dithers dithered dithered dithering +ditto dittos dittoed dittoed dittoing +divagate divagates divagated divagated divagating +divaricate divaricates divaricated divaricated divaricating +dive dives dived dived diving +dive dives dove dove diving +dive-bomb dive-bombs dive-bombed dive-bombed dive-bombing +divebomb divebombs divebombed divebombed divebombing +diverge diverges diverged diverged diverging +diversify diversifies diversified diversified diversifying +divert diverts diverted diverted diverting +divest divests divested divested divesting +divide divides divided divided dividing +divine divines divined divined divining +divinize divinizes divinized divinized divinizing +divorce divorces divorced divorced divorcing +divulgate divulgates divulgated divulgated divulgating +divulge divulges divulged divulged divulging +divvy divvies divvied divvied divvying +dizen dizens dizened dizened dizening +dizzy dizzies dizzied dizzied dizzying +dj dj's dj'd dj'd dj'ing +do does did did doing +dob dobs dobbed dobbed dobbing +dock docks docked docked docking +docket dockets docketed docketed docketing +doctor doctors doctored doctored doctoring +document documents documented documented documenting +dodder dodders doddered doddered doddering +dodge dodges dodged dodged dodging +doff doffs doffed doffed doffing +dog dogs dogged dogged dogging +dog-paddle dog-paddles dog-paddled dog-paddled dog-paddling +dogear dogears dogeared dogeared dogearing +dogmatize dogmatizes dogmatized dogmatized dogmatizing +dole doles doled doled doling +doll dolls dolled dolled dolling +dollarise dollarises dollarised dollarised dollarising +dollarize dollarizes dollarized dollarized dollarizing +dolly dollies dollied dollied dollying +dome domes domed domed doming +domesticate domesticates domesticated domesticated domesticating +domesticize domesticizes domesticized domesticized domesticizing +domicile domicils domiciled domiciled domiciling +dominate dominates dominated dominated dominating +domineer domineers domineered domineered domineering +don dons donned donned donning +donate donates donated donated donating +dong dongs donged donged donging +doodle doodles doodled doodled doodling +doom dooms doomed doomed dooming +door doors doored doored dooring +doorstep doorsteps doorstepped doorstepped doorstepping +dop dops dopped dopped dopping +dope dopes doped doped doping +dose doses dosed dosed dosing +doss dosses dossed dossed dossing +dot dots dotted dotted dotting +dote dotes doted doted doting +double doubles doubled doubled doubling +double click double clicks double clicked double clicked double clicking +double-bank double-banks double-banked double-banked double-banking +double-book double-books double-booked double-booked double-booking +double-check double-checks double-checked double-checked double-checking +double-click double-clicks double-clicked double-clicked double-clicking +double-cross double-crosses double-crossed double-crossed double-crossing +double-date double-dates double-dated double-dated double-dating +double-declutch double-declutches double-declutched double-declutched double-declutching +double-dip double-dips double-dipped double-dipped double-dipping +double-fault double-faults double-faulted double-faulted double-faulting +double-glaze double-glazes double-glazed double-glazed double-glazing +double-park double-parks double-parked double-parked double-parking +double-stop double-stops double-stopped double-stopped double-stopping +double-time double-times double-timed double-timed double-timing +doublebogey doublebogeys doublebogeyed doublebogeyed doublebogeying +doublebook doublebooks doublebooked doublebooked doublebooking +doublecheck doublechecks doublechecked doublechecked doublechecking +doubleclick doubleclicks doubleclicked doubleclicked doubleclicking +doublecross doublecrosses doublecrossed doublecrossed doublecrossing +doubledate doubledates doubledated doubledated doubledating +doubledip doubledips doubledipped doubledipped doubledipping +doublefault doublefaults doublefaulted doublefaulted doublefaulting +doubleglaze doubleglazes doubleglazed doubleglazed doubleglazing +doublepark doubleparks doubleparked doubleparked doubleparking +doublespace doublespaces doublespaced doublespaced doublespacing +doubletongue doubletongues doubletongued doubletongued doubletonguing +doubt doubts doubted doubted doubting +douche douches douched douched douching +douse douses doused doused dousing +dovetail dovetails dovetailed dovetailed dovetailing +dow dows dowed dowed dowing +dower dowers dowered dowered dowering +down downs downed downed downing +downchange downchanges downchanged downchanged downchanging +downgrade downgrades downgraded downgraded downgrading +downlink downlinks downlinked downlinked downlinking +download downloads downloaded downloaded downloading +downplay downplays downplayed downplayed downplaying +downscale downscales downscaled downscaled downscaling +downshift downshifts downshifted downshifted downshifting +downsise downsises downsised downsised downsising +downsize downsizes downsized downsized downsizing +dowse dowses dowsed dowsed dowsing +doze dozes dozed dozed dozing +drab drabs drabbed drabbed drabbing +drabble drabbles drabbled drabbled drabbling +draft drafts drafted drafted drafting +drag drags dragged dragged dragging +draggle draggles draggled draggled draggling +draghunt drags draghunted draghunted draghunting +dragoon dragoons dragooned dragooned dragooning +drain drains drained drained draining +dramatise dramatises dramatised dramatised dramatising +dramatize dramatizes dramatized dramatized dramatizing +drape drapes draped draped draping +drat drats dratted dratted dratting +draught draughts draughted draughted draughting +draw draws drew drawn drawing +drawl drawls drawled drawled drawling +dread dreads dreaded dreaded dreading +dream dreams dreamed dreamed dreaming +dream dreams dreamt dreamt dreaming +dredge dredges dredged dredged dredging +dree drees dreed dreed dreeing +drench drenches drenched drenched drenching +dress dresses dressed dressed dressing +dribble dribbles dribbled dribbled dribbling +drift drifts drifted drifted drifting +drill drills drilled drilled drilling +drink drinks drank drunk drinking +drip drips dripped dripped dripping +drip-feed drip-feeds drip-fed drip-fed drip-feeding +dripfeed dripfeeds dripfed dripfed dripfeeding +drive drives drove driven driving +drivel drivels drivelled drivelled drivelling +drizzle drizzles drizzled drizzled drizzling +drone drones droned droned droning +drool drools drooled drooled drooling +droop droops drooped drooped drooping +drop drops dropped dropped dropping +drop-kick drop-kicks drop-kicked drop-kicked drop-kicking +dropkick dropkicks dropkicked dropkicked dropkicking +dropout dropouts dropouted dropouted dropouting +drown drowns drowned drowned drowning +drowse drowses drowsed drowsed drowsing +drub drubs drubbed drubbed drubbing +drudge drudges drudged drudged drudging +drug drugs drugged drugged drugging +drum drums drummed drummed drumming +dry dries dried dried drying +dry-clean dry-cleans dry-cleaned dry-cleaned dry-cleaning +dry-salt dry-salts dry-salted dry-salted dry-salting +dryclean drycleans drycleaned drycleaned drycleaning +drydock drydocks drydocked drydocked drydocking +dub dubs dubbed dubbed dubbing +duck ducks ducked ducked ducking +duel duels duelled duelled duelling +duet duets duetted duetted duetting +duff duffs duffed duffed duffing +duke dukes duked duked duking +dulcify dulcifies dulcified dulcified dulcifying +dull dulls dulled dulled dulling +dumb dumbs dumbed dumbed dumbing +dumbfound dumbfounds dumbfounded dumbfounded dumbfounding +dumfound dumfounds dumfounded dumfounded dumfounding +dummy dummies dummied dummied dummying +dump dumps dumped dumped dumping +dun duns dunned dunned dunning +dung dungs dunged dunged dunging +dunk dunks dunked dunked dunking +dunt dunts dunted dunted dunting +dup dups dupped dupped dupping +dupe dupes duped duped duping +duplicate duplicates duplicated duplicated duplicating +dusk dusks dusked dusked dusking +dust dusts dusted dusted dusting +dwarf dwarfs dwarfed dwarfed dwarfing +dwell dwells dwelled dwelled dwelling +dwell dwells dwelt dwelt dwelling +dwindle dwindles dwindled dwindled dwindling +dye dyes dyed dyed dyeing +dyke dykes dyked dyked dyking +dynamite dynamites dynamited dynamited dynamiting +eagle eagles eagled eagled eagling +ear ears eared eared earing +earbash earbashes earbashed earbashed earbashing +earmark earmarks earmarked earmarked earmarking +earn earns earned earned earning +earth earths earthed earthed earthing +earwig earwigs earwigged earwigged earwigging +ease eases eased eased easing +eat eats ate eaten eating +eavesdrop eavesdrops eavesdropped eavesdropped eavesdropping +ebay ebays ebayed ebayed ebaying +ebb ebbs ebbed ebbed ebbing +ebonize ebonizes ebonized ebonized ebonizing +echelon echelons echeloned echeloned echeloning +echo echoes echoed echoed echoing +eclipse eclipses eclipsed eclipsed eclipsing +economise economises economised economised economising +economize economizes economized economized economizing +eddy eddies eddied eddied eddying +edge edges edged edged edging +edify edifies edified edified edifying +edit edits edited edited editing +editorialise editorialises editorialised editorialised editorialising +editorialize editorializes editorialized editorialized editorializing +educate educates educated educated educating +educe educes educed educed educing +edulcorate edulcorates edulcorated edulcorated edulcorating +eff effs effed effed effing +efface effaces effaced effaced effacing +effect effects effected effected effecting +effectuate effectuates effectuated effectuated effectuating +effervesce effervesces effervesced effervesced effervescing +effloresce effloresces effloresced effloresced efflorescing +effuse effuses effused effused effusing +egest egests egested egested egesting +egg eggs egged egged egging +egosurf egosurfs egosurfed egosurfed egosurfing +egotrip egotrips' egotripped egotripped egotripping +egress egresses egressed egressed egressing +ejaculate ejaculates ejaculated ejaculated ejaculating +eject ejects ejected ejected ejecting +eke ekes eked eked eking +elaborate elaborates elaborated elaborated elaborating +elapse elapses elapsed elapsed elapsing +elasticate elasticates elasticated elasticated elasticating +elasticize elasticizes elasticized elasticized elasticizing +elate elates elated elated elating +elbow elbows elbowed elbowed elbowing +elect elects elected elected electing +electioneer electioneers electioneered electioneered electioneering +electrify electrifies electrified electrified electrifying +electrocute electrocutes electrocuted electrocuted electrocuting +electrodeposit electrodeposits electrodeposited electrodeposited electrodepositing +electroform electroforms electroformed electroformed electroforming +electrolyze electrolyzes electrolyzed electrolyzed electrolyzing +electroplate electroplates electroplated electroplated electroplating +electrotype electrotypes electrotyped electrotyped electrotyping +elegize elegizes elegized elegized elegizing +elevate elevates elevated elevated elevating +elicit elicits elicited elicited eliciting +elide elides elided elided eliding +eliminate eliminates eliminated eliminated eliminating +eloin eloins eloined eloined eloining +elongate elongates elongated elongated elongating +elope elopes eloped eloped eloping +elucidate elucidates elucidated elucidated elucidating +elude eludes eluded eluded eluding +elute elutes eluted eluted eluting +elutriate elutriates elutriated elutriated elutriating +emaciate emaciates emaciated emaciated emaciating +email emails emailed emailed emailing +emanate emanates emanated emanated emanating +emancipate emancipates emancipated emancipated emancipating +emasculate emasculates emasculated emasculated emasculating +embalm embalms embalmed embalmed embalming +embank embanks embanked embanked embanking +embargo embargoes embargoed embargoed embargoing +embark embarks embarked embarked embarking +embarrass embarrasses embarrassed embarrassed embarrassing +embattle embattles embattled embattled embattling +embay embays embayed embayed embaying +embed embeds embedded embedded embedding +embellish embellishes embellished embellished embellishing +embezzle embezzles embezzled embezzled embezzling +embitter embitters embittered embittered embittering +emblaze emblazes emblazed emblazed emblazing +emblazon emblazons emblazoned emblazoned emblazoning +emblemize emblemizes emblemized emblemized emblemizing +embody embodies embodied embodied embodying +embolden emboldens emboldened emboldened emboldening +embosom embosoms embosomed embosomed embosoming +emboss embosses embossed embossed embossing +embow embows embowed embowed embowing +embowel embowels emboweled emboweled emboweling +embower embowers embowered embowered embowering +embrace embraces embraced embraced embracing +embrangle embrangles embrangled embrangled embrangling +embrocate embrocates embrocated embrocated embrocating +embroider embroiders embroidered embroidered embroidering +embroil embroils embroiled embroiled embroiling +embus embuses embused embused embusing +emcee emcees emceed emceed emceeing +emend emends emended emended emending +emerge emerges emerged emerged emerging +emigrate emigrates emigrated emigrated emigrating +emit emits emitted emitted emitting +emote emotes emoted emoted emoting +emotionalize emotionalizes emotionalized emotionalized emotionalizing +empanel empanels empaneled empaneled empaneling +empathise empathises empathised empathised empathising +empathize empathizes empathized empathized empathizing +emphasise emphasises emphasised emphasised emphasising +emphasize emphasizes emphasized emphasized emphasizing +emplace emplaces emplaced emplaced emplacing +emplane emplanes emplaned emplaned emplaning +employ employs employed employed employing +empoison empoisons empoisoned empoisoned empoisoning +empower empowers empowered empowered empowering +empt empts empted empted empting +empty empties emptied emptied emptying +emulate emulates emulated emulated emulating +emulsify emulsifies emulsified emulsified emulsifying +enable enables enabled enabled enabling +enact enacts enacted enacted enacting +enamel enamels enamelled enamelled enamelling +enamour enamours enamoured enamoured enamouring +encage encages encaged encaged encaging +encamp encamps encamped encamped encamping +encapsulate encapsulates encapsulated encapsulated encapsulating +encarnalize encarnalizes encarnalized encarnalized encarnalizing +encase encases encased encased encasing +encash encashes encashed encashed encashing +enchain enchains enchained enchained enchaining +enchant enchants enchanted enchanted enchanting +enchase enchases enchased enchased enchasing +encipher enciphers enciphered enciphered enciphering +encircle encircles encircled encircled encircling +enclasp enclasps enclasped enclasped enclasping +enclose encloses enclosed enclosed enclosing +encode encodes encoded encoded encoding +encompass encompasses encompassed encompassed encompassing +encore encores encored encored encoring +encounter encounters encountered encountered encountering +encourage encourages encouraged encouraged encouraging +encroach encroaches encroached encroached encroaching +encrypt encrypts encrypted encrypted encrypting +encumber encumbers encumbered encumbered encumbering +encyst encysts encysted encysted encysting +end ends ended ended ending +endamage endamages endamaged endamaged endamaging +endanger endangers endangered endangered endangering +endear endears endeared endeared endearing +endeavour endeavours endeavoured endeavoured endeavouring +endorse endorses endorsed endorsed endorsing +endow endows endowed endowed endowing +endure endures endured endured enduring +energise energises energised energised energising +energize energizes energized energized energizing +enervate enervates enervated enervated enervating +enface enfaces enfaced enfaced enfacing +enfeeble enfeebles enfeebled enfeebled enfeebling +enfeoff enfeoffs enfeoffed enfeoffed enfeoffing +enfilade enfilades enfiladed enfiladed enfilading +enfold enfolds enfolded enfolded enfolding +enforce enforces enforced enforced enforcing +enfranchise enfranchises enfranchised enfranchised enfranchising +engage engages engaged engaged engaging +engender engenders engendered engendered engendering +engineer engineers engineered engineered engineering +englut engluts englutted englutted englutting +engorge engorges engorged engorged engorging +engrail engrails engrailed engrailed engrailing +engrave engraves engraved engraved engraving +engross engrosses engrossed engrossed engrossing +engulf engulfs engulfed engulfed engulfing +enhance enhances enhanced enhanced enhancing +enigmatize enigmatizes enigmatized enigmatized enigmatizing +enisle enisles enisled enisled enisling +enjoin enjoins enjoined enjoined enjoining +enjoy enjoys enjoyed enjoyed enjoying +enkindle enkindles enkindled enkindled enkindling +enlace enlaces enlaced enlaced enlacing +enlarge enlarges enlarged enlarged enlarging +enlighten enlightens enlightened enlightened enlightening +enlist enlists enlisted enlisted enlisting +enliven enlivens enlivened enlivened enlivening +enmesh enmeshes enmeshed enmeshed enmeshing +ennoble ennobles ennobled ennobled ennobling +enounce enounces enounced enounced enouncing +enplane enplanes enplaned enplaned enplaning +enquire enquires enquired enquired enquiring +enrage enrages enraged enraged enraging +enrapture enraptures enraptured enraptured enrapturing +enrich enriches enriched enriched enriching +enrobe enrobes enrobed enrobed enrobing +enrol enrols enrolled enrolled enrolling +enroll enrols enrolled enrolled enrolling +enroot enroots enrooted enrooted enrooting +ensanguine ensanguines ensanguined ensanguined ensanguining +ensconce ensconces ensconced ensconced ensconcing +enshrine enshrines enshrined enshrined enshrining +enshrinshrine enshrinshrines enshrinshrined enshrinshrined enshrinshrining +enshroud enshrouds enshrouded enshrouded enshrouding +ensile ensiles ensiled ensiled ensiling +enslave enslaves enslaved enslaved enslaving +ensnare ensnares ensnared ensnared ensnaring +ensue ensues ensued ensued ensuing +ensure ensures ensured ensured ensuring +enswathe enswathes enswathed enswathed enswathing +entail entails entailed entailed entailing +entangle entangles entangled entangled entangling +enter enters entered entered entering +entertain entertains entertained entertained entertaining +enthral enthrals enthralled enthralled enthralling +enthrall enthrals enthralled enthralled enthralling +enthrone enthrones enthroned enthroned enthroning +enthuse enthuses enthused enthused enthusing +entice entices enticed enticed enticing +entitle entitles entitled entitled entitling +entoil entoils entoiled entoiled entoiling +entomb entombs entombed entombed entombing +entomologize entomologizes entomologized entomologized entomologizing +entrain entrains entrained entrained entraining +entrammel entrammels entrammelled entrammelled entrammelling +entrance entrances entranced entranced entrancing +entrap entraps entrapped entrapped entrapping +entreat entreats entreated entreated entreating +entrench entrenches entrenched entrenched entrenching +entrust entrusts entrusted entrusted entrusting +entwine entwines entwined entwined entwining +entwintwine entwintwines entwintwined entwintwined entwintwining +enucleate enucleates enucleated enucleated enucleating +enumerate enumerates enumerated enumerated enumerating +enunciate enunciates enunciated enunciated enunciating +envelop envelops enveloped enveloped enveloping +envenom envenoms envenomed envenomed envenoming +environ environs environed environed environing +envisage envisages envisaged envisaged envisaging +envision envisions envisioned envisioned envisioning +envy envies envied envied envying +enwind enwinds enwound enwound enwounding +enwomb enwombs enwombed enwombed enwombing +enwrap enwraps enwrapped enwrapped enwrapping +enwreath enwreaths enwreathed enwreathed enwreathing +epigrammatize epigrammatizes epigrammatized epigrammatized epigrammatizing +epilate epilates epilated epilated epilating +epitomise epitomises epitomised epitomised epitomising +epitomize epitomizes epitomized epitomized epitomizing +equal equals equalled equalled equalling +equalise equalises equalised equalised equalising +equalize equalizes equalized equalized equalizing +equate equates equated equated equating +equilibrate equilibrates equilibrated equilibrated equilibrating +equip equips equipped equipped equipping +equipoise equipoises equipoised equipoised equipoising +equiponderate equiponderates equiponderated equiponderated equiponderating +equivocate equivocates equivocated equivocated equivocating +eradiate eradiates eradiated eradiated eradiating +eradicate eradicates eradicated eradicated eradicating +erase erases erased erased erasing +erect erects erected erected erecting +erode erodes eroded eroded eroding +err errs erred erred erring +eructate eructs eructed eructed eructing +erupt erupts erupted erupted erupting +escalade escalades escaladed escaladed escalading +escalate escalates escalated escalated escalating +escallop escallops escalloped escalloped escalloping +escape escapes escaped escaped escaping +escarp escarps escarped escarped escarping +escheat escheats escheated escheated escheating +eschew eschews eschewed eschewed eschewing +escort escorts escorted escorted escorting +escribe escribes escribed escribed escribing +espalier espaliers espaliered espaliered espaliering +espouse espouses espoused espoused espousing +espy espies espied espied espying +esquire esquires esquired esquired esquiring +essay essays essayed essayed essaying +establish establishes established established establishing +esteem esteems esteemed esteemed esteeming +esterify esterifies esterified esterified esterifying +estimate estimates estimated estimated estimating +estivate estivates estivated estivated estivating +estop estops estopped estopped estopping +estrange estranges estranged estranged estranging +estreat estreats estreated estreated estreating +etch etches etched etched etching +eternize eternizes eternized eternized eternizing +etherealize etherealizes etherealized etherealized etherealizing +etherify etherifies etherified etherified etherifying +etherize etherizes etherized etherized etherizing +ethicize ethicizes ethicized ethicized ethicizing +etiolate etiolates etiolated etiolated etiolating +etymologize etymologizes etymologized etymologized etymologizing +euchre euchres euchred euchred euchring +euhemerize euhemerizes euhemerized euhemerized euhemerizing +eulogise eulogises eulogised eulogised eulogising +eulogize eulogizes eulogized eulogized eulogizing +euphemize euphemizes euphemized euphemized euphemizing +euphonize euphonizes euphonized euphonized euphonizing +europeanise europeanises europeanised europeanised europeanising +europeanize europeanizes europeanized europeanized europeanizing +euthanise euthanises euthanised euthanised euthanising +euthanize euthanizes euthanized euthanized euthanizing +evacuate evacuates evacuated evacuated evacuating +evade evades evaded evaded evading +evaginate evaginates evaginated evaginated evaginating +evaluate evaluates evaluated evaluated evaluating +evanesce evanesces evanesced evanesced evanescing +evangelise evangelises evangelised evangelised evangelising +evangelize evangelizes evangelized evangelized evangelizing +evanish evanishes evanished evanished evanishing +evaporate evaporates evaporated evaporated evaporating +even evens evened evened evening +eventuate eventuates eventuated eventuated eventuating +evert everts everted everted everting +evict evicts evicted evicted evicting +evidence evidences evidenced evidenced evidencing +evince evinces evinced evinced evincing +eviscerate eviscerates eviscerated eviscerated eviscerating +evite evites evited evited eviting +evoke evokes evoked evoked evoking +evolve evolves evolved evolved evolving +exacerbate exacerbates exacerbated exacerbated exacerbating +exact exacts exacted exacted exacting +exaggerate exaggerates exaggerated exaggerated exaggerating +exalt exalts exalted exalted exalting +examine examines examined examined examining +exasperate exasperates exasperated exasperated exasperating +excavate excavates excavated excavated excavating +exceed exceeds exceeded exceeded exceeding +excel excels excelled excelled excelling +except excepts excepted excepted excepting +excerpt excerpts excerpted excerpted excerpting +exchange exchanges exchanged exchanged exchanging +excide excides excided excided exciding +excise excises excised excised excising +excite excites excited excited exciting +exclaim exclaims exclaimed exclaimed exclaiming +exclude excludes excluded excluded excluding +excogitate excogitates excogitated excogitated excogitating +excommunicate excommunicates excommunicated excommunicated excommunicating +excorciate excorciates excorciated excorciated excorciating +excoriate excoriates excoriated excoriated excoriating +excrete excretes excreted excreted excreting +excruciate excruciates excruciated excruciated excruciating +exculpate exculpates exculpated exculpated exculpating +excuse excuses excused excused excusing +execrate execrates execrated execrated execrating +execute executes executed executed executing +exemplify exemplifies exemplified exemplified exemplifying +exempt exempts exempted exempted exempting +exenterate exenterates exenterated exenterated exenterating +exercise exercises exercised exercised exercising +exert exerts exerted exerted exerting +exfoliate exfoliates exfoliated exfoliated exfoliating +exhale exhales exhaled exhaled exhaling +exhaust exhausts exhausted exhausted exhausting +exhibit exhibits exhibited exhibited exhibiting +exhilarate exhilarates exhilarated exhilarated exhilarating +exhort exhorts exhorted exhorted exhorting +exhume exhumes exhumed exhumed exhuming +exile exiles exiled exiled exiling +exist exists existed existed existing +exit exits exited exited exiting +exonerate exonerates exonerated exonerated exonerating +exorcise exorcises exorcised exorcised exorcising +exorcize exorcizes exorcized exorcized exorcizing +expand expands expanded expanded expanding +expatiate expatiates expatiated expatiated expatiating +expatriate expatriates expatriated expatriated expatriating +expect expects expected expected expecting +expectorate expectorates expectorated expectorated expectorating +expedite expedites expedited expedited expediting +expel expels expelled expelled expelling +expend expends expended expended expending +expense expenses expensed expensed expensing +experience experiences experienced experienced experiencing +experiment experiments experimented experimented experimenting +experimentalize experimentalizes experimentalized experimentalized experimentalizing +expertize expertizes expertized expertized expertizing +expiate expiates expiated expiated expiating +expire expires expired expired expiring +explain explains explained explained explaining +explant explants explanted explanted explanting +explicate explicates explicated explicated explicating +explode explodes exploded exploded exploding +exploit exploits exploited exploited exploiting +explore explores explored explored exploring +export exports exported exported exporting +expose exposes exposed exposed exposing +expostulate expostulates expostulated expostulated expostulating +expound expounds expounded expounded expounding +express expresses expressed expressed expressing +expropriate expropriates expropriated expropriated expropriating +expunge expunges expunged expunged expunging +expurgate expurgates expurgated expurgated expurgating +exsanguinate exsanguinates exsanguinated exsanguinated exsanguinating +exscind exscinds exscinded exscinded exscinding +exsect exsects exsected exsected exsecting +exsert exserts exserted exserted exserting +exsiccate exsiccates exsiccated exsiccated exsiccating +extemporise extemporises extemporised extemporised extemporising +extemporize extemporizes extemporized extemporized extemporizing +extend extends extended extended extending +extenuate extenuates extenuated extenuated extenuating +exterminate exterminates exterminated exterminated exterminating +externalise externalises externalised externalised externalising +externalize externalizes externalized externalized externalizing +extinguish extinguishes extinguished extinguished extinguishing +extirpate extirpates extirpated extirpated extirpating +extol extols extolled extolled extolling +extoll extols extolled extolled extolling +extort extorts extorted extorted extorting +extract extracts extracted extracted extracting +extradite extradites extradited extradited extraditing +extrapolate extrapolates extrapolated extrapolated extrapolating +extravagate extravagates extravagated extravagated extravagating +extravasate extravasates extravasated extravasated extravasating +extricate extricates extricated extricated extricating +extrude extrudes extruded extruded extruding +exuberate exuberates exuberated exuberated exuberating +exude exudes exuded exuded exuding +exult exults exulted exulted exulting +exuviate exuviates exuviated exuviated exuviating +eye eyes eyed eyed eyeing +eyeball eyeballs eyeballed eyeballed eyeballing +eyelet eyelets eyeleted eyeleted eyeleting +f^ete f^etes f^eted f^eted f^eting +fable fables fabled fabled fabling +fabricate fabricates fabricated fabricated fabricating +face faces faced faced facing +faceharden facehardens facehardened facehardened facehardening +faceoff facesoff facedoff facedoff facingoff +facepalm facepalms facepalmed facepalmed facepalming +facet facets faceted faceted faceting +facilitate facilitates facilitated facilitated facilitating +factor factors factored factored factoring +factorise factorises factorised factorised factorising +factorize factorizes factorized factorized factorizing +fade fades faded faded fading +fadge fadges fadged fadged fadging +faff faffs faffed faffed faffing +fag fags fagged fagged fagging +fail fails failed failed failing +faint faints fainted fainted fainting +fair fairs faired faired fairing +fake fakes faked faked faking +fall falls fell fallen falling +fallow fallows fallowed fallowed fallowing +false-card false-cards false-carded false-carded false-carding +falsify falsifies falsified falsified falsifying +falter falters faltered faltered faltering +fame fames famed famed faming +familiarise familiarises familiarised familiarised familiarising +familiarize familiarizes familiarized familiarized familiarizing +famish famishes famished famished famishing +fan fans fanned fanned fanning +fanaticize fanaticizes fanaticized fanaticized fanaticizing +fancy fancies fancied fancied fancying +fankle fankles fankled fankled fankling +fantasise fantasises fantasised fantasised fantasising +fantasize fantasizes fantasized fantasized fantasizing +faradize faradizes faradized faradized faradizing +farce farces farced farced farcing +fare fares fared fared faring +farewell farewells farewelled farewelled farewelling +farm farms farmed farmed farming +farrow farrows farrowed farrowed farrowing +fart farts farted farted farting +fascinate fascinates fascinated fascinated fascinating +fash fashes fashed fashed fashing +fashion fashions fashioned fashioned fashioning +fast fasts fasted fasted fasting +fast-forward fast-forwards fast-forwarded fast-forwarded fast-forwarding +fast-track fast-tracks fast-tracked fast-tracked fast-tracking +fasten fastens fastened fastened fastening +fastforward fastforwards fastforwarded fastforwarded fastforwarding +fasttrack fasttracks fasttracked fasttracked fasttracking +fat fats fatted fatted fatting +fat-finger fat-fingers fat-fingered fat-fingered fat-fingering +fate fates fated fated fating +fatfinger fatfingers fatfingered fatfingered fatfingering +father fathers fathered fathered fathering +fathom fathoms fathomed fathomed fathoming +fatigue fatigues fatigued fatigued fatiguing +fatten fattens fattened fattened fattening +fault faults faulted faulted faulting +favor favors favored favored favoring +favour favours favoured favoured favouring +fawn fawns fawned fawned fawning +fax faxes faxed faxed faxing +fay fays fayed fayed faying +faze fazes fazed fazed fazing +fear fears feared feared fearing +feast feasts feasted feasted feasting +feather feathers feathered feathered feathering +feather-bed feather-beds feather-bedded feather-bedded feather-bedding +featherbed featherbeds featherbedded featherbedded featherbedding +featherstitch featherstitches featherstitched featherstitched featherstitching +feature features featured featured featuring +feaze feazes feazed feazed feazing +fecundate fecundates fecundated fecundated fecundating +federalize federalizes federalized federalized federalizing +federate federates federated federated federating +feed feeds fed fed feeding +feel feels felt felt feeling +feeze feezes feezed feezed feezing +feign feigns feigned feigned feigning +feint feints feinted feinted feinting +felicitate felicitates felicitated felicitated felicitating +fell fells felled felled felling +fellate fellates fellated fellated fellating +fellow fellows fellowed fellowed fellowing +feminise feminises feminised feminised feminising +feminize feminizes feminized feminized feminizing +fence fences fenced fenced fencing +fend fends fended fended fending +feng shui feng shuis feng shuied feng shuied feng shuiing +feoff feoffs feoffed feoffed feoffing +ferment ferments fermented fermented fermenting +ferret ferrets ferreted ferreted ferreting +ferrule ferrules ferruled ferruled ferruling +ferry ferries ferried ferried ferrying +fertilise fertilises fertilised fertilised fertilising +fertilize fertilizes fertilized fertilized fertilizing +ferule ferules feruled feruled feruling +fess fesses fessed fessed fessing +fester festers festered festered festering +festoon festoons festooned festooned festooning +fetch fetches fetched fetched fetching +fete fetes feted feted feting +fetishise fetishises fetishised fetishised fetishising +fetishize fetishizes fetishized fetishized fetishizing +fetter fetters fettered fettered fettering +fettle fettles fettled fettled fettling +feud feuds feuded feuded feuding +feudalize feudalizes feudalized feudalized feudalizing +fever fevers fevered fevered fevering +fib fibs fibbed fibbed fibbing +fictionalise fictionalises fictionalised fictionalised fictionalising +fictionalize fictionalizes fictionalized fictionalized fictionalizing +fiddle fiddles fiddled fiddled fiddling +fiddlefaddle fiddlefaddles fiddlefaddled fiddlefaddled fiddlefaddling +fidge fidges fidged fidged fidging +fidget fidgets fidgeted fidgeted fidgeting +field fields fielded fielded fielding +field-test field-tests field-tested field-tested field-testing +fieldtest fieldtests fieldtested fieldtested fieldtesting +fife fifes fifed fifed fifing +fig figs figged figged figging +fight fights fought fought fighting +figure figures figured figured figuring +filagree filagrees filagreed filagreed filagreeing +filch filches filched filched filching +file files filed filed filing +filiate filiates filiated filiated filiating +filibuster filibusters filibustered filibustered filibustering +fill fills filled filled filling +fillagree filigrees filigreed filigreed filigreeing +fillet fillets filleted filleted filleting +fillip fillips filliped filliped filliping +film films filmed filmed filming +filmset filmsets filmseted filmseted filmseting +filter filters filtered filtered filtering +filtrate filtrates filtrated filtrated filtrating +fin fins finned finned finning +finagle finagles finagled finagled finagling +finalise finalises finalised finalised finalising +finalize finalizes finalized finalized finalizing +finance finances financed financed financing +find finds found found finding +fine fines fined fined fining +fine-draw fine-draws fine-drew fine-drawn fine-drawing +fine-tune fine-tunes fine-tuned fine-tuned fine-tuning +finesse finesses finessed finessed finessing +finetune finetunes finetuned finetuned finetuning +finger fingers fingered fingered fingering +fingerprint fingerprints fingerprinted fingerprinted fingerprinting +finish finishes finished finished finishing +fink finks finked finked finking +fire fires fired fired firing +firebomb firebombs firebombed firebombed firebombing +firecure firecures firecured firecured firecuring +fireproof fireproofs fireproofed fireproofed fireproofing +firm firms firmed firmed firming +first-foot first-foots first-footed first-footed first-footing +firstfoot firstfoots firstfooted firstfooted firstfooting +fish fishes fished fished fishing +fishes fishes fishesed fishesed fishing +fishtail fishtails fishtailed fishtailed fishtailing +fissure fissures fissured fissured fissuring +fist fists fisted fisted fisting +fist-bump fist-bumps fist-bumped fist-bumped fist-bumping +fist-pump fist-pumps fist-pumped fist-pumped fist-pumping +fistbump fistbumps fistbumped fistbumped fistbumping +fistpump fistpumps fistpumped fistpumped fistpumping +fit fits fit fit fitting +fit fits fitted fitted fitting +fix fixes fixed fixed fixing +fixate fixates fixated fixated fixating +fizz fizzes fizzed fizzed fizzing +fizzle fizzles fizzled fizzled fizzling +flabbergast flabbergasts flabbergasted flabbergasted flabbergasting +flag flags flagged flagged flagging +flagellate flagellates flagellated flagellated flagellating +flail flails flailed flailed flailing +flake flakes flaked flaked flaking +flam flams flammed flammed flamming +flambe flamb‹¨«s flamb‹¨«ed flamb‹¨«ed flamb‹¨«ing +flame flames flamed flamed flaming +flameout flameouts flameouted flameouted flameouting +flange flanges flanged flanged flanging +flank flanks flanked flanked flanking +flannel flannels flannelled flannelled flannelling +flap flaps flapped flapped flapping +flare flares flared flared flaring +flash flashes flashed flashed flashing +flat flats flatted flatted flatting +flatline flatlines flatlined flatlined flatlining +flatten flattens flattened flattened flattening +flatter flatters flattered flattered flattering +flaunt flaunts flaunted flaunted flaunting +flavour flavours flavoured flavoured flavouring +flaw flaws flawed flawed flawing +flay flays flayed flayed flaying +fleck flecks flecked flecked flecking +fledge fledges fledged fledged fledging +flee flees fled fled fleeing +fleece fleeces fleeced fleeced fleecing +fleer fleers fleered fleered fleering +fleet fleets fleeted fleeted fleeting +flense flenses flensed flensed flensing +flesh fleshes fleshed fleshed fleshing +fletch fletches fletched fletched fletching +flex flexes flexed flexed flexing +fley fleys fleyed fleyed fleying +flick flicks flicked flicked flicking +flicker flickers flickered flickered flickering +flight flights flighted flighted flighting +flimflam flimflams flimflammed flimflammed flimflamming +flinch flinches flinched flinched flinching +fling flings flung flung flinging +flint flints flinted flinted flinting +flip flips flipped flipped flipping +flip-flop flip-flops flip-flopped flip-flopped flip-flopping +flipflop flipflops flipflopped flipflopped flipflopping +flirt flirts flirted flirted flirting +flit flits flitted flitted flitting +flitch flitches flitched flitched flitching +flite flites flited flited fliting +flitter flitters flittered flittered flittering +float floats floated floated floating +flocculate flocculates flocculated flocculated flocculating +flock flocks flocked flocked flocking +flog flogs flogged flogged flogging +flood floods flooded flooded flooding +floodlight floodlights floodlit floodlit floodlighting +floor floors floored floored flooring +flop flops flopped flopped flopping +floss flosses flossed flossed flossing +flounce flounces flounced flounced flouncing +flounder flounders floundered floundered floundering +flour flours floured floured flouring +flourish flourishes flourished flourished flourishing +flout flouts flouted flouted flouting +flow flows flowed flowed flowing +flower flowers flowered flowered flowering +flub flubs flubbed flubbed flubbing +fluctuate fluctuates fluctuated fluctuated fluctuating +flue-cure flue-cures flue-cured flue-cured flue-curing +fluff fluffs fluffed fluffed fluffing +fluidize fluidizes fluidized fluidized fluidizing +fluke flukes fluked fluked fluking +flume flumes flumed flumed fluming +flummox flummoxes flummoxed flummoxed flummoxing +flunk flunks flunked flunked flunking +fluoresce fluoresces fluoresced fluoresced fluorescing +fluoridate fluoridates fluoridated fluoridated fluoridating +fluoridize fluoridizes fluoridized fluoridized fluoridizing +fluorinate fluorinates fluorinated fluorinated fluorinating +flurry flurries flurried flurried flurrying +flush flushes flushed flushed flushing +fluster flusters flustered flustered flustering +flute flutes fluted fluted fluting +flutter flutters fluttered fluttered fluttering +flux fluxes fluxed fluxed fluxing +fly flies flew flown flying +fly-kick fly-kicks fly-kicked fly-kicked fly-kicking +fly-post fly-posts fly-posted fly-posted fly-posting +fly-tip fly-tips fly-tipped fly-tipped fly-tipping +flyblow flyblows flyblew flyblown flyblowing +flyfish flyfishes flyfished flyfished flyfishing +flykick flykicks flykicked flykicked flykicking +flypost flyposts flyposted flyposted flyposting +flyspeck flyspecks flyspecked flyspecked flyspecking +flyte flytes flyted flyted flyting +flytip flytips flytipped flytipped flytipping +foal foals foaled foaled foaling +foam foams foamed foamed foaming +fob fobs fobbed fobbed fobbing +focalise focalises focalised focalised focalising +focalize focalizes focalized focalized focalizing +focus focuses focused focused focusing +fodder fodders foddered foddered foddering +fog fogs fogged fogged fogging +foil foils foiled foiled foiling +foin foins foined foined foining +foist foists foisted foisted foisting +fold folds folded folded folding +foliate foliates foliated foliated foliating +folio folios folioed folioed folioing +folk folks folked folked folking +folk-dance folk-dances folk-danced folk-danced folk-dancing +follow follows followed followed following +foment foments fomented fomented fomenting +fondle fondles fondled fondled fondling +fool fools fooled fooled fooling +foot foots footed footed footing +foot-slog foot-slogs foot-slogged foot-slogged foot-slogging +footle footles footled footled footling +footnote footnotes footnoted footnoted footnoting +foozle foozles foozled foozled foozling +forage forages foraged foraged foraging +foray forays forayed forayed foraying +forbear forbears forbore forborne forbearing +forbid forbids forbad forbidden forbidding +forbid forbids forbade forbidden forbidding +force forces forced forced forcing +force-feed force-feeds force-fed force-fed force-feeding +force-land force-lands force-landed force-landed force-landing +force-ripe force-ripes force-riped force-riped force-riping +forcefeed forcefeeds forcefed forcefed forcefeeding +ford fords forded forded fording +forearm forearms forearmed forearmed forearming +forebode forebodes foreboded foreboded foreboding +forecast forecasts forecast forecast forecasting +forecast forecasts forecasted forecasted forecasting +foreclose forecloses foreclosed foreclosed foreclosing +foredo foredoes foredid foredone foredoing +foredoom foredooms foredoomed foredoomed foredooming +foregather foregathers foregathered foregathered foregathering +forego foregoes forewent foregone foregoing +foreground foregrounds foregrounded foregrounded foregrounding +forehand forehands forehanded forehanded forehanding +foreknow foreknows foreknew foreknown foreknowing +forelock forelocks forelocked forelocked forelocking +foreordain foreordains foreordained foreordained foreordaining +forereach forereaches forereached forereached forereaching +forerun foreruns foreran forerun forerunning +foresee foresees foresaw foreseen foreseeing +foreshadow foreshadows foreshadowed foreshadowed foreshadowing +foreshorten foreshortens foreshortened foreshortened foreshortening +foreshow foreshows foreshowed foreshown foreshowing +forespeak forespeaks forespoke forespoken forespeaking +forest forests forested forested foresting +forestall forestalls forestalled forestalled forestalling +foreswear foreswears foreswore foresworn foreswearing +foretaste foretastes foretasted foretasted foretasting +foretell foretells foretold foretold foretelling +foretoken foretokens foretokened foretokened foretokening +forewarn forewarns forewarned forewarned forewarning +forfeit forfeits forfeited forfeited forfeiting +forfend forfends forfended forfended forfending +forgat forgats forgated forgated forgating +forgather forgathers forgathered forgathered forgathering +forge forges forged forged forging +forget forgets forgot forgot forgetting +forget forgets forgot forgotten forgetting +forgive forgives forgave forgiven forgiving +forgo forgoes forwent forgone forgoing +forjudge forjudges forjudged forjudged forjudging +fork forks forked forked forking +form forms formed formed forming +formalise formalises formalised formalised formalising +formalize formalizes formalized formalized formalizing +format formats formatted formatted formatting +formicate formicates formicated formicated formicating +formularize formularizes formularized formularized formularizing +formulate formulates formulated formulated formulating +fornicate fornicates fornicated fornicated fornicating +forsake forsakes forsook forsaken forsaking +forspeak forspeaks forspoke forspoken forspeaking +forswear forswears forswore forsworn forswearing +fortify fortifies fortified fortified fortifying +fortress fortresses fortressed fortressed fortressing +fortune fortunes fortuned fortuned fortuning +forward forwards forwarded forwarded forwarding +fossick fossicks fossicked fossicked fossicking +fossilise fossilises fossilised fossilised fossilising +fossilize fossilizes fossilized fossilized fossilizing +foster fosters fostered fostered fostering +foul fouls fouled fouled fouling +found founds founded founded founding +founder founders foundered foundered foundering +fourflush fourflushes fourflushed fourflushed fourflushing +fowl fowls fowled fowled fowling +fox foxes foxed foxed foxing +foxhunt foxhunts foxhunted foxhunted foxhunting +fraction fractions fractioned fractioned fractioning +fractionate fractionates fractionated fractionated fractionating +fractionize fractionizes fractionized fractionized fractionizing +fracture fractures fractured fractured fracturing +frag frags fragged fragged fragging +fragment fragments fragmented fragmented fragmenting +frame frames framed framed framing +franchise franchises franchised franchised franchising +frank franks franked franked franking +frap fraps frapped frapped frapping +fraternise fraternises fraternised fraternised fraternising +fraternize fraternizes fraternized fraternized fraternizing +fray frays frayed frayed fraying +frazzle frazzles frazzled frazzled frazzling +freak freaks freaked freaked freaking +freckle freckles freckled freckled freckling +free frees freed freed freeing +free-select free-selects free-selected free-selected free-selecting +free-wheel free-wheels freewheeled free-wheeled freewheeling +freeboot freeboots freebooted freebooted freebooting +freelance freelances freelanced freelanced freelancing +freeload freeloads freeloaded freeloaded freeloading +freestyle freestyles freestyled freestyled freestyling +freewheel freewheels freewheeled freewheeled freewheeling +freeze freezes froze frozen freezing +freeze-dry freeze-dries freeze-dried freeze-dried freeze-drying +freezedry freezedries freezedried freezedried freezedrying +freight freights freighted freighted freighting +french polish french polishes french polished french polished french polishing +french-polish french-polishes french-polished french-polished french-polishing +frenchify frenchifies frenchified frenchified frenchifying +frenzy frenzies frenzied frenzied frenzying +frequent frequents frequented frequented frequenting +fresh freshes freshed freshed freshing +freshen freshens freshened freshened freshening +fret frets fretted fretted fretting +fribble fribbles fribbled fribbled fribbling +fricassee fricassees fricasseed fricasseed fricasseeing +friend friends friended friended friending +frig frigs frigged frigged frigging +frighten frightens frightened frightened frightening +frill frills frilled frilled frilling +fringe fringes fringed fringed fringing +frisk frisks frisked frisked frisking +fritt fritts fritted fritted fritting +fritter fritters frittered frittered frittering +frivol frivols frivolled frivolled frivolling +frizz frizzes frizzed frizzed frizzing +frizzle frizzles frizzled frizzled frizzling +frock frocks frocked frocked frocking +frog frogs frogged frogged frogging +frogmarch frogmarches frogmarched frogmarched frogmarching +frolic frolics frolicked frolicked frolicking +front fronts fronted fronted fronting +front-load front-loads front-loaded front-loaded front-loading +frontload frontloads frontloaded frontloaded frontloading +frost frosts frosted frosted frosting +frostbite frostbites frostbit frostbitten frostbiting +froth froths frothed frothed frothing +frown frowns frowned frowned frowning +fructify fructifies fructified fructified fructifying +fruit fruits fruited fruited fruiting +frustrate frustrates frustrated frustrated frustrating +fry fries fried fried frying +fuck fucks fucked fucked fucking +fuddle fuddles fuddled fuddled fuddling +fudge fudges fudged fudged fudging +fuel fuels fuelled fuelled fuelling +fulfil fulfils fulfilled fulfilled fulfilling +fulfill fulfils fulfilled fulfilled fulfilling +fulgurate fulgurates fulgurated fulgurated fulgurating +fuller fullers fullered fullered fullering +fulminate fulminates fulminated fulminated fulminating +fumble fumbles fumbled fumbled fumbling +fume fumes fumed fumed fuming +fumigate fumigates fumigated fumigated fumigating +fun funs funned funned funning +function functions functioned functioned functioning +fund funds funded funded funding +funk funks funked funked funking +funnel funnels funnelled funnelled funnelling +fur furs furred furred furring +furbelow furbelows furbelowed furbelowed furbelowing +furbish furbishes furbished furbished furbishing +furcate furcates furcated furcated furcating +furl furls furled furled furling +furlough furloughs furloughed furloughed furloughing +furnish furnishes furnished furnished furnishing +furrow furrows furrowed furrowed furrowing +further furthers furthered furthered furthering +fuse fuses fused fused fusing +fusillade fusillades fusilladed fusilladed fusillading +fuss fusses fussed fussed fussing +fustigate fustigates fustigated fustigated fustigating +future-proof future-proofs future-proofed future-proofed future-proofing +futureproof futureproofs futureproofed futureproofed futureproofing +futz futzes futzed futzed futzing +fuze fuzes fuzed fuzed fuzing +fuzz fuzzes fuzzed fuzzed fuzzing +gab gabs gabbed gabbed gabbing +gabble gabbles gabbled gabbled gabbling +gad gads gadded gadded gadding +gaff gaffs gaffed gaffed gaffing +gag gags gagged gagged gagging +gaggle gaggles gaggled gaggled gaggling +gain gains gained gained gaining +gainsay gainsays gainsaid gainsaid gainsaying +gall galls galled galled galling +gallant gallants gallanted gallanted gallanting +gallicize gallicizes gallicized gallicized gallicizing +gallivant gallivants gallivanted gallivanted gallivanting +gallop gallops gallopped gallopped gallopping +galumph galumphs galumphed galumphed galumphing +galvanise galvanises galvanised galvanised galvanising +galvanize galvanizes galvanized galvanized galvanizing +gam gams gammed gammed gamming +gamble gambles gambled gambled gambling +gambol gambols gambolled gambolled gambolling +game games gamed gamed gaming +gamify gamifies gamified gamified gamifying +gammon gammons gammoned gammoned gammoning +gang gangs ganged ganged ganging +gang-bang gang-bangs gang-banged gang-banged gang-banging +gang-rape gang-rapes gang-raped gang-raped gang-raping +gangbang gangbangs gangbanged gangbanged gangbanging +gangrape gangrapes gangraped gangraped gangraping +gangrene gangrenes gangrened gangrened gangrening +gaol gaols gaoled gaoled gaoling +gape gapes gaped gaped gaping +garage garages garaged garaged garaging +garb garbs garbed garbed garbing +garble garbles garbled garbled garbling +garden gardens gardened gardened gardening +gargle gargles gargled gargled gargling +garland garlands garlanded garlanded garlanding +garment garments garmented garmented garmenting +garner garners garnered garnered garnering +garnish garnishes garnished garnished garnishing +garnishee garnishees garnisheed garnisheed garnisheeing +garrison garrisons garrisoned garrisoned garrisoning +garrotte garrottes garrotted garrotted garrotting +garter garters gartered gartered gartering +gas gases gassed gassed gassing +gasconade gasconades gasconaded gasconaded gasconading +gash gashes gashed gashed gashing +gasify gasifies gasified gasified gasifying +gasp gasps gasped gasped gasping +gat gats gated gated gating +gate gates gated gated gating +gate-crash gate-crashes gate-crashed gate-crashed gate-crashing +gatecrash gatecrashes gatecrashed gatecrashed gatecrashing +gather gathers gathered gathered gathering +gauge gauges gauged gauged gauging +gawk gawks gawked gawked gawking +gawp gawps gawped gawped gawping +gaze gazes gazed gazed gazing +gazette gazettes gazetted gazetted gazetting +gazump gazumps gazumped gazumped gazumping +gazunder gazunders gazundered gazundered gazundering +gear gears geared geared gearing +gee gees geed geed geeing +gel gels gelled gelled gelling +gelatinize gelatinizes gelatinized gelatinized gelatinizing +geld gelds gelded gelded gelding +gem gems gemmed gemmed gemming +geminate geminates geminated geminated geminating +gemmate gemmates gemmated gemmated gemmating +gen gens genned genned genning +generalise generalises generalised generalised generalising +generalize generalizes generalized generalized generalizing +generate generates generated generated generating +gentle gentles gentled gentled gentling +gentrify gentrifies gentrified gentrified gentrifying +genuflect genuflects genuflected genuflected genuflecting +geofence geofences geofenced geofenced geofencing +geologize geologizes geologized geologized geologizing +geometrize geometrizes geometrized geometrized geometrizing +geotag geotags geotagged geotagged geotagging +germanize germanizes germanized germanized germanizing +germinate germinates germinated germinated germinating +gerrymander gerrymanders gerrymandered gerrymandered gerrymandering +gestate gestates gestated gestated gestating +gesticulate gesticulates gesticulated gesticulated gesticulating +gesture gestures gestured gestured gesturing +get gets got got getting +get gets got gotten getting +getter getters gettered gettered gettering +gherao gheraoes gheraoed gheraoed gheraoing +ghettoise ghettoises ghettoised ghettoised ghettoising +ghettoize ghettoizes ghettoized ghettoized ghettoizing +ghost ghosts ghosted ghosted ghosting +ghostwrite ghostwrites ghostwrote ghostwritten ghostwriting +gib gibs gibbed gibbed gibbing +gibber gibbers gibbered gibbered gibbering +gibbet gibbets gibbeted gibbeted gibbeting +gibe gibes gibed gibed gibing +gie gies gied gied gying +gift gifts gifted gifted gifting +gift-wrap gift-wraps gift-wrapped gift-wrapped gift-wrapping +giftwrap giftwraps giftwrapped giftwrapped giftwrapping +gig gigs gigged gigged gigging +giggle giggles giggled giggled giggling +gild gilds gilded gilded gilding +gill gills gilled gilled gilling +gimlet gimlets gimleted gimleted gimleting +gimme gimmes gimmed gimmed gimming +gin gins ginned ginned ginning +ginger gingers gingered gingered gingering +gird girds girded girded girding +girdle girdles girdled girdled girdling +girth girths girthed girthed girthing +give gives gave given giving +glac_e glac_es glac_eed glac_eed glac_eing +glaciate glaciates glaciated glaciated glaciating +glad glads gladed gladed glading +glad-hand glad-hands glad-handed glad-handed glad-handing +gladden gladdens gladdened gladdened gladdening +gladhand gladhands gladhanded gladhanded gladhanding +glair glairs glaired glaired glairing +glamorise glamorises glamorised glamorised glamorising +glamorize glamorizes glamorized glamorized glamorizing +glamourize glamourizes glamourized glamourized glamourizing +glance glances glanced glanced glancing +glare glares glared glared glaring +glass glasses glassed glassed glassing +glaze glazes glazed glazed glazing +gleam gleams gleamed gleamed gleaming +glean gleans gleaned gleaned gleaning +glide glides glided glided gliding +glimmer glimmers glimmered glimmered glimmering +glimpse glimpses glimpsed glimpsed glimpsing +glint glints glinted glinted glinting +glissade glissades glissaded glissaded glissading +glisten glistens glistened glistened glistening +glister glisters glistered glistered glistering +glitch glitches glitched glitched glitching +glitter glitters glittered glittered glittering +gloat gloats gloated gloated gloating +globalise globalises globalised globalised globalising +globalize globalizes globalized globalized globalizing +globe globes globed globed globing +globe-trot globe-trots globe-trotted globe-trotted globe-trotting +glom gloms glommed glommed glomming +gloom glooms gloomed gloomed glooming +glorify glorifies glorified glorified glorifying +glory glories gloried gloried glorying +gloss glosses glossed glossed glossing +glove gloves gloved gloved gloving +glow glows glowed glowed glowing +glower glowers glowered glowered glowering +gloze glozes glozed glozed glozing +glue glues glued glued gluing +glug glugs glugged glugged glugging +glut gluts glutted glutted glutting +gnarl gnars gnarled gnarled gnarling +gnash gnashes gnashed gnashed gnashing +gnaw gnaws gnawed gnawed gnawing +gnosticize gnosticizes gnosticized gnosticized gnosticizing +go goes went gone going +goad goads goaded goaded goading +gob gobs gobbed gobbed gobbing +gobble gobbles gobbled gobbled gobbling +goffer goffers goffered goffered goffering +goggle goggles goggled goggled goggling +gold-plate gold-plates gold-plated gold-plated gold-plating +goldbrick goldbricks goldbricked goldbricked goldbricking +gollop gollops golloped golloped golloping +golly gollies gollied gollied gollying +goof goofs goofed goofed goofing +google googles googled googled googling +goose gooses goosed goosed goosing +goose-step goose-steps goose-stepped goose-stepped goose-stepping +goosestep goosesteps goosestepped goosestepped goosestepping +gore gores gored gored goring +gorge gorges gorged gorged gorging +gormandize gormandizes gormandized gormandized gormandizing +gossip gossips gossiped gossiped gossiping +goster gosters gostered gostered gostering +got gets got gotten getting +gothicize gothicizes gothicized gothicized gothicizing +gouge gouges gouged gouged gouging +govern governs governed governed governing +gown gowns gowned gowned gowning +grab grabs grabbed grabbed grabbing +grabble grabbles grabbled grabbled grabbling +grace graces graced graced gracing +gradate gradates gradated gradated gradating +grade grades graded graded grading +graduate graduates graduated graduated graduating +graft grafts grafted grafted grafting +grain grains grained grained graining +grandstand grandstands grandstanded grandstanded grandstanding +grangerize grangerizes grangerized grangerized grangerizing +grant grants granted granted granting +granulate granulates granulated granulated granulating +graph graphs graphed graphed graphing +graphitize graphitizes graphitized graphitized graphitizing +grapple grapples grappled grappled grappling +grasp grasps grasped grasped grasping +grass grasses grassed grassed grassing +grate grates grated grated grating +gratify gratifies gratified gratified gratifying +gratulate gratulates gratulated gratulated gratulating +grave graves graven graven graving +gravel gravels gravelled gravelled gravelling +gravitate gravitates gravitated gravitated gravitating +graze grazes grazed grazed grazing +grease greases greased greased greasing +greaten greatens greatened greatened greatening +grecize grecizes grecized grecized grecizing +gree grees greed greed greeing +green greens greened greened greening +green-light green-lights green-lighted green-lighted green-lighting +greenlight greenlights greenlighted greenlighted greenlighting +greet greets greeted greeted greeting +grey greys greyed greyed greying +griddle griddles griddled griddled griddling +gride grides grided grided griding +grieve grieves grieved grieved grieving +grill grills grilled grilled grilling +grimace grimaces grimaced grimaced grimacing +grime grimes grimed grimed griming +grin grins grinned grinned grinning +grind grinds ground ground grinding +grip grips gripped gripped gripping +gripe gripes griped griped griping +grit grits gritted gritted gritting +grizzle grizzles grizzled grizzled grizzling +groan groans groaned groaned groaning +groin groins groined groined groining +grok groks grokked grokked grokking +groom grooms groomed groomed grooming +groove grooves grooved grooved grooving +grope gropes groped groped groping +gross grosses grossed grossed grossing +grouch grouches grouched grouched grouching +ground grounds grounded grounded grounding +group groups grouped grouped grouping +grouse grouses groused groused grousing +grout grouts grouted grouted grouting +grovel grovels grovelled grovelled grovelling +grow grows grew grown growing +growl growls growled growled growling +grub grubs grubbed grubbed grubbing +grubstake grubstakes grubstaked grubstaked grubstaking +grudge grudges grudged grudged grudging +grumble grumbles grumbled grumbled grumbling +grump grumps grumped grumped grumping +grunt grunts grunted grunted grunting +guarantee guarantees guaranteed guaranteed guaranteeing +guaranty guaranties guarantied guarantied guarantying +guard guards guarded guarded guarding +gudgeon gudgeons gudgeoned gudgeoned gudgeoning +guerdon guerdons guerdoned guerdoned guerdoning +guess guesses guessed guessed guessing +guest guests guested guested guesting +guffaw guffaws guffawed guffawed guffawing +guide guides guided guided guiding +guillotine guillotines guillotined guillotined guillotining +guilt guilts guilted guilted guilting +guise guises guised guised guising +gulf gulfs gulfed gulfed gulfing +gull gulls gulled gulled gulling +gully gullies gullied gullied gullying +gulp gulps gulped gulped gulping +gum gums gummed gummed gumming +gumshoe gumshoes gumshoed gumshoed gumshoeing +gun guns gunned gunned gunning +gunge gunges gunged gunged gunging +gurgle gurgles gurgled gurgled gurgling +gurn gurns gurned gurned gurning +gush gushes gushed gushed gushing +gusset gussets gusseted gusseted gusseting +gussy gussies gussied gussied gussying +gust gusts gusted gusted gusting +gut guts gutted gutted gutting +gutter gutters guttered guttered guttering +gutturalize gutturalizes gutturalized gutturalized gutturalizing +guy guys guyed guyed guying +guzzle guzzles guzzled guzzled guzzling +gybe gybes gybed gybed gybing +gyp gyps gypped gypped gypping +gyrate gyrates gyrated gyrated gyrating +gyve gyves gyved gyved gyving +habilitate habilitates habilitated habilitated habilitating +habit habits habited habited habiting +habituate habituates habituated habituated habituating +hachure hachures hachured hachured hachuring +hack hacks hacked hacked hacking +hackle hackles hackled hackled hackling +hackney hackneys hackneyed hackneyed hackneying +hacksaw hacksaws hacksawed hacksawn hacksawing +hade hades haded haded hading +haemorrhage haemorrhages haemorrhaged haemorrhaged haemorrhaging +haft hafts hafted hafted hafting +haggle haggles haggled haggled haggling +hail hails hailed hailed hailing +hale hales haled haled haling +half halves halfed halfed halfing +half-volley half-volleys half-volleyed half-volleyed half-volleying +hallal hallals hallaled hallaled hallaling +hallmark hallmarks hallmarked hallmarked hallmarking +halloo halloos hallooed hallooed hallooing +hallow hallows hallowed hallowed hallowing +hallucinate hallucinates hallucinated hallucinated hallucinating +halo halos haloed haloed haloing +halogenate halogenates halogenated halogenated halogenating +halt halts halted halted halting +halter halters haltered haltered haltering +halve halves halved halved halving +ham hams hammed hammed hamming +hammer hammers hammered hammered hammering +hamper hampers hampered hampered hampering +hamshackle hamshackles hamshackled hamshackled hamshackling +hamstring hamstrings hamstrung hamstrung hamstringing +hand hands handed handed handing +hand-knit hand-knits hand-knitted hand-knitted hand-knitting +handcuff handcuffs handcuffed handcuffed handcuffing +handfast handfasts handfasted handfasted handfasting +handfeed handfeeds handfed handfed handfeeding +handicap handicaps handicapped handicapped handicapping +handle handles handled handled handling +handpick handpicks handpicked handpicked handpicking +handwash handwashes handwashed handwashed handwashing +handwrite handwrites handwrote handwritten handwriting +hang hangs hung hung hanging +hank hanks hanked hanked hanking +hanker hankers hankered hankered hankering +hansel hansels hanseled hanseled hanseling +hap haps happed happed happing +happen happens happened happened happening +harangue harangues harangued harangued haranguing +harass harasses harassed harassed harassing +harbinger harbingers harbingered harbingered harbingering +harbour harbours harboured harboured harbouring +hard-code hard-coded hard-coded hard-coded hard-coding +hardcode hardcoded hardcoded hardcoded hardcoding +harden hardens hardened hardened hardening +hare hares hared hared haring +hark harks harked harked harking +harken harkens harkened harkened harkening +harm harms harmed harmed harming +harmonise harmonises harmonised harmonised harmonising +harmonize harmonizes harmonized harmonized harmonizing +harness harnesses harnessed harnessed harnessing +harp harps harped harped harping +harpoon harpoons harpooned harpooned harpooning +harrow harrows harrowed harrowed harrowing +harrumph harrumphs harrumphed harrumphed harrumphing +harry harries harried harried harrying +harvest harvests harvested harvested harvesting +hash hashes hashed hashed hashing +hasp hasps hasped hasped hasping +hassle hassles hassled hassled hassling +haste hastes hasted hasted hasting +hasten hastens hastened hastened hastening +hat hats hatted hatted hatting +hatch hatches hatched hatched hatching +hatchel hatchels hatcheled hatcheled hatcheling +hate hates hated hated hating +haul hauls hauled hauled hauling +haunt haunts haunted haunted haunting +have has had had having +haven havens havened havened havening +haver havers havered havered havering +havoc havocs havocked havocked havocking +haw haws hawed hawed hawing +hawk hawks hawked hawked hawking +hawse hawses hawsed hawsed hawsing +hay hays hayed hayed haying +hazard hazards hazarded hazarded hazarding +haze hazes hazed hazed hazing +head heads headed headed heading +head-load head-loads head-loaded head-loaded head-loading +headbutt headbutts headbutted headbutted headbutting +headhunt headhunts headhunted headhunted headhunting +headline headlines headlined headlined headlining +headreach headreaches headreached headreached headreaching +heal heals healed healed healing +heap heaps heaped heaped heaping +hear hears heard heard hearing +hearken hearkens hearkened hearkened hearkening +heart hearts hearted hearted hearting +hearten heartens heartened heartened heartening +heat heats heated heated heating +heathenize heathenizes heathenized heathenized heathenizing +heattreat heattreats heattreated heattreated heattreating +heave heaves heaved heaved heaving +hebetate hebetates hebetated hebetated hebetating +hebraize hebraizes hebraized hebraized hebraizing +heckle heckles heckled heckled heckling +hector hectors hectored hectored hectoring +hedge hedges hedged hedged hedging +hedge-hop hedge-hops hedgehopped hedge-hopped hedgehopping +hedgehop hedgehops hedgehopped hedgehopped hedgehopping +heed heeds heeded heeded heeding +heel heels heeled heeled heeling +heel-and-toe heel-and-toes heel-and-toed heel-and-toed heel-and-toeing +heft hefts hefted hefted hefting +heighten heightens heightened heightened heightening +heist heists heisted heisted heisting +hellenize hellenizes hellenized hellenized hellenizing +helm helms helmed helmed helming +help helps helped helped helping +helve helves helved helved helving +hem hems hemmed hemmed hemming +hemagglutinate hemagglutinates hemagglutinated hemagglutinated hemagglutinating +hemorrhage hemorrhages hemorrhaged hemorrhaged hemorrhaging +hemstitch hemstitches hemstitched hemstitched hemstitching +henpeck henpecks henpecked henpecked henpecking +hent hents hented hented henting +herald heralds heralded heralded heralding +herd herds herded herded herding +hero-worship hero-worships hero-worshipped hero-worshipped hero-worshipping +heroworship heroworships heroworshipped heroworshipped heroworshipping +herringbone herringbones herringboned herringboned herringboning +hesitate hesitates hesitated hesitated hesitating +heterodyne heterodynes heterodyned heterodyned heterodyning +hew hews hewed hewed hewing +hex hexes hexed hexed hexing +hibernate hibernates hibernated hibernated hibernating +hiccough hiccoughs hiccoughed hiccoughed hiccoughing +hiccup hiccups hiccuped hiccuped hiccuping +hide hides hid hidden hiding +hie hies hied hied hying +higgle higgles higgled higgled higgling +high-stick high-sticks high-sticked high-sticked high-sticking +highball highballs highballed highballed highballing +highhat highhats highhatted highhatted highhatting +highlight highlights highlighted highlighted highlighting +highstick highsticks highsticked highsticked highsticking +hightail hightails hightailed hightailed hightailing +hijack hijacks hijacked hijacked hijacking +hike hikes hiked hiked hiking +hill hills hilled hilled hilling +hilt hilts hilted hilted hilting +hinder hinders hindered hindered hindering +hinge hinges hinged hinged hingeing +hinny hinnies hinnied hinnied hinnying +hint hints hinted hinted hinting +hire hires hired hired hiring +hispanicize hispanicizes hispanicized hispanicized hispanicizing +hiss hisses hissed hissed hissing +hit hits hit hit hitting +hitch hitches hitched hitched hitching +hitchhike hitchhikes hitchhiked hitchhiked hitchhiking +hive hives hived hived hiving +hoard hoards hoarded hoarded hoarding +hoarsen hoarsens hoarsened hoarsened hoarsening +hoax hoaxes hoaxed hoaxed hoaxing +hob hobs hobbed hobbed hobbing +hobble hobbles hobbled hobbled hobbling +hobbyhorse hobbyhorses hobbyhorsed hobbyhorsed hobbyhorsing +hobnob hobnobs hobnobbed hobnobbed hobnobbing +hock hocks hocked hocked hocking +hocus hocuses hocused hocused hocusing +hocuspocus hocuspocuses hocuspocussed hocuspocussed hocuspocussing +hoe hoes hoed hoed hoeing +hog hogs hogged hogged hogging +hogtie hogties hogtied hogtied hogtying +hoick hoicks hoicked hoicked hoicking +hoiden hoidens hoidened hoidened hoidening +hoist hoists hoisted hoisted hoisting +hoke hokes hoked hoked hoking +hold holds held held holding +holden holdens holdened holdened holdening +hole holes holed holed holing +holiday holidays holidayed holidayed holidaying +holler hollers hollered hollered hollering +hollow hollows hollowed hollowed hollowing +holp holps holped holped holping +holpen holpens holpened holpened holpening +holster holsters holstered holstered holstering +holystone holystones holystoned holystoned holystoning +homage homages homaged homaged homaging +home homes homed homed homing +homeschool homeschools homeschooled homeschooled homeschooling +homestead homesteads homesteaded homesteaded homesteading +homogenise homogenises homogenised homogenised homogenising +homogenize homogenizes homogenized homogenized homogenizing +homologate homologates homologated homologated homologating +homologize homologizes homologized homologized homologizing +hone hones honed honed honing +honey honeys honied honied honeying +honeycomb honeycombs honeycombed honeycombed honeycombing +honeymoon honeymoons honeymooned honeymooned honeymooning +honk honks honked honked honking +honor honors honored honored honoring +honour honours honoured honoured honouring +hood hoods hooded hooded hooding +hoodoo hoodoos hoodooed hoodooed hoodooing +hoodwink hoodwinks hoodwinked hoodwinked hoodwinking +hoof hoofs hoofed hoofed hoofing +hook hooks hooked hooked hooking +hookup hookups hookuped hookuped hookuping +hoon hoons hooned hooned hooning +hoop hoops hooped hooped hooping +hooray hoorays hoorayed hoorayed hooraying +hoot hoots hooted hooted hooting +hoover hoovers hoovered hoovered hoovering +hop hops hopped hopped hopping +hope hopes hoped hoped hoping +hopple hopples hoppled hoppled hoppling +horde hordes horded horded hording +horn horns horned horned horning +hornswoggle hornswoggles hornswoggled hornswoggled hornswoggling +horrify horrifies horrified horrified horrifying +horse horses horsed horsed horsing +horseshoe horseshoes horseshoed horseshoed horseshoeing +horsewhip horsewhips horsewhipped horsewhipped horsewhipping +hose hoses hosed hosed hosing +hospitalise hospitalises hospitalised hospitalised hospitalising +hospitalize hospitalizes hospitalized hospitalized hospitalizing +host hosts hosted hosted hosting +hot hots hotted hotted hotting +hot dog hot dogs hot dogged hot dogged hot dogging +hot-dog hot-dogs hot-dogged hot-dogged hot-dogging +hot-press hot-presses hot-pressed hot-pressed hot-pressing +hot-swap hot-swaps hot-swapped hot-swapped hot-swapping +hot-wire hot-wires hot-wired hot-wired hot-wiring +hotdog hotdogs hotdogged hotdogged hotdogging +hotfoot hotfoots hotfooted hotfooted hotfooting +hotswap hotswaps hotswapped hotswapped hotswapping +hotwire hotwires hotwired hotwired hotwiring +hound hounds hounded hounded hounding +house houses housed housed housing +house-sit house-sits house-sat house-sat house-sitting +house-train house-trains house-trained house-trained house-training +housel housels houselled houselled houselling +housesit housesits housesat housesat housesitting +hovel hovels hovelled hovelled hovelling +hover hovers hovered hovered hovering +howl howls howled howled howling +huckster hucksters huckstered huckstered huckstering +huddle huddles huddled huddled huddling +huff huffs huffed huffed huffing +hug hugs hugged hugged hugging +huggermugger huggermuggers huggermuggered huggermuggered huggermuggering +hulk hulks hulked hulked hulking +hull hulls hulled hulled hulling +hum hums hummed hummed humming +humanise humanises humanised humanised humanising +humanize humanizes humanized humanized humanizing +humble humbles humbled humbled humbling +humbug humbugs humbugged humbugged humbugging +humidify humidifies humidified humidified humidifying +humiliate humiliates humiliated humiliated humiliating +humour humours humoured humoured humouring +hump humps humped humped humping +hunch hunches hunched hunched hunching +hunger hungers hungered hungered hungering +hunker hunkers hunkered hunkered hunkering +hunt hunts hunted hunted hunting +hurdle hurdles hurdled hurdled hurdling +hurl hurls hurled hurled hurling +hurrah hurrahs hurrahed hurrahed hurrahing +hurry hurries hurried hurried hurrying +hurt hurts hurt hurt hurting +hurtle hurtles hurtled hurtled hurtling +husband husbands husbanded husbanded husbanding +hush hushes hushed hushed hushing +husk husks husked husked husking +hustle hustles hustled hustled hustling +hutch hutches hutched hutched hutching +huzzah huzzahs huzzahed huzzahed huzzahing +hybridise hybridises hybridised hybridised hybridising +hybridize hybridizes hybridized hybridized hybridizing +hydrate hydrates hydrated hydrated hydrating +hydrogenize hydrogenizes hydrogenized hydrogenized hydrogenizing +hydrolyze hydrolyzes hydrolyzed hydrolyzed hydrolyzing +hydroplane hydroplanes hydroplaned hydroplaned hydroplaning +hymn hymns hymned hymned hymning +hype hypes hyped hyped hyping +hyperbolize hyperbolizes hyperbolized hyperbolized hyperbolizing +hypersensitize hypersensitizes hypersensitized hypersensitized hypersensitizing +hypertrophy hypertrophies hypertrophied hypertrophied hypertrophying +hyperventilate hyperventilates hyperventilated hyperventilated hyperventilating +hyphenate hyphenates hyphenated hyphenated hyphenating +hypnotise hypnotises hypnotised hypnotised hypnotising +hypnotize hypnotizes hypnotized hypnotized hypnotizing +hyposensitize hyposensitizes hyposensitized hyposensitized hyposensitizing +hypostasize hypostasizes hypostasized hypostasized hypostasizing +hypostatize hypostatizes hypostatized hypostatized hypostatizing +hypothecate hypothecates hypothecated hypothecated hypothecating +hypothesise hypothesises hypothesised hypothesised hypothesising +hypothesize hypothesizes hypothesized hypothesized hypothesizing +hysterectomize hysterectomizes hysterectomized hysterectomized hysterectomizing +ice ices iced iced icing +ice-skate ice-skates ice-skated ice-skated ice-skating +iceskate iceskates iceskated iceskated iceskating +iconify iconifies iconified iconified iconifying +id id's id'd id'd id'ing +idealise idealises idealised idealised idealising +idealize idealizes idealized idealized idealizing +ideate ideates ideated ideated ideating +identify identifies identified identified identifying +idle idles idled idled idling +idolatrize idolatrizes idolatrized idolatrized idolatrizing +idolise idolises idolised idolised idolising +idolize idolizes idolized idolized idolizing +ignite ignites ignited ignited igniting +ignore ignores ignored ignored ignoring +ill-treat ill-treats ill-treated ill-treated ill-treating +illegalize illegalizes illegalized illegalized illegalizing +illtreat illtreats illtreated illtreated illtreating +illude illudes illuded illuded illuding +illume illumes illumed illumed illuming +illuminate illuminates illuminated illuminated illuminating +illumine illumines illumined illumined illumining +illuse illuses illused illused illusing +illustrate illustrates illustrated illustrated illustrating +im ims imd imd iming +image images imaged imaged imaging +imagine imagines imagined imagined imagining +imagineer imagineers imagineered imagineered imagineering +imbed imbeds imbedded imbedded imbedding +imbibe imbibes imbibed imbibed imbibing +imbricate imbricates imbricated imbricated imbricating +imbrue imbrues imbrued imbrued imbruing +imbue imbues imbued imbued imbuing +imitate imitates imitated imitated imitating +immaterialize immaterializes immaterialized immaterialized immaterializing +immerge immerges immerged immerged immerging +immerse immerses immersed immersed immersing +immigrate immigrates immigrated immigrated immigrating +immingle immingles immingled immingled immingling +immix immixes immixed immixed immixing +immobilise immobilises immobilised immobilised immobilising +immobilize immobilizes immobilized immobilized immobilizing +immolate immolates immolated immolated immolating +immortalise immortalises immortalised immortalised immortalising +immortalize immortalizes immortalized immortalized immortalizing +immunise immunises immunised immunised immunising +immunize immunizes immunized immunized immunizing +immure immures immured immured immuring +imp imps imped imped imping +impact impacts impacted impacted impacting +impair impairs impaired impaired impairing +impale impales impaled impaled impaling +impanel impanels impanelled impanelled impanelling +imparadise imparadises imparadised imparadised imparadising +impart imparts imparted imparted imparting +impassion impassions impassioned impassioned impassioning +impaste impastes impasted impasted impasting +impeach impeaches impeached impeached impeaching +impearl impearls impearled impearled impearling +impede impedes impeded impeded impeding +impel impels impelled impelled impelling +impend impends impended impended impending +imperil imperils imperilled imperilled imperilling +impersonalize impersonalizes impersonalized impersonalized impersonalizing +impersonate impersonates impersonated impersonated impersonating +impetrate impetrates impetrated impetrated impetrating +imping impings impinged impinged impinging +impinge impinges impinged impinged impinging +implant implants implanted implanted implanting +implead impleads impleaded impleaded impleading +implement implements implemented implemented implementing +implicate implicates implicated implicated implicating +implode implodes imploded imploded imploding +implore implores implored implored imploring +imply implies implied implied implying +impolder impolders impoldered impoldered impoldering +import imports imported imported importing +importune importunes importuned importuned importuning +impose imposes imposed imposed imposing +impost imposts imposted imposted imposting +impound impounds impounded impounded impounding +impoverish impoverishes impoverished impoverished impoverishing +impower impowers impowered impowered impowering +imprecate imprecates imprecated imprecated imprecating +impregnate impregnates impregnated impregnated impregnating +impress impresses impressed impressed impressing +imprint imprints imprinted imprinted imprinting +imprison imprisons imprisoned imprisoned imprisoning +impropriate impropriates impropriated impropriated impropriating +improve improves improved improved improving +improvise improvises improvised improvised improvising +impugn impugns impugned impugned impugning +impulse-buy impulse-buys impulse-bought impulse-bought impulse-buying +impute imputes imputed imputed imputing +inactivate inactivates inactivated inactivated inactivating +inarch inarches inarched inarched inarching +inaugurate inaugurates inaugurated inaugurated inaugurating +inbreathe inbreathes inbreathed inbreathed inbreathing +incandesce incandesces incandesced incandesced incandescing +incapacitate incapacitates incapacitated incapacitated incapacitating +incapsulate incapsulates incapsulated incapsulated incapsulating +incarcerate incarcerates incarcerated incarcerated incarcerating +incardinate incardinates incardinated incardinated incardinating +incarnadine incarnadines incarnadined incarnadined incarnadining +incarnate incarnates incarnated incarnated incarnating +incase incases incased incased incasing +incense incenses incensed incensed incensing +incentivise incentivises incentivised incentivised incentivising +incentivize incentivizes incentivized incentivized incentivizing +incept incepts incepted incepted incepting +inch inches inched inched inching +incinerate incinerates incinerated incinerated incinerating +incise incises incised incised incising +incite incites incited incited inciting +incline inclines inclined inclined inclining +inclose incloses inclosed inclosed inclosing +include includes included included including +incommode incommodes incommoded incommoded incommoding +inconvenience inconveniences inconvenienced inconvenienced inconveniencing +incorporate incorporates incorporated incorporated incorporating +incrassate incrassates incrassated incrassated incrassating +increase increases increased increased increasing +incriminate incriminates incriminated incriminated incriminating +incross incrosses incrossed incrossed incrossing +incrust incrusts incrusted incrusted incrusting +incubate incubates incubated incubated incubating +inculcate inculcates inculcated inculcated inculcating +inculpate inculpates inculpated inculpated inculpating +incumber incumbers incumbered incumbered incumbering +incur incurs incurred incurred incurring +incurvate incurvates incurvated incurvated incurvating +indemnify indemnifies indemnified indemnified indemnifying +indent indents indented indented indenting +indenture indentures indentured indentured indenturing +index indexes indexed indexed indexing +indicate indicates indicated indicated indicating +indict indicts indicted indicted indicting +indispose indisposes indisposed indisposed indisposing +indite indites indited indited inditing +individualise individualises individualised individualised individualising +individualize individualizes individualized individualized individualizing +individuate individuates individuated individuated individuating +indoctrinate indoctrinates indoctrinated indoctrinated indoctrinating +indorse indorses indorsed indorsed indorsing +induce induces induced induced inducing +induct inducts inducted inducted inducting +indue indues indued indued induing +indulge indulges indulged indulged indulging +indurate indurates indurated indurated indurating +industrialise industrialises industrialised industrialised industrialising +industrialize industrializes industrialized industrialized industrializing +indwell indwells indwelt indwelt indwelling +inearth inearths inearthed inearthed inearthing +inebriate inebriates inebriated inebriated inebriating +infamize infamizes infamized infamized infamizing +infantilise infantilises infantilised infantilised infantilising +infantilize infantilizes infantilized infantilized infantilizing +infatuate infatuates infatuated infatuated infatuating +infect infects infected infected infecting +infer infers inferred inferred inferring +infest infests infested infested infesting +infibulate infibulates infibulated infibulated infibulating +infill infills infilled infilled infilling +infiltrate infiltrates infiltrated infiltrated infiltrating +infix infixes infixed infixed infixing +inflame inflames inflamed inflamed inflaming +inflate inflates inflated inflated inflating +inflect inflects inflected inflected inflecting +inflict inflicts inflicted inflicted inflicting +influence influences influenced influenced influencing +infold infolds infolded infolded infolding +inform informs informed informed informing +infract infracts infracted infracted infracting +infringe infringes infringed infringed infringing +infuriate infuriates infuriated infuriated infuriating +infuse infuses infused infused infusing +ingather ingathers ingathered ingathered ingathering +ingeminate ingeminates ingeminated ingeminated ingeminating +ingenerate ingenerates ingenerated ingenerated ingenerating +ingest ingests ingested ingested ingesting +ingot ingots ingoted ingoted ingoting +ingraft ingrafts ingrafted ingrafted ingrafting +ingrain ingrains ingrained ingrained ingraining +ingratiate ingratiates ingratiated ingratiated ingratiating +ingulf ingulfs ingulfed ingulfed ingulfing +ingurgitate ingurgitates ingurgitated ingurgitated ingurgitating +inhabit inhabits inhabited inhabited inhabiting +inhale inhales inhaled inhaled inhaling +inhere inheres inhered inhered inhering +inherit inherits inherited inherited inheriting +inhibit inhibits inhibited inhibited inhibiting +inhume inhumes inhumed inhumed inhuming +initial initials initialled initialled initialling +initialise initialises initialised initialised initialising +initialize initializes initialized initialized initializing +initiate initiates initiated initiated initiating +inject injects injected injected injecting +injure injures injured injured injuring +ink inks inked inked inking +inlace inlaces inlaced inlaced inlacing +inlay inlays inlaid inlaid inlaying +inlet inlets inlet inlet inletting +inmesh inmeshes inmeshed inmeshed inmeshing +innervate innervates innervated innervated innervating +innerve innerves innerved innerved innerving +innovate innovates innovated innovated innovating +inoculate inoculates inoculated inoculated inoculating +inosculate inosculates inosculated inosculated inosculating +input inputs input input inputting +inquire inquires inquired inquired inquiring +insalivate insalivates insalivated insalivated insalivating +inscribe inscribes inscribed inscribed inscribing +inseminate inseminates inseminated inseminated inseminating +insert inserts inserted inserted inserting +inset insets inset inset insetting +inshrine inshrines inshrined inshrined inshrining +insinuate insinuates insinuated insinuated insinuating +insist insists insisted insisted insisting +insnare insnares insnared insnared insnaring +insolate insolates insolated insolated insolating +insoul insouls insouled insouled insouling +inspan inspans inspanned inspanned inspanning +inspect inspects inspected inspected inspecting +insphere inspheres insphered insphered insphering +inspire inspires inspired inspired inspiring +inspirit inspirits inspirited inspirited inspiriting +inspissate inspissates inspissated inspissated inspissating +install installs installed installed installing +instance instances instanced instanced instancing +instant-message instant-messages instant-messaged instant-messaged instant-messaging +instantiate instantiates instantiated instantiated instantiating +instantmessage instantmessages instantmessaged instantmessaged instantmessaging +instate instates instated instated instating +instigate instigates instigated instigated instigating +instil instils instilled instilled instilling +instill instils instilled instilled instilling +institute institutes instituted instituted instituting +institutionalise institutionalises institutionalised institutionalised institutionalising +institutionalize institutionalizes institutionalized institutionalized institutionalizing +instruct instructs instructed instructed instructing +insufflate insufflates insufflated insufflated insufflating +insulate insulates insulated insulated insulating +insult insults insulted insulted insulting +insure insures insured insured insuring +integrate integrates integrated integrated integrating +intellectualise intellectualises intellectualised intellectualised intellectualising +intellectualize intellectualizes intellectualized intellectualized intellectualizing +intend intends intended intended intending +intenerate intenerates intenerated intenerated intenerating +intensify intensifies intensified intensified intensifying +inter inters interred interred interring +interact interacts interacted interacted interacting +interbreed interbreeds interbred interbred interbreeding +intercalate intercalates intercalated intercalated intercalating +intercede intercedes interceded interceded interceding +intercept intercepts intercepted intercepted intercepting +interchange interchanges interchanged interchanged interchanging +intercommunicate intercommunicates intercommunicated intercommunicated intercommunicating +interconnect interconnects interconnected interconnected interconnecting +intercrop intercrops intercropped intercropped intercropping +intercross intercrosses intercrossed intercrossed intercrossing +intercut intercuts intercut intercut intercutting +interdict interdicts interdicted interdicted interdicting +interdigitate interdigitates interdigitated interdigitated interdigitating +interest interests interested interested interesting +interface interfaces interfaced interfaced interfacing +interfere interferes interfered interfered interfering +interfile interfiles interfiled interfiled interfiling +interflow interflows interflowed interflowed interflowing +interfuse interfuses interfused interfused interfusing +intergrade intergrades intergraded intergraded intergrading +interiorize interiorizes interiorized interiorized interiorizing +interject interjects interjected interjected interjecting +interlace interlaces interlaced interlaced interlacing +interlaminate interlaminates interlaminated interlaminated interlaminating +interlap interlaps interlapped interlapped interlapping +interlard interlards interlarded interlarded interlarding +interlay interlays interlaid interlaid interlaying +interleave interleaves interleaved interleaved interleaving +interlineate interlines interlined interlined interlining +interlink interlinks interlinked interlinked interlinking +interlock interlocks interlocked interlocked interlocking +interlope interlopes interloped interloped interloping +intermarry intermarries intermarried intermarried intermarrying +intermesh intermeshes intermeshed intermeshed intermeshing +intermingle intermingles intermingled intermingled intermingling +intermit intermits intermitted intermitted intermitting +intermix intermixes intermixed intermixed intermixing +intern interns interned interned interning +internalise internalises internalised internalised internalising +internalize internalizes internalized internalized internalizing +internationalise internationalises internationalised internationalised internationalising +internationalize internationalizes internationalized internationalized internationalizing +interosculate interosculates interosculated interosculated interosculating +interpage interpages interpaged interpaged interpaging +interpellate interpellates interpellated interpellated interpellating +interpenetrate interpenetrates interpenetrated interpenetrated interpenetrating +interplead interpleads interpled interpled interpleading +interpolate interpolates interpolated interpolated interpolating +interpose interposes interposed interposed interposing +interpret interprets interpreted interpreted interpreting +interrelate interrelates interrelated interrelated interrelating +interrogate interrogates interrogated interrogated interrogating +interrupt interrupts interrupted interrupted interrupting +intersect intersects intersected intersected intersecting +interspace interspaces interspaced interspaced interspacing +intersperse intersperses interspersed interspersed interspersing +interstratify interstratifies interstratified interstratified interstratifying +intertwine intertwines intertwined intertwined intertwining +intervene intervenes intervened intervened intervening +interview interviews interviewed interviewed interviewing +interweave interweaves interwove interwoven interweaving +interwork interworks interworked interworked interworking +intimate intimates intimated intimated intimating +intimidate intimidates intimidated intimidated intimidating +intitule intitules intituled intituled intituling +intonate intonates intonated intonated intonating +intone intones intoned intoned intoning +intoxicate intoxicates intoxicated intoxicated intoxicating +intreat intreats intreated intreated intreating +intrench intrenches intrenched intrenched intrenching +intrigue intrigues intrigued intrigued intriguing +introduce introduces introduced introduced introducing +introject introjects introjected introjected introjecting +intromit intromits intromitted intromitted intromitting +introspect introspects introspected introspected introspecting +introvert introverts introverted introverted introverting +intrude intrudes intruded intruded intruding +intrust intrusts intrusted intrusted intrusting +intubate intubates intubated intubated intubating +intuit intuits intuited intuited intuiting +intumesce intumesces intumesced intumesced intumescing +intussuscept intussuscepts intussuscepted intussuscepted intussuscepting +intwine intwines intwined intwined intwining +inundate inundates inundated inundated inundating +inure inures inured inured inuring +inurn inurns inurned inurned inurning +invade invades invaded invaded invading +invaginate invaginates invaginated invaginated invaginating +invalid invalids invalided invalided invaliding +invalidate invalidates invalidated invalidated invalidating +inveigh inveighs inveighed inveighed inveighing +inveigle inveigles inveigled inveigled inveigling +invent invents invented invented inventing +inventory inventories inventoried inventoried inventorying +invert inverts inverted inverted inverting +invest invests invested invested investing +investigate investigates investigated investigated investigating +invigilate invigilates invigilated invigilated invigilating +invigorate invigorates invigorated invigorated invigorating +invite invites invited invited inviting +invocate invocates invocated invocated invocating +invoice invoices invoiced invoiced invoicing +invoke invokes invoked invoked invoking +involute involutes involuted involuted involuting +involve involves involved involved involving +inweave inweaves inwove inwoven inweaving +inwrap inwraps inwrapped inwrapped inwrapping +iodate iodates iodated iodated iodating +iodize iodizes iodized iodized iodizing +ionise ionises ionised ionised ionising +ionize ionizes ionized ionized ionizing +irk irks irked irked irking +iron irons ironed ironed ironing +ironize ironizes ironized ironized ironizing +irradiate irradiates irradiated irradiated irradiating +irrigate irrigates irrigated irrigated irrigating +irritate irritates irritated irritated irritating +irrupt irrupts irrupted irrupted irrupting +islamize islamizes islamized islamized islamizing +island islands islanded islanded islanding +isochronize isochronizes isochronized isochronized isochronizing +isolate isolates isolated isolated isolating +isomerize isomerizes isomerized isomerized isomerizing +issue issues issued issued issuing +italianize italianizes italianized italianized italianizing +italicise italicises italicised italicised italicising +italicize italicizes italicized italicized italicizing +itch itches itched itched itching +item items itemed itemed iteming +itemise itemises itemised itemised itemising +itemize itemizes itemized itemized itemizing +iterate iterates iterated iterated iterating +itinerate itinerates itinerated itinerated itinerating +jab jabs jabbed jabbed jabbing +jabber jabbers jabbered jabbered jabbering +jack jacks jacked jacked jacking +jack-knife jack-knifes jack-knifed jack-knifed jack-knifing +jacket jackets jacketed jacketed jacketing +jackknife jackknifes jackknifed jackknifed jackknifing +jade jades jaded jaded jading +jaga jagas jagaed jagaed jagaing +jagg jags jagged jagged jagging +jail jails jailed jailed jailing +jam jams jammed jammed jamming +jampack jampacks jampacked jampacked jampacking +jangle jangles jangled jangled jangling +japan japans japanned japanned japanning +jape japes japed japed japing +jar jars jarred jarred jarring +jargon jargons jargoned jargoned jargoning +jargonize jargonizes jargonized jargonized jargonizing +jaundice jaundices jaundiced jaundiced jaundicing +jaunt jaunts jaunted jaunted jaunting +jaup jaups jauped jauped jauping +jaw jaws jawed jawed jawing +jay-walk jay-walks jaywalked jay-walked jaywalking +jaywalk jaywalks jaywalked jaywalked jaywalking +jazz jazzes jazzed jazzed jazzing +jeer jeers jeered jeered jeering +jell jells jelled jelled jelling +jellify jellifies jellified jellified jellifying +jelly jellies jellied jellied jellying +jemmy jemmies jemmied jemmied jemmying +jeopardise jeopardises jeopardised jeopardised jeopardising +jeopardize jeopardizes jeopardized jeopardized jeopardizing +jerk jerks jerked jerked jerking +jerrybuild jerrybuilds jerrybuilt jerrybuilt jerrybuilding +jess jesses jessed jessed jessing +jest jests jested jested jesting +jet jets jetted jetted jetting +jettison jettisons jettisoned jettisoned jettisoning +jew jews jewed jewed jewing +jewel jewels jewelled jewelled jewelling +jib jibs jibbed jibbed jibbing +jibe jibes jibed jibed jibing +jig jigs jigged jigged jigging +jiggle jiggles jiggled jiggled jiggling +jilt jilts jilted jilted jilting +jimmy jimmies jimmied jimmied jimmying +jingle jingles jingled jingled jingling +jink jinks jinked jinked jinking +jinx jinxes jinxed jinxed jinxing +jitter jitters jittered jittered jittering +jive jives jived jived jiving +job jobs jobbed jobbed jobbing +job-hunt job-hunts job-hunted job-hunted job-hunting +job-share job-shares job-shared job-shared job-sharing +jobhunt jobhunts jobhunted jobhunted jobhunting +jobshare jobshares jobshared jobshared jobsharing +jockey jockeys jockeyed jockeyed jockeying +jog jogs jogged jogged jogging +jog-trot jog-trots jog-trotted jog-trotted jog-trotting +joggle joggles joggled joggled joggling +join joins joined joined joining +joint joints jointed jointed jointing +joist joists joisted joisted joisting +joke jokes joked joked joking +jol jols jolled jolled jolling +jollify jollifies jollified jollified jollifying +jolly jollies jollied jollied jollying +jolt jolts jolted jolted jolting +jook jooks jooked jooked jooking +josh joshes joshed joshed joshing +jostle jostles jostled jostled jostling +jot jots jotted jotted jotting +jounce jounces jounced jounced jouncing +journalize journalizes journalized journalized journalizing +journey journeys journeyed journeyed journeying +joust jousts jousted jousted jousting +joy joys joyed joyed joying +joy-ride joy-rides joy-rided joy-rided joy-riding +joypop joypops joypopped joypopped joypopping +jubilate jubilates jubilated jubilated jubilating +judaize judaizes judaized judaized judaizing +judder judders juddered juddered juddering +judge judges judged judged judging +jug jugs jugged jugged jugging +juggle juggles juggled juggled juggling +jugulate jugulates jugulated jugulated jugulating +juice juices juiced juiced juicing +jumble jumbles jumbled jumbled jumbling +jump jumps jumped jumped jumping +jump-start jump-starts jump-started jump-started jump-starting +jumpstart jumpstarts jumpstarted jumpstarted jumpstarting +junk junks junked junked junking +junket junkets junketed junketed junketing +justify justifies justified justified justifying +justle justles justled justled justling +jut juts jutted jutted jutting +juxtapose juxtaposes juxtaposed juxtaposed juxtaposing +kalsomine kalsomines kalsomined kalsomined kalsomining +kangaroo kangaroos kangarooed kangarooed kangarooing +kayo kayos kayoed kayoed kayoing +keck kecks kecked kecked kecking +kedge kedges kedged kedged kedging +keek keeks keeked keeked keeking +keel keels keeled keeled keeling +keelhaul keelhauls keelhauled keelhauled keelhauling +keen keens keened keened keening +keep keeps kept kept keeping +ken kens kenned kenned kenning +kennel kennels kennelled kennelled kennelling +kep keps keped keped keping +keratinize keratinizes keratinized keratinized keratinizing +kerfuffle kerfuffles kerfuffled kerfuffled kerfuffling +kerne kerns kerned kerned kerning +kernel kernels kernelled kernelled kernelling +kettle kettles kettled kettled kettling +key keys keyed keyed keying +keyboard keyboards keyboarded keyboarded keyboarding +keynote keynotes keynoted keynoted keynoting +keypunch keypunches keypunched keypunched keypunching +kibble kibbles kibbled kibbled kibbling +kibitz kibitzes kibitzed kibitzed kibitzing +kibosh kiboshes kiboshed kiboshed kiboshing +kick kicks kicked kicked kicking +kick-start kick-starts kick-started kick-started kick-starting +kickstart kickstarts kickstarted kickstarted kickstarting +kid kids kidded kidded kidding +kidnap kidnaps kidnapped kidnapped kidnapping +kill kills killed killed killing +kiln kilns kilned kilned kilning +kilt kilts kilted kilted kilting +kindle kindles kindled kindled kindling +king-hit king-hits king-hit king-hit king-hitting +kinghit kinghits kinghit kinghit kinghitting +kink kinks kinked kinked kinking +kip kips kipped kipped kipping +kipper kippers kippered kippered kippering +kiss kisses kissed kissed kissing +kit kits kitted kitted kitting +kite kites kited kited kiting +kitten kittens kittened kittened kittening +kittle kittles kittled kittled kittling +klap klaps klapped klapped klapping +kludge kludges kludged kludged kludging +knacker knackers knackered knackered knackering +knap knaps knapped knapped knapping +knead kneads kneaded kneaded kneading +knee knees kneed kneed kneeing +kneecap kneecaps kneecapped kneecapped kneecapping +kneejerk kneejerks kneejerked kneejerked kneejerking +kneel kneels kneeled kneeled kneeling +kneel kneels knelt knelt kneeling +knife knifes knifed knifed knifing +knight knights knighted knighted knighting +knit knits knit knit knitting +knit knits knitted knitted knitting +knob knobs knobbed knobbed knobbing +knock knocks knocked knocked knocking +knoll knolls knolled knolled knolling +knot knots knotted knotted knotting +know knows knew known knowing +knuckle knuckles knuckled knuckled knuckling +knurl knurls knurled knurled knurling +ko ko's ko'd ko'd ko'ing +ko ko's ko'ed ko'ed ko'ing +kockelsch kockelsches kockelsched kockelsched kockelsching +kotow kotows kotowed kotowed kotowing +kowtow kowtows kowtowed kowtowed kowtowing +kraal kraals kraaled kraaled kraaling +kvetch kvetches kvetched kvetched kvetching +kyanize kyanizes kyanized kyanized kyanizing +label labels labelled labelled labelling +labialize labializes labialized labialized labializing +labor labors labored labored laboring +labour labours laboured laboured labouring +lace laces laced laced lacing +lacerate lacerates lacerated lacerated lacerating +lack lacks lacked lacked lacking +lackey lackeys lackeyed lackeyed lackeying +lacquer lacquers lacquered lacquered lacquering +lactate lactates lactated lactated lactating +ladder ladders laddered laddered laddering +lade lades laded laden lading +ladle ladles ladled ladled ladling +ladyfy ladyfies ladyfied ladyfied ladyfying +lag lags lagged lagged lagging +laicize laicizes laicized laicized laicizing +laik laiks laiked laiked laiking +lair lairs laired laired lairing +lallygag lallygags lallygagged lallygagged lallygagging +lam lams lammed lammed lamming +lamb lambs lambed lambed lambing +lambast lambasts lambasted lambasted lambasting +lambaste lambastes lambasted lambasted lambasting +lame lames lamed lamed laming +lament laments lamented lamented lamenting +laminate laminates laminated laminated laminating +lamp lamps lamped lamped lamping +lampoon lampoons lampooned lampooned lampooning +lance lances lanced lanced lancing +land lands landed landed landing +landscape landscapes landscaped landscaped landscaping +languish languishes languished languished languishing +lap laps lapped lapped lapping +lapidate lapidates lapidated lapidated lapidating +lapidify lapidifies lapidified lapidified lapidifying +lapse lapses lapsed lapsed lapsing +lard lards larded larded larding +large larges larged larged larging +largen largens largened largened largening +lark larks larked larked larking +larn larns larned larned larning +larrup larrups larruped larruped larruping +lase lases lased lased lasing +lash lashes lashed lashed lashing +lasso lassoes lassoed lassoed lassoing +last lasts lasted lasted lasting +latch latches latched latched latching +lath laths lathed lathed lathing +lathe lathes lathed lathed lathing +lather lathers lathered lathered lathering +latinize latinizes latinized latinized latinizing +lattice lattices latticed latticed latticing +laud lauds lauded lauded lauding +laugh laughs laughed laughed laughing +launch launches launched launched launching +launder launders laundered laundered laundering +lave laves laved laved laving +lavish lavishes lavished lavished lavishing +lay lays laid laid laying +layer layers layered layered layering +laze lazes lazed lazed lazing +leach leaches leached leached leaching +lead leads led led leading +leaf leafs leafed leafed leafing +leaflet leaflets leafleted leafleted leafleting +league leagues leagued leagued leaguing +leak leaks leaked leaked leaking +lean leans leaned leaned leaning +lean leans leant leant leaning +leap leaps leaped leaped leaping +leap leaps leapt leapt leaping +leapfrog leapfrogs leapfrogged leapfrogged leapfrogging +learn learns learned learned learning +learn learns learnt learnt learning +lease leases leased leased leasing +leash leashes leashed leashed leashing +leather leathers leathered leathered leathering +leave leaves left left leaving +leaven leavens leavened leavened leavening +lech leches leched leched leching +lecture lectures lectured lectured lecturing +ledger ledgers ledgered ledgered ledgering +leer leers leered leered leering +leg legs legged legged legging +legalise legalises legalised legalised legalising +legalise legalises legalised legalized legalising +legalize legalizes legalized legalized legalizing +legislate legislates legislated legislated legislating +legitimate legitimates legitimated legitimated legitimating +legitimise legitimises legitimised legitimised legitimising +legitimize legitimizes legitimized legitimized legitimizing +leister leisters leistered leistered leistering +lend lends lent lent lending +lengthen lengthens lengthened lengthened lengthening +leopard-crawl leopard-crawls leopard-crawled leopard-crawled leopard-crawling +leopardcrawl leopardcrawls leopardcrawled leopardcrawled leopardcrawling +lessen lessens lessened lessened lessening +lesson lessons lessoned lessoned lessoning +let lets let let letting +letch letches letched letched letching +letter letters lettered lettered lettering +letterbox letterboxes letterboxed letterboxed letterboxing +levant levants levanted levanted levanting +level levels levelled levelled levelling +lever levers levered levered levering +leverage leverages leveraged leveraged leveraging +levigate levigates levigated levigated levigating +levitate levitates levitated levitated levitating +levy levies levied levied levying +lhlike lhlikes lhliked lhliked lhliking +liaise liaises liaised liaised liaising +libel libels libelled libelled libelling +liberalise liberalises liberalised liberalised liberalising +liberalize liberalizes liberalized liberalized liberalizing +liberate liberates liberated liberated liberating +librate librates librated librated librating +licence licences licenced licenced licencing +license licenses licensed licensed licensing +lick licks licked licked licking +lie lies lay lain lying +lie lies lied lied lying +lift lifts lifted lifted lifting +ligate ligates ligated ligated ligating +ligature ligatures ligatured ligatured ligaturing +light lights lighted lighted lighting +light lights lit lit lighting +lighten lightens lightened lightened lightening +lignify lignifies lignified lignified lignifying +like likes liked liked liking +liken likens likened likened likening +lilt lilts lilted lilted lilting +limb limbs limbed limbed limbing +limber limbers limbered limbered limbering +lime limes limed limed liming +limit limits limited limited limiting +limn limns limned limned limning +limp limps limped limped limping +line lines lined lined lining +linger lingers lingered lingered lingering +link links linked linked linking +lionise lionises lionised lionised lionising +lionize lionizes lionized lionized lionizing +lip lips lipped lipped lipping +lip-read lip-reads lip-read lip-read lip-reading +lip-sync lip-syncs lip-synced lip-synced lip-syncing +lip-synch lip-synchs lip-synched lip-synched lip-synching +lipread lipreads lipread lipread lipreading +lipsync lipsyncs lipsynced lipsynced lipsyncing +lipsynch lipsynchs lipsynched lipsynched lipsynching +liquate liquates liquated liquated liquating +liquefy liquefies liquefied liquefied liquefying +liquesce liquesces liquesced liquesced liquescing +liquidate liquidates liquidated liquidated liquidating +liquidise liquidises liquidised liquidised liquidising +liquidize liquidizes liquidized liquidized liquidizing +liquify liquifies liquified liquified liquifying +liquor liquors liquored liquored liquoring +lisp lisps lisped lisped lisping +list lists listed listed listing +listen listens listened listened listening +lithograph lithographs lithographed lithographed lithographing +litigate litigates litigated litigated litigating +litter litters littered littered littering +live lives lived lived living +live-blog live-blogs live-blogged live-blogged live-blogging +live-stream live-streams live-streamed live-streamed live-streaming +liveblog liveblogs liveblogged liveblogged liveblogging +liven livens livened livened livening +livestream livestreams livestreamed livestreamed livestreaming +lixiviate lixiviates lixiviated lixiviated lixiviating +load loads loaded loaded loading +loaf loafs loafed loafed loafing +loam loams loamed loamed loaming +loan loans loaned loaned loaning +loathe loathes loathed loathed loathing +lob lobs lobbed lobbed lobbing +lobby lobbies lobbied lobbied lobbying +lobotomise lobotomises lobotomised lobotomised lobotomising +lobotomize lobotomizes lobotomized lobotomized lobotomizing +localise localises localised localised localising +localize localizes localized localized localizing +locate locates located located locating +lock locks locked locked locking +loco locos locoed locoed locoing +lodge lodges lodged lodged lodging +loft lofts lofted lofted lofting +log logs logged logged logging +logroll logrolls logrolled logrolled logrolling +loiter loiters loitered loitered loitering +loll lolls lolled lolled lolling +lollop lollops lolloped lolloped lolloping +long longs longed longed longing +look looks looked looked looking +loom looms loomed loomed looming +loop loops looped looped looping +loophole loopholes loopholed loopholed loopholing +loose looses loosed loosed loosing +loosen loosens loosened loosened loosening +loot loots looted looted looting +lop lops lopped lopped lopping +lope lopes loped loped loping +lord lords lorded lorded lording +lose loses lost lost losing +lot lots lotted lotted lotting +louden loudens loudened loudened loudening +lounge lounges lounged lounged lounging +lour lours loured loured louring +louse louses loused loused lousing +lout louts louted louted louting +love loves loved loved loving +low lows lowed lowed lowing +lowball lowballs lowballed lowballed lowballing +lower lowers lowered lowered lowering +lubricate lubricates lubricated lubricated lubricating +luck lucks lucked lucked lucking +lucubrate lucubrates lucubrated lucubrated lucubrating +luff luffs luffed luffed luffing +lug lugs lugged lugged lugging +lull lulls lulled lulled lulling +lullaby lullabies lullabied lullabied lullabying +lumber lumbers lumbered lumbered lumbering +luminesce luminesces luminesced luminesced luminescing +lump lumps lumped lumped lumping +lunch lunches lunched lunched lunching +lunge lunges lunged lunged lungeing +lurch lurches lurched lurched lurching +lure lures lured lured luring +lurk lurks lurked lurked lurking +lush lushes lushed lushed lushing +lust lusts lusted lusted lusting +lustrate lustrates lustrated lustrated lustrating +lustre lustres lustred lustred lustring +lute lutes luted luted luting +luxate luxates luxated luxated luxating +luxuriate luxuriates luxuriated luxuriated luxuriating +lynch lynches lynched lynched lynching +lyophilize lyophilizes lyophilized lyophilized lyophilizing +lyse lyses lysed lysed lysing +macadamize macadamizes macadamized macadamized macadamizing +mace maces maced maced maceing +macerate macerates macerated macerated macerating +machicolate machicolates machicolated machicolated machicolating +machinate machinates machinated machinated machinating +machine machines machined machined machining +machine-gun machine-guns machine-gunned machine-gunned machine-gunning +machinegun machineguns machinegunned machinegunned machinegunning +maculate maculates maculated maculated maculating +mad mads madded madded madding +madden maddens maddened maddened maddening +maffick mafficks mafficked mafficked mafficking +magic magics magicked magicked magicking +magnetise magnetises magnetised magnetised magnetising +magnetize magnetizes magnetized magnetized magnetizing +magnify magnifies magnified magnified magnifying +mail mails mailed mailed mailing +mail bomb mail bombs mail bombed mail bombed mail bombing +maim maims maimed maimed maiming +mainline mainlines mainlined mainlined mainlining +mainstream mainstreams mainstreamed mainstreamed mainstreaming +maintain maintains maintained maintained maintaining +major majors majored majored majoring +make makes made made making +maladminister maladministers maladministered maladministered maladministering +maledict maledicts maledicted maledicted maledicting +malfunction malfunctions malfunctioned malfunctioned malfunctioning +malign maligns maligned maligned maligning +malinger malingers malingered malingered malingering +malt malts malted malted malting +maltreat maltreats maltreated maltreated maltreating +mamaguy mamaguys mamaguyed mamaguyed mamaguying +mambo mambos mamboed mamboed mamboing +mammock mammocks mammocked mammocked mammocking +man mans manned manned manning +man-handle man-handles manhandled man-handled man-handling +manacle manacles manacled manacled manacling +manage manages managed managed managing +mandate mandates mandated mandated mandating +manducate manducates manducated manducated manducating +maneuver maneuvers maneuvered maneuvered maneuvering +mangle mangles mangled mangled mangling +manhandle manhandles manhandled manhandled manhandling +manicure manicures manicured manicured manicuring +manifest manifests manifested manifested manifesting +manifold manifolds manifolded manifolded manifolding +manipulate manipulates manipulated manipulated manipulating +manoeuvre manoeuvres manoeuvred manoeuvred manoeuvring +mantle mantles mantled mantled mantling +manufacture manufactures manufactured manufactured manufacturing +manumit manumits manumitted manumitted manumitting +manure manures manured manured manuring +map maps mapped mapped mapping +mar mars marred marred marring +maraud marauds marauded marauded marauding +marble marbles marbled marbled marbling +marcel marcels marcelled marcelled marcelling +march marches marched marched marching +margin margins margined margined margining +marginalise marginalises marginalised marginalised marginalising +marginalize marginalizes marginalized marginalized marginalizing +marginate marginates marginated marginated marginating +marinade marinades marinaded marinaded marinading +marinate marinates marinated marinated marinating +mark marks marked marked marking +market markets marketed marketed marketing +marl marls marled marled marling +maroon maroons marooned marooned marooning +marry marries married married marrying +marshal marshals marshalled marshalled marshalling +martyr martyrs martyred martyred martyring +marvel marvels marvelled marvelled marvelling +masculinise masculinises masculinised masculinised masculinising +masculinize masculinizes masculinized masculinized masculinizing +mash mashes mashed mashed mashing +mask masks masked masked masking +mason masons masoned masoned masoning +masquerade masquerades masqueraded masqueraded masquerading +mass masses massed massed massing +mass-produce mass-produces mass-produced mass-produced mass-producing +massacre massacres massacred massacred massacring +massage massages massaged massaged massaging +massproduce massproduces massproduced massproduced massproducing +mast masts masted masted masting +master masters mastered mastered mastering +master-mind master-minds masterminded master-minded master-minding +mastermind masterminds masterminded masterminded masterminding +masticate masticates masticated masticated masticating +masturbate masturbates masturbated masturbated masturbating +mat mats matted matted matting +match matches matched matched matching +matchmark matchmarks matchmarked matchmarked matchmarking +mate mates mated mated mating +materialise materialises materialised materialised materialising +materialize materializes materialized materialized materializing +matriculate matriculates matriculated matriculated matriculating +matter matters mattered mattered mattering +maturate maturates maturated maturated maturating +mature matures matured matured maturing +maul mauls mauled mauled mauling +maunder maunders maundered maundered maundering +max maxes maxed maxed maxing +maximise maximises maximised maximised maximising +maximize maximizes maximized maximized maximizing +mean means meant meant meaning +meander meanders meandered meandered meandering +means-test means-tests means-tested means-tested means-testing +meanstest meanstests meanstested meanstested meanstesting +measure measures measured measured measuring +mechanise mechanises mechanised mechanised mechanising +mechanize mechanizes mechanized mechanized mechanizing +medal medals medalled medalled medalling +meddle meddles meddled meddled meddling +mediate mediates mediated mediated mediating +mediatize mediatizes mediatized mediatized mediatizing +medicate medicates medicated medicated medicating +meditate meditates meditated meditated meditating +meet meets met met meeting +meld melds melded melded melding +meliorate meliorates meliorated meliorated meliorating +mellow mellows mellowed mellowed mellowing +melodize melodizes melodized melodized melodizing +melodramatize melodramatizes melodramatized melodramatized melodramatizing +melt melts melted melted melting +melt melts melted molten melting +memorialise memorialises memorialised memorialised memorialising +memorialize memorializes memorialized memorialized memorializing +memorise memorises memorised memorised memorising +memorize memorizes memorized memorized memorizing +menace menaces menaced menaced menacing +mend mends mended mended mending +menstruate menstruates menstruated menstruated menstruating +mention mentions mentioned mentioned mentioning +meow meows meowed meowed meowing +mercerise mercerises mercerised mercerised mercerising +mercerize mercerizes mercerized mercerized mercerizing +merchandise merchandises merchandised merchandised merchandising +merchant merchants merchanted merchanted merchanting +mercurate mercurates mercurated mercurated mercurating +mercurialize mercurializes mercurialized mercurialized mercurializing +merge merges merged merged merging +merit merits merited merited meriting +mesh meshes meshed meshed meshing +mesmerise mesmerises mesmerised mesmerised mesmerising +mesmerize mesmerizes mesmerized mesmerized mesmerizing +mess messes messed messed messing +message messages messaged messaged messaging +messenger messengers messengered messengered messengering +metabolise metabolises metabolised metabolised metabolising +metabolize metabolizes metabolized metabolized metabolizing +metal metals metaled metaled metaling +metallize metallizes metallized metallized metallizing +metamorphose metamorphoses metamorphosed metamorphosed metamorphosing +metaphrase metaphrases metaphrased metaphrased metaphrasing +metaphysicize metaphysicizes metaphysicized metaphysicized metaphysicizing +metastasize metastasizes metastasized metastasized metastasizing +metathesize metathesizes metathesized metathesized metathesizing +mete metes meted meted meting +meter meters metered metered metering +methodize methodizes methodized methodized methodizing +methought methoughts methoughted methoughted methoughting +methylate methylates methylated methylated methylating +metricate metricates metricated metricated metricating +metricize metricizes metricized metricized metricizing +metrify metrifies metrified metrified metrifying +mew mews mewed mewed mewing +mewl mewls mewled mewled mewling +mezzotint mezzotints mezzotinted mezzotinted mezzotinting +miaow miaows miaowed miaowed miaowing +miaul miauls miauled miauled miauling +microblog microblogs microblogged microblogged microblogging +microchip microchips microchipped microchipped microchipping +microfilm microfilms microfilmed microfilmed microfilming +micromanage micromanages micromanaged micromanaged micromanaging +microwave microwaves microwaved microwaved microwaving +micturate micturates micturated micturated micturating +middle middles middled middled middling +miff miffs miffed miffed miffing +migrate migrates migrated migrated migrating +mike mikes miked miked miking +milden mildens mildened mildened mildening +mildew mildews mildewed mildewed mildewing +militarise militarises militarised militarised militarising +militarize militarizes militarized militarized militarizing +militate militates militated militated militating +milk milks milked milked milking +mill mills milled milled milling +milt milts milted milted milting +mime mimes mimed mimed miming +mimeograph mimeographes mimeographed mimeographed mimeographing +mimic mimics mimicked mimicked mimicking +mince minces minced minced mincing +mind minds minded minded minding +mine mines mined mined mining +mineralize mineralizes mineralized mineralized mineralizing +mingle mingles mingled mingled mingling +miniaturise miniaturises miniaturised miniaturised miniaturising +miniaturize miniaturizes miniaturized miniaturized miniaturizing +minify minifies minified minified minifying +minimise minimises minimised minimised minimising +minimize minimizes minimized minimized minimizing +minister ministers ministered ministered ministering +minor minors minored minored minoring +mint mints minted minted minting +minute minutes minuted minuted minuting +mire mires mired mired miring +mirror mirrors mirrored mirrored mirroring +mis-sell mis-sells mis-sold mis-sold mis-selling +misadvise misadvises misadvised misadvised misadvising +misapply misapplies misapplied misapplied misapplying +misapprehend misapprehends misapprehended misapprehended misapprehending +misappropriate misappropriates misappropriated misappropriated misappropriating +misbecome misbecomes misbecame misbecame misbecoming +misbehave misbehaves misbehaved misbehaved misbehaving +miscalculate miscalculates miscalculated miscalculated miscalculating +miscall miscalls miscalled miscalled miscalling +miscarry miscarries miscarried miscarried miscarrying +miscast miscasts miscast miscast miscasting +misconceive misconceives misconceived misconceived misconceiving +misconduct misconducts misconducted misconducted misconducting +misconstrue misconstrues misconstrued misconstrued misconstruing +miscount miscounts miscounted miscounted miscounting +miscreate miscreates miscreated miscreated miscreating +miscue miscues miscued miscued miscuing +misdate misdates misdated misdated misdating +misdeal misdeals misdealt misdealt misdealing +misdemean misdemeans misdemeaned misdemeaned misdemeaning +misdiagnose misdiagnoses misdiagnosed misdiagnosed misdiagnosing +misdial misdials misdialled misdialled misdialling +misdirect misdirects misdirected misdirected misdirecting +misdoubt misdoubts misdoubted misdoubted misdoubting +misfield misfields misfielded misfielded misfielding +misfile misfiles misfiled misfiled misfiling +misfire misfires misfired misfired misfiring +misfit misfits misfitted misfitted misfitting +misgive misgives misgave misgiven misgiving +misgovern misgoverns misgoverned misgoverned misgoverning +misguide misguides misguided misguided misguiding +mishandle mishandles mishandled mishandled mishandling +mishear mishears misheard misheard mishearing +mishit mishits mishit mishit mishitting +misinform misinforms misinformed misinformed misinforming +misinterpret misinterprets misinterpreted misinterpreted misinterpreting +misjudge misjudges misjudged misjudged misjudging +miskey miskeys miskeyed miskeyed miskeying +mislay mislays mislaid mislaid mislaying +mislead misleads misled misled misleading +mislike mislikes misliked misliked misliking +mismanage mismanages mismanaged mismanaged mismanaging +mismatch mismatches mismatched mismatched mismatching +misname misnames misnamed misnamed misnaming +misplace misplaces misplaced misplaced misplacing +misplay misplays misplayed misplayed misplaying +mispled mispleds mispled mispled mispleding +misprint misprints misprinted misprinted misprinting +misprize misprizes misprized misprized misprizing +mispronounce mispronounces mispronounced mispronounced mispronouncing +misquote misquotes misquoted misquoted misquoting +misread misreads misread misread misreading +misremember misremembers misremembered misremembered misremembering +misreport misreports misreported misreported misreporting +misrepresent misrepresents misrepresented misrepresented misrepresenting +misrule misrules misruled misruled misruling +miss misses missed missed missing +missell missells missold missold misselling +misshape misshapes misshaped misshaped misshaping +mission missions missioned missioned missioning +misspeak misspeaks misspoke misspoken misspeaking +misspell misspells misspelled misspelled misspelling +misspell misspells misspelt misspelt misspelling +misspend misspends misspent misspent misspending +misstate misstates misstated misstated misstating +mist mists misted misted misting +mistake mistakes mistook mistaken mistaking +mister misters mistered mistered mistering +mistime mistimes mistimed mistimed mistiming +mistranslate mistranslates mistranslated mistranslated mistranslating +mistreat mistreats mistreated mistreated mistreating +mistrust mistrusts mistrusted mistrusted mistrusting +misunderstand misunderstands misunderstood misunderstood misunderstanding +misuse misuses misused misused misusing +miswed misweds miswed miswed miswedding +miswed misweds miswedded miswedded miswedding +mitch mitches mitched mitched mitching +mitigate mitigates mitigated mitigated mitigating +mitre mitres mitred mitred mitring +mix mixes mixed mixed mixing +mizzle mizzles mizzled mizzled mizzling +moan moans moaned moaned moaning +moat moats moated moated moating +mob mobs mobbed mobbed mobbing +mobilise mobilises mobilised mobilised mobilising +mobilize mobilizes mobilized mobilized mobilizing +mock mocks mocked mocked mocking +mod mods modded modded modding +model models modelled modelled modelling +moderate moderates moderated moderated moderating +modernise modernises modernised modernised modernising +modernize modernizes modernized modernized modernizing +modge modges modged modged modging +modify modifies modified modified modifying +modulate modulates modulated modulated modulating +mohammedanize mohammedanizes mohammedanized mohammedanized mohammedanizing +moil moils moiled moiled moiling +moisten moistens moistened moistened moistening +moisturise moisturises moisturised moisturised moisturising +moisturize moisturizes moisturized moisturized moisturizing +moither moithers moithered moithered moithering +mold molds molded molded molding +molder molders moldered moldered moldering +molest molests molested molested molesting +mollify mollifies mollified mollified mollifying +mollycoddle mollycoddles mollycoddled mollycoddled mollycoddling +molt molts molted molted molting +monetise monetises monetised monetised monetising +monetize monetizes monetized monetized monetizing +mongrelize mongrelizes mongrelized mongrelized mongrelizing +monitor monitors monitored monitored monitoring +monkey monkeys monkeyed monkeyed monkeying +monopolise monopolises monopolised monopolised monopolising +monopolize monopolizes monopolized monopolized monopolizing +monotonize monotonizes monotonized monotonized monotonizing +moo moos mooed mooed mooing +mooch mooches mooched mooched mooching +moon moons mooned mooned mooning +moonlight moonlights moonlighted moonlighted moonlighting +moonwalk moonwalks moonwalked moonwalked moonwalking +moor moors moored moored mooring +moot moots mooted mooted mooting +mop mops mopped mopped mopping +mope mopes moped moped moping +moralise moralises moralised moralised moralising +moralize moralizes moralized moralized moralizing +mordant mordants mordanted mordanted mordanting +morph morphs morphed morphed morphing +mortar mortars mortared mortared mortaring +mortgage mortgages mortgaged mortgaged mortgaging +mortify mortifies mortified mortified mortifying +mortise mortises mortised mortised mortising +mosey moseys moseyed moseyed moseying +mosh moshes moshed moshed moshing +mothball mothballs mothballed mothballed mothballing +mother mothers mothered mothered mothering +mothproof moth-proofs mothproofed moth-proofed moth-proofing +motion motions motioned motioned motioning +motivate motivates motivated motivated motivating +motive motives motived motived motiving +motor motors motored motored motoring +motorize motorizes motorized motorized motorizing +mottle mottles mottled mottled mottling +mould moulds moulded moulded moulding +moulder moulders mouldered mouldered mouldering +moult moults moulted moulted moulting +mound mounds mounded mounded mounding +mount mounts mounted mounted mounting +mountaineer mountaineers mountaineered mountaineered mountaineering +mountebank mountebanks mountebanked mountebanked mountebanking +mourn mourns mourned mourned mourning +mouse mouses moused moused mousing +mouth mouths mouthed mouthed mouthing +move moves moved moved moving +mow mows mowed mowed mowing +mow mows mowed mown mowing +muck mucks mucked mucked mucking +muckamuck muckamucks muckamucked muckamucked muckamucking +muckrake muckrakes muckraked muckraked muckraking +mud muds mudded mudded mudding +muddle muddles muddled muddled muddling +muddy muddies muddied muddied muddying +muff muffs muffed muffed muffing +muffle muffles muffled muffled muffling +mug mugs mugged mugged mugging +mulch mulches mulched mulched mulching +mulct mulcts mulcted mulcted mulcting +mull mulls mulled mulled mulling +multicast multicasts multicast multicast multicasting +multiply multiplies multiplied multiplied multiplying +multitask multitasks multitasked multitasked multitasking +mumble mumbles mumbled mumbled mumbling +mumm mums mummed mummed mumming +mummify mummifies mummified mummified mummifying +mump mumps mumped mumped mumping +munch munches munched munched munching +municipalize municipalizes municipalized municipalized municipalizing +munition munitions munitioned munitioned munitioning +murdabad murdabads murdabaded murdabaded murdabading +murder murders murdered murdered murdering +mure mures mured mured muring +murmur murmurs murmured murmured murmuring +murther murthers murthered murthered murthering +muscle muscles muscled muscled muscling +muse muses mused mused musing +mushroom mushrooms mushroomed mushroomed mushrooming +muss musses mussed mussed mussing +muster musters mustered mustered mustering +mutate mutates mutated mutated mutating +mutch mutches mutched mutched mutching +mute mutes muted muted muting +mutilate mutilates mutilated mutilated mutilating +mutiny mutinies mutinied mutinied mutinying +mutter mutters muttered muttered muttering +mutualize mutualizes mutualized mutualized mutualizing +muzz muzzes muzzed muzzed muzzing +muzzle muzzles muzzled muzzled muzzling +mystify mystifies mystified mystified mystifying +mythicize mythicizes mythicized mythicized mythicizing +mythologize mythologizes mythologized mythologized mythologizing +nab nabs nabbed nabbed nabbing +nag nags nagged nagged nagging +nail nails nailed nailed nailing +name names named named naming +name-check name-checks name-checked name-checked name-checking +name-drop name-drops name-dropped name-dropped name-dropping +namecheck namechecks namechecked namechecked namechecking +namedrop namedrops namedropped namedropped namedropping +nap naps napped napped napping +napalm napalms napalmed napalmed napalming +narcotize narcotizes narcotized narcotized narcotizing +nark narks narked narked narking +narrate narrates narrated narrated narrating +narrow narrows narrowed narrowed narrowing +narrowcast narrowcasts narrowcast narrowcast narrowcasting +nasalise nasalises nasalised nasalised nasalising +nasalize nasalizes nasalized nasalized nasalizing +nationalise nationalises nationalised nationalised nationalising +nationalize nationalizes nationalized nationalized nationalizing +natter natters nattered nattered nattering +naturalise naturalises naturalised naturalised naturalising +naturalize naturalizes naturalized naturalized naturalizing +nauseate nauseates nauseated nauseated nauseating +navigate navigates navigated navigated navigating +naysay naysays naysayed naysayed naysaying +nazify nazifies nazified nazified nazifying +near nears neared neared nearing +neaten neatens neatened neatened neatening +nebulize nebulizes nebulized nebulized nebulizing +necessitate necessitates necessitated necessitated necessitating +neck necks necked necked necking +necklace necklaces necklaced necklaced necklacing +necrose necroses necrosed necrosed necrosing +need needs needed needed needing +needle needles needled needled needling +negate negates negated negated negating +negative negatives negatived negatived negativing +neglect neglects neglected neglected neglecting +negotiate negotiates negotiated negotiated negotiating +neigh neighs neighed neighed neighing +neighbour neighbours neighboured neighboured neighbouring +neologize neologizes neologized neologized neologizing +nerve nerves nerved nerved nerving +nest nests nested nested nesting +nestle nestles nestled nestled nestling +net nets netted netted netting +nettle nettles nettled nettled nettling +network networks networked networked networking +neuter neuters neutered neutered neutering +neutralise neutralises neutralised neutralised neutralising +neutralize neutralizes neutralized neutralized neutralizing +nibble nibbles nibbled nibbled nibbling +nick nicks nicked nicked nicking +nickel nickels nickelled nickelled nickelling +nickel-and-dime nickel-and-dimes nickel-and-dimed nickel-and-dimed nickel-and-diming +nickeland-dime nickeland-dimes nickeland-dimed nickeland-dimed nickeland-diming +nicker nickers nickered nickered nickering +nickname nicknames nicknamed nicknamed nicknaming +nictitate nictitates nictitated nictitated nictitating +nid-nod nid-nods nid-nodded nid-nodded nid-nodding +nidify nidifies nidified nidified nidifying +niello niellos nielloed nielloed nielloing +niggle niggles niggled niggled niggling +nigrify nigrifies nigrified nigrified nigrifying +nip nips nipped nipped nipping +nitrify nitrifies nitrified nitrified nitrifying +nitrogenize nitrogenizes nitrogenized nitrogenized nitrogenizing +nix nixes nixed nixed nixing +nobble nobbles nobbled nobbled nobbling +nock nocks nocked nocked nocking +nod nods nodded nodded nodding +noddle noddles noddled noddled noddling +noise noises noised noised noising +nomadize nomadizes nomadized nomadized nomadizing +nominalise nominalises nominalised nominalised nominalising +nominalize nominalizes nominalized nominalized nominalizing +nominate nominates nominated nominated nominating +nonplus nonplusses nonplussed nonplussed nonplussing +nonpros nonprosses nonprossed nonprossed nonprossing +nonsuit nonsuits nonsuited nonsuited nonsuiting +norm norms normed normed norming +normalise normalises normalised normalised normalising +normalize normalizes normalized normalized normalizing +normanize normanizes normanized normanized normanizing +nose noses nosed nosed nosing +nosedive nosedives nosedived nosedived nosediving +nosh noshes noshed noshed noshing +notarise notarises notarised notarised notarising +notarize notarizes notarized notarized notarizing +notate notates notated notated notating +notch notches notched notched notching +note notes noted noted noting +notice notices noticed noticed noticing +notify notifies notified notified notifying +nourish nourishes nourished nourished nourishing +novelize novelizes novelized novelized novelizing +nucleate nucleates nucleated nucleated nucleating +nudge nudges nudged nudged nudging +nuke nukes nuked nuked nuking +nullify nullifies nullified nullified nullifying +numb numbs numbed numbed numbing +number numbers numbered numbered numbering +numerate numerates numerated numerated numerating +nurse nurses nursed nursed nursing +nurture nurtures nurtured nurtured nurturing +nut nuts nutted nutted nutting +nuzzle nuzzles nuzzled nuzzled nuzzling +oar oars oared oared oaring +obelize obelizes obelized obelized obelizing +obey obeys obeyed obeyed obeying +obfuscate obfuscates obfuscated obfuscated obfuscating +object objects objected objected objecting +objectify objectifies objectified objectified objectifying +objurgate objurgates objurgated objurgated objurgating +obligate obligates obligated obligated obligating +oblige obliges obliged obliged obliging +oblique obliques obliqued obliqued obliquing +obliterate obliterates obliterated obliterated obliterating +obnubilate obnubilates obnubilated obnubilated obnubilating +obscure obscures obscured obscured obscuring +obsecrate obsecrates obsecrated obsecrated obsecrating +observe observes observed observed observing +obsess obsesses obsessed obsessed obsessing +obsolesce obsolesces obsolesced obsolesced obsolescing +obsolete obsoletes obsoleted obsoleted obsoleting +obstruct obstructs obstructed obstructed obstructing +obtain obtains obtained obtained obtaining +obtest obtests obtested obtested obtesting +obtrude obtrudes obtruded obtruded obtruding +obtund obtunds obtunded obtunded obtunding +obturate obturates obturated obturated obturating +obvert obverts obverted obverted obverting +obviate obviates obviated obviated obviating +occasion occasions occasioned occasioned occasioning +occidentalize occidentalizes occidentalized occidentalized occidentalizing +occlude occludes occluded occluded occluding +occult occults occulted occulted occulting +occupy occupies occupied occupied occupying +occur occurs occurred occurred occurring +ochre ochres ochred ochred ochring +octuple octuples octupled octupled octupling +od od's od'd od'd od'ing +od ods oded oded oding +off offs offed offed offing +offend offends offended offended offending +offer offers offered offered offering +officer officers officered officered officering +officiate officiates officiated officiated officiating +offload offloads offloaded offloaded offloading +offprint offprints offprinted offprinted offprinting +offset offsets offset offset offsetting +offshore offshores offshored offshored offshoring +ogle ogles ogled ogled ogling +oil oils oiled oiled oiling +ok ok's ok'd ok'd ok'ing +okay okays okayed okayed okaying +old-talk old-talks old-talked old-talked old-talking +omen omens omened omened omening +omit omits omitted omitted omitting +ooze oozes oozed oozed oozing +opalesce opalesces opalesced opalesced opalescing +opaque opaques opaqued opaqued opaquing +ope opes oped oped oping +open opens opened opened opening +operate operates operated operated operating +operatize operatizes operatized operatized operatizing +opiate opiates opiated opiated opiating +opine opines opined opined opining +oppilate oppilates oppilated oppilated oppilating +oppose opposes opposed opposed opposing +oppress oppresses oppressed oppressed oppressing +oppugn oppugns oppugned oppugned oppugning +opsonize opsonizes opsonized opsonized opsonizing +opt opts opted opted opting +optimise optimises optimised optimised optimising +optimize optimizes optimized optimized optimizing +option options optioned optioned optioning +orate orates orated orated orating +orb orbs orbed orbed orbing +orbit orbits orbited orbited orbiting +orchestrate orchestrates orchestrated orchestrated orchestrating +ordain ordains ordained ordained ordaining +order orders ordered ordered ordering +organise organises organised organised organising +organize organizes organized organized organizing +orient orients oriented oriented orienting +orientalize orientalizes orientalized orientalized orientalizing +orientate orientates orientated orientated orientating +originate originates originated originated originating +ornament ornaments ornamented ornamented ornamenting +orphan orphans orphaned orphaned orphaning +oscillate oscillates oscillated oscillated oscillating +osculate osculates osculated osculated osculating +osmose osmoses osmosed osmosed osmosing +ossify ossifies ossified ossified ossifying +ostracise ostracises ostracised ostracised ostracising +ostracize ostracizes ostracized ostracized ostracizing +oust ousts ousted ousted ousting +out outs outed outed outing +out-herod out-herods out-heroded out-heroded out-heroding +outbalance outbalances outbalanced outbalanced outbalancing +outbid outbids outbid outbid outbidding +outbrave outbraves outbraved outbraved outbraving +outbreed outbreeds outbred outbred outbreeding +outclass outclasses outclassed outclassed outclassing +outcrop outcrops outcropped outcropped outcropping +outcross outcrosses outcrossed outcrossed outcrossing +outcry outcries outcried outcried outcrying +outdate outdates outdated outdated outdating +outdistance outdistances outdistanced outdistanced outdistancing +outdo outdoes outdid outdone outdoing +outface outfaces outfaced outfaced outfacing +outfight outfights outfought outfought outfighting +outfit outfits outfitted outfitted outfitting +outflank outflanks outflanked outflanked outflanking +outfoot outfoots outfooted outfooted outfooting +outfox outfoxes outfoxed outfoxed outfoxing +outgain outgains outgained outgained outgaining +outgas outgasses outgassed outgassed outgassing +outgeneral outgenerals outgeneralled outgeneralled outgeneralling +outgo outgoes outwent outgone outgoing +outgrow outgrows outgrew outgrown outgrowing +outgun outguns outgunned outgunned outgunning +outjockey outjockeys outjockeyed outjockeyed outjockeying +outlast outlasts outlasted outlasted outlasting +outlaw outlaws outlawed outlawed outlawing +outlay outlays outlaid outlaid outlaying +outleap outleaps outleaped outleaped outleaping +outline outlines outlined outlined outlining +outlive outlives outlived outlived outliving +outman outmans outmanned outmanned outmanning +outmanoeuvre outmanoeuvres outmanoeuvred outmanoeuvred outmanoeuvring +outmarch outmarches outmarched outmarched outmarching +outmatch outmatches outmatched outmatched outmatching +outnumber outnumbers outnumbered outnumbered outnumbering +outpace outpaces outpaced outpaced outpacing +outperform outperforms outperformed outperformed outperforming +outplay outplays outplayed outplayed outplaying +outpoint outpoints outpointed outpointed outpointing +outpour outpours outpoured outpoured outpouring +output outputs outputted outputted outputting +outrage outrages outraged outraged outraging +outrange outranges outranged outranged outranging +outrank outranks outranked outranked outranking +outreach outreaches outreached outreached outreaching +outride outrides outrode outridden outriding +outrival outrivals outrivalled outrivalled outrivalling +outrun outruns outran outrun outrunning +outsail outsails outsailed outsailed outsailing +outsell outsells outsold outsold outselling +outshine outshines outshone outshone outshining +outshoot outshoots outshot outshot outshooting +outsmart outsmarts outsmarted outsmarted outsmarting +outsource outsources outsourced outsourced outsourcing +outspan outspans outspanned outspanned outspanning +outspend outspends outspent outspent outspending +outspread outspreads outspread outspread outspreading +outstand outstands outstood outstood outstanding +outstay outstays outstayed outstayed outstaying +outstretch outstretches outstretched outstretched outstretching +outstrip outstrips outstripped outstripped outstripping +outthink outthinks outthought outthought outthinking +outvie outvies outvied outvied outvying +outvote outvotes outvoted outvoted outvoting +outwear outwears outwore outworn outwearing +outweigh outweighs outweighed outweighed outweighing +outwit outwits outwitted outwitted outwitting +outwork outworks outworked outworked outworking +over-burden over-burdens overburdened over-burdened over-burdening +over-egg over-eggs over-egged over-egged over-egging +over-estimate over-estimates overestimated over-estimated over-estimating +over-expose over-exposes overexposed over-exposed over-exposing +over-heat over-heats overheated over-heated over-heating +over-simplify over-simplifies oversimplified over-simplified over-simplifying +overachieve overachieves overachieved overachieved overachieving +overact overacts overacted overacted overacting +overarch overarches overarched overarched overarching +overawe overawes overawed overawed overawing +overbalance overbalances overbalanced overbalanced overbalancing +overbear overbears overbore overborne overbearing +overbid overbids overbid overbid overbidding +overblow overblows overblew overblown overblowing +overbook overbooks overbooked overbooked overbooking +overbuild overbuilds overbuilt overbuilt overbuilding +overburden overburdens overburdened overburdened overburdening +overcall overcalls overcalled overcalled overcalling +overcapitalize overcapitalizes overcapitalized overcapitalized overcapitalizing +overcharge overcharges overcharged overcharged overcharging +overcloud overclouds overclouded overclouded overclouding +overcome overcomes overcame overcome overcoming +overcompensate overcompensates overcompensated overcompensated overcompensating +overcook overcooks overcooked overcooked overcooking +overcrop overcrops overcropped overcropped overcropping +overcrowd overcrowds overcrowded overcrowded overcrowding +overdevelop overdevelops overdeveloped overdeveloped overdeveloping +overdo overdoes overdid overdone overdoing +overdose overdoses overdosed overdosed overdosing +overdraw overdraws overdrew overdrawn overdrawing +overdress overdresses overdressed overdressed overdressing +overdrive overdrives overdrove overdriven overdriving +overdub overdubs overdubbed overdubbed overdubbing +overdye overdyes overdyed overdyed overdying +overeat overeats overate overeaten overeating +overegg overeggs overegged overegged overegging +overemphasise overemphasises overemphasised overemphasised overemphasising +overemphasize overemphasizes overemphasized overemphasized overemphasizing +overestimate overestimates overestimated overestimated overestimating +overexert overexerts overexerted overexerted overexerting +overexpose overexposes overexposed overexposed overexposing +overextend overextends overextended overextended overextending +overfeed overfeeds overfed overfed overfeeding +overfill overfills overfilled overfilled overfilling +overflow overflows overflowed overflowed overflowing +overfly overflies overflew overflown overflying +overgeneralise overgeneralises overgeneralised overgeneralised overgeneralising +overgeneralize overgeneralizes overgeneralized overgeneralized overgeneralizing +overgraze overgrazes overgrazed overgrazed overgrazing +overgrow overgrows overgrew overgrown overgrowing +overhand overhands overhanded overhanded overhanding +overhang overhangs overhung overhung overhanging +overhaul overhauls overhauled overhauled overhauling +overhear overhears overheard overheard overhearing +overheat overheats overheated overheated overheating +overindulge overindulges overindulged overindulged overindulging +overissue overissues overissued overissued overissuing +overjoy overjoys overjoyed overjoyed overjoying +overland overlands overlanded overlanded overlanding +overlap overlaps overlapped overlapped overlapping +overlay overlays overlaid overlaid overlaying +overleap overleaps overleapt overleapt overleaping +overlie overlies overlay overlain overlying +overlive overlives overlived overlived overliving +overload overloads overloaded overloaded overloading +overlook overlooks overlooked overlooked overlooking +overman overmans overmanned overmanned overmanning +overmaster overmasters overmastered overmastered overmastering +overmatch overmatches overmatched overmatched overmatching +overpass overpasses overpassed overpassed overpassing +overpay overpays overpaid overpaid overpaying +overpersuade overpersuades overpersuaded overpersuaded overpersuading +overpitch overpitches overpitched overpitched overpitching +overplay overplays overplayed overplayed overplaying +overpower overpowers overpowered overpowered overpowering +overpraise overpraises overpraised overpraised overpraising +overprint overprints overprinted overprinted overprinting +overproduce overproduces overproduced overproduced overproducing +overprotect overprotects overprotected overprotected overprotecting +overrate overrates overrated overrated overrating +overreach overreaches overreached overreached overreaching +overreact overreacts overreacted overreacted overreacting +overrefine overrefines overrefined overrefined overrefining +override overrides overrode overridden overriding +overrule overrules overruled overruled overruling +overrun overruns overran overrun overrunning +overscore overscores overscored overscored overscoring +oversee oversees oversaw overseen overseeing +oversell oversells oversold oversold overselling +overset oversets overset overset oversetting +oversew oversews oversewed oversewn oversewing +overshadow overshadows overshadowed overshadowed overshadowing +overshare overshares overshared overshared oversharing +overshoot overshoots overshot overshot overshooting +oversimplify oversimplifies oversimplified oversimplified oversimplifying +oversleep oversleeps overslept overslept oversleeping +overspend overspends overspent overspent overspending +overspill overspills overspilt overspilt overspilling +overstaff overstaffs overstaffed overstaffed overstaffing +overstate overstates overstated overstated overstating +overstay overstays overstayed overstayed overstaying +oversteer oversteers oversteered oversteered oversteering +overstep oversteps overstepped overstepped overstepping +overstock overstocks overstocked overstocked overstocking +overstrain overstrains overstrained overstrained overstraining +overstretch overstretches overstretched overstretched overstretching +overstuff overstuffs overstuffed overstuffed overstuffing +oversubscribe oversubscribes oversubscribed oversubscribed oversubscribing +overtake overtakes overtook overtaken overtaking +overtask overtasks overtasked overtasked overtasking +overtax overtaxes overtaxed overtaxed overtaxing +overthink overthinks overthought overthought overthinking +overthrow overthrows overthrew overthrown overthrowing +overtime overtimes overtimed overtimed overtiming +overtop overtops overtopped overtopped overtopping +overtrade overtrades overtraded overtraded overtrading +overtrain overtrains overtrained overtrained overtraining +overtrump overtrumps overtrumped overtrumped overtrumping +overture overtures overtured overtured overturing +overturn overturns overturned overturned overturning +overuse overuses overused overused overusing +overvalue overvalues overvalued overvalued overvaluing +overwatch overwatches overwatched overwatched overwatching +overweigh overweighs overweighed overweighed overweighing +overweight overweights overweighted overweighted overweighting +overwhelm overwhelms overwhelmed overwhelmed overwhelming +overwind overwinds overwound overwound overwinding +overwinter overwinters overwintered overwintered overwintering +overwork overworks overworked overworked overworking +overwrite overwrites overwrote overwritten overwriting +oviposit oviposits oviposited oviposited ovipositing +ovulate ovulates ovulated ovulated ovulating +owe owes owed owed owing +own owns owned owned owning +oxidate oxidates oxidated oxidated oxidating +oxidise oxidises oxidised oxidised oxidising +oxidize oxidizes oxidized oxidized oxidizing +oxygenate oxygenates oxygenated oxygenated oxygenating +oxygenize oxygenizes oxygenized oxygenized oxygenizing +oyster oysters oystered oystered oystering +ozonize ozonizes ozonized ozonized ozonizing +pace paces paced paced pacing +pacify pacifies pacified pacified pacifying +pack packs packed packed packing +package packages packaged packaged packaging +packet packets packeted packeted packeting +packetise packetises packetised packetised packetising +packetize packetizes packetized packetized packetizing +pad pads padded padded padding +paddle paddles paddled paddled paddling +padlock padlocks padlocked padlocked padlocking +paganize paganizes paganized paganized paganizing +page pages paged paged paging +page-jack page-jacks page-jacked page-jacked page-jacking +pagejack pagejacks pagejacked pagejacked pagejacking +paginate paginates paginated paginated paginating +pain pains pained pained paining +paint paints painted painted painting +pair pairs paired paired pairing +pal pals palled palled palling +palatalise palatalises palatalised palatalised palatalising +palatalize palatalizes palatalized palatalized palatalizing +palaver palavers palavered palavered palavering +pale pales paled paled paling +palisade palisades palisaded palisaded palisading +pall palls palled palled palling +palliate palliates palliated palliated palliating +palm palms palmed palmed palming +palpate palpates palpated palpated palpating +palpebrate palpebrates palpebrated palpebrated palpebrating +palpitate palpitates palpitated palpitated palpitating +palter palters paltered paltered paltering +pamper pampers pampered pampered pampering +pamphleteer pamphleteers pamphleteered pamphleteered pamphleteering +pan pans panned panned panning +pan-fry pan-fries pan-fried pan-fried pan-frying +pander panders pandered pandered pandering +pandy pandies pandied pandied pandying +panegyrize panegyrizes panegyrized panegyrized panegyrizing +panel panels panelled panelled panelling +panfry panfries panfried panfried panfrying +panhandle panhandles panhandled panhandled panhandling +panic panics panicked panicked panicking +pant pants panted panted panting +pantomime pantomimes pantomimed pantomimed pantomiming +pap paps papped papped papping +paper papers papered papered papering +parabolize parabolizes parabolized parabolized parabolizing +parachute parachutes parachuted parachuted parachuting +parade parades paraded paraded parading +paragon paragons paragoned paragoned paragoning +paragraph paragraphs paragraphed paragraphed paragraphing +parallel parallels paralleled paralleled paralleling +paralyse paralyses paralysed paralysed paralysing +paralyze paralyzes paralyzed paralyzed paralyzing +paraphrase paraphrases paraphrased paraphrased paraphrasing +parasitize parasitizes parasitized parasitized parasitizing +parboil parboils parboiled parboiled parboiling +parbuckle parbuckles parbuckled parbuckled parbuckling +parcel parcels parcelled parcelled parcelling +parch parches parched parched parching +pardon pardons pardoned pardoned pardoning +pare pares pared pared paring +parenthesize parenthesizes parenthesized parenthesized parenthesizing +park parks parked parked parking +parlay parlays parlayed parlayed parlaying +parley parleys parleyed parleyed parleying +parleyvoo parleyvoos parleyvooed parleyvooed parleyvooing +parody parodies parodied parodied parodying +parole paroles paroled paroled paroling +parrot parrots parroted parroted parroting +parry parries parried parried parrying +parse parses parsed parsed parsing +part parts parted parted parting +part-exchange part-exchanges part-exchanged part-exchanged part-exchanging +partake partakes partook partaken partaking +partexchange partexchanges partexchanged partexchanged partexchanging +participate participates participated participated participating +particularise particularises particularised particularised particularising +particularize particularizes particularized particularized particularizing +partition partitions partitioned partitioned partitioning +partner partners partnered partnered partnering +party parties partied partied partying +pash pashes pashed pashed pashing +pass passes passed passed passing +passage passages passaged passaged passaging +passivise passivises passivised passivised passivising +passivize passivizes passivized passivized passivizing +past pasts pasted pasted pasting +paste pastes pasted pasted pasting +pasteurise pasteurises pasteurised pasteurised pasteurising +pasteurize pasteurizes pasteurized pasteurized pasteurizing +pasture pastures pastured pastured pasturing +pat pats patted patted patting +patch patches patched patched patching +patent patents patented patented patenting +patrol patrols patrolled patrolled patrolling +patronise patronises patronised patronised patronising +patronize patronizes patronized patronized patronizing +patter patters pattered pattered pattering +pattern patterns patterned patterned patterning +pauperize pauperizes pauperized pauperized pauperizing +pause pauses paused paused pausing +pave paves paved paved paving +pavilion pavilions pavilioned pavilioned pavilioning +paw paws pawed pawed pawing +pawn pawns pawned pawned pawning +pay pays paid paid paying +peace peaces peaced peaced peacing +peach peaches peached peached peaching +peacock peacocks peacocked peacocked peacocking +peak peaks peaked peaked peaking +peal peals pealed pealed pealing +pearl pearls pearled pearled pearling +pebble pebbles pebbled pebbled pebbling +peck pecks pecked pecked pecking +pectize pectizes pectized pectized pectizing +peculate peculates peculated peculated peculating +pedal pedals pedalled pedalled pedalling +peddle peddles peddled peddled peddling +pedestrianise pedestrianises pedestrianised pedestrianised pedestrianising +pedestrianize pedestrianizes pedestrianized pedestrianized pedestrianizing +pee pees peed peed peeing +peek peeks peeked peeked peeking +peel peels peeled peeled peeling +peen peens peened peened peening +peep peeps peeped peeped peeping +peer peers peered peered peering +peeve peeves peeved peeved peeving +peg pegs pegged pegged pegging +pellet pellets pelleted pelleted pelleting +pelt pelts pelted pelted pelting +pen pens penned penned penning +penalise penalises penalised penalised penalising +penalize penalizes penalized penalized penalizing +penance penances penanced penanced penancing +pencil pencils pencilled pencilled pencilling +pend pends pended pended pending +penetrate penetrates penetrated penetrated penetrating +peninsulate peninsulates peninsulated peninsulated peninsulating +pension pensions pensioned pensioned pensioning +people peoples peopled peopled peopling +pep peps pepped pepped pepping +pepper peppers peppered peppered peppering +pepsinate pepsinates pepsinated pepsinated pepsinating +peptize peptizes peptized peptized peptizing +peptonize peptonizes peptonized peptonized peptonizing +perambulate perambulates perambulated perambulated perambulating +perceive perceives perceived perceived perceiving +perch perches perched perched perching +percolate percolates percolated percolated percolating +percuss percusses percussed percussed percussing +peregrinate peregrinates peregrinated peregrinated peregrinating +perennate perennates perennated perennated perennating +perfect perfects perfected perfected perfecting +perforate perforates perforated perforated perforating +perform performs performed performed performing +perfume perfumes perfumed perfumed perfuming +perfuse perfuses perfused perfused perfusing +perish perishes perished perished perishing +perjure perjures perjured perjured perjuring +perk perks perked perked perking +perm perms permed permed perming +permeate permeates permeated permeated permeating +permit permits permitted permitted permitting +permute permutes permuted permuted permuting +perorate perorates perorated perorated perorating +peroxide peroxides peroxided peroxided peroxiding +perpend perpends perpended perpended perpending +perpetrate perpetrates perpetrated perpetrated perpetrating +perpetuate perpetuates perpetuated perpetuated perpetuating +perplex perplexes perplexed perplexed perplexing +persecute persecutes persecuted persecuted persecuting +persevere perseveres persevered persevered persevering +persist persists persisted persisted persisting +personalise personalises personalised personalised personalising +personalize personalizes personalized personalized personalizing +personate personates personated personated personating +personify personifies personified personified personifying +perspire perspires perspired perspired perspiring +persuade persuades persuaded persuaded persuading +pertain pertains pertained pertained pertaining +perturb perturbs perturbed perturbed perturbing +peruse peruses perused perused perusing +pervade pervades pervaded pervaded pervading +pervert perverts perverted perverted perverting +pester pesters pestered pestered pestering +pestle pestles pestled pestled pestling +pet pets petted petted petting +peter peters petered petered petering +petition petitions petitioned petitioned petitioning +petrify petrifies petrified petrified petrifying +pettifog pettifogs pettifogged pettifogged pettifogging +phantasy phantasies phantasied phantasied phantasying +phase phases phased phased phasing +phenolate phenolates phenolated phenolated phenolating +philander philanders philandered philandered philandering +philosophise philosophises philosophised philosophised philosophising +philosophize philosophizes philosophized philosophized philosophizing +phlebotomize phlebotomizes phlebotomized phlebotomized phlebotomizing +phonate phonates phonated phonated phonating +phone phones phoned phoned phoning +phosphatize phosphatizes phosphatized phosphatized phosphatizing +phosphorate phosphorates phosphorated phosphorated phosphorating +phosphoresce phosphoresces phosphoresced phosphoresced phosphorescing +photobomb photobombs photobombed photobombed photobombing +photocompose photocomposes photocomposed photocomposed photocomposing +photocopy photocopies photocopied photocopied photocopying +photoengrave photoengraves photoengraved photoengraved photoengraving +photograph photographs photographed photographed photographing +photolithograph photolithographs photolithographed photolithographed photolithographing +photomap photomaps photomapped photomapped photomapping +photosensitise photosensitises photosensitised photosensitised photosensitising +photosensitize photosensitizes photosensitized photosensitized photosensitizing +photoset photosets photoset photoset photosetting +photoshop photoshops photoshopped photoshopped photoshopping +photostat photostats photostatted photostatted photostatting +photosynthesise photosynthesises photosynthesised photosynthesised photosynthesising +photosynthesize photosynthesizes photosynthesized photosynthesized photosynthesizing +phototype phototypes phototyped phototyped phototyping +phrase phrases phrased phrased phrasing +physic physics physicked physicked physicking +pi pies pied pied piing +pick picks picked picked picking +pickaxe pickaxes pickaxed pickaxed pickaxing +picket pickets picketed picketed picketing +pickle pickles pickled pickled pickling +picnic picnics picnicked picnicked picnicking +picture pictures pictured pictured picturing +picturise picturises picturised picturised picturising +picturize picturizes picturized picturized picturizing +piddle piddles piddled piddled piddling +piece pieces pieced pieced piecing +pierce pierces pierced pierced piercing +piffle piffles piffled piffled piffling +pig pigs pigged pigged pigging +pigeonhole pigeonholes pigeonholed pigeonholed pigeonholing +piggyback piggybacks piggybacked piggybacked piggybacking +pigstick pigsticks pigsticked pigsticked pigsticking +pike pikes piked piked piking +pile piles piled piled piling +pilfer pilfers pilfered pilfered pilfering +pilgrimage pilgrimages pilgrimaged pilgrimaged pilgrimaging +pill pills pilled pilled pilling +pillage pillages pillaged pillaged pillaging +pillar pillars pillared pillared pillaring +pillory pillories pilloried pilloried pillorying +pillow pillows pillowed pillowed pillowing +pilot pilots piloted piloted piloting +pimp pimps pimped pimped pimping +pin pins pinned pinned pinning +pinch pinches pinched pinched pinching +pinch run pinch runs pinch ran pinch run pinch running +pinch-hit pinch-hits pinch-hit pinch-hit pinch-hitting +pinchhit pinchhits pinchhit pinchhit pinchhitting +pine pines pined pined pining +pinfold pinfolds pinfolded pinfolded pinfolding +ping pings pinged pinged pinging +pinion pinions pinioned pinioned pinioning +pink pinks pinked pinked pinking +pinnacle pinnacles pinnacled pinnacled pinnacling +pinpoint pinpoints pinpointed pinpointed pinpointing +pinprick pinpricks pinpricked pinpricked pinpricking +pioneer pioneers pioneered pioneered pioneering +pip pips pipped pipped pipping +pipe pipes piped piped piping +pipeline pipelines pipelined pipelined pipelining +pipette pipettes pipetted pipetted pipetting +pique piques piqued piqued piquing +pirate pirates pirated pirated pirating +pirouette pirouettes pirouetted pirouetted pirouetting +pish pishes pished pished pishing +piss pisses pissed pissed pissing +pistol pistols pistolled pistolled pistolling +pistol-whip pistol-whips pistol-whipped pistol-whipped pistol-whipping +pistolwhip pistolwhips pistolwhipped pistolwhipped pistolwhipping +pit pits pitted pitted pitting +pitapat pitapats pitapatted pitapatted pitapatting +pitch pitches pitched pitched pitching +pitchfork pitchforks pitchforked pitchforked pitchforking +pith piths pithed pithed pithing +pitterpatter pitterpatters pitterpattered pitterpattered pitterpattering +pity pities pitied pitied pitying +pivot pivots pivoted pivoted pivoting +pixelate pixelates pixelated pixelated pixelating +pize pizes pized pized pizing +placard placards placarded placarded placarding +placate placates placated placated placating +place places placed placed placing +placekick placekicks placekicked placekicked placekicking +plagiarise plagiarises plagiarised plagiarised plagiarising +plagiarize plagiarizes plagiarized plagiarized plagiarizing +plague plagues plagued plagued plaguing +plain plains plained plained plaining +plait plaits plaited plaited plaiting +plan plans planned planned planning +plane planes planed planed planing +plane-table plane-tables plane-tabled plane-tabled plane-tabling +planish planishes planished planished planishing +plank planks planked planked planking +plant plants planted planted planting +plash plashes plashed plashed plashing +plasmolyze plasmolyzes plasmolyzed plasmolyzed plasmolyzing +plaster plasters plastered plastered plastering +plasticise plasticises plasticised plasticised plasticising +plasticize plasticizes plasticized plasticized plasticizing +plate plates plated plated plating +plateau plateaus plateaud plateaud plateauing +platemark platemarks platemarked platemarked platemarking +platinize platinizes platinized platinized platinizing +platitudinize platitudinizes platitudinized platitudinized platitudinizing +platonize platonizes platonized platonized platonizing +play plays played played playing +play-act play-acts play-acted play-acted play-acting +playact playacts playacted playacted playacting +playback playbacks playbacked playbacked playbacking +pleach pleaches pleached pleached pleaching +plead pleads pleaded pleaded pleading +plead pleads pled pled pleading +please pleases pleased pleased pleasing +pleasure pleasures pleasured pleasured pleasuring +pleat pleats pleated pleated pleating +pledge pledges pledged pledged pledging +plenish plenishes plenished plenished plenishing +plight plights plighted plighted plighting +ploat ploats ploated ploated ploating +plod plods plodded plodded plodding +plodge plodges plodged plodged plodging +plonk plonks plonked plonked plonking +plop plops plopped plopped plopping +plot plots plotted plotted plotting +plough ploughs ploughed ploughed ploughing +plow plows plowed plowed plowing +pluck plucks plucked plucked plucking +plug plugs plugged plugged plugging +plumb plumbs plumbed plumbed plumbing +plume plumes plumed plumed pluming +plummet plummets plummeted plummeted plummeting +plump plumps plumped plumped plumping +plunder plunders plundered plundered plundering +plunge plunges plunged plunged plunging +plunk plunks plunked plunked plunking +pluralise pluralises pluralised pluralised pluralising +pluralize pluralizes pluralized pluralized pluralizing +ply plies plied plied plying +poach poaches poached poached poaching +pocket pockets pocketed pocketed pocketing +pockmark pockmarks pockmarked pockmarked pockmarking +pod pods podded podded podding +podzolize podzolizes podzolized podzolized podzolizing +poetize poetizes poetized poetized poetizing +poind poinds poinded poinded poinding +point points pointed pointed pointing +poise poises poised poised poising +poison poisons poisoned poisoned poisoning +poke pokes poked poked poking +polarise polarises polarised polarised polarising +polarize polarizes polarized polarized polarizing +pole poles poled poled poling +poleax poleaxes poleaxed poleaxed poleaxing +poleaxe poleaxes poleaxed poleaxed poleaxing +polevault polevaults polevaulted polevaulted polevaulting +police polices policed policed policing +polish polishes polished polished polishing +politicise politicises politicised politicised politicising +politicize politicizes politicized politicized politicizing +politick politicks politicked politicked politicking +polka polkas polkaed polkaed polkaing +poll polls polled polled polling +pollard pollards pollarded pollarded pollarding +pollinate pollinates pollinated pollinated pollinating +pollute pollutes polluted polluted polluting +polymerise polymerises polymerised polymerised polymerising +polymerize polymerizes polymerized polymerized polymerizing +pomade pomades pomaded pomaded pomading +pommel pommels pommelled pommelled pommelling +ponce ponces ponced ponced poncing +ponder ponders pondered pondered pondering +pong pongs ponged ponged ponging +poniard poniards poniarded poniarded poniarding +pontificate pontificates pontificated pontificated pontificating +pony ponies ponied ponied ponying +poo poos pooed pooed pooing +pooh poohs poohed poohed poohing +pooh-pooh pooh-poohs pooh-poohed pooh-poohed pooh-poohing +poohpooh poohpoohs poohpoohed poohpoohed poohpoohing +pool pools pooled pooled pooling +poop poops pooped pooped pooping +pootle pootles pootled pootled pootling +pop pops popped popped popping +popple popples poppled poppled poppling +popularise popularises popularised popularised popularising +popularize popularizes popularized popularized popularizing +populate populates populated populated populating +pore pores pored pored poring +port ports ported ported porting +portage portages portaged portaged portaging +portend portends portended portended portending +portion portions portioned portioned portioning +portray portrays portrayed portrayed portraying +pose poses posed posed posing +posit posits posited posited positing +position positions positioned positioned positioning +poss posses possed possed possing +posse posses possed possed possing +possess possesses possessed possessed possessing +posset possets possetted possetted possetting +post posts posted posted posting +post-date post-dates post-dated post-dated post-dating +post-sync post-syncs post-synced post-synced post-syncing +postdate postdates postdated postdated postdating +postfix postfixes postfixed postfixed postfixing +postil postils postiled postiled postiling +postmark postmarks postmarked postmarked postmarking +postpone postpones postponed postponed postponing +postsync postsyncs postsynced postsynced postsyncing +postulate postulates postulated postulated postulating +posture postures postured postured posturing +posturize posturizes posturized posturized posturizing +pot pots potted potted potting +pot-roast pot-roasts pot-roasted pot-roasted pot-roasting +potentiate potentiates potentiated potentiated potentiating +pother pothers pothered pothered pothering +potroast potroasts potroasted potroasted potroasting +potter potters pottered pottered pottering +potty-train potty-trains potty-trained potty-trained potty-training +pottytrain pottytrains pottytrained pottytrained pottytraining +pouch pouches pouched pouched pouching +poultice poultices poulticed poulticed poulticing +pounce pounces pounced pounced pouncing +pound pounds pounded pounded pounding +pour pours poured poured pouring +poussette poussettes poussetted poussetted poussetting +pout pouts pouted pouted pouting +powder powders powdered powdered powdering +power powers powered powered powering +power-nap power-naps power-napped power-napped power-napping +powerdive powerdives powerdived powerdived powerdiving +powernap powernaps powernapped powernapped powernapping +powwow powwows powwowed powwowed powwowing +practice practices practiced practiced practicing +practise practises practised practised practising +praise praises praised praised praising +prance prances pranced pranced prancing +prang prangs pranged pranged pranging +prank pranks pranked pranked pranking +prate prates prated prated prating +prattle prattles prattled prattled prattling +pray prays prayed prayed praying +pre-book pre-books pre-booked pre-booked pre-booking +pre-digest pre-digests predigested pre-digested pre-digesting +pre-empt pre-empts pre-empted pre-empted pre-empting +pre-exist pre-exists pre-existed pre-existed pre-existing +pre-install pre-installs pre-installed pre-installed pre-installing +pre-record pre-records pre-recorded pre-recorded pre-recording +pre-teach pre-teaches pre-taught pre-taught pre-teaching +pre-wash pre-washes pre-washed pre-washed pre-washing +preach preaches preached preached preaching +preachify preachifies preachified preachified preachifying +prearrange prearranges prearranged prearranged prearranging +prebook prebooks prebooked prebooked prebooking +precancel precancels precancelled precancelled precancelling +precast precasts precast precast precasting +precede precedes preceded preceded preceding +precess precesses precessed precessed precessing +precipitate precipitates precipitated precipitated precipitating +precis precises precised precised precising +preclude precludes precluded precluded precluding +preconceive preconceives preconceived preconceived preconceiving +precondition preconditions preconditioned preconditioned preconditioning +preconize preconizes preconized preconized preconizing +precontract precontracts precontracted precontracted precontracting +predate predates predated predated predating +predecease predeceases predeceased predeceased predeceasing +predestinate predestinates predestinated predestinated predestinating +predestine predestines predestined predestined predestining +predetermine predetermines predetermined predetermined predetermining +predicate predicates predicated predicated predicating +predict predicts predicted predicted predicting +predigest predigests predigested predigested predigesting +predispose predisposes predisposed predisposed predisposing +predominate predominates predominated predominated predominating +preempt preempts preempted preempted preempting +preen preens preened preened preening +preexist preexists preexisted preexisted preexisting +prefabricate prefabricates prefabricated prefabricated prefabricating +preface prefaces prefaced prefaced prefacing +prefer prefers preferred preferred preferring +prefigure prefigures prefigured prefigured prefiguring +prefix prefixes prefixed prefixed prefixing +preheat preheats preheated preheated preheating +preinstall preinstalls preinstalled preinstalled preinstalling +prejudge prejudges prejudged prejudged prejudging +prejudice prejudices prejudiced prejudiced prejudicing +prelect prelects prelected prelected prelecting +preload preloads preloaded preloaded preloading +prelude preludes preluded preluded preluding +premeditate premeditates premeditated premeditated premeditating +premier premiers premiered premiered premiering +premiere premieres premiered premiered premiering +premise premises premised premised premising +premiss premisses premissed premissed premissing +premonish premonishes premonished premonished premonishing +preoccupy preoccupies preoccupied preoccupied preoccupying +preordain preordains preordained preordained preordaining +prep preps prepped prepped prepping +prepare prepares prepared prepared preparing +prepay prepays prepaid prepaid prepaying +preponderate preponderates preponderated preponderated preponderating +prepone prepones preponed preponed preponing +prepossess prepossesses prepossessed prepossessed prepossessing +prerecord prerecords prerecorded prerecorded prerecording +preregister preregisters preregistered preregistered preregistering +presage presages presaged presaged presaging +prescind prescinds prescinded prescinded prescinding +prescribe prescribes prescribed prescribed prescribing +preselect preselects preselected preselected preselecting +presell presells presold presold preselling +present presents presented presented presenting +preserve preserves preserved preserved preserving +preset presets preset preset presetting +preside presides presided presided presiding +presignify presignifies presignified presignified presignifying +press presses pressed pressed pressing +press-gang press-gangs press-ganged press-ganged press-ganging +pressgang pressgangs pressganged pressganged pressganging +pressure pressures pressured pressured pressuring +pressure-cook pressure-cooks pressure-cooked pressure-cooked pressure-cooking +pressurise pressurises pressurised pressurised pressurising +pressurize pressurizes pressurized pressurized pressurizing +prestress prestresses prestressed prestressed prestressing +presume presumes presumed presumed presuming +presuppose presupposes presupposed presupposed presupposing +preteach preteaches pretaught pretaught preteaching +pretend pretends pretended pretended pretending +pretermit pretermits pretermitted pretermitted pretermitting +pretest pretests pretested pretested pretesting +prettify prettifies prettified prettified prettifying +prevail prevails prevailed prevailed prevailing +prevaricate prevaricates prevaricated prevaricated prevaricating +prevent prevents prevented prevented preventing +preview previews previewed previewed previewing +previse previses prevised prevised prevising +prevue prevues prevued prevued prevuing +prewash prewashes prewashed prewashed prewashing +prey preys preyed preyed preying +price prices priced priced pricing +prick pricks pricked pricked pricking +prickle prickles prickled prickled prickling +pride prides prided prided priding +prig prigs prigged prigged prigging +prill prills prilled prilled prilling +prime primes primed primed priming +primp primps primped primped primping +prink prinks prinked prinked prinking +print prints printed printed printing +prioritise prioritises prioritised prioritised prioritising +prioritize prioritizes prioritized prioritized prioritizing +prise prises prised prised prising +privateer privateers privateered privateered privateering +privatise privatises privatised privatised privatising +privatize privatizes privatized privatized privatizing +privilege privileges privileged privileged privileging +prize prizes prized prized prizing +probate probates probated probated probating +probe probes probed probed probing +proceed proceeds proceeded proceeded proceeding +process processes processed processed processing +procession processions processioned processioned processioning +proclaim proclaims proclaimed proclaimed proclaiming +procrastinate procrastinates procrastinated procrastinated procrastinating +procreate procreates procreated procreated procreating +proctor proctors proctored proctored proctoring +procure procures procured procured procuring +prod prods prodded prodded prodding +produce produces produced produced producing +profane profanes profaned profaned profaning +profess professes professed professed professing +professionalise professionalises professionalised professionalised professionalising +professionalize professionalizes professionalized professionalized professionalizing +proffer proffers proffered proffered proffering +profile profiles profiled profiled profiling +profit profits profited profited profiting +profiteer profiteers profiteered profiteered profiteering +prog progs progged progged progging +prognosticate prognosticates prognosticated prognosticated prognosticating +program programs programmed programmed programming +programme programmes programmed programmed programming +programtrade programtrades programtraded programtraded programtrading +progress progresses progressed progressed progressing +prohibit prohibits prohibited prohibited prohibiting +project projects projected projected projecting +prolapse prolapses prolapsed prolapsed prolapsing +proliferate proliferates proliferated proliferated proliferating +prologue prologues prologued prologued prologuing +prolong prolongs prolonged prolonged prolonging +promenade promenades promenaded promenaded promenading +promise promises promised promised promising +promote promotes promoted promoted promoting +prompt prompts prompted prompted prompting +promulgate promulgates promulgated promulgated promulgating +pronate pronates pronated pronated pronating +prong prongs pronged pronged pronging +pronominalize pronominalizes pronominalized pronominalized pronominalizing +pronounce pronounces pronounced pronounced pronouncing +proof proofs proofed proofed proofing +proofread proofreads proofread proofread proofreading +prop props propped propped propping +propagandise propagandises propagandised propagandised propagandising +propagandize propagandizes propagandized propagandized propagandizing +propagate propagates propagated propagated propagating +propel propels propelled propelled propelling +propend propends propended propended propending +prophesy prophesies prophesied prophesied prophesying +propitiate propitiates propitiated propitiated propitiating +proportion proportions proportioned proportioned proportioning +proportionate proportionates proportionated proportionated proportionating +propose proposes proposed proposed proposing +proposition propositions propositioned propositioned propositioning +propound propounds propounded propounded propounding +prorate prorates prorated prorated prorating +prorogue prorogues prorogued prorogued proroguing +proscribe proscribes proscribed proscribed proscribing +prose proses prosed prosed prosing +prosecute prosecutes prosecuted prosecuted prosecuting +proselyte proselytes proselyted proselyted proselyting +proselytise proselytises proselytised proselytised proselytising +proselytize proselytizes proselytized proselytized proselytizing +prospect prospects prospected prospected prospecting +prosper prospers prospered prospered prospering +prostitute prostitutes prostituted prostituted prostituting +prostrate prostrates prostrated prostrated prostrating +protect protects protected protected protecting +protest protests protested protested protesting +protract protracts protracted protracted protracting +protrude protrudes protruded protruded protruding +protuberate protuberates protuberated protuberated protuberating +prove proves proved proved proving +prove proves proved proven proving +provide provides provided provided providing +provision provisions provisioned provisioned provisioning +provoke provokes provoked provoked provoking +prowl prowls prowled prowled prowling +prune prunes pruned pruned pruning +prussianize prussianizes prussianized prussianized prussianizing +pry pries pried pried prying +psych psychs psyched psyched psyching +psyche psyches psyched psyched psyching +psycho-analyse psycho-analyses psycho-analysed psycho-analysed psycho-analysing +psychoanalyse psychoanalyses psychoanalysed psychoanalysed psychoanalysing +psychoanalyze psychoanalyzes psychoanalyzed psychoanalyzed psychoanalyzing +psychologize psychologizes psychologized psychologized psychologizing +pubcrawl pubcrawls pubcrawled pubcrawled pubcrawling +publicise publicises publicised publicised publicising +publicize publicizes publicized publicized publicizing +publish publishes published published publishing +pucker puckers puckered puckered puckering +puddle puddles puddled puddled puddling +puff puffs puffed puffed puffing +pug pugs pugged pugged pugging +puke pukes puked puked puking +pule pules puled puled puling +pull pulls pulled pulled pulling +pullulate pullulates pullulated pullulated pullulating +pulp pulps pulped pulped pulping +pulsate pulsates pulsated pulsated pulsating +pulse pulses pulsed pulsed pulsing +pulverise pulverises pulverised pulverised pulverising +pulverize pulverizes pulverized pulverized pulverizing +pummel pummels pummelled pummelled pummelling +pump pumps pumped pumped pumping +pun puns punned punned punning +punce punces punced punced puncing +punch punches punched punched punching +punctuate punctuates punctuated punctuated punctuating +puncture punctures punctured punctured puncturing +punish punishes punished punished punishing +punt punts punted punted punting +pup pups pupped pupped pupping +pupate pupates pupated pupated pupating +pur_ee pur_ees pur_eed pur_eed pur_eeing +purchase purchases purchased purchased purchasing +puree purees pureed pureed pureeing +purfle purfles purfled purfled purfling +purge purges purged purged purging +purify purifies purified purified purifying +purl purls purled purled purling +purloin purloins purloined purloined purloining +purport purports purported purported purporting +purpose purposes purposed purposed purposing +purr purrs purred purred purring +purse purses pursed pursed pursing +pursue pursues pursued pursued pursuing +purvey purveys purveyed purveyed purveying +pur‹¨«e pur‹¨«es pur‹¨«ed pur‹¨«ed pur‹¨«eing +push pushes pushed pushed pushing +push-start push-starts push-started push-started push-starting +pushstart pushstarts pushstarted pushstarted pushstarting +pussyfoot pussyfoots pussyfooted pussyfooted pussyfooting +pustulate pustulates pustulated pustulated pustulating +put puts put put putting +putput putputs putputted putputted putputting +putrefy putrefies putrefied putrefied putrefying +putt putts putted putted putting +putter putters puttered puttered puttering +putty putties puttied puttied puttying +putz putzes putzed putzed putzing +puzzle puzzles puzzled puzzled puzzling +pyramid pyramids pyramided pyramided pyramiding +quack quacks quacked quacked quacking +quadrisect quadrisects quadrisected quadrisected quadrisecting +quadruple quadruples quadrupled quadrupled quadrupling +quadruplicate quadruplicates quadruplicated quadruplicated quadruplicating +quaff quaffs quaffed quaffed quaffing +quail quails quailed quailed quailing +quake quakes quaked quaked quaking +qualify qualifies qualified qualified qualifying +quant quants quanted quanted quanting +quantify quantifies quantified quantified quantifying +quantize quantizes quantized quantized quantizing +quarantine quarantines quarantined quarantined quarantining +quarrel quarrels quarrelled quarrelled quarrelling +quarry quarries quarried quarried quarrying +quarter quarters quartered quartered quartering +quarterback quarterbacks quarterbacked quarterbacked quarterbacking +quartersaw quartersaws quartersawed quartersawed quartersawing +quash quashes quashed quashed quashing +quaver quavers quavered quavered quavering +queen queens queened queened queening +queer queers queered queered queering +quell quells quelled quelled quelling +quench quenches quenched quenched quenching +query queries queried queried querying +quest quests quested quested questing +question questions questioned questioned questioning +queue queues queued queued queuing +quibble quibbles quibbled quibbled quibbling +quicken quickens quickened quickened quickening +quickfreeze quickfreezes quickfroze quickfrozen quickfreezing +quickstep quicksteps quickstepped quickstepped quickstepping +quiet quiets quieted quieted quieting +quieten quietens quietened quietened quietening +quill quills quilled quilled quilling +quilt quilts quilted quilted quilting +quintuple quintuples quintupled quintupled quintupling +quintuplicate quintuplicates quintuplicated quintuplicated quintuplicating +quip quips quipped quipped quipping +quirk quirks quirked quirked quirking +quit quits quit quit quitting +quitclaim quitclaims quitclaimed quitclaimed quitclaiming +quiver quivers quivered quivered quivering +quiz quizzes quizzed quizzed quizzing +quote quotes quoted quoted quoting +rabbit rabbits rabbited rabbited rabbiting +rabble rabbles rabbled rabbled rabbling +race races raced raced racing +racemize racemizes racemized racemized racemizing +rack racks racked racked racking +racketeer racketeers racketeered racketeered racketeering +rackrent rackrents rackrented rackrented rackrenting +racquet racquets racqueted racqueted racqueting +raddle raddles raddled raddled raddling +radiate radiates radiated radiated radiating +radicalise radicalises radicalised radicalised radicalising +radicalize radicalizes radicalized radicalized radicalizing +radio radioes radioed radioed radioing +radioactivate radioactivates radioactivated radioactivated radioactivating +radiotelegraph radiotelegraphs radiotelegraphed radiotelegraphed radiotelegraphing +radiotelephone radiotelephones radiotelephoned radiotelephoned radiotelephoning +raffle raffles raffled raffled raffling +raft rafts rafted rafted rafting +rag rags ragged ragged ragging +rage rages raged raged raging +ragout ragouts ragouted ragouted ragouting +raid raids raided raided raiding +rail rails railed railed railing +railroad railroads railroaded railroaded railroading +rain rains rained rained raining +rainproof rainproofs rainproofed rainproofed rainproofing +raise raises raised raised raising +rake rakes raked raked raking +rally rallies rallied rallied rallying +ram rams rammed rammed ramming +ram-aid ram-aids ram-raided ram-raided ram-raiding +ramaid ramaids ramraided ramraided ramraiding +ramble rambles rambled rambled rambling +ramify ramifies ramified ramified ramifying +ramp ramps ramped ramped ramping +rampage rampages rampaged rampaged rampaging +rampart ramparts ramparted ramparted ramparting +ranch ranches ranched ranched ranching +randomise randomises randomised randomised randomising +randomize randomizes randomized randomized randomizing +range ranges ranged ranged ranging +rank ranks ranked ranked ranking +rankle rankles rankled rankled rankling +ransack ransacks ransacked ransacked ransacking +ransom ransoms ransomed ransomed ransoming +rant rants ranted ranted ranting +rap raps rapped rapped rapping +rape rapes raped raped raping +rappel rappels rappelled rappelled rappelling +rapture raptures raptured raptured rapturing +rarify rarifies rarified rarified rarifying +rash rashes rashed rashed rashing +rasp rasps rasped rasped rasping +rasterise rasterises rasterised rasterised rasterising +rasterize rasterizes rasterized rasterized rasterizing +rat rats ratted ratted ratting +ratchet ratchets ratcheted ratcheted ratcheting +rate rates rated rated rating +ratify ratifies ratified ratified ratifying +ratiocinate ratiocinates ratiocinated ratiocinated ratiocinating +ration rations rationed rationed rationing +rationalise rationalises rationalised rationalised rationalising +rationalize rationalizes rationalized rationalized rationalizing +rattle rattles rattled rattled rattling +rattoon rattoons ratooned ratooned ratooning +ravage ravages ravaged ravaged ravaging +rave raves raved raved raving +ravel ravels ravelled ravelled ravelling +ravin ravins ravined ravined ravining +ravish ravishes ravished ravished ravishing +ray rays rayed rayed raying +raze razes razed razed razing +razor-cut razor-cuts razor-cut razor-cut razor-cutting +razz razzes razzed razzed razzing +re-act re-acts reacted re-acted re-acting +re-advertise re-advertises re-advertised re-advertised re-advertising +re-afforest re-afforests re-afforested re-afforested re-afforesting +re-cede re-cedes receded re-ceded re-ceding +re-chip re-chips re-chipped re-chipped re-chipping +re-count re-counts recounted re-counted re-counting +re-cover re-covers re-covered re-covered re-covering +re-create re-creates recreated re-created re-creating +re-dress re-dresses redressed re-dressed re-dressing +re-echo re-echoes re-echoed re-echoed re-echoing +re-educate re-educates re-educated re-educated re-educating +re-elect re-elects re-elected re-elected re-electing +re-emerge re-emerges re-emerged re-emerged re-emerging +re-enact re-enacts re-enacted re-enacted re-enacting +re-enter re-enters re-entered re-entered re-entering +re-evaluate re-evaluates re-evaluated re-evaluated re-evaluating +re-examine re-examines re-examined re-examined re-examining +re-form re-forms re-formed re-formed re-forming +re-fund re-funds refunded re-funded re-funding +re-join re-joins rejoined re-joined re-joining +re-present re-presents re-presented re-presented re-presenting +re-press re-presses repressed re-pressed re-pressing +re-proof re-proofs reproofed reproofed reproofing +re-prove re-proves re-proved re-proved re-proving +re-prove re-proves re-proved re-proven re-proving +re-release re-releases re-released re-released re-releasing +re-route re-routes re-routed re-routed re-routing +re-serve re-serves reserved re-served re-serving +re-sign re-signs re-signed re-signed re-signing +re-sort re-sorts resorted re-sorted re-sorting +re-sound re-sounds resounded re-sounded re-sounding +re-trace re-traces retraced re-traced re-tracing +re-tread re-treads retrod retrodden re-treading +reach reaches reached reached reaching +reacquaint reacquaints reacquainted reacquainted reacquainting +react reacts reacted reacted reacting +reactivate reactivates reactivated reactivated reactivating +read reads read read reading +readdress readdresses readdressed readdressed readdressing +readjust readjusts readjusted readjusted readjusting +readmit readmits readmitted readmitted readmitting +readvertise readvertises readvertised readvertised readvertising +ready readies readied readied readying +reaffirm reaffirms reaffirmed reaffirmed reaffirming +realign realigns realigned realigned realigning +realise realises realised realised realising +realize realizes realized realized realizing +reallocate reallocates reallocated reallocated reallocating +ream reams reamed reamed reaming +reanimate reanimates reanimated reanimated reanimating +reap reaps reaped reaped reaping +reappear reappears reappeared reappeared reappearing +reapply reapplies reapplied reapplied reapplying +reappoint reappoints reappointed reappointed reappointing +reapportion reapportions reapportioned reapportioned reapportioning +reappraise reappraises reappraised reappraised reappraising +rear rears reared reared rearing +rear-end rear-ends rear-ended rear-ended rear-ending +reard reards rearded rearded rearding +rearend rearends rearended rearended rearending +rearm rearms rearmed rearmed rearming +rearrange rearranges rearranged rearranged rearranging +reason reasons reasoned reasoned reasoning +reassemble reassembles reassembled reassembled reassembling +reassert reasserts reasserted reasserted reasserting +reassess reassesses reassessed reassessed reassessing +reassign reassigns reassigned reassigned reassigning +reassure reassures reassured reassured reassuring +reave reaves reaved reaved reaving +reawaken reawakens reawakened reawakened reawakening +rebate rebates rebated rebated rebating +rebel rebels rebelled rebelled rebelling +rebellow rebellows rebellowed rebellowed rebellowing +reboot reboots rebooted rebooted rebooting +rebound rebounds rebounded rebounded rebounding +rebrand rebrands rebranded rebranded rebranding +rebuff rebuffs rebuffed rebuffed rebuffing +rebuild rebuilds rebuilt rebuilt rebuilding +rebuke rebukes rebuked rebuked rebuking +rebut rebuts rebutted rebutted rebutting +recalculate recalculates recalculated recalculated recalculating +recalesce recalesces recalesced recalesced recalescing +recall recalls recalled recalled recalling +recant recants recanted recanted recanting +recap recaps recapped recapped recapping +recapitulate recapitulates recapitulated recapitulated recapitulating +recapture recaptures recaptured recaptured recapturing +recast recasts recast recast recasting +recce recces recced recced recceing +recede recedes receded receded receding +receipt receipts receipted receipted receipting +receive receives received received receiving +recentralize recentralizes recentralized recentralized recentralizing +recess recesses recessed recessed recessing +recharge recharges recharged recharged recharging +rechip rechips rechipped rechipped rechipping +reciprocate reciprocates reciprocated reciprocated reciprocating +recite recites recited recited reciting +reck recks recked recked recking +reckon reckons reckoned reckoned reckoning +reclaim reclaims reclaimed reclaimed reclaiming +reclassify reclassifies reclassified reclassified reclassifying +recline reclines reclined reclined reclining +recognise recognises recognised recognised recognising +recognize recognizes recognized recognized recognizing +recoil recoils recoiled recoiled recoiling +recollect recollects recollected recollected recollecting +recommence recommences recommenced recommenced recommencing +recommend recommends recommended recommended recommending +recommit recommits recommitted recommitted recommitting +recompense recompenses recompensed recompensed recompensing +recompose recomposes recomposed recomposed recomposing +reconcile reconciles reconciled reconciled reconciling +recondition reconditions reconditioned reconditioned reconditioning +reconfigure reconfigures reconfigured reconfigured reconfiguring +reconfirm reconfirms reconfirmed reconfirmed reconfirming +reconnect reconnects reconnected reconnected reconnecting +reconnoitre reconnoitres reconnoitred reconnoitred reconnoitring +reconquer reconquers reconquered reconquered reconquering +reconsider reconsiders reconsidered reconsidered reconsidering +reconstitute reconstitutes reconstituted reconstituted reconstituting +reconstruct reconstructs reconstructed reconstructed reconstructing +reconvene reconvenes reconvened reconvened reconvening +reconvert reconverts reconverted reconverted reconverting +record records recorded recorded recording +recount recounts recounted recounted recounting +recoup recoups recouped recouped recouping +recover recovers recovered recovered recovering +recreate recreates recreated recreated recreating +recriminate recriminates recriminated recriminated recriminating +recrudesce recrudesces recrudesced recrudesced recrudescing +recruit recruits recruited recruited recruiting +recrystallize recrystallizes recrystallized recrystallized recrystallizing +rectify rectifies rectified rectified rectifying +recuperate recuperates recuperated recuperated recuperating +recur recurs recurred recurred recurring +recurve recurves recurved recurved recurving +recycle recycles recycled recycled recycling +red reds redded redded redding +redact redacts redacted redacted redacting +redden reddens reddened reddened reddening +reddle reddles reddled reddled reddling +rede redes reded reded reding +redecorate redecorates redecorated redecorated redecorating +redeem redeems redeemed redeemed redeeming +redefine redefines redefined redefined redefining +redeploy redeploys redeployed redeployed redeploying +redesign redesigns redesigned redesigned redesigning +redevelop redevelops redeveloped redeveloped redeveloping +redial redials redialled redialled redialling +redintegrate redintegrates redintegrated redintegrated redintegrating +redirect redirects redirected redirected redirecting +rediscover rediscovers rediscovered rediscovered rediscovering +redistribute redistributes redistributed redistributed redistributing +redistrict redistricts redistricted redistricted redistricting +redo redoes redid redone redoing +redouble redoubles redoubled redoubled redoubling +redound redounds redounded redounded redounding +redpencil redpencils redpencilled redpencilled redpencilling +redraft redrafts redrafted redrafted redrafting +redraw redraws redrew redrawn redrawing +redress redresses redressed redressed redressing +reduce reduces reduced reduced reducing +reduplicate reduplicates reduplicated reduplicated reduplicating +reecho reechoes reechoed reechoed reechoing +reed reeds reeded reeded reeding +reeducate reeducates reeducated reeducated reeducating +reef reefs reefed reefed reefing +reek reeks reeked reeked reeking +reel reels reeled reeled reeling +reelect reelects reelected reelected reelecting +reemerge reemerges reemerged reemerged reemerging +reemphasize reemphasizes reemphasized reemphasized reemphasizing +reenact reenacts reenacted reenacted reenacting +reengineer reengineers reengineered reengineered reengineering +reenter reenters reentered reentered reentering +reest reests reested reested reesting +reestablish reestablishes reestablished reestablished reestablishing +reevaluate reevaluates reevaluated reevaluated reevaluating +reeve reeves reeved reeved reeving +reexamine reexamines reexamined reexamined reexamining +reexport reexports reexported reexported reexporting +ref refs reffed reffed reffing +reface refaces refaced refaced refacing +refer refers referred referred referring +referee referees refereed refereed refereeing +reference references referenced referenced referencing +refile refiles refiled refiled refiling +refill refills refilled refilled refilling +refinance refinances refinanced refinanced refinancing +refine refines refined refined refining +refit refits refitted refitted refitting +reflate reflates reflated reflated reflating +reflect reflects reflected reflected reflecting +refloat refloats refloated refloated refloating +reflux refluxes refluxed refluxed refluxing +refocus refocuses refocused refocused refocusing +refocuse refocuses refocused refocused refocusing +reforest reforests reforested reforested reforesting +reform reforms reformed reformed reforming +reformat reformats reformatted reformatted reformatting +reformulate reformulates reformulated reformulated reformulating +refract refracts refracted refracted refracting +refrain refrains refrained refrained refraining +refresh refreshes refreshed refreshed refreshing +refrigerate refrigerates refrigerated refrigerated refrigerating +refuel refuels refuelled refuelled refuelling +refuge refuges refuged refuged refuging +refund refunds refunded refunded refunding +refurbish refurbishes refurbished refurbished refurbishing +refuse refuses refused refused refusing +refute refutes refuted refuted refuting +regain regains regained regained regaining +regale regales regaled regaled regaling +regard regards regarded regarded regarding +regelate regelates regelated regelated regelating +regenerate regenerates regenerated regenerated regenerating +regiment regiments regimented regimented regimenting +register registers registered registered registering +regorge regorges regorged regorged regorging +regrate regrates regrated regrated regrating +regress regresses regressed regressed regressing +regret regrets regretted regretted regretting +regroup regroups regrouped regrouped regrouping +regularise regularises regularised regularised regularising +regularize regularizes regularized regularized regularizing +regulate regulates regulated regulated regulating +regurgitate regurgitates regurgitated regurgitated regurgitating +rehabilitate rehabilitates rehabilitated rehabilitated rehabilitating +rehash rehashes rehashed rehashed rehashing +rehear rehears reheard reheard rehearing +rehearse rehearses rehearsed rehearsed rehearsing +reheat reheats reheated reheated reheating +rehome rehomes rehomed rehomed rehoming +rehouse rehouses rehoused rehoused rehousing +reify reifies reified reified reifying +reign reigns reigned reigned reigning +reignite reignites reignited reignited reigniting +reimburse reimburses reimbursed reimbursed reimbursing +reimport reimports reimported reimported reimporting +rein reins reined reined reining +reincarnate reincarnates reincarnated reincarnated reincarnating +reindict reindicts reindicted reindicted reindicting +reinforce reinforces reinforced reinforced reinforcing +reinstate reinstates reinstated reinstated reinstating +reinstitute reinstitutes reinstituted reinstituted reinstituting +reinsure reinsures reinsured reinsured reinsuring +reinterpret reinterprets reinterpreted reinterpreted reinterpreting +reintroduce reintroduces reintroduced reintroduced reintroducing +reinvent reinvents reinvented reinvented reinventing +reinvest reinvests reinvested reinvested reinvesting +reinvigorate reinvigorates reinvigorated reinvigorated reinvigorating +reissue reissues reissued reissued reissuing +reiterate reiterates reiterated reiterated reiterating +reive reives reived reived reiving +reject rejects rejected rejected rejecting +rejig rejigs rejigged rejigged rejigging +rejoice rejoices rejoiced rejoiced rejoicing +rejoin rejoins rejoined rejoined rejoining +rejuvenate rejuvenates rejuvenated rejuvenated rejuvenating +rejuvenesce rejuvenesces rejuvenesced rejuvenesced rejuvenescing +rekindle rekindles rekindled rekindled rekindling +relapse relapses relapsed relapsed relapsing +relate relates related related relating +relativize relativizes relativized relativized relativizing +relaunch relaunches relaunched relaunched relaunching +relax relaxes relaxed relaxed relaxing +relay relays relaid relaid relaying +release releases released released releasing +relegate relegates relegated relegated relegating +relent relents relented relented relenting +relieve relieves relieved relieved relieving +reline relines relined relined relining +relinquish relinquishes relinquished relinquished relinquishing +relish relishes relished relished relishing +relive relives relived relived reliving +reload reloads reloaded reloaded reloading +relocate relocates relocated relocated relocating +reluct relucts relucted relucted relucting +relumine relumines relumined relumined relumining +rely relies relied relied relying +remain remains remained remained remaining +remainder remainders remaindered remaindered remaindering +remake remakes remade remade remaking +remand remands remanded remanded remanding +remap remaps remapped remapped remapping +remark remarks remarked remarked remarking +remarry remarries remarried remarried remarrying +remaster remasters remastered remastered remastering +rematch rematches rematched rematched rematching +remediate remediates remediated remediated remediating +remedy remedies remedied remedied remedying +remember remembers remembered remembered remembering +remilitarize remilitarizes remilitarized remilitarized remilitarizing +remind reminds reminded reminded reminding +reminisce reminisces reminisced reminisced reminiscing +remise remises remised remised remising +remit remits remitted remitted remitting +remix remixes remixed remixed remixing +remodel remodels remodelled remodelled remodelling +remold remolds remolded remolded remolding +remonetize remonetizes remonetized remonetized remonetizing +remonstrate remonstrates remonstrated remonstrated remonstrating +remortgage remortgages remortgaged remortgaged remortgaging +remould remoulds remoulded remoulded remoulding +remount remounts remounted remounted remounting +remove removes removed removed removing +remunerate remunerates remunerated remunerated remunerating +rename renames renamed renamed renaming +rencounter rencounters rencountered rencountered rencountering +rend rends rent rent rending +render renders rendered rendered rendering +rendezvous rendezvouses rendezvoused rendezvoused rendezvousing +renege reneges reneged reneged reneging +renegotiate renegotiates renegotiated renegotiated renegotiating +renegue renegues renegued renegued reneguing +renew renews renewed renewed renewing +renounce renounces renounced renounced renouncing +renovate renovates renovated renovated renovating +rent rents rented rented renting +reoccur reoccurs reoccurred reoccurred reoccurring +reoffend reoffends reoffended reoffended reoffending +reopen reopens reopened reopened reopening +reorder reorders reordered reordered reordering +reorganise reorganises reorganised reorganised reorganising +reorganize reorganizes reorganized reorganized reorganizing +reorient reorients reoriented reoriented reorienting +reorientate reorientates reorientated reorientated reorientating +repackage repackages repackaged repackaged repackaging +repair repairs repaired repaired repairing +repartition repartitions repartitioned repartitioned repartitioning +repast repasts repasted repasted repasting +repatriate repatriates repatriated repatriated repatriating +repay repays repaid repaid repaying +repeal repeals repealed repealed repealing +repeat repeats repeated repeated repeating +repel repels repelled repelled repelling +repent repents repented repented repenting +rephrase rephrases rephrased rephrased rephrasing +repine repines repined repined repining +replace replaces replaced replaced replacing +replatform replatforms replatformed replatformed replatforming +replay replays replayed replayed replaying +replenish replenishes replenished replenished replenishing +replevin replevins replevined replevined replevining +replevy replevies replevied replevied replevying +replicate replicates replicated replicated replicating +reply replies replied replied replying +repoint repoints repointed repointed repointing +repone repones reponed reponed reponing +report reports reported reported reporting +repose reposes reposed reposed reposing +reposit reposits reposited reposited repositing +reposition repositions repositioned repositioned repositioning +repossess repossesses repossessed repossessed repossessing +repot repots repotted repotted repotting +reprehend reprehends reprehended reprehended reprehending +represent represents represented represented representing +repress represses repressed repressed repressing +reprieve reprieves reprieved reprieved reprieving +reprimand reprimands reprimanded reprimanded reprimanding +reprint reprints reprinted reprinted reprinting +reprise reprises reprised reprised reprising +reproach reproaches reproached reproached reproaching +reprobate reprobates reprobated reprobated reprobating +reprocess reprocesses reprocessed reprocessed reprocessing +reproduce reproduces reproduced reproduced reproducing +reprove reproves reproved reproved reproving +reprove reproves reproved reproven reproving +republicanize republicanizes republicanized republicanized republicanizing +repudiate repudiates repudiated repudiated repudiating +repugn repugns repugned repugned repugning +repulse repulses repulsed repulsed repulsing +repurchase repurchases repurchased repurchased repurchasing +repurpose repurposes repurposed repurposed repurposing +repute reputes reputed reputed reputing +request requests requested requested requesting +require requires required required requiring +requisition requisitions requisitioned requisitioned requisitioning +requite requites requited requited requiting +reread rereads reread reread rereading +rerelease rereleases rereleased rereleased rereleasing +reroute reroutes rerouted rerouted rerouting +rerun reruns reran rerun rerunning +reschedule reschedules rescheduled rescheduled rescheduling +rescind rescinds rescinded rescinded rescinding +rescue rescues rescued rescued rescuing +research researches researched researched researching +reseat reseats reseated reseated reseating +resect resects resected resected resecting +resell resells resold resold reselling +resemble resembles resembled resembled resembling +resent resents resented resented resenting +reserve reserves reserved reserved reserving +reset resets reset reset resetting +resettle resettles resettled resettled resettling +reshape reshapes reshaped reshaped reshaping +reshuffle reshuffles reshuffled reshuffled reshuffling +reside resides resided resided residing +resign resigns resigned resigned resigning +resile resiles resiled resiled resiling +resin resins resined resined resining +resinate resinates resinated resinated resinating +resise resises resised resised resising +resist resists resisted resisted resisting +resit resits resat resat resitting +resize resizes resized resized resizing +reskill reskills reskilled reskilled reskilling +resole resoles resoled resoled resoling +resolve resolves resolved resolved resolving +resonate resonates resonated resonated resonating +resorb resorbs resorbed resorbed resorbing +resort resorts resorted resorted resorting +resound resounds resounded resounded resounding +resource resources resourced resourced resourcing +respawn respawns respawned respawned respawning +respect respects respected respected respecting +respire respires respired respired respiring +respite respites respited respited respiting +respond responds responded responded responding +respray resprays resprayed resprayed respraying +rest rests rested rested resting +restart restarts restarted restarted restarting +restate restates restated restated restating +restock restocks restocked restocked restocking +restore restores restored restored restoring +restrain restrains restrained restrained restraining +restrict restricts restricted restricted restricting +restring restrings restrung restrung restringing +restructure restructures restructured restructured restructuring +resubmit resubmits resubmited resubmited resubmiting +result results resulted resulted resulting +resume resumes resumed resumed resuming +resupply resupplies resupplied resupplied resupplying +resurface resurfaces resurfaced resurfaced resurfacing +resurge resurges resurged resurged resurging +resurrect resurrects resurrected resurrected resurrecting +resuscitate resuscitates resuscitated resuscitated resuscitating +ret rets retted retted retting +retail retails retailed retailed retailing +retain retains retained retained retaining +retake retakes retook retaken retaking +retaliate retaliates retaliated retaliated retaliating +retard retards retarded retarded retarding +retch retches retched retched retching +retell retells retold retold retelling +retest retests retested retested retesting +rethink rethinks rethought rethought rethinking +reticulate reticulates reticulated reticulated reticulating +retire retires retired retired retiring +retool retools retooled retooled retooling +retort retorts retorted retorted retorting +retouch retouches retouched retouched retouching +retrace retraces retraced retraced retracing +retract retracts retracted retracted retracting +retrain retrains retrained retrained retraining +retread retreads retreaded retreaded retreading +retreat retreats retreated retreated retreating +retrench retrenches retrenched retrenched retrenching +retrieve retrieves retrieved retrieved retrieving +retroact retroacts retroacted retroacted retroacting +retrocede retrocedes retroceded retroceded retroceding +retrofit retrofits retrofitted retrofitted retrofitting +retrograde retrogrades retrograded retrograded retrograding +retrogress retrogresses retrogressed retrogressed retrogressing +retroject retrojects retrojected retrojected retrojecting +retrospect retrospects retrospected retrospected retrospecting +retry retries retried retried retrying +return returns returned returned returning +retweet retweets retweeted retweeted retweeting +reunify reunifies reunified reunified reunifying +reunite reunites reunited reunited reuniting +reuse reuses reused reused reusing +rev revs revved revved revving +revalorize revalorizes revalorized revalorized revalorizing +revalue revalues revalued revalued revaluing +revamp revamps revamped revamped revamping +reveal reveals revealed revealed revealing +revegetate revegetates revegetated revegetated revegetating +revel revels revelled revelled revelling +revenge revenges revenged revenged revenging +reverberate reverberates reverberated reverberated reverberating +revere reveres revered revered revering +reverence reverences reverenced reverenced reverencing +reverse reverses reversed reversed reversing +revert reverts reverted reverted reverting +revest revests revested revested revesting +revet revets revetted revetted revetting +review reviews reviewed reviewed reviewing +revile reviles reviled reviled reviling +revise revises revised revised revising +revisit revisits revisited revisited revisiting +revitalise revitalises revitalised revitalised revitalising +revitalize revitalizes revitalized revitalized revitalizing +revive revives revived revived reviving +revivify revivifies revivified revivified revivifying +revoice revoices revoiced revoiced revoicing +revoke revokes revoked revoked revoking +revolt revolts revolted revolted revolting +revolutionise revolutionises revolutionised revolutionised revolutionising +revolutionize revolutionizes revolutionized revolutionized revolutionizing +revolve revolves revolved revolved revolving +reward rewards rewarded rewarded rewarding +rewind rewinds rewound rewound rewinding +rewire rewires rewired rewired rewiring +reword rewords reworded reworded rewording +rework reworks reworked reworked reworking +rewrite rewrites rewrote rewritten rewriting +rhapsodise rhapsodises rhapsodised rhapsodised rhapsodising +rhapsodize rhapsodizes rhapsodized rhapsodized rhapsodizing +rhubarb rhubarbs rhubarbed rhubarbed rhubarbing +rhyme rhymes rhymed rhymed rhyming +rib ribs ribbed ribbed ribbing +ribbon ribbons ribboned ribboned ribboning +rice rices riced riced ricing +rick ricks ricked ricked ricking +ricochet ricochets ricocheted ricocheted ricocheting +rid rids rid rid ridding +rid rids ridded ridded ridding +riddle riddles riddled riddled riddling +ride rides rode ridden riding +ridge ridges ridged ridged ridging +ridicule ridicules ridiculed ridiculed ridiculing +riff riffs riffed riffed riffing +riffle riffles riffled riffled riffling +rifle rifles rifled rifled rifling +rift rifts rifted rifted rifting +rig rigs rigged rigged rigging +right rights righted righted righting +right-click right-clicks right-clicked right-clicked right-clicking +rightclick rightclicks rightclicked rightclicked rightclicking +righten rightens rightened rightened rightening +rightsise rightsises rightsised rightsised rightsising +rightsize rightsizes rightsized rightsized rightsizing +rigidify rigidifies rigidified rigidified rigidifying +rile riles riled riled riling +rim rims rimmed rimmed rimming +rime rimes rimed rimed riming +ring rings rang rung ringing +ring rings ringed ringed ringing +ring-fence ring-fenced ring-fenced ring-fenced ring-fencing +ringfence ringfenced ringfenced ringfenced ringfencing +ringfence ringfences ringfenced ringfenced ringfencing +rinse rinses rinsed rinsed rinsing +riot riots rioted rioted rioting +rip rips ripped ripped ripping +ripen ripens ripened ripened ripening +riposte ripostes riposted riposted riposting +ripple ripples rippled rippled rippling +rise rises rose risen rising +risk risks risked risked risking +ritualise ritualises ritualised ritualised ritualising +ritualize ritualizes ritualized ritualized ritualizing +rival rivals rivalled rivalled rivalling +rive rives rived riven riving +rivet rivets riveted riveted riveting +road-test road-tests road-tested road-tested road-testing +roadtest roadtests roadtested roadtested roadtesting +roam roams roamed roamed roaming +roar roars roared roared roaring +roast roasts roasted roasted roasting +rob robs robbed robbed robbing +robe robes robed robed robing +rock rocks rocked rocked rocking +rock-and-roll rock-and-rolls rock-and-rolled rock-and-rolled rock-and-rolling +rocket rockets rocketed rocketed rocketing +rodomontade rodomontades rodomontaded rodomontaded rodomontading +roger rogers rogered rogered rogering +roil roils roiled roiled roiling +roister roisters roistered roistered roistering +role-play role-plays role-played role-played role-playing +roleplay roleplays roleplayed roleplayed roleplaying +roll rolls rolled rolled rolling +roller skate roller skates roller skated roller skated roller skating +rollerblade rollerblades rollerbladed rollerbladed rollerblading +rollerskate rollerskates rollerskated rollerskated rollerskating +rollick rollicks rollicked rollicked rollicking +romance romances romanced romanced romancing +romanize romanizes romanized romanized romanizing +romanticise romanticises romanticised romanticised romanticising +romanticize romanticizes romanticized romanticized romanticizing +romp romps romped romped romping +rone rones roned roned roning +roneo roneos roneoed roneoed roneoing +rontgenize rontgenizes rontgenized rontgenized rontgenizing +roof roofs roofed roofed roofing +rook rooks rooked rooked rooking +room rooms roomed roomed rooming +roose rooses roosed roosed roosing +roost roosts roosted roosted roosting +root roots rooted rooted rooting +rootle rootles rootled rootled rootling +rope ropes roped roped roping +roquet roquets roqueted roqueted roqueting +rort rorts rorted rorted rorting +rosin rosins rosined rosined rosining +roster rosters rostered rostered rostering +rot rots rotted rotted rotting +rotate rotates rotated rotated rotating +rouge rouges rouged rouged rouging +rough roughs roughed roughed roughing +rough-cut rough-cuts rough-cut rough-cut rough-cutting +rough-house rough-houses roughhoused rough-housed rough-housing +roughcast rough-casts roughcast roughcast rough-casting +roughcut roughcuts roughcut roughcut roughcutting +roughdry roughdries roughdried roughdried roughdrying +roughen roughens roughened roughened roughening +roughhew roughhews roughhewn roughhewn roughhewing +roughhouse roughhouses roughhoused roughhoused roughhousing +round rounds rounded rounded rounding +roup roups rouped rouped rouping +rouse rouses roused roused rousing +roust rousts rousted rousted rousting +rout routs routed routed routing +route routes routed routed routing +rove roves roved roved roving +row rows rowed rowed rowing +rowel rowels rowelled rowelled rowelling +rub rubs rubbed rubbed rubbing +rubber rubbers rubbered rubbered rubbering +rubber-stamp rubber-stamps rubber-stamped rubber-stamped rubber-stamping +rubberize rubberizes rubberized rubberized rubberizing +rubberneck rubbernecks rubbernecked rubbernecked rubbernecking +rubberstamp rubberstamps rubberstamped rubberstamped rubberstamping +rubbish rubbishes rubbished rubbished rubbishing +rubefy rubefies rubefied rubefied rubefying +rubricate rubricates rubricated rubricated rubricating +ruck rucks rucked rucked rucking +ruddle ruddles ruddled ruddled ruddling +rue rues rued rued rueing +ruff ruffs ruffed ruffed ruffing +ruffle ruffles ruffled ruffled ruffling +ruggedize ruggedizes ruggedized ruggedized ruggedizing +ruin ruins ruined ruined ruining +rule rules ruled ruled ruling +rumble rumbles rumbled rumbled rumbling +ruminate ruminates ruminated ruminated ruminating +rummage rummages rummaged rummaged rummaging +rumour rumours rumoured rumoured rumouring +rumple rumples rumpled rumpled rumpling +run runs ran run running +rupture ruptures ruptured ruptured rupturing +ruralize ruralizes ruralized ruralized ruralizing +rush rushes rushed rushed rushing +russianize russianizes russianized russianized russianizing +rust rusts rusted rusted rusting +rusticate rusticates rusticated rusticated rusticating +rustle rustles rustled rustled rustling +rut ruts rutted rutted rutting +saber sabers sabered sabered sabering +sabotage sabotages sabotaged sabotaged sabotaging +saccharize saccharizes saccharized saccharized saccharizing +sack sacks sacked sacked sacking +sacrifice sacrifices sacrificed sacrificed sacrificing +sadden saddens saddened saddened saddening +saddle saddles saddled saddled saddling +safeconduct safeconducts safeconducted safeconducted safeconducting +safeguard safeguards safeguarded safeguarded safeguarding +safety safeties safetied safetied safetying +sag sags sagged sagged sagging +sail sails sailed sailed sailing +sain sains sained sained saining +saint saints sainted sainted sainting +salaam salaams salaamed salaamed salaaming +salify salifies salified salified salifying +salivate salivates salivated salivated salivating +sallow sallows sallowed sallowed sallowing +sally sallies sallied sallied sallying +salt salts salted salted salting +salute salutes saluted saluted saluting +salvage salvages salvaged salvaged salvaging +salve salves salved salved salving +samba sambas sambaed sambaed sambaing +sample samples sampled sampled sampling +sanctify sanctifies sanctified sanctified sanctifying +sanction sanctions sanctioned sanctioned sanctioning +sand sands sanded sanded sanding +sand-blast sand-blasts sandblasted sandblasted sandblasting +sandbag sandbags sandbagged sandbagged sandbagging +sandblast sandblasts sandblasted sandblasted sandblasting +sandcast sandcasts sandcast sandcast sandcasting +sandpaper sandpapers sandpapered sandpapered sandpapering +sandwich sandwiches sandwiched sandwiched sandwiching +sanforize sanforizes sanforized sanforized sanforizing +sanitise sanitises sanitised sanitised sanitising +sanitize sanitizes sanitized sanitized sanitizing +sap saps sapped sapped sapping +saponify saponifies saponified saponified saponifying +sash sashes sashed sashed sashing +sashay sashays sashayed sashayed sashaying +sass sasses sassed sassed sassing +sate sates sated sated sating +satiate satiates satiated satiated satiating +satirise satirises satirised satirised satirising +satirize satirizes satirized satirized satirizing +satisfy satisfies satisfied satisfied satisfying +saturate saturates saturated saturated saturating +sauce sauces sauced sauced saucing +saunter saunters sauntered sauntered sauntering +saut_e saut_es saut_eed saut_eed saut_eing +saut‹¨« saut‹¨«s saut‹¨«ed saut‹¨«ed saut‹¨«ing +savage savages savaged savaged savaging +save saves saved saved saving +savor savors savored savored savoring +savour savours savoured savoured savouring +savvy savvies savvied savvied savvying +saw saws sawed sawed sawing +saw saws sawed sawn sawing +say says said said saying +scab scabs scabbed scabbed scabbing +scabble scabbles scabbled scabbled scabbling +scaffold scaffolds scaffolded scaffolded scaffolding +scag scags scagged scagged scagging +scald scalds scalded scalded scalding +scale scales scaled scaled scaling +scallop scallops scalloped scalloped scalloping +scalp scalps scalped scalped scalping +scamp scamps scamped scamped scamping +scamper scampers scampered scampered scampering +scan scans scanned scanned scanning +scandal scandals scandaled scandaled scandaling +scandalise scandalises scandalised scandalised scandalising +scandalize scandalizes scandalized scandalized scandalizing +scant scants scanted scanted scanting +scape scapes scaped scaped scaping +scapegoat scapegoats scapegoated scapegoated scapegoating +scar scars scarred scarred scarring +scare scares scared scared scaring +scarf scarfs scarfed scarfed scarfing +scarify scarifies scarified scarified scarifying +scarp scarps scarped scarped scarping +scarper scarpers scarpered scarpered scarpering +scat scats scatted scatted scatting +scathe scathes scathed scathed scathing +scatter scatters scattered scattered scattering +scavenge scavenges scavenged scavenged scavenging +scend scends sended sended scending +scent scents scented scented scenting +sceptre sceptres sceptred sceptred sceptring +schedule schedules scheduled scheduled scheduling +schematise schematises schematised schematised schematising +schematize schematizes schematized schematized schematizing +scheme schemes schemed schemed scheming +schlep schleps schlepped schlepped schlepping +schmooze schmoozes schmoozed schmoozed schmoozing +school schools schooled schooled schooling +schuss schusses schussed schussed schussing +scintillate scintillates scintillated scintillated scintillating +scissor scissors scissored scissored scissoring +sclaff sclaffs sclaffed sclaffed sclaffing +scoff scoffs scoffed scoffed scoffing +scold scolds scolded scolded scolding +scollop scollops scolloped scolloped scolloping +sconce sconces sconced sconced sconcing +scooch scooches scooched scooched scooching +scoop scoops scooped scooped scooping +scoot scoots scooted scooted scooting +scootch scootches scootched scootched scootching +scope scopes scoped scoped scoping +scorch scorches scorched scorched scorching +score scores scored scored scoring +scorify scorifies scorified scorified scorifying +scorn scorns scorned scorned scorning +scotch scotches scotched scotched scotching +scour scours scoured scoured scouring +scourge scourges scourged scourged scourging +scout scouts scouted scouted scouting +scowl scowls scowled scowled scowling +scrabble scrabbles scrabbled scrabbled scrabbling +scrag scrags scragged scragged scragging +scram scrams scrammed scrammed scramming +scramb scrambs scrambed scrambed scrambing +scramble scrambles scrambled scrambled scrambling +scrap scraps scrapped scrapped scrapping +scrape scrapes scraped scraped scraping +scratch scratches scratched scratched scratching +scrawl scrawls scrawled scrawled scrawling +screak screaks screaked screaked screaking +scream screams screamed screamed screaming +screech screeches screeched screeched screeching +screen screens screened screened screening +screen-print screen-prints screen-printed screen-printed screen-printing +screenprint screenprints screenprinted screenprinted screenprinting +screw screws screwed screwed screwing +scribble scribbles scribbled scribbled scribbling +scribe scribes scribed scribed scribing +scrimmage scrimmages scrimmaged scrimmaged scrimmaging +scrimp scrimps scrimped scrimped scrimping +scrimshank scrimshanks scrimshanked scrimshanked scrimshanking +scrimshaw scrimshaws scrimshawed scrimshawed scrimshawing +script scripts scripted scripted scripting +scroll scrolls scrolled scrolled scrolling +scroop scroops scrooped scrooped scrooping +scrouge scrouges scrouged scrouged scrouging +scrounge scrounges scrounged scrounged scrounging +scrub scrubs scrubbed scrubbed scrubbing +scrum scrums scrummed scrummed scrumming +scrummage scrummages scrummaged scrummaged scrummaging +scrump scrumps scrumped scrumped scrumping +scrunch scrunches scrunched scrunched scrunching +scrunch-dry scrunch-dries scrunch-dried scrunch-dried scrunch-drying +scrunchdry scrunchdries scrunchdried scrunchdried scrunchdrying +scruple scruples scrupled scrupled scrupling +scrutinise scrutinises scrutinised scrutinised scrutinising +scrutinize scrutinizes scrutinized scrutinized scrutinizing +scry scries scried scried scrying +scud scuds scudded scudded scudding +scuff scuffs scuffed scuffed scuffing +scuffle scuffles scuffled scuffled scuffling +scull sculls sculled sculled sculling +sculpt sculpts sculpted sculpted sculpting +sculpture sculptures sculptured sculptured sculpturing +scum scums scummed scummed scumming +scumble scumbles scumbled scumbled scumbling +scunge scunges scunged scunged scunging +scunner scunners scunnered scunnered scunnering +scupper scuppers scuppered scuppered scuppering +scurry scurries scurried scurried scurrying +scutch scutches scutched scutched scutching +scutter scutters scuttered scuttered scuttering +scuttle scuttles scuttled scuttled scuttling +scythe scythes scythed scythed scything +seal seals sealed sealed sealing +seam seams seamed seamed seaming +sear sears seared seared searing +search searches searched searched searching +season seasons seasoned seasoned seasoning +seat seats seated seated seating +secede secedes seceded seceded seceding +secern secerns secerned secerned secerning +seclude secludes secluded secluded secluding +second seconds seconded seconded seconding +second-guess second-guesses second-guessed second-guessed second-guessing +secondguess secondguesses secondguessed secondguessed secondguessing +secrete secretes secreted secreted secreting +sectarianize sectarianizes sectarianized sectarianized sectarianizing +section sections sectioned sectioned sectioning +sectionalize sectionalizes sectionalized sectionalized sectionalizing +secularise secularises secularised secularised secularising +secularize secularizes secularized secularized secularizing +secure secures secured secured securing +sedate sedates sedated sedated sedating +seduce seduces seduced seduced seducing +see sees saw seen seeing +see-saw see-saws see-sawed see-sawed see-sawing +see-saw see-saws see-sawed see-sawn see-sawing +seed seeds seeded seeded seeding +seek seeks sought sought seeking +seel seels seeled seeled seeling +seem seems seemed seemed seeming +seep seeps seeped seeped seeping +seesaw seesaws seesawed seesawed seesawing +seesaw seesaws seesawed seesawn seesawing +seethe seethes seethed seethed seething +segment segments segmented segmented segmenting +segregate segregates segregated segregated segregating +segue segues segued segued segueing +seine seines seined seined seining +seise seises seised seised seising +seize seizes seized seized seizing +select selects selected selected selecting +self-destruct self-destructs self-destructed self-destructed self-destructing +self-harm self-harms self-harmed self-harmed self-harming +selfdestruct selfdestructs selfdestructed selfdestructed selfdestructing +selfharm selfharms selfharmed selfharmed selfharming +sell sells sold sold selling +sellotape sellotapes sellotaped sellotaped sellotaping +semaphore semaphores semaphored semaphored semaphoring +send sends sent sent sending +sendoff sendoffs sendoffed sendoffed sendoffing +sensationalise sensationalises sensationalised sensationalised sensationalising +sensationalize sensationalizes sensationalized sensationalized sensationalizing +sense senses sensed sensed sensing +sensitise sensitises sensitised sensitised sensitising +sensitize sensitizes sensitized sensitized sensitizing +sentence sentences sentenced sentenced sentencing +sentimentalise sentimentalises sentimentalised sentimentalised sentimentalising +sentimentalize sentimentalizes sentimentalized sentimentalized sentimentalizing +sentinel sentinels sentineled sentineled sentineling +separate separates separated separated separating +septuple septuples septupled septupled septupling +sepulchre sepulchres sepulchred sepulchred sepulchring +sequence sequences sequenced sequenced sequencing +sequester sequesters sequestered sequestered sequestering +sequestrate sequestrates sequestrated sequestrated sequestrating +sere seres sered sered sering +serenade serenades serenaded serenaded serenading +serialise serialises serialised serialised serialising +serialize serializes serialized serialized serializing +sermonise sermonises sermonised sermonised sermonising +sermonize sermonizes sermonized sermonized sermonizing +serrate serrates serrated serrated serrating +serve serves served served serving +service services serviced serviced servicing +set sets set set setting +settle settles settled settled settling +sever severs severed severed severing +sew sews sewed sewed sewing +sew sews sewed sewn sewing +sewer sewers sewered sewered sewering +sex sexes sexed sexed sexing +sext sexts sexted sexted sexting +sextuplicate sextuplicates sextuplicated sextuplicated sextuplicating +sexualise sexualises sexualised sexualised sexualising +sexualize sexualizes sexualized sexualized sexualizing +shack shacks shacked shacked shacking +shackle shackles shackled shackled shackling +shade shades shaded shaded shading +shadow shadows shadowed shadowed shadowing +shadow-box shadow-boxes shadow-boxed shadow-boxed shadow-boxing +shadowbox shadowboxes shadowboxed shadowboxed shadowboxing +shaft shafts shafted shafted shafting +shag shags shagged shagged shagging +shake shakes shook shaken shaking +shallow shallows shallowed shallowed shallowing +shalt shalts shalted shalted shalting +sham shams shammed shammed shamming +shamble shambles shambled shambled shambling +shame shames shamed shamed shaming +shampoo shampoos shampooed shampooed shampooing +shanghai shanghais shanghaied shanghaied shanghaiing +shank shanks shanked shanked shanking +shape shapes shaped shaped shaping +share shares shared shared sharing +sharecrop sharecrops sharecropped sharecropped sharecropping +shark sharks sharked sharked sharking +sharp sharps sharped sharped sharping +sharpen sharpens sharpened sharpened sharpening +shatter shatters shattered shattered shattering +shave shaves shaved shaved shaving +shave shaves shaved shaven shaving +sheaf sheaves sheafed sheafed sheafing +shear shears sheared sheared shearing +shear shears sheared shorn shearing +sheath sheaths sheathed sheathed sheathing +sheathe sheathes sheathed sheathed sheathing +sheave sheaves sheaved sheaved sheaving +shed sheds shed shed shedding +sheen sheens sheened sheened sheening +sheer sheers sheered sheered sheering +sheet sheets sheeted sheeted sheeting +shell shells shelled shelled shelling +shellac shellacs shellacked shellacked shellacking +shelter shelters sheltered sheltered sheltering +shelve shelves shelved shelved shelving +shend shends shent shent shending +shepherd shepherds shepherded shepherded shepherding +sherardize sherardizes sherardized sherardized sherardizing +shew shews shewed shewn shewing +shield shields shielded shielded shielding +shift shifts shifted shifted shifting +shikar shikars shikarred shikarred shikarring +shilly-shally shilly-shallies shilly-shallied shilly-shallied shilly-shallying +shillyshally shillyshallies shillyshallied shillyshallied shillyshallying +shim shims shimmed shimmed shimming +shimmer shimmers shimmered shimmered shimmering +shimmy shimmies shimmied shimmied shimmying +shin shins shinned shinned shinning +shine shines shone shone shining +shingle shingles shingled shingled shingling +shinny shinnies shinnied shinnied shinnying +shinty shinties shintied shintied shintying +ship ships shipped shipped shipping +shipwreck shipwrecks shipwrecked shipwrecked shipwrecking +shire shires shired shired shiring +shirk shirks shirked shirked shirking +shirr shirrs shirred shirred shirring +shit shits shit shit shitting +shiver shivers shivered shivered shivering +shoal shoals shoaled shoaled shoaling +shock shocks shocked shocked shocking +shoe shoes shod shod shoeing +shoehorn shoehorns shoehorned shoehorned shoehorning +shoo shoos shooed shooed shooing +shoogle shoogles shoogled shoogled shoogling +shoot shoots shot shot shooting +shop shops shopped shopped shopping +shop-lift shop-lifts shop-lifted shop-lifted shop-lifting +shoplift shoplifts shoplifted shoplifted shoplifting +shore shores shored shored shoring +short shorts shorted shorted shorting +short-change short-changes short-changed short-changed short-changing +short-circuit short-circuits short-circuited short-circuited short-circuiting +short-list short-lists short-listed short-listed short-listing +short-sheet short-sheets short-sheeted short-sheeted short-sheeting +shortchange shortchanges shortchanged shortchanged shortchanging +shortcircuit shortcircuits shortcircuited shortcircuited shortcircuiting +shorten shortens shortened shortened shortening +shortlist shortlists shortlisted shortlisted shortlisting +shortsheet shortsheets shortsheeted shortsheeted shortsheeting +shotgun shotguns shotgunned shotgunned shotgunning +shoulder shoulders shouldered shouldered shouldering +shout shouts shouted shouted shouting +shove shoves shoved shoved shoving +shovel shovels shovelled shovelled shovelling +show shows showed showed showing +show shows showed shown showing +showboat showboats showboated showboated showboating +showcase showcases showcased showcased showcasing +showd showds showded showded showding +shower showers showered showered showering +shrank shranks shranked shranked shranking +shred shreds shredded shredded shredding +shriek shrieks shrieked shrieked shrieking +shrill shrills shrilled shrilled shrilling +shrimp shrimps shrimped shrimped shrimping +shrine shrines shrined shrined shrining +shrink shrinks shrank shrunk shrinking +shrinkwrap shrinkwraps shrinkwrapped shrinkwrapped shrinkwrapping +shrive shrives shrove shriven shriving +shrivel shrivels shrivelled shrivelled shrivelling +shroff shroffs shroffed shroffed shroffing +shroom shrooms shroomed shroomed shrooming +shroud shrouds shrouded shrouded shrouding +shrug shrugs shrugged shrugged shrugging +shrunk shrunks shrunked shrunked shrunking +shtup shtups shtupped shtupped shtupping +shuck shucks shucked shucked shucking +shudder shudders shuddered shuddered shuddering +shuffle shuffles shuffled shuffled shuffling +shun shuns shunned shunned shunning +shunt shunts shunted shunted shunting +shush shushes shushed shushed shushing +shut shuts shut shut shutting +shutter shutters shuttered shuttered shuttering +shuttle shuttles shuttled shuttled shuttling +shy shies shied shied shying +sibilate sibilates sibilated sibilated sibilating +sic sics sicced sicced siccing +sick sicks sicked sicked sicking +sicken sickens sickened sickened sickening +side sides sided sided siding +side-dress side-dresses side-dressed side-dressed side-dressing +side-foot side-foots side-footed side-footed side-footing +sidefoot sidefoots sidefooted sidefooted sidefooting +sideline sidelines sidelined sidelined sidelining +sideslip sideslips sideslipped side-slipped side-slipping +sidestep sidesteps sidestepped sidestepped sidestepping +sideswipe sideswipes sideswiped sideswiped sideswiping +sidetrack sidetracks sidetracked sidetracked sidetracking +sidle sidles sidled sidled sidling +siege sieges sieged sieged sieging +sieve sieves sieved sieved sieving +sift sifts sifted sifted sifting +sigh sighs sighed sighed sighing +sight sights sighted sighted sighting +sight-read sight-reads sight-read sight-read sight-reading +sightread sightreads sightread sightread sightreading +sightsee sightsees sightsaw sightseen sightseeing +sign signs signed signed signing +signal signals signalled signalled signalling +signalize signalizes signalized signalized signalizing +signet signets signeted signeted signeting +signify signifies signified signified signifying +signpost signposts signposted signposted signposting +sile siles siled siled siling +silence silences silenced silenced silencing +silhouette silhouettes silhouetted silhouetted silhouetting +silicify silicifies silicified silicified silicifying +silk silks silked silked silking +silk-screen silk-screens silk-screened silk-screened silk-screening +silkscreen silkscreens silkscreened silkscreened silkscreening +silt silts silted silted silting +silver silvers silvered silvered silvering +silver-plate silver-plates silver-plated silver-plated silver-plating +simmer simmers simmered simmered simmering +simper simpers simpered simpered simpering +simplify simplifies simplified simplified simplifying +simulate simulates simulated simulated simulating +simulcast simulcasts simulcast simulcast simulcasting +sin sins sinned sinned sinning +sing sings sang sung singing +singe singes singed singed singeing +single singles singled singled singling +single-step single-steps single-stepped single-stepped single-stepping +single-tongue single-tongues single-tongued single-tongued single-tonguing +singlefoot singlefoots singlefooted singlefooted singlefooting +singlespace singlespaces singlespaced singlespaced singlespacing +singularize singularizes singularized singularized singularizing +sink sinks sank sunk sinking +sink sinks sunk sunken sinking +sinter sinters sintered sintered sintering +sip sips sipped sipped sipping +siphon siphons siphoned siphoned siphoning +sire sires sired sired siring +sise sises sised sised sising +sit sits sat sat sitting +site sites sited sited siting +situate situates situated situated situating +siwash siwashes siwashed siwashed siwashing +size sizes sized sized sizing +sizzle sizzles sizzled sizzled sizzling +sjambok sjamboks sjamboked sjamboked sjamboking +skate skates skated skated skating +skateboard skateboards skateboarded skateboarded skateboarding +skedaddle skedaddles skedaddled skedaddled skedaddling +skeeve skeeves skeeved skeeved skeeving +skeletonize skeletonizes skeletonized skeletonized skeletonizing +skelly skellies skellied skellied skellying +skelp skelps skelped skelped skelping +sken skens skenned skenned skenning +sket skets sketted sketted sketting +sketch sketches sketched sketched sketching +skew skews skewed skewed skewing +skewer skewers skewered skewered skewering +ski skis skied skied skiing +ski-jump ski-jumps ski-jumped ski-jumped ski-jumping +skid skids skidded skidded skidding +skim skims skimmed skimmed skimming +skimp skimps skimped skimped skimping +skin skins skinned skinned skinning +skinder skinders skindered skindered skindering +skinnydip skinnydips skinnydipped skinnydipped skinnydipping +skinpop skinpops skinpopped skinpopped skinpopping +skip skips skipped skipped skipping +skipper skippers skippered skippered skippering +skirl skirls skirled skirled skirling +skirmish skirmishes skirmished skirmished skirmishing +skirr skirrs skirred skirred skirring +skirt skirts skirted skirted skirting +skite skites skited skited skiting +skitter skitters skittered skittered skittering +skive skives skived skived skiving +skivvy skivvies skivvied skivvied skivvying +skulk skulks skulked skulked skulking +skunks skunkses skunksed skunksed skunksing +sky skies skied skied skying +sky-rocket sky-rockets skyrocketed sky-rocketed sky-rocketing +skydive skydives skydived skydived skydiving +skyjack skyjacks skyjacked skyjacked skyjacking +skylark skylarks skylarked skylarked skylarking +skype skypes skyped skyped skyping +skyrocket skyrockets skyrocketed skyrocketed skyrocketing +slab slabs slabbed slabbed slabbing +slack slacks slacked slacked slacking +slacken slackens slackened slackened slackening +slag slags slagged slagged slagging +slake slakes slaked slaked slaking +slalom slaloms slalomed slalomed slaloming +slam slams slammed slammed slamming +slam-dunk slam-dunks slam-dunked slam-dunked slam-dunking +slamdunk slamdunks slamdunked slamdunked slamdunking +slander slanders slandered slandered slandering +slang slangs slanged slanged slanging +slant slants slanted slanted slanting +slap slaps slapped slapped slapping +slash slashes slashed slashed slashing +slat slats slatted slatted slatting +slate slates slated slated slating +slather slathers slathered slathered slathering +slaughter slaughters slaughtered slaughtered slaughtering +slave slaves slaved slaved slaving +slaver slavers slavered slavered slavering +slay slays slew slain slaying +sleave sleaves sleaved sleaved sleaving +sled sleds sledded sledded sledding +sledge sledges sledged sledged sledging +sledgehammer sledgehammers sledgehammered sledgehammered sledgehammering +sleek sleeks sleeked sleeked sleeking +sleep sleeps slept slept sleeping +sleepwalk sleepwalks sleepwalked sleepwalked sleepwalking +sleet sleets sleeted sleeted sleeting +sleeve sleeves sleeved sleeved sleeving +sleigh sleighs sleighed sleighed sleighing +slenderize slenderizes slenderized slenderized slenderizing +sleuth sleuths sleuthed sleuthed sleuthing +slew slews slewed slewed slewing +slice slices sliced sliced slicing +slick slicks slicked slicked slicking +slide slides slid slid sliding +slight slights slighted slighted slighting +slim slims slimmed slimmed slimming +slime slimes slimed slimed sliming +sling slings slung slung slinging +slink slinks slinked slinked slinking +slink slinks slunk slunk slinking +slip slips slipped slipped slipping +slipper slippers slippered slippered slippering +slipsheet slipsheets slipsheeted slipsheeted slipsheeting +slit slits slit slit slitting +slither slithers slithered slithered slithering +sliver slivers slivered slivered slivering +slob slobs slobbed slobbed slobbing +slobber slobbers slobbered slobbered slobbering +slog slogs slogged slogged slogging +sloganeer sloganeers sloganeered sloganeered sloganeering +slop slops slopped slopped slopping +slope slopes sloped sloped sloping +slosh sloshes sloshed sloshed sloshing +slot slots slotted slotted slotting +slouch slouches slouched slouched slouching +slough sloughs sloughed sloughed sloughing +slow slows slowed slowed slowing +slue slues slued slued sluing +sluff sluffs sluffed sluffed sluffing +slug slugs slugged slugged slugging +sluice sluices sluiced sluiced sluicing +slum slums slummed slummed slumming +slumber slumbers slumbered slumbered slumbering +slump slumps slumped slumped slumping +slur slurs slurred slurred slurring +slurp slurps slurped slurped slurping +slush slushes slushed slushed slushing +smack smacks smacked smacked smacking +smarm smarms smarmed smarmed smarming +smart smarts smarted smarted smarting +smarten smartens smartened smartened smartening +smash smashes smashed smashed smashing +smatter smatters smattered smattered smattering +smear smears smeared smeared smearing +smell smells smelled smelled smelling +smell smells smelt smelt smelling +smelt smelts smelted smelted smelting +smile smiles smiled smiled smiling +smirch smirches smirched smirched smirching +smirk smirks smirked smirked smirking +smite smites smote smitten smiting +smock smocks smocked smocked smocking +smoke smokes smoked smoked smoking +smolder smolders smoldered smoldered smoldering +smooch smooches smooched smooched smooching +smoodge smoodges smoodged smoodged smoodging +smooth smooths smoothed smoothed smoothing +smoothen smoothens smoothened smoothened smoothening +smote smotes smoted smoted smoting +smother smothers smothered smothered smothering +smoulder smoulders smouldered smouldered smouldering +sms smss smsed smsed smsing +smudge smudges smudged smudged smudging +smuggle smuggles smuggled smuggled smuggling +smut smuts smutted smutted smutting +smutch smutches smutched smutched smutching +snack snacks snacked snacked snacking +snaffle snaffles snaffled snaffled snaffling +snafu snafues snafued snafued snafuing +snag snags snagged snagged snagging +snaggle snaggles snaggled snaggled snaggling +snake snakes snaked snaked snaking +snap snaps snapped snapped snapping +snare snares snared snared snaring +snarf snarfs snarfed snarfed snarfing +snark snarks snarked snarked snarking +snarl snarls snarled snarled snarling +snatch snatches snatched snatched snatching +sneak sneaks sneaked sneaked sneaking +sneak sneaks snuck snuck sneaking +sneck snecks snecked snecked snecking +sned sneds snedded snedded snedding +sneer sneers sneered sneered sneering +sneeze sneezes sneezed sneezed sneezing +snick snicks snicked snicked snicking +snicker snickers snickered snickered snickering +sniff sniffs sniffed sniffed sniffing +sniffle sniffles sniffled sniffled sniffling +snigger sniggers sniggered sniggered sniggering +sniggle sniggles sniggled sniggled sniggling +snip snips snipped snipped snipping +snipe snipes sniped sniped sniping +snitch snitches snitched snitched snitching +snivel snivels snivelled snivelled snivelling +snog snogs snogged snogged snogging +snood snoods snooded snooded snooding +snooker snookers snookered snookered snookering +snoop snoops snooped snooped snooping +snooze snoozes snoozed snoozed snoozing +snore snores snored snored snoring +snorkel snorkels snorkelled snorkelled snorkelling +snort snorts snorted snorted snorting +snow snows snowed snowed snowing +snowball snowballs snowballed snowballed snowballing +snowplough snowploughs snowploughed snowploughed snowploughing +snowshoe snowshoes snowshoed snowshoed snowshoeing +snub snubs snubbed snubbed snubbing +snuff snuffs snuffed snuffed snuffing +snuffle snuffles snuffled snuffled snuffling +snug snugs snugged snugged snugging +snuggle snuggles snuggled snuggled snuggling +soak soaks soaked soaked soaking +soap soaps soaped soaped soaping +soar soars soared soared soaring +sob sobs sobbed sobbed sobbing +sober sobers sobered sobered sobering +socialise socialises socialised socialised socialising +socialize socializes socialized socialized socializing +sock socks socked socked socking +socket sockets socketed socketed socketing +sod sods sodded sodded sodding +sodden soddens soddened soddened soddening +sodomise sodomises sodomised sodomised sodomising +sodomize sodomizes sodomized sodomized sodomizing +soft-pedal soft-pedals soft-pedalled soft-pedalled soft-pedalling +soft-shoe soft-shoes soft-shoed soft-shoed soft-shoeing +soft-soap soft-soaps soft-soaped soft-soaped soft-soaping +soft-solder soft-solders soft-soldered soft-soldered soft-soldering +soften softens softened softened softening +softland softlands softlanded softlanded softlanding +softpedal softpedals softpedalled softpedalled softpedalling +softshoe softshoes softshoed softshoed softshoeing +softsoap softsoaps softsoaped softsoaped softsoaping +soil soils soiled soiled soiling +sojourn sojourns sojourned sojourned sojourning +solace solaces solaced solaced solacing +solarize solarizes solarized solarized solarizing +solder solders soldered soldered soldering +soldier soldiers soldiered soldiered soldiering +sole soles soled soled soling +solemnify solemnifies solemnified solemnified solemnifying +solemnise solemnises solemnised solemnised solemnising +solemnize solemnizes solemnized solemnized solemnizing +solfa solfas solfaed solfaed solfaing +solicit solicits solicited solicited soliciting +solidify solidifies solidified solidified solidifying +soliloquise soliloquises soliloquised soliloquised soliloquising +soliloquize soliloquizes soliloquized soliloquized soliloquizing +solo solos soloed soloed soloing +solubilize solubilizes solubilized solubilized solubilizing +solvate solvates solvated solvated solvating +solve solves solved solved solving +somersault somersaults somersaulted somersaulted somersaulting +somnambulate somnambulates somnambulated somnambulated somnambulating +sonnet sonnets sonneted sonneted sonneting +soot soots sooted sooted sooting +soothe soothes soothed soothed soothing +soothsay soothsays soothsaid soothsaid soothsaying +sop sops sopped sopped sopping +sophisticate sophisticates sophisticated sophisticated sophisticating +sorn sorns sorned sorned sorning +sorrow sorrows sorrowed sorrowed sorrowing +sort sorts sorted sorted sorting +sortie sorties sortied sortied sortieing +sough soughs soughed soughed soughing +sound sounds sounded sounded sounding +soundproof soundproofs soundproofed soundproofed soundproofing +soup soups souped souped souping +sour sours soured soured souring +source sources sourced sourced sourcing +souse souses soused soused sousing +sovietize sovietizes sovietized sovietized sovietizing +sow sows sowed sowed sowing +sow sows sowed sown sowing +space spaces spaced spaced spacing +spacewalk spacewalks spacewalked spacewalked spacewalking +spade spades spaded spaded spading +spae spaes spaed spaed spaeing +spag spags spagged spagged spagging +spall spalls spalled spalled spalling +spam spams spammed spammed spamming +span spans spanned spanned spanning +spancel spancels spancelled spancelled spancelling +spangle spangles spangled spangled spangling +spank spanks spanked spanked spanking +spar spars sparred sparred sparring +spare spares spared spared sparing +sparge sparges sparged sparged sparging +spark sparks sparked sparked sparking +sparkle sparkles sparkled sparkled sparkling +spatter spatters spattered spattered spattering +spawn spawns spawned spawned spawning +spay spays spayed spayed spaying +speak speaks spoke spoken speaking +spear spears speared speared spearing +spearhead spearheads spearheaded spearheaded spearheading +spec specs specced specced speccing +specialise specialises specialised specialised specialising +specialize specializes specialized specialized specializing +specify specifies specified specified specifying +speckle speckles speckled speckled speckling +spectate spectates spectated spectated spectating +speculate speculates speculated speculated speculating +speechify speechifies speechified speechified speechifying +speed speeds sped sped speeding +speed speeds speeded speeded speeding +speed-read speed-reads speed-read speed-read speed-reading +speedread speedreads speedread speedread speedreading +spell spells spelled spelled spelling +spell spells spelt spelt spelling +spell spells spelt spelt spelling +spellbind spellbinds spellbound spellbound spellbinding +spellcheck spellchecks spellchecked spellchecked spellchecking +spelunk spelunks spelunked spelunked spelunking +spend spends spent spent spending +spew spews spewed spewed spewing +spice spices spiced spiced spicing +spiel spiels spieled spieled spieling +spiff spiffs spiffed spiffed spiffing +spiflicate spiflicates spiflicated spiflicated spiflicating +spike spikes spiked spiked spiking +spile spiles spiled spiled spiling +spill spills spilled spilled spilling +spill spills spilt spilt spilling +spin spins span spun spinning +spin spins spun spun spinning +spin-dry spin-dries spin-dried spin-dried spin-drying +spindle spindles spindled spindled spindling +spindry spindries spindried spindried spindrying +spiral spirals spiralled spiralled spiralling +spire spires spired spired spiring +spirit spirits spirited spirited spiriting +spiritualize spiritualizes spiritualized spiritualized spiritualizing +spit spits spat spat spitting +spit spits spit spit spitting +spit-roast spit-roasts spit-roasted spit-roasted spit-roasting +spite spites spited spited spiting +spitroast spitroasts spitroasted spitroasted spitroasting +splash splashes splashed splashed splashing +splat splats splatted splatted splatting +splatter splatters splattered splattered splattering +splay splays splayed splayed splaying +splice splices spliced spliced splicing +spline splines splined splined splining +splint splints splinted splinted splinting +splinter splinters splintered splintered splintering +split splits split split splitting +splodge splodges splodged splodged splodging +splosh sploshes sploshed sploshed sploshing +splotch splotches splotched splotched splotching +splurge splurges splurged splurged splurging +splutter splutters spluttered spluttered spluttering +spoil spoils spoiled spoiled spoiling +spoil spoils spoilt spoilt spoiling +spoliate spoliates spoliated spoliated spoliating +sponge sponges sponged sponged sponging +sponsor sponsors sponsored sponsored sponsoring +spoof spoofs spoofed spoofed spoofing +spook spooks spooked spooked spooking +spool spools spooled spooled spooling +spoon spoons spooned spooned spooning +spoon-feed spoon-feeds spoon-fed spoon-fed spoon-feeding +spoonfeed spoonfeeds spoonfed spoonfed spoonfeeding +spoor spoors spoored spoored spooring +spore spores spored spored sporing +sport sports sported sported sporting +sporulate sporulates sporulated sporulated sporulating +spot spots spotted spotted spotting +spot-weld spot-welds spot-welded spot-welded spot-welding +spotlight spotlights spotlit spotlit spotlighting +spouse spouses spoused spoused spousing +spout spouts spouted spouted spouting +sprain sprains sprained sprained spraining +sprawl sprawls sprawled sprawled sprawling +spray sprays sprayed sprayed spraying +spray-paint spray-paints spray-painted spray-painted spray-painting +spraypaint spraypaints spraypainted spraypainted spraypainting +spread spreads spread spread spreading +spreadeagle spreadeagles spreadeagled spreadeagled spreadeagling +sprig sprigs sprigged sprigged sprigging +spring springs sprang sprung springing +spring-clean spring-cleans spring-cleaned spring-cleaned spring-cleaning +springboard springboards springboarded springboarded springboarding +springclean springcleans springcleaned springcleaned springcleaning +sprinkle sprinkles sprinkled sprinkled sprinkling +sprint sprints sprinted sprinted sprinting +spritz spritzes spritzed spritzed spritzing +sprout sprouts sprouted sprouted sprouting +spruce spruces spruced spruced sprucing +spruik spruiks spruiked spruiked spruiking +sprung sprungs sprunged sprunged sprunging +spud spuds spudded spudded spudding +spue spues spued spued spuing +spume spumes spumed spumed spuming +spur spurs spurred spurred spurring +spurn spurns spurned spurned spurning +spurt spurts spurted spurted spurting +sputter sputters sputtered sputtered sputtering +spy spies spied spied spying +squabble squabbles squabbled squabbled squabbling +squall squalls squalled squalled squalling +squander squanders squandered squandered squandering +square squares squared squared squaring +squaredance squaredances squaredanced squaredanced squaredancing +squash squashes squashed squashed squashing +squat squats squatted squatted squatting +squawk squawks squawked squawked squawking +squeak squeaks squeaked squeaked squeaking +squeal squeals squealed squealed squealing +squeeze squeezes squeezed squeezed squeezing +squelch squelches squelched squelched squelching +squiggle squiggles squiggled squiggled squiggling +squilgee squilgees squilgeed squilgeed squilgeeing +squint squints squinted squinted squinting +squire squires squired squired squiring +squirm squirms squirmed squirmed squirming +squirrel squirrels squirrelled squirrelled squirrelling +squirt squirts squirted squirted squirting +squish squishes squished squished squishing +stab stabs stabbed stabbed stabbing +stabilise stabilises stabilised stabilised stabilising +stabilize stabilizes stabilized stabilized stabilizing +stable stables stabled stabled stabling +stablish stablishes stablished stablished stablishing +stack stacks stacked stacked stacking +staff staffs staffed staffed staffing +stage stages staged staged staging +stage-manage stage-manages stage-managed stage-managed stage-managing +stagemanage stagemanages stagemanaged stagemanaged stagemanaging +stagger staggers staggered staggered staggering +stagnate stagnates stagnated stagnated stagnating +stain stains stained stained staining +stake stakes staked staked staking +stale stales staled staled staling +stalemate stalemates stalemated stalemated stalemating +stalk stalks stalked stalked stalking +stall stalls stalled stalled stalling +stallfeed stallfeeds stallfed stallfed stallfeeding +stammer stammers stammered stammered stammering +stamp stamps stamped stamped stamping +stampede stampedes stampeded stampeded stampeding +stanch stanches stanched stanched stanching +stanchion stanchions stanchioned stanchioned stanchioning +stand stands stood stood standing +standardise standardises standardised standardised standardising +standardize standardizes standardized standardized standardizing +stang stangs stanged stanged stanging +staple staples stapled stapled stapling +star stars starred starred starring +starch starches starched starched starching +stare stares stared stared staring +stargaze stargazes stargazed stargazed stargazing +start starts started started starting +startle startles startled startled startling +starve starves starved starved starving +stash stashes stashed stashed stashing +state states stated stated stating +statement statements statemented statemented statementing +station stations stationed stationed stationing +staunch staunches staunched staunched staunching +stave staves staved staved staving +stay stays stayed stayed staying +stead steads steaded steaded steading +steady steadies steadied steadied steadying +steal steals stole stolen stealing +steam steams steamed steamed steaming +steam clean steam cleans steam cleaned steam cleaned steam cleaning +steam-heat steam-heats steam-heated steam-heated steam-heating +steamroll steamrolls steamrolled steamrolled steamrolling +steamroller steamrollers steamrollered steamrollered steamrollering +steel steels steeled steeled steeling +steep steeps steeped steeped steeping +steepen steepens steepened steepened steepening +steeplechase steeplechases steeplechased steeplechased steeplechasing +steer steers steered steered steering +steeve steeves steeved steeved steeving +stellify stellifies stellified stellified stellifying +stem stems stemmed stemmed stemming +stencil stencils stencilled stencilled stencilling +stenograph stenographs stenographed stenographed stenographing +step steps stepped stepped stepping +stereochrome stereochromes stereochromed stereochromed stereochroming +stereotype stereotypes stereotyped stereotyped stereotyping +sterilise sterilises sterilised sterilised sterilising +sterilize sterilizes sterilized sterilized sterilizing +stet stets stetted stetted stetting +stevedore stevedores stevedored stevedored stevedoring +stew stews stewed stewed stewing +steward stewards stewarded stewarded stewarding +stick sticks stuck stuck sticking +stickle stickles stickled stickled stickling +sticky stickies stickied stickied stickying +stickybeak stickybeaks stickybeaked stickybeaked stickybeaking +stiff stiffs stiffed stiffed stiffing +stiff-arm stiff-arms stiff-armed stiff-armed stiff-arming +stiffarm stiffarms stiffarmed stiffarmed stiffarming +stiffen stiffens stiffened stiffened stiffening +stifle stifles stifled stifled stifling +stigmatise stigmatises stigmatised stigmatised stigmatising +stigmatize stigmatizes stigmatized stigmatized stigmatizing +still stills stilled stilled stilling +stillhunt stillhunts stillhunted stillhunted stillhunting +stilt stilts stilted stilted stilting +stimulate stimulates stimulated stimulated stimulating +sting stings stung stung stinging +stink stinks stank stunk stinking +stint stints stinted stinted stinting +stipple stipples stippled stippled stippling +stipulate stipulates stipulated stipulated stipulating +stir stirs stirred stirred stirring +stir-fry stir-fries stir-fried stir-fried stir-frying +stirfry stirfries stirfried stirfried stirfrying +stitch stitches stitched stitched stitching +stithy stithies stithied stithied stithying +stock stocks stocked stocked stocking +stockade stockades stockaded stockaded stockading +stockpile stockpiles stockpiled stockpiled stockpiling +stodge stodges stodged stodged stodging +stoke stokes stoked stoked stoking +stomach stomachs stomached stomached stomaching +stomp stomps stomped stomped stomping +stone stones stoned stoned stoning +stone-wall stone-walls stonewalled stone-walled stonewalling +stonewall stonewalls stonewalled stonewalled stonewalling +stonk stonks stonked stonked stonking +stooge stooges stooged stooged stooging +stook stooks stooked stooked stooking +stool stools stooled stooled stooling +stoop stoops stooped stooped stooping +stop stops stopped stopped stopping +stope stopes stoped stoped stoping +stopper stoppers stoppered stoppered stoppering +store stores stored stored storing +storm storms stormed stormed storming +story stories storied storied storying +storyboard storyboards storyboarded storyboarded storyboarding +stot stots stotted stotted stotting +stoush stoushes stoushed stoushed stoushing +stove stoves stoved stoved stoving +stow stows stowed stowed stowing +straddle straddles straddled straddled straddling +strafe strafes strafed strafed strafing +straggle straggles straggled straggled straggling +straight-arm straight-arms straight-armed straight-armed straight-arming +straightarm straightarms straightarmed straightarmed straightarming +straighten straightens straightened straightened straightening +strain strains strained strained straining +straiten straitens straitened straitened straitening +strand strands stranded stranded stranding +strangle strangles strangled strangled strangling +strangulate strangulates strangulated strangulated strangulating +strap straps strapped strapped strapping +stratify stratifies stratified stratified stratifying +stravaig stravaigs stravaiged stravaiged stravaiging +straw straws strawed strawed strawing +stray strays strayed strayed straying +streak streaks streaked streaked streaking +stream streams streamed streamed streaming +streamline streamlines streamlined streamlined streamlining +strengthen strengthens strengthened strengthened strengthening +stress stresses stressed stressed stressing +stretch stretches stretched stretched stretching +stretcher stretchers stretchered stretchered stretchering +strew strews strewed strewed strewing +strew strews strewed strewn strewing +striate striates striated striated striating +strickle strickles strickled strickled strickling +stride strides strode stridden striding +stridulate stridulates stridulated stridulated stridulating +strike strikes struck stricken striking +strike strikes struck struck striking +string strings strung strung stringing +strip strips stripped stripped stripping +strip-search strip-searches strip-searched strip-searched strip-searching +stripe stripes striped striped striping +stripsearch stripsearches stripsearched stripsearched stripsearching +strive strives strove striven striving +stroke strokes stroked stroked stroking +stroll strolls strolled strolled strolling +strongarm strongarms strongarmed strongarmed strongarming +strop strops stropped stropped stropping +strow strows strowed strowed strowing +stroy stroys stroyed stroyed stroying +structure structures structured structured structuring +struggle struggles struggled struggled struggling +strum strums strummed strummed strumming +strut struts strutted strutted strutting +stub stubs stubbed stubbed stubbing +stucco stuccos stuccoed stuccoed stuccoing +stud studs studded studded studding +study studies studied studied studying +stuff stuffs stuffed stuffed stuffing +stultify stultifies stultified stultified stultifying +stum stums stummed stummed stumming +stumble stumbles stumbled stumbled stumbling +stump stumps stumped stumped stumping +stun stuns stunned stunned stunning +stunk stunks stunked stunked stunking +stunt stunts stunted stunted stunting +stupefy stupefies stupefied stupefied stupefying +stutter stutters stuttered stuttered stuttering +sty sties stied stied stying +style styles styled styled styling +stylize stylizes stylized stylized stylizing +stylopize stylopizes stylopized stylopized stylopizing +stymie stymies stymied stymied stymieing +stymy stymies stymied stymied stymying +sub subs subbed subbed subbing +subclass subclasses subclassed subclassed subclassing +subcontract subcontracts subcontracted subcontracted subcontracting +subculture subcultures subcultured subcultured subculturing +subdivide subdivides subdivided subdivided subdividing +subduct subducts subducted subducted subducting +subdue subdues subdued subdued subduing +subedit subedits subedited subedited subediting +suberize suberizes suberized suberized suberizing +subinfeudate subinfeudates subinfeudated subinfeudated subinfeudating +subirrigate subirrigates subirrigated subirrigated subirrigating +subject subjects subjected subjected subjecting +subjectify subjectifies subjectified subjectified subjectifying +subjoin subjoins subjoined subjoined subjoining +subjugate subjugates subjugated subjugated subjugating +sublease subleases subleased subleased subleasing +sublet sublets sublet sublet subletting +sublimate sublimates sublimated sublimated sublimating +sublime sublimes sublimed sublimed subliming +submerge submerges submerged submerged submerging +submerse submerses submersed submersed submersing +subminiaturize subminiaturizes subminiaturized subminiaturized subminiaturizing +submit submits submitted submitted submitting +subordinate subordinates subordinated subordinated subordinating +suborn suborns suborned suborned suborning +subpoena subpoenas subpoenaed subpoenaed subpoenaing +subrogate subrogates subrogated subrogated subrogating +subscribe subscribes subscribed subscribed subscribing +subserve subserves subserved subserved subserving +subside subsides subsided subsided subsiding +subsidise subsidises subsidised subsidised subsidising +subsidize subsidizes subsidized subsidized subsidizing +subsist subsists subsisted subsisted subsisting +subsoil subsoils subsoiled subsoiled subsoiling +substantialize substantializes substantialized substantialized substantializing +substantiate substantiates substantiated substantiated substantiating +substantivize substantivizes substantivized substantivized substantivizing +substitute substitutes substituted substituted substituting +substract substracts substracted substracted substracting +subsume subsumes subsumed subsumed subsuming +subtend subtends subtended subtended subtending +subtilize subtilizes subtilized subtilized subtilizing +subtitle subtitles subtitled subtitled subtitling +subtotal subtotals subtotalled subtotalled subtotalling +subtract subtracts subtracted subtracted subtracting +suburbanize suburbanizes suburbanized suburbanized suburbanizing +subvene subvenes subvened subvened subvening +subvert subverts subverted subverted subverting +succeed succeeds succeeded succeeded succeeding +succour succours succoured succoured succouring +succumb succumbs succumbed succumbed succumbing +succuss succusses succussed succussed succussing +suck sucks sucked sucked sucking +sucker suckers suckered suckered suckering +sucker punch sucker punches sucker punched sucker punched sucker punching +suckle suckles suckled suckled suckling +suction suctions suctioned suctioned suctioning +sue sues sued sued suing +suffer suffers suffered suffered suffering +suffice suffices sufficed sufficed sufficing +suffix suffixes suffixed suffixed suffixing +sufflate sufflates sufflated sufflated sufflating +suffocate suffocates suffocated suffocated suffocating +suffumigate suffumigates suffumigated suffumigated suffumigating +suffuse suffuses suffused suffused suffusing +sugar sugars sugared sugared sugaring +sugar-coat sugar-coats sugar-coated sugar-coated sugar-coating +sugarcoat sugarcoats sugarcoated sugarcoated sugarcoating +suggest suggests suggested suggested suggesting +suit suits suited suited suiting +sulk sulks sulked sulked sulking +sully sullies sullied sullied sullying +sulphate sulphates sulphated sulphated sulphating +sulphonate sulphonates sulphonated sulphonated sulphonating +sulphurate sulphurates sulphurated sulphurated sulphurating +sulphuret sulphurets sulphuretted sulphuretted sulphuretting +sulphurize sulphurizes sulphurized sulphurized sulphurizing +sum sums summed summed summing +summarise summarises summarised summarised summarising +summarize summarizes summarized summarized summarizing +summer summers summered summered summering +summersault summersaults somersaulted somersaulted somersaulting +summon summons summoned summoned summoning +summons summonses summonsed summonsed summonsing +sun suns sunned sunned sunning +sunbathe sunbathes sunbathed sunbathed sunbathing +sunburn sunburns sunburned sunburned sunburning +sunburn sunburns sunburnt sunburt sunburning +sunder sunders sundered sundered sundering +sunk sunks sunked sunked sunking +sunset sunsets sunsetted sunsetted sunsetting +sup sups supped supped supping +superabound superabounds superabounded superabounded superabounding +superadd superadds superadded superadded superadding +superannuate superannuates superannuated superannuated superannuating +supercalender supercalenders supercalendered supercalendered supercalendering +supercede supercedes superceded superceded superceding +supercharge supercharges supercharged supercharged supercharging +supercool supercools supercooled supercooled supercooling +supererogate supererogates supererogated supererogated supererogating +superfuse superfuses superfused superfused superfusing +superheat superheats superheated superheated superheating +superimpose superimposes superimposed superimposed superimposing +superinduce superinduces superinduced superinduced superinducing +superintend superintends superintended superintended superintending +superordinate superordinates superordinated superordinated superordinating +superpose superposes superposed superposed superposing +superscribe superscribes superscribed superscribed superscribing +supersede supersedes superseded superseded superseding +supersise supersises supersised supersised supersising +supersize supersizes supersized supersized supersizing +superstruct superstructs superstructed superstructed superstructing +supervene supervenes supervened supervened supervening +supervise supervises supervised supervised supervising +supinate supinates supinated supinated supinating +supper suppers suppered suppered suppering +supplant supplants supplanted supplanted supplanting +supplement supplements supplemented supplemented supplementing +supplicate supplicates supplicated supplicated supplicating +supply supplies supplied supplied supplying +support supports supported supported supporting +suppose supposes supposed supposed supposing +suppress suppresses suppressed suppressed suppressing +suppurate suppurates suppurated suppurated suppurating +surcease surceases surceased surceased surceasing +surcharge surcharges surcharged surcharged surcharging +surcingle surcingles surcingled surcingled surcingling +surf surfs surfed surfed surfing +surface surfaces surfaced surfaced surfacing +surfeit surfeits surfeited surfeited surfeiting +surge surges surged surged surging +surmise surmises surmised surmised surmising +surmount surmounts surmounted surmounted surmounting +surname surnames surnamed surnamed surnaming +surpass surpasses surpassed surpassed surpassing +surprint surprints surprinted surprinted surprinting +surprise surprises surprised surprised surprising +surrender surrenders surrendered surrendered surrendering +surrogate surrogates surrogated surrogated surrogating +surround surrounds surrounded surrounded surrounding +surtax surtaxes surtaxed surtaxed surtaxing +survey surveys surveyed surveyed surveying +survive survives survived survived surviving +suspect suspects suspected suspected suspecting +suspend suspends suspended suspended suspending +suspire suspires suspired suspired suspiring +suss susses sussed sussed sussing +sustain sustains sustained sustained sustaining +susurrate susurrates susurrated susurrated susurrating +suture sutures sutured sutured suturing +swab swabs swabbed swabbed swabbing +swaddle swaddles swaddled swaddled swaddling +swag swags swagged swagged swagging +swage swages swaged swaged swaging +swagger swaggers swaggered swaggered swaggering +swallow swallows swallowed swallowed swallowing +swamp swamps swamped swamped swamping +swan swans swanned swanned swanning +swank swanks swanked swanked swanking +swap swaps swapped swapped swapping +swarm swarms swarmed swarmed swarming +swarth swarths swarthed swarthed swarthing +swash swashes swashed swashed swashing +swat swats swatted swatted swatting +swathe swathes swathed swathed swathing +sway sways swayed swayed swaying +swear swears swore sworn swearing +sweat sweats sweat sweat sweating +sweat sweats sweated sweated sweating +sweaway sweaways sweawayed sweawayed sweawaying +sweep sweeps sweeped sweeped sweeping +sweep sweeps swept swept sweeping +sweet-talk sweet-talks sweet-talked sweet-talked sweet-talking +sweeten sweetens sweetened sweetened sweetening +sweettalk sweettalks sweettalked sweettalked sweettalking +swell swells swelled swelled swelling +swell swells swelled swollen swelling +swelter swelters sweltered sweltered sweltering +swerve swerves swerved swerved swerving +swig swigs swigged swigged swigging +swill swills swilled swilled swilling +swim swims swam swum swimming +swindle swindles swindled swindled swindling +swing swings swung swung swinging +swinge swinges swinged swinged swingeing +swingle swingles swingled swingled swingling +swink swinks swinked swinked swinking +swipe swipes swiped swiped swiping +swirl swirls swirled swirled swirling +swish swishes swished swished swishing +switch switches switched switched switching +swive swives swived swived swiving +swivel swivels swivelled swivelled swivelling +swizzle swizzles swizzled swizzled swizzling +swob swobs swobbed swobbed swobbing +swoon swoons swooned swooned swooning +swoop swoops swooped swooped swooping +swoosh swooshes swooshed swooshed swooshing +swop swops swopped swopped swopping +swot swots swotted swotted swotting +swound swounds swounded swounded swounding +syllabify syllabifies syllabified syllabified syllabifying +syllabize syllabizes syllabized syllabized syllabizing +syllable syllables syllabled syllabled syllabling +syllogize syllogizes syllogized syllogized syllogizing +symbol symbols symbolled symbolled symbolling +symbolise symbolises symbolised symbolised symbolising +symbolize symbolizes symbolized symbolized symbolizing +symmetrize symmetrizes symmetrized symmetrized symmetrizing +sympathise sympathises sympathised sympathised sympathising +sympathize sympathizes sympathized sympathized sympathizing +symptomise symptomises symptomised symptomised symptomising +symptomize symptomizes symptomized symptomized symptomizing +sync syncs synced synced syncing +synchronise synchronises synchronised synchronised synchronising +synchronize synchronizes synchronized synchronized synchronizing +syncopate syncopates syncopated syncopated syncopating +syncretize syncretizes syncretized syncretized syncretizing +syndicate syndicates syndicated syndicated syndicating +synonymize synonymizes synonymized synonymized synonymizing +synopsize synopsizes synopsized synopsized synopsizing +synthesise synthesises synthesised synthesised synthesising +synthesize synthesizes synthesized synthesized synthesizing +synthetize synthetizes synthetized synthetized synthetizing +sypher syphers syphered syphered syphering +syphon syphons syphoned syphoned syphoning +syringe syringes syringed syringed syringing +syrup syrups syruped syruped syruping +systematise systematises systematised systematised systematising +systematize systematizes systematized systematized systematizing +systemize systemizes systemized systemized systemizing +tab tabs tabbed tabbed tabbing +table tables tabled tabled tabling +tabu tabus tabued tabued tabuing +tabulate tabulates tabulated tabulated tabulating +tack tacks tacked tacked tacking +tackle tackles tackled tackled tackling +tag tags tagged tagged tagging +tail tails tailed tailed tailing +tailgate tailgates tailgated tailgated tailgating +tailor tailors tailored tailored tailoring +taint taints tainted tainted tainting +take takes took taken taking +talc talcs talcked talcked talcking +talk talks talked talked talking +tallage tallages tallaged tallaged tallaging +tallow tallows tallowed tallowed tallowing +tally tallies tallied tallied tallying +tallyho tallyhos tallyhoed tallyhoed tallyhoing +tambour tambours tamboured tamboured tambouring +tame tames tamed tamed taming +tamp tamps tamped tamped tamping +tamper tampers tampered tampered tampering +tampon tampons tamponed tamponed tamponing +tan tans tanned tanned tanning +tangle tangles tangled tangled tangling +tango tangoes tangoed tangoed tangoing +tank tanks tanked tanked tanking +tantalise tantalises tantalised tantalised tantalising +tantalize tantalizes tantalized tantalized tantalizing +tap taps tapped tapped tapping +tape tapes taped taped taping +tape record tape records tape recorded tape recorded tape recording +tape-record tape-records tape-recorded tape-recorded tape-recording +taper tapers tapered tapered tapering +taperecord taperecords taperecorded taperecorded taperecording +tar tars tarred tarred tarring +tare tares tared tared taring +target targets targeted targeted targeting +tariff tariffs tariffed tariffed tariffing +tarmac tarmacs tarmacked tarmacked tarmacking +tarnish tarnishes tarnished tarnished tarnishing +tarry tarries tarried tarried tarrying +tart tarts tarted tarted tarting +tartarize tartarizes tartarized tartarized tartarizing +taser tasers tasered tasered tasering +task tasks tasked tasked tasking +tassel tassels tasselled tasselled tasselling +taste tastes tasted tasted tasting +tat tats tatted tatted tatting +tatter tatters tattered tattered tattering +tattle tattles tattled tattled tattling +tattoo tattoos tattooed tattooed tattooing +taunt taunts taunted taunted taunting +tauten tautens tautened tautened tautening +tautologize tautologizes tautologized tautologized tautologizing +taway taways tawayed tawayed tawaying +taws taws tawed tawed tawing +tawse tawses tawsed tawsed tawsing +tax taxes taxed taxed taxing +taxi taxies taxied taxied taxiing +te-hee te-hees te-heed te-heed te-heeing +teach teaches taught taught teaching +team teams teamed teamed teaming +tear tears tore torn tearing +tease teases teased teased teasing +teasel teasels teaselled teaselled teaselling +ted teds tedded tedded tedding +tee tees teed teed teeing +teem teems teemed teemed teeming +teeter teeters teetered teetered teetering +teethe teethes teethed teethed teething +telecast telecasts telecast telecast telecasting +telecasted telecasts telecasteded telecasteded telecasting +telecommute telecommutes telecommuted telecommuted telecommuting +teleconference teleconferences teleconferenced teleconferenced teleconferencing +telegraph telegraphs telegraphed telegraphed telegraphing +telemeter telemeters telemetered telemetered telemetering +teleoperate teleoperates teleoperated teleoperated teleoperating +telepathize telepathizes telepathized telepathized telepathizing +telephone telephones telephoned telephoned telephoning +teleport teleports teleported teleported teleporting +telescope telescopes telescoped telescoped telescoping +teletype teletypes teletyped teletyped teletyping +televise televises televised televised televising +telex telexes telexed telexed telexing +tell tells told told telling +tellurize tellurizes tellurized tellurized tellurizing +telnet telnets telnetted telnetted telnetting +telpher telphers telphered telphered telphering +temp temps temped temped temping +temper tempers tempered tempered tempering +tempest tempests tempested tempested tempesting +temporise temporises temporised temporised temporising +temporize temporizes temporized temporized temporizing +tempt tempts tempted tempted tempting +tenant tenants tenanted tenanted tenanting +tend tends tended tended tending +tender tenders tendered tendered tendering +tenderise tenderises tenderised tenderised tenderising +tenderize tenderizes tenderized tenderized tenderizing +tenon tenons tenoned tenoned tenoning +tense tenses tensed tensed tensing +tension tensions tensioned tensioned tensioning +tent tents tented tented tenting +tenter tenters tentered tentered tentering +tepefy tepefies tepefied tepefied tepefying +tergiversate tergiversates tergiversated tergiversated tergiversating +term terms termed termed terming +terminate terminates terminated terminated terminating +terrace terraces terraced terraced terracing +terraform terraforms terraformed terraformed terraforming +terrify terrifies terrified terrified terrifying +territorialize territorializes territorialized territorialized territorializing +terrorise terrorises terrorised terrorised terrorising +terrorize terrorizes terrorized terrorized terrorizing +tessellate tessellates tessellated tessellated tessellating +test tests tested tested testing +test-drive test-drives test-drove test-driven test-driving +testdrive testdrives testdrove testdriven testdriving +testfire testfires testfired testfired testfiring +testify testifies testified testified testifying +testmarket testmarkets testmarketed testmarketed testmarketing +tetanize tetanizes tetanized tetanized tetanizing +tether tethers tethered tethered tethering +teutonize teutonizes teutonized teutonized teutonizing +text texts texted texted texting +text message text messages text messaged text messaged text messaging +text-message text-messages text-messaged text-messaged text-messaging +textmessage textmessages textmessaged textmessaged textmessaging +thank thanks thanked thanked thanking +thatch thatches thatched thatched thatching +thaw thaws thawed thawed thawing +theologize theologizes theologized theologized theologizing +theorise theorises theorised theorised theorising +theorize theorizes theorized theorized theorizing +thermalize thermalizes thermalized thermalized thermalizing +thicken thickens thickened thickened thickening +thieve thieves thieved thieved thieving +thin thins thinned thinned thinning +think thinks thought thought thinking +thirl thirls thirled thirled thirling +thirst thirsts thirsted thirsted thirsting +thole tholes tholed tholed tholing +thrall thralls thralled thralled thralling +thrash thrashes thrashed thrashed thrashing +thread threads threaded threaded threading +threat threats threated threated threating +threaten threatens threatened threatened threatening +three-peat three-peats three-peated three-peated three-peating +threep threeps threeped threeped threeping +threepeat threepeats threepeated threepeated threepeating +thresh threshes threshed threshed threshing +thrill thrills thrilled thrilled thrilling +thrive thrives thrived thrived thriving +thrive thrives throve thriven thriving +throb throbs throbbed throbbed throbbing +thrombose thromboses thrombosed thrombosed thrombosing +throne thrones throned throned throning +throng throngs thronged thronged thronging +throttle throttles throttled throttled throttling +throve throves throved throved throving +throw throws threw thrown throwing +throwaway throwaways throwawayed throwawayed throwawaying +throwback throwbacks throwbacked throwbacked throwbacking +thrum thrums thrummed thrummed thrumming +thrust thrusts thrust thrust thrusting +thud thuds thudded thudded thudding +thumb thumbs thumbed thumbed thumbing +thumbindex thumbindexes thumbindexed thumbindexed thumbindexing +thump thumps thumped thumped thumping +thunder thunders thundered thundered thundering +thwack thwacks thwacked thwacked thwacking +thwart thwarts thwarted thwarted thwarting +tick ticks ticked ticked ticking +ticket tickets ticketed ticketed ticketing +tickle tickles tickled tickled tickling +ticktock ticktocks ticktocked ticktocked ticktocking +tide tides tided tided tiding +tidy tidies tidied tidied tidying +tie ties tied tied tying +tie-dye tie-dyes tie-dyed tie-dyed tie-dyeing +tiedye tiedyes tiedyed tiedyed tiedyeing +tier tiers tiered tiered tiering +tiff tiffs tiffed tiffed tiffing +tighten tightens tightened tightened tightening +tile tiles tiled tiled tiling +till tills tilled tilled tilling +tiller tillers tillered tillered tillering +tilt tilts tilted tilted tilting +timber timbers timbered timbered timbering +time times timed timed timing +times timeses timesed timesed timesing +timetable timetables timetabled timetabled timetabling +tin tins tinned tinned tinning +tinct tincts tincted tincted tincting +tincture tinctures tinctured tinctured tincturing +ting tings tinged tinged tinging +tinge tinges tinged tinged tingeing +tingle tingles tingled tingled tingling +tinker tinkers tinkered tinkered tinkering +tinkle tinkles tinkled tinkled tinkling +tinplate tinplates tinplated tinplated tinplating +tinsel tinsels tinselled tinselled tinselling +tint tints tinted tinted tinting +tip tips tipped tipped tipping +tippex tippexes tippexed tippexed tippexing +tipple tipples tippled tippled tippling +tiptoe tiptoes tiptoed tiptoed tiptoeing +tire tires tired tired tiring +tissue tissues tissued tissued tissuing +tithe tithes tithed tithed tithing +titillate titillates titillated titillated titillating +titivate titivates titivated titivated titivating +title titles titled titled titling +titrate titrates titrated titrated titrating +titter titters tittered tittered tittering +tittivate tittivates tittivated tittivated tittivating +tittletattle tittletattles tittletattled tittletattled tittletattling +tittup tittups tittupped tittupped tittupping +toady toadies toadied toadied toadying +toast toasts toasted toasted toasting +toboggan toboggans tobogganed tobogganed tobogganing +toddle toddles toddled toddled toddling +toe toes toed toed toeing +toe-dance toe-dances toe-danced toe-danced toe-dancing +toenail toenails toenailed toenailed toenailing +tog togs togged togged togging +toggle toggles toggled toggled toggling +toil toils toiled toiled toiling +toilet-train toilet-trains toilet-trained toilet-trained toilet-training +toilettrain toilettrains toilettrained toilettrained toilettraining +toke tokes toked toked toking +token tokens tokened tokened tokening +tolerate tolerates tolerated tolerated tolerating +toll tolls tolled tolled tolling +tom-tom tom-toms tom-tommed tom-tommed tom-tomming +tomb tombs tombed tombed tombing +tomtom tomtoms tomtommed tomtommed tomtomming +tone tones toned toned toning +tong tongs tonged tonged tonging +tongue tongues tongued tongued tonguing +tongue-lash tongue-lashes tongue-lashed tongue-lashed tongue-lashing +tonify tonifies tonified tonified tonifying +tonsure tonsures tonsured tonsured tonsuring +tool tools tooled tooled tooling +toot toots tooted tooted tooting +tooth tooths toothed toothed toothing +tootle tootles tootled tootled tootling +top tops topped topped topping +topdress topdresses topdressed topdressed topdressing +tope topes toped toped toping +topple topples toppled toppled toppling +topsoil topsoils topsoiled topsoiled topsoiling +torch torches torched torched torching +torment torments tormented tormented tormenting +torpedo torpedoes torpedoed torpedoed torpedoing +torrify torrifies torrified torrified torrifying +torture tortures tortured tortured torturing +toss tosses tossed tossed tossing +tot tots totted totted totting +total totals totalled totalled totalling +totalize totalizes totalized totalized totalizing +tote totes toted toted toting +totter totters tottered tottered tottering +touch touches touched touched touching +touch-type touch-types touch-typed touch-typed touch-typing +touchdown touchdowns touchdowned touchdowned touchdowning +touchtype touchtypes touchtyped touchtyped touchtyping +tough toughs toughed toughed toughing +toughen toughens toughened toughened toughening +tour tours toured toured touring +tourney tourneys tourneyed tourneyed tourneying +tousle tousles tousled tousled tousling +tout touts touted touted touting +touzle touzles touzled touzled touzling +tow tows towed towed towing +towel towels towelled towelled towelling +tower towers towered towered towering +toy toys toyed toyed toying +trace traces traced traced tracing +track tracks tracked tracked tracking +trade trades traded traded trading +trademark trademarks trademarked trademarked trademarking +traduce traduces traduced traduced traducing +traffic traffics trafficked trafficked trafficking +trail trails trailed trailed trailing +train trains trained trained training +traipse traipses traipsed traipsed traipsing +traject trajects trajected trajected trajecting +tram trams trammed trammed tramming +trammel trammels trammelled trammelled trammelling +tramp tramps tramped tramped tramping +trample tramples trampled trampled trampling +trampoline trampolines trampolined trampolined trampolining +trance trances tranced tranced trancing +tranquillise tranquillises tranquillised tranquillised tranquillising +tranquillize tranquillizes tranquillized tranquillized tranquillizing +transact transacts transacted transacted transacting +transcend transcends transcended transcended transcending +transcribe transcribes transcribed transcribed transcribing +transect transects transected transected transecting +transfer transfers transferred transferred transferring +transfigure transfigures transfigured transfigured transfiguring +transfix transfixes transfixed transfixed transfixing +transform transforms transformed transformed transforming +transfuse transfuses transfused transfused transfusing +transgress transgresses transgressed transgressed transgressing +transilluminate transilluminates transilluminated transilluminated transilluminating +transistorize transistorizes transistorized transistorized transistorizing +transit transits transited transited transiting +transition transitions transitioned transitioned transitioning +translate translates translated translated translating +transliterate transliterates transliterated transliterated transliterating +translocate translocates translocated translocated translocating +transmigrate transmigrates transmigrated transmigrated transmigrating +transmit transmits transmitted transmitted transmitting +transmogrify transmogrifies transmogrified transmogrified transmogrifying +transmute transmutes transmuted transmuted transmuting +transpierce transpierces transpierced transpierced transpiercing +transpire transpires transpired transpired transpiring +transplant transplants transplanted transplanted transplanting +transport transports transported transported transporting +transpose transposes transposed transposed transposing +transship transships transshipped transshipped transshipping +transubstantiate transubstantiates transubstantiated transubstantiated transubstantiating +transude transudes transuded transuded transuding +transvalue transvalues transvalued transvalued transvaluing +trap traps trapped trapped trapping +trapan trapans trapaned trapaned trapaning +trape trapes trapesed trapesed trapesing +trash trashes trashed trashed trashing +traumatise traumatises traumatised traumatised traumatising +traumatize traumatizes traumatized traumatized traumatizing +travail travails travailed travailed travailing +travel travels travelled travelled travelling +traverse traverses traversed traversed traversing +travesty travesties travestied travestied travestying +trawl trawls trawled trawled trawling +tread treads trod trodden treading +treadle treadles treadled treadled treadling +treasure treasures treasured treasured treasuring +treat treats treated treated treating +treble trebles trebled trebled trebling +tree trees treed treed treeing +trek treks trekked trekked trekking +trellis trellises trellised trellised trellising +tremble trembles trembled trembled trembling +trench trenches trenched trenched trenching +trend trends trended trended trending +trepan trepans trepanned trepanned trepanning +trephine trephines trephined trephined trephining +trespass trespasses trespassed trespassed trespassing +trial trials trialled trialled trialling +triangulate triangulates triangulated triangulated triangulating +trice trices triced triced tricing +trichinize trichinizes trichinized trichinized trichinizing +trick tricks tricked tricked tricking +trick or treat trick or treats trick or treated trick or treated trick or treating +trickle trickles trickled trickled trickling +tricycle tricycles tricycled tricycled tricycling +trifle trifles trifled trifled trifling +trig trigs trigged trigged trigging +trigger triggers triggered triggered triggering +trill trills trilled trilled trilling +trim trims trimmed trimmed trimming +trip trips tripped tripped tripping +triple triples tripled tripled tripling +triple-tongue triple-tongues triple-tongued triple-tongued triple-tonguing +triplicate triplicates triplicated triplicated triplicating +trisect trisects trisected trisected trisecting +tritiate tritiates tritiated tritiated tritiating +triturate triturates triturated triturated triturating +triumph triumphs triumphed triumphed triumphing +trivialise trivialises trivialised trivialised trivialising +trivialize trivializes trivialized trivialized trivializing +troat troats troated troated troating +trode trodes troded troded troding +trog trogs trogged trogged trogging +troll trolls trolled trolled trolling +tromp tromps tromped tromped tromping +troop troops trooped trooped trooping +tropicalize tropicalizes tropicalized tropicalized tropicalizing +trot trots trotted trotted trotting +trouble troubles troubled troubled troubling +troubleshoot troubleshoots troubleshot troubleshot troubleshooting +trounce trounces trounced trounced trouncing +troupe troupes trouped trouped trouping +trouser trousers trousered trousered trousering +trow trows trowed trowed trowing +trowel trowels trowelled trowelled trowelling +truant truants truanted truanted truanting +truck trucks trucked trucked trucking +truckle truckles truckled truckled truckling +trudge trudges trudged trudged trudging +trump trumps trumped trumped trumping +trumpet trumpets trumpeted trumpeted trumpeting +truncate truncates truncated truncated truncating +truncheon truncheons truncheoned truncheoned truncheoning +trundle trundles trundled trundled trundling +truss trusses trussed trussed trussing +trust trusts trusted trusted trusting +try tries tried tried trying +tryst trysts trysted trysted trysting +tub tubs tubbed tubbed tubbing +tube tubes tubed tubed tubing +tubulate tubulates tubulated tubulated tubulating +tuck tucks tucked tucked tucking +tucker tuckers tuckered tuckered tuckering +tuft tufts tufted tufted tufting +tug tugs tugged tugged tugging +tumble tumbles tumbled tumbled tumbling +tumefy tumefies tumefied tumefied tumefying +tun tuns tunned tunned tunning +tune tunes tuned tuned tuning +tunnel tunnels tunnelled tunnelled tunnelling +tup tups tupped tupped tupping +turbocharge turbocharges turbocharged turbocharged turbocharging +turf turfs turfed turfed turfing +turmoil turmoils turmoiled turmoiled turmoiling +turn turns turned turned turning +turpentine turpentines turpentined turpentined turpentining +turtle turtles turtled turtled turtling +tusk tusks tusked tusked tusking +tussle tussles tussled tussled tussling +tut tuts tutted tutted tutting +tut-tut tut-tuts tut-tutted tut-tutted tut-tutting +tutor tutors tutored tutored tutoring +twaddle twaddles twaddled twaddled twaddling +twang twangs twanged twanged twanging +tweak tweaks tweaked tweaked tweaking +tweet tweets tweeted tweeted tweeting +tweeze tweezes tweezed tweezed tweezing +twerk twerks twerked twerked twerking +twiddle twiddles twiddled twiddled twiddling +twig twigs twigged twigged twigging +twill twills twilled twilled twilling +twin twins twinned twinned twinning +twine twines twined twined twining +twinge twinges twinged twinged twinging +twinkle twinkles twinkled twinkled twinkling +twirl twirls twirled twirled twirling +twist twists twisted twisted twisting +twit twits twitted twitted twitting +twitch twitches twitched twitched twitching +twitter twitters twittered twittered twittering +two-time two-times two-timed two-timed two-timing +twotime twotimes twotimed twotimed twotiming +type types typed typed typing +typecast typecasts typecast typecast typecasting +typeset typesets typeset typeset typesetting +typewrite typewrites typewrote typewritten typewriting +typify typifies typified typified typifying +tyrannise tyrannises tyrannised tyrannised tyrannising +tyrannize tyrannizes tyrannized tyrannized tyrannizing +tyre tyres tyred tyred tyring +uglify uglifies uglified uglified uglifying +ulcerate ulcerates ulcerated ulcerated ulcerating +ullage ullages ullaged ullaged ullaging +ululate ululates ululated ululated ululating +umpire umpires umpired umpired umpiring +unarm unarms unarmed unarmed unarming +unbalance unbalances unbalanced unbalanced unbalancing +unban unbans unbanned unbanned unbanning +unbar unbars unbarred unbarred unbarring +unbelt unbelts unbelted unbelted unbelting +unbend unbends unbent unbent unbending +unbind unbinds unbound unbound unbinding +unblock unblocks unblocked unblocked unblocking +unbolt unbolts unbolted unbolted unbolting +unbonnet unbonnets unbonneted unbonneted unbonneting +unbosom unbosoms unbosomed unbosomed unbosoming +unbrace unbraces unbraced unbraced unbracing +unbridle unbridles unbridled unbridled unbridling +unbuckle unbuckles unbuckled unbuckled unbuckling +unburden unburdens unburdened unburdened unburdening +unbutton unbuttons unbuttoned unbuttoned unbuttoning +uncap uncaps uncapped uncapped uncapping +unchain unchains unchained unchained unchaining +uncheck unchecks unchecked unchecked unchecking +unchurch unchurches unchurched unchurched unchurching +unclasp unclasps unclasped unclasped unclasping +unclog unclogs unclogged unclogged unclogging +unclose uncloses unclosed unclosed unclosing +unclothe unclothes unclothed unclothed unclothing +uncoil uncoils uncoiled uncoiled uncoiling +uncork uncorks uncorked uncorked uncorking +uncouple uncouples uncoupled uncoupled uncoupling +uncover uncovers uncovered uncovered uncovering +uncurl uncurls uncurled uncurled uncurling +undeceive undeceives undeceived undeceived undeceiving +undelete undeletes undeleted undeleted undeleting +underachieve underachieves underachieved underachieved underachieving +underact underacts underacted underacted underacting +underbid underbids underbid underbid underbidding +underbuy underbuys underbought underbought underbuying +undercapitalize undercapitalizes undercapitalized undercapitalized undercapitalizing +undercharge undercharges undercharged undercharged undercharging +undercoat undercoats undercoated undercoated undercoating +undercook undercooks undercooked undercooked undercooking +undercool undercools undercooled undercooled undercooling +undercut undercuts undercut undercut undercutting +underdevelop underdevelops underdeveloped underdeveloped underdeveloping +underdrain underdrains underdrained underdrained underdraining +underestimate underestimates underestimated underestimated underestimating +underexpose underexposes underexposed underexposed underexposing +underfeed underfeeds underfed underfed underfeeding +underfund underfunds underfunded underfunded underfunding +undergird undergirds undergirded undergirded undergirding +undergo undergoes underwent undergone undergoing +underlay underlays underlaid underlaid underlaying +underlet underlets underlet underlet underletting +underlie underlies underlay underlain underlying +underline underlines underlined underlined underlining +undermine undermines undermined undermined undermining +undernourish undernourishes undernourished undernourished undernourishing +underpay underpays underpaid underpaid underpaying +underperform underperforms underperformed underperformed underperforming +underpin underpins underpinned underpinned underpinning +underplay underplays underplayed underplayed underplaying +underprice underprices underpriced underpriced underpricing +underprop underprops underpropped underpropped underpropping +underquote underquotes underquoted underquoted underquoting +underrate underrates underrated underrated underrating +underscore underscores underscored underscored underscoring +underseal underseals undersealed undersealed undersealing +undersell undersells undersold undersold underselling +underset undersets underset underset undersetting +undershoot undershoots undershot undershot undershooting +undersign undersigns undersigned undersigned undersigning +underspend underspends underspent underspent underspending +understand understands understood understood understanding +understate understates understated understated understating +understock understocks understocked understocked understocking +understudy understudies understudied understudied understudying +undertake undertakes undertook undertaken undertaking +undertrump undertrumps undertrumped undertrumped undertrumping +undervalue undervalues undervalued undervalued undervaluing +underwhelm underwhelms underwhelmed underwhelmed underwhelming +underwrite underwrites underwrote underwritten underwriting +undo undoes undid undone undoing +undock undocks undocked undocked undocking +undress undresses undressed undressed undressing +undulate undulates undulated undulated undulating +unearth unearths unearthed unearthed unearthing +unfasten unfastens unfastened unfastened unfastening +unfetter unfetters unfettered unfettered unfettering +unfit unfits unfitted unfitted unfitting +unfix unfixes unfixed unfixed unfixing +unfold unfolds unfolded unfolded unfolding +unfollow unfollows unfollowed unfollowed unfollowing +unfreeze unfreezes unfroze unfrozen unfreezing +unfriend unfriends unfriended unfriended unfriending +unfrock unfrocks unfrocked unfrocked unfrocking +unfurl unfurls unfurled unfurled unfurling +unhair unhairs unhaired unhaired unhairing +unhallow unhallows unhallowed unhallowed unhallowing +unhand unhands unhanded unhanded unhanding +unharness unharnesses unharnessed unharnessed unharnessing +unhelm unhelms unhelmed unhelmed unhelming +unhinge unhinges unhinged unhinged unhingeing +unhitch unhitches unhitched unhitched unhitching +unhook unhooks unhooked unhooked unhooking +unhorse unhorses unhorsed unhorsed unhorsing +uniform uniforms uniformed uniformed uniforming +unify unifies unified unified unifying +uninstall uninstalls uninstalled uninstalled uninstalling +unionise unionises unionised unionised unionising +unionize unionizes unionized unionized unionizing +unite unites united united uniting +universalize universalizes universalized universalized universalizing +unkennel unkennels unkenneled unkenneled unkenneling +unknit unknits unknitted unknitted unknitting +unknot unknots unknotted unknotted unknotting +unlace unlaces unlaced unlaced unlacing +unlade unlades unladed unladed unlading +unlash unlashes unlashed unlashed unlashing +unlatch unlatches unlatched unlatched unlatching +unlay unlays unlaid unlaid unlaying +unlead unleads unleaded unleaded unleading +unlearn unlearns unlearned unlearned unlearning +unleash unleashes unleashed unleashed unleashing +unlike unlikes unliked unliked unliking +unlimber unlimbers unlimbered unlimbered unlimbering +unlive unlives unlived unlived unliving +unload unloads unloaded unloaded unloading +unlock unlocks unlocked unlocked unlocking +unloose unlooses unloosed unloosed unloosing +unloosen unlooses unloosened unloosened unloosing +unmake unmakes unmade unmade unmaking +unman unmans unmanned unmanned unmanning +unmask unmasks unmasked unmasked unmasking +unmoor unmoors unmoored unmoored unmooring +unmuzzle unmuzzles unmuzzled unmuzzled unmuzzling +unnerve unnerves unnerved unnerved unnerving +unpack unpacks unpacked unpacked unpacking +unpeg unpegs unpegged unpegged unpegging +unpeople unpeoples unpeopled unpeopled unpeopling +unpick unpicks unpicked unpicked unpicking +unpin unpins unpinned unpinned unpinning +unplug unplugs unplugged unplugged unplugging +unquote unquotes unquoted unquoted unquoting +unravel unravels unravelled unravelled unravelling +unreason unreasons unreasoned unreasoned unreasoning +unreeve unreeves unrove unrove unreeving +unriddle unriddles unriddled unriddled unriddling +unrig unrigs unrigged unrigged unrigging +unrip unrips unripped unripped unripping +unroll unrolls unrolled unrolled unrolling +unroot unroots unrooted unrooted unrooting +unsaddle unsaddles unsaddled unsaddled unsaddling +unsay unsays unsaid unsaid unsaying +unscramble unscrambles unscrambled unscrambled unscrambling +unscrew unscrews unscrewed unscrewed unscrewing +unseal unseals unsealed unsealed unsealing +unseam unseams unseamed unseamed unseaming +unseat unseats unseated unseated unseating +unsettle unsettles unsettled unsettled unsettling +unsex unsexes unsexed unsexed unsexing +unsheathe unsheathes unsheathed unsheathed unsheathing +unship unships unshipped unshipped unshipping +unsling unslings unslung unslung unslinging +unsnap unsnaps unsnapped unsnapped unsnapping +unsnarl unsnarls unsnarled unsnarled unsnarling +unspeak unspeaks unspoke unspoken unspeaking +unsphere unspheres unsphered unsphered unsphering +unsteady unsteadies unsteadied unsteadied unsteadying +unsteel unsteels unsteeled unsteeled unsteeling +unstep unsteps unstepped unstepped unstepping +unstick unsticks unstuck unstuck unsticking +unstop unstops unstopped unstopped unstopping +unstring unstrings unstrung unstrung unstringing +unsubscribe unsubscribes unsubscribed unsubscribed unsubscribing +unswear unswears unswore unsworn unswearing +untangle untangles untangled untangled untangling +unteach unteaches untaught untaught unteaching +unthink unthinks unthought unthought unthinking +unthread unthreads unthreaded unthreaded unthreading +unthrone unthrones unthroned unthroned unthroning +untidy untidies untidied untidied untidying +untie unties untied untied untying +untread untreads untrod untrodden untreading +untruss untrusses untrussed untrussed untrussing +untuck untucks untucked untucked untucking +unveil unveils unveiled unveiled unveiling +unvoice unvoices unvoiced unvoiced unvoicing +unwind unwinds unwound unwound unwinding +unwish unwishes unwished unwished unwishing +unwrap unwraps unwrapped unwrapped unwrapping +unyoke unyokes unyoked unyoked unyoking +unzip unzips unzipped unzipped unzipping +up ups upped upped upping +up-anchor up-anchors up-anchored up-anchored up-anchoring +upanchor upanchors upanchored upanchored upanchoring +upbraid upbraids upbraided upbraided upbraiding +upbuild upbuilds upbuilt upbuilt upbuilding +upcast upcasts upcast upcast upcasting +upchange upchanges upchanged upchanged upchanging +upchuck upchucks upchucked upchucked upchucking +upcycle upcycles upcycled upcycled upcycling +update updates updated updated updating +upend upends upended upended upending +upgrade upgrades upgraded upgraded upgrading +upheave upheaves upheaved upheaved upheaving +uphold upholds upheld upheld upholding +upholster upholsters upholstered upholstered upholstering +uplift uplifts uplifted uplifted uplifting +upload uploads uploaded uploaded uploading +uppercase uppercases uppercased uppercased uppercasing +uppercut uppercuts uppercut uppercut uppercutting +upraise upraises upraised upraised upraising +uprear uprears upreared upreared uprearing +upright uprights uprighted uprighted uprighting +uprise uprises uprose uprisen uprising +uproot uproots uprooted uprooted uprooting +uprouse uprouses uproused uproused uprousing +upscale upscales upscaled upscaled upscaling +upsell upsells upsold upsold upselling +upset upsets upset upset upsetting +upshift upshifts upshifted upshifted upshifting +upsise upsises upsised upsised upsising +upsize upsizes upsized upsized upsizing +upskill upskills upskilled upskilled upskilling +upspring upsprings upsprung upsprung upspringing +upstage upstages upstaged upstaged upstaging +upstart upstarts upstarted upstarted upstarting +upsurge upsurges upsurged upsurged upsurging +upsweep upsweeps upswept upswept upsweeping +upswell upswells upswelled upswelled upswelling +upswing upswings upswung upswetp upswinging +uptilt uptilts uptilted uptilted uptilting +upturn upturns upturned upturned upturning +urbanize urbanizes urbanized urbanized urbanizing +urge urges urged urged urging +urinate urinates urinated urinated urinating +urticate urticates urticated urticated urticating +use uses used used using +used uses used used using +usher ushers ushered ushered ushering +usurp usurps usurped usurped usurping +utilise utilises utilised utilised utilising +utilize utilizes utilized utilized utilizing +utter utters uttered uttered uttering +vacate vacates vacated vacated vacating +vacation vacations vacationed vacationed vacationing +vaccinate vaccinates vaccinated vaccinated vaccinating +vacillate vacillates vacillated vacillated vacillating +vacuum vacuums vacuumed vacuumed vacuuming +vail vails vailed vailed vailing +valet valets valeted valeted valeting +validate validates validated validated validating +valorize valorizes valorized valorized valorizing +valuate valuates valuated valuated valuating +value values valued valued valuing +vamoose vamooses vamoosed vamoosed vamoosing +vamp vamps vamped vamped vamping +vandalise vandalises vandalised vandalised vandalising +vandalize vandalizes vandalized vandalized vandalizing +vanish vanishes vanished vanished vanishing +vanquish vanquishes vanquished vanquished vanquishing +vape vapes vaped vaped vaping +vaporise vaporises vaporised vaporised vaporising +vaporize vaporizes vaporized vaporized vaporizing +variegate variegates variegated variegated variegating +variolate variolates variolated variolated variolating +varitype varitypes varityped varityped varityping +varnish varnishes varnished varnished varnishing +vary varies varied varied varying +vassalize vassalizes vassalized vassalized vassalizing +vat vats vatted vatted vatting +vaticinate vaticinates vaticinated vaticinated vaticinating +vault vaults vaulted vaulted vaulting +vaunt vaunts vaunted vaunted vaunting +vector vectors vectored vectored vectoring +veer veers veered veered veering +veg vegges vegged vegged vegging +vegetate vegetates vegetated vegetated vegetating +veil veils veiled veiled veiling +vein veins veined veined veining +velarize velarizes velarized velarized velarizing +vellicate vellicates vellicated vellicated vellicating +vend vends vended vended vending +veneer veneers veneered veneered veneering +venerate venerates venerated venerated venerating +venge venges venged venged venging +vent vents vented vented venting +ventilate ventilates ventilated ventilated ventilating +ventriloquize ventriloquizes ventriloquized ventriloquized ventriloquizing +venture ventures ventured ventured venturing +verbalise verbalises verbalised verbalised verbalising +verbalize verbalizes verbalized verbalized verbalizing +verbify verbifies verbified verbified verbifying +verge verges verged verged verging +verify verifies verified verified verifying +verjuice verjuices verjuiced verjuiced verjuicing +vermiculate vermiculates vermiculated vermiculated vermiculating +vernalize vernalizes vernalized vernalized vernalizing +verse verses versed versed versing +versify versifies versified versified versifying +vesicate vesicates vesicated vesicated vesicating +vesiculate vesiculates vesiculated vesiculated vesiculating +vest vests vested vested vesting +vesture vestures vestured vestured vesturing +vet vets vetted vetted vetting +veto vetoes vetoed vetoed vetoing +vex vexes vexed vexed vexing +vex vexes vext vext vexing +vibrate vibrates vibrated vibrated vibrating +victimise victimises victimised victimised victimising +victimize victimizes victimized victimized victimizing +victual victuals victualled victualled victualling +video videoes videoed videoed videoing +videotape videotapes videotaped videotaped videotaping +vie vies vied vied vying +view views viewed viewed viewing +vignette vignettes vignetted vignetted vignetting +vilify vilifies vilified vilified vilifying +vilipend vilipends vilipended vilipended vilipending +vindicate vindicates vindicated vindicated vindicating +vinegar vinegars vinegared vinegared vinegaring +vintage vintages vintaged vintaged vintaging +violate violates violated violated violating +visa visas visaed visaed visaing +vise vises vised vised vising +vision visions visioned visioned visioning +visit visits visited visited visiting +visor visors visored visored visoring +visualise visualises visualised visualised visualising +visualize visualizes visualized visualized visualizing +vitalize vitalizes vitalized vitalized vitalizing +vitiate vitiates vitiated vitiated vitiating +vitrify vitrifies vitrified vitrified vitrifying +vitriol vitriols vitrioled vitrioled vitrioling +vitriolize vitriolizes vitriolized vitriolized vitriolizing +vittle vittles vittled vittled vittling +vituperate vituperates vituperated vituperated vituperating +vivify vivifies vivified vivified vivifying +vivisect vivisects vivisected vivisected vivisecting +vizor vizors vizored vizored vizoring +vocalise vocalises vocalised vocalised vocalising +vocalize vocalizes vocalized vocalized vocalizing +vociferate vociferates vociferated vociferated vociferating +voice voices voiced voiced voicing +void voids voided voided voiding +volatilize volatilizes volatilized volatilized volatilizing +volcanize volcanizes volcanized volcanized volcanizing +volley volleys volleyed volleyed volleying +volplane volplanes volplaned volplaned volplaning +volumise volumises volumised volumised volumising +volumize volumizes volumized volumized volumizing +volunteer volunteers volunteered volunteered volunteering +vomit vomits vomited vomited vomiting +voodoo voodoos voodooed voodooed voodooing +vote votes voted voted voting +vouch vouches vouched vouched vouching +vouchsafe vouchsafes vouchsafed vouchsafed vouchsafing +vow vows vowed vowed vowing +vowelize vowelizes vowelized vowelized vowelizing +voyage voyages voyaged voyaged voyaging +vulcanise vulcanises vulcanised vulcanised vulcanising +vulcanize vulcanizes vulcanized vulcanized vulcanizing +vulgarise vulgarises vulgarised vulgarised vulgarising +vulgarize vulgarizes vulgarized vulgarized vulgarizing +wabble wabbles wabbled wabbled wabbling +wad wads wadded wadded wadding +waddle waddles waddled waddled waddling +waddy waddies waddied waddied waddying +wade wades waded waded wading +wadset wadsets wadsetted wadsetted wadsetting +wafer wafers wafered wafered wafering +waff waffs waffed waffed waffing +waffle waffles waffled waffled waffling +waft wafts wafted wafted wafting +wag wags wagged wagged wagging +wage wages waged waged waging +wager wagers wagered wagered wagering +waggle waggles waggled waggled waggling +waggon waggons waggoned waggoned waggoning +wagon wagons wagoned wagoned wagoning +wail wails wailed wailed wailing +wainscot wainscots wainscoted wainscoted wainscoting +wait waits waited waited waiting +wait-list wait-lists wait-listed wait-listed wait-listing +waitlist waitlists waitlisted waitlisted waitlisting +waive waives waived waived waiving +wake wakes woke woken waking +wakeboard wakeboards wakeboarded wakeboarded wakeboarding +waken wakens wakened wakened wakening +wale wales waled waled waling +walk walks walked walked walking +wall walls walled walled walling +wallop wallops walloped walloped walloping +wallow wallows wallowed wallowed wallowing +wallpaper wallpapers wallpapered wallpapered wallpapering +waltz waltzes waltzed waltzed waltzing +wamble wambles wambled wambled wambling +wan wans wanned wanned wanning +wander wanders wandered wandered wandering +wane wanes waned waned waning +wangle wangles wangled wangled wangling +wank wanks wanked wanked wanking +wanna wannas wannaed wannaed wannaing +want wants wanted wanted wanting +wanton wantons wantoned wantoned wantoning +war wars warred warred warring +warble warbles warbled warbled warbling +ward wards warded warded warding +ware wares wared wared waring +warehouse warehouses warehoused warehoused warehousing +warm warms warmed warmed warming +warn warns warned warned warning +warp warps warped warped warping +warrant warrants warranted warranted warranting +warsle warsles warsled warsled warsling +wash washes washed washed washing +wassail wassails wassailed wassailed wassailing +waste wastes wasted wasted wasting +watch watches watched watched watching +water waters watered watered watering +watercool watercools watercooled watercooled watercooling +watermark watermarks watermarked watermarked watermarking +waterproof waterproofs waterproofed waterproofed waterproofing +waterski waterskis waterskied waterskied waterskiing +watersoak watersoaks watersoaked watersoaked watersoaking +wattle wattles wattled wattled wattling +waul wauls wauled wauled wauling +wave waves waved waved waving +waver wavers wavered wavered wavering +wawa wawas wawaed wawaed wawaing +wawl wawls wawled wawled wawling +wax waxes waxed waxed waxing +waxen waxens waxened waxened waxening +waylay waylays waylaid waylaid waylaying +weaken weakens weakened weakened weakening +wean weans weaned weaned weaning +weaponise weaponises weaponised weaponised weaponising +weaponize weaponizes weaponized weaponized weaponizing +wear wears wore worn wearing +weary wearies wearied wearied wearying +weasel weasels weaselled weaselled weaselling +weather weathers weathered weathered weathering +weathercock weathercocks weathercocked weathercocked weathercocking +weatherise weatherises weatherised weatherised weatherising +weatherize weatherizes weatherized weatherized weatherizing +weatherproof weatherproofs weatherproofed weatherproofed weatherproofing +weave weaves wove woven weaving +web webs webbed webbed webbing +webcast webcasts webcasted webcasted webcasting +wed weds wedded wedded wedding +wedge wedges wedged wedged wedging +wee wees weed weed weeing +wee-wee wee-wees wee-weed wee-weed wee-weeing +weed weeds weeded weeded weeding +weekend weekends weekended weekended weekending +ween weens weened weened weening +weep weeps wept wept weeping +weewee weewees weeweed weeweed weeweeing +weigh weighs weighed weighed weighing +weight weights weighted weighted weighting +weird weirds weirded weirded weirding +welch welches welched welched welching +welcome welcomes welcomed welcomed welcoming +weld welds welded welded welding +well wells welled welled welling +welly wellies wellied wellied wellying +welsh welshes welshed welshed welshing +welt welts welted welted welting +welter welters weltered weltered weltering +wench wenches wenched wenched wenching +wend wends wended wended wending +wend wends went went wending +wester westers westered westered westering +westernise westernises westernised westernised westernising +westernize westernizes westernized westernized westernizing +wet wets wet wet wetting +wet wets wetted wetted wetting +wet-nurse wet-nurses wet-nursed wet-nursed wet-nursing +wetnurse wetnurses wetnursed wetnursed wetnursing +whack whacks whacked whacked whacking +whale whales whaled whaled whaling +wham whams whammed whammed whamming +whang whangs whanged whanged whanging +whap whaps whaped whaped whaping +wharf wharfs wharfed wharfed wharfing +wheedle wheedles wheedled wheedled wheedling +wheel wheels wheeled wheeled wheeling +wheelbarrow wheelbarrows wheelbarrowed wheelbarrowed wheelbarrowing +wheeze wheezes wheezed wheezed wheezing +whelm whelms whelmed whelmed whelming +whelp whelps whelped whelped whelping +wherrit wherrits wherrited wherrited wherriting +whet whets whetted whetted whetting +whicker whickers whickered whickered whickering +whiff whiffs whiffed whiffed whiffing +whiffle whiffles whiffled whiffled whiffling +while whiles whiled whiled whiling +whimper whimpers whimpered whimpered whimpering +whine whines whined whined whining +whinge whinges whinged whinged whingeing +whinny whinnies whinnied whinnied whinnying +whip whips whipped whipped whipping +whipsaw whipsaws whipsawed whipsawed whipsawing +whipstitch whipstitches whipstitched whipstitched whipstitching +whir whirs whirred whirred whirring +whirl whirls whirled whirled whirling +whirr whirrs whirred whirred whirring +whish whishes whished whished whishing +whisk whisks whisked whisked whisking +whisper whispers whispered whispered whispering +whist whists whisted whisted whisting +whistle whistles whistled whistled whistling +whistlestop whistlestops whistlestoped whistlestoped whistlestoping +white whites whited whited whiting +whiten whitens whitened whitened whitening +whitewash whitewashes whitewashed whitewashed whitewashing +whittle whittles whittled whittled whittling +whiz whizzes whizzed whizzed whizzing +whizz whizzes whizzed whizzed whizzing +wholesale wholesales wholesaled wholesaled wholesaling +whoop whoops whooped whooped whooping +whoosh whooshes whooshed whooshed whooshing +whop whops whopped whopped whopping +whore whores whored whored whoring +whup whups whupped whupped whupping +wick wicks wicked wicked wicking +widen widens widened widened widening +widow widows widowed widowed widowing +wield wields wielded wielded wielding +wig wigs wigged wigged wigging +wiggle wiggles wiggled wiggled wiggling +wigwag wigwags wigwagged wigwagged wigwagging +wildcat wildcats wildcatted wildcatted wildcatting +wilder wilders wildered wildered wildering +wile wiles wiled wiled wiling +will wills willed willed willing +wilt wilts wilted wilted wilting +wimble wimbles wimbled wimbled wimbling +wimp wimps wimped wimped wimping +wimple wimples wimpled wimpled wimpling +win wins won won winning +wince winces winced winced wincing +winch winches winched winched winching +wind winds winded winded winding +wind winds wound wound winding +windlass windlasses windlassed windlassed windlassing +windmill windmills windmilled windmilled windmilling +window windows windowed windowed windowing +windowshop windowshops windowshopped windowshopped windowshopping +windrow windrows windrowed windrowed windrowing +windsurf windsurfs windsurfed windsurfed windsurfing +wine wines wined wined wining +wing wings winged winged winging +winge winges winged winged wingeing +wink winks winked winked winking +winkle winkles winkled winkled winkling +winnow winnows winnowed winnowed winnowing +winter winters wintered wintered wintering +winterfeed winterfeeds winterfed winterfed winterfeeding +winterize winterizes winterized winterized winterizing +winterkill winterkills winterkilled winterkilled winterkilling +wipe wipes wiped wiped wiping +wire wires wired wired wiring +wiredraw wiredraws wiredrew wiredrawn wiredrawing +wireless wirelesses wirelessed wirelessed wirelessing +wiretap wiretaps wiretapped wiretapped wiretapping +wis wises wised wised wising +wise wises wised wised wising +wisecrack wisecracks wisecracked wisecracked wisecracking +wish wishes wished wished wishing +wisp wisps wisped wisped wisping +wist wists wisted wisted wisting +witch witches witched witched witching +withdraw withdraws withdrew withdrawn withdrawing +withe withes withed withed withing +wither withers withered withered withering +withhold withholds withheld withheld withholding +withstand withstands withstood withstood withstanding +witness witnesses witnessed witnessed witnessing +witter witters wittered wittered wittering +wive wives wived wived wiving +wizen wizens wizened wizened wizening +wobble wobbles wobbled wobbled wobbling +wolf wolfs wolfed wolfed wolfing +wolf-whistle wolf-whistles wolf-whistled wolf-whistled wolf-whistling +wolfwhistle wolfwhistles wolfwhistled wolfwhistled wolfwhistling +woman womans womaned womaned womaning +womanize womanizes womanized womanized womanizing +wonder wonders wondered wondered wondering +wont wonts wonted wonted wonting +woo woos wooed wooed wooing +wood woods wooded wooded wooding +woof woofs woofed woofed woofing +woosh wooshes wooshed wooshed wooshing +word words worded worded wording +work works worked worked working +work-to-rule work-to-rules work-to-ruled work-to-ruled work-to-ruling +workharden workhardens workhardened workhardened work-hardening +worm worms wormed wormed worming +worrit worrits worrited worrited worriting +worry worries worried worried worrying +worsen worsens worsened worsened worsening +worship worships worshipped worshipped worshipping +worst worsts worsted worsted worsting +worth worths worthed worthed worthing +would woulds woulded woulded woulding +wouldst wouldsts wouldsted wouldsted wouldsting +wound wounds wounded wounded wounding +wow wows wowed wowed wowing +wrack wracks wracked wracked wracking +wrangle wrangles wrangled wrangled wrangling +wrap wraps wrapped wrapped wrapping +wrapped wrappeds wrappeded wrappeded wrappeding +wreak wreaks wreaked wreaked wreaking +wreathe wreathes wreathed wreathed wreathing +wreck wrecks wrecked wrecked wrecking +wrench wrenches wrenched wrenched wrenching +wrest wrests wrested wrested wresting +wrestle wrestles wrestled wrestled wrestling +wrick wricks wricked wricked wricking +wriggle wriggles wriggled wriggled wriggling +wring wrings wrung wrung wringing +wrinkle wrinkles wrinkled wrinkled wrinkling +writ writs writed writed writing +write writes wrote written writing +write-protect write-protects write-protected write-protected write-protecting +writeprotect writeprotects writeprotected writeprotected writeprotecting +writhe writhes writhed writhed writhing +writhen writhens writhened writhened writhening +wrong wrongs wronged wronged wronging +wrong-foot wrong-foots wrong-footed wrong-footed wrong-footing +wrongfoot wrongfoots wrongfooted wrongfooted wrongfooting +wrought wroughts wroughted wroughted wroughting +wry wries wried wried wrying +x-ray x-rays x-rayed x-rayed x-raying +xerox xeroxes xeroxed xeroxed xeroxing +xray xrays xrayed xrayed xraying +xylograph xylographs xylographed xylographed xylographing +yabber yabbers yabbered yabbered yabbering +yacht yachts yachted yachted yachting +yack yacks yacked yacked yacking +yak yaks yakked yakked yakking +yammer yammers yammered yammered yammering +yank yanks yanked yanked yanking +yap yaps yapped yapped yapping +yarn yarns yarned yarned yarning +yarn bomb yarn bombs yarn bombed yarn bombed yarn bombing +yaup yaups yauped yauped yauping +yaw yaws yawed yawed yawing +yawl yawls yawled yawled yawling +yawn yawns yawned yawned yawning +yawp yawps yawped yawped yawping +yean yeans yeaned yeaned yeaning +yearn yearns yearned yearned yearning +yell yells yelled yelled yelling +yellow yellows yellowed yellowed yellowing +yelp yelps yelped yelped yelping +yield yields yielded yielded yielding +yirr yirrs yirred yirred yirring +yo-yo yo-yoes yo-yoed yo-yoed yo-yoing +yodel yodels yodelled yodelled yodelling +yoke yokes yoked yoked yoking +yomp yomps yomped yomped yomping +york yorks yorked yorked yorking +yowl yowls yowled yowled yowling +yoyo yoyoes yoyoed yoyoed yoyoing +yuppify yuppifies yuppified yuppified yuppifying +zap zaps zapped zapped zapping +zero zeroes zeroed zeroed zeroing +zest zests zested zested zesting +zhoosh zhooshes zhooshed zhooshed zhooshing +zigzag zigzags zigzagged zigzagged zigzagging +zindabad zindabads zindabaded zindabaded zindabading +zing zings zinged zinged zinging +zip zips zipped zipped zipping +zip-tie zip-ties zip-tied zip-tied zip-tying +ziptie zipties ziptied ziptied ziptying +zone zones zoned zoned zoning +zoom zooms zoomed zoomed zooming +zugzwang zugzwangs zugzwanged zugzwanged zugzwanging \ No newline at end of file diff --git a/tests/facets/mod.rs b/tests/facets/mod.rs index 1053056..c29d406 100644 --- a/tests/facets/mod.rs +++ b/tests/facets/mod.rs @@ -475,7 +475,7 @@ fn extracts_quantities_percentages_ranges_and_comparisons() { #[test] fn extracts_technical_identifiers_without_reusing_agent_namespaces() { let facets = extract_memory_facets( - "UUID 550e8400-e29b-41d4-a716-446655440000, version v0.7.2, PR #142, GH-143, commit a91f72c, endpoint 127.0.0.1:8080, cuemap.dev, CUEMAP_INDEX_PATH, @kaan, and #retrieval.", + "UUID 550e8400-e29b-41d4-a716-446655440000, version v0.7.3, PR #142, GH-143, commit a91f72c, endpoint 127.0.0.1:8080, cuemap.dev, CUEMAP_INDEX_PATH, @kaan, and #retrieval.", None, &[], ); @@ -484,7 +484,7 @@ fn extracts_technical_identifiers_without_reusing_agent_namespaces() { "has:uuid", "uuid:550e8400_e29b_41d4_a716_446655440000", "has:semver", - "version:0_7_2", + "version:0_7_3", "has:issue_reference", "issue:142", "issue:143", diff --git a/tests/full_ingestion_test.rs b/tests/full_ingestion_test.rs index 55727d0..cefbb1b 100644 --- a/tests/full_ingestion_test.rs +++ b/tests/full_ingestion_test.rs @@ -28,7 +28,6 @@ fn collect_files(dir: &str) -> Vec { files } -#[ignore] #[test] fn test_chunking_coverage_all_file_types() { let base_dir = "data/agent-test"; diff --git a/tests/ingester_filter_test.rs b/tests/ingester_filter_test.rs index 5292bd3..69b038e 100644 --- a/tests/ingester_filter_test.rs +++ b/tests/ingester_filter_test.rs @@ -4,6 +4,7 @@ use cuemap::config::TuningConfig; use cuemap::jobs::{JobQueue, ProjectProvider}; use cuemap::multi_tenant::MultiTenantEngine; use std::fs; +use std::path::Path; use std::sync::Arc; use tempfile::tempdir; use tokio::time::{sleep, timeout, Duration}; @@ -350,7 +351,7 @@ async fn replacing_saved_scope_prunes_previously_tracked_paths() { .keys() .next() .unwrap(); - assert!(tracked_path.ends_with("/src/main.rs")); + assert!(Path::new(tracked_path).ends_with(Path::new("src").join("main.rs"))); } #[tokio::test] diff --git a/tests/lemmatization_quality_test.rs b/tests/lemmatization_quality_test.rs index a17e3f7..6f63177 100644 --- a/tests/lemmatization_quality_test.rs +++ b/tests/lemmatization_quality_test.rs @@ -19,14 +19,13 @@ fn test_embedded_dictionary_smoke() { } #[test] -#[ignore = "requires the optional tests/data/verbs.csv and tests/data/nouns.csv quality corpus"] fn test_generate_dictionary_and_verify() { let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap(); let data_dir = PathBuf::from(manifest_dir).join("tests/data"); assert!( data_dir.join("verbs.csv").is_file() && data_dir.join("nouns.csv").is_file(), - "optional lemmatization corpus is missing; add tests/data/verbs.csv and tests/data/nouns.csv before running this ignored quality test" + "lemmatization corpus is missing; add tests/data/verbs.csv and tests/data/nouns.csv" ); let mut overrides: HashMap = HashMap::new(); diff --git a/tests/multi_tenant/mod.rs b/tests/multi_tenant/mod.rs index 654032a..c85954b 100644 --- a/tests/multi_tenant/mod.rs +++ b/tests/multi_tenant/mod.rs @@ -2,6 +2,7 @@ use cuemap::config::TuningConfig; use cuemap::multi_tenant::*; use cuemap::structures::MainStats; use std::fs; +use std::sync::atomic::Ordering; use std::time::Duration; use tempfile::tempdir; use tokio::time::sleep; @@ -130,6 +131,191 @@ fn test_load_all_restores_every_project_snapshot() { assert_eq!(restored.main.total_memories(), 1); } +#[test] +fn test_load_all_preserves_persisted_activity_for_inactivity_reaping() { + let dir = tempdir().unwrap(); + let project_id = "load-old-activity".to_string(); + let first = MultiTenantEngine::with_snapshots_dir(dir.path(), TuningConfig::default()); + first.get_or_create_project(project_id.clone()).unwrap(); + first.save_project(&project_id).unwrap(); + + let mut metadata = first.load_project_meta(&project_id).unwrap(); + metadata.last_activity = 1; + first.save_project_meta(&metadata).unwrap(); + + let second = MultiTenantEngine::with_snapshots_dir(dir.path(), TuningConfig::default()); + second.load_all(); + let loaded = second + .list_projects() + .into_iter() + .find(|project| project.project_id == project_id) + .unwrap(); + assert!(loaded.loaded); + assert_eq!(loaded.last_activity, 1.0); +} + +#[test] +fn test_unload_persists_project_and_demand_load_restores_it() { + let dir = tempdir().unwrap(); + let engine = MultiTenantEngine::with_snapshots_dir(dir.path(), TuningConfig::default()); + let project_id = "lifecycle-roundtrip".to_string(); + let context = engine.get_or_create_project(project_id.clone()).unwrap(); + context.main.add_memory( + "memory survives unloading".to_string(), + vec!["lifecycle".to_string()], + None, + MainStats::default(), + false, + ); + drop(context); + + assert_eq!( + engine.unload_project(&project_id).unwrap(), + ProjectUnloadResult::Unloaded + ); + assert!(engine.get_project(&project_id).is_none()); + assert!(!engine.list_loaded_project_ids().contains(&project_id)); + + let unloaded_stats = engine + .list_projects() + .into_iter() + .find(|project| project.project_id == project_id) + .expect("unloaded project should remain visible"); + assert!(!unloaded_stats.loaded); + assert_eq!(unloaded_stats.total_memories, 1); + + let restored = engine + .get_or_create_project(project_id.clone()) + .expect("normal project access should demand-load a snapshot"); + assert_eq!(restored.total_memories(), 1); + assert_eq!( + restored + .main + .recall(vec!["lifecycle".to_string()], 10, false, None)[0] + .content, + "memory survives unloading" + ); + assert!(engine + .list_projects() + .into_iter() + .find(|project| project.project_id == project_id) + .unwrap() + .loaded); + assert!(engine.list_loaded_project_ids().contains(&project_id)); +} + +#[test] +fn test_unload_refuses_active_context_and_is_idempotent_after_release() { + let dir = tempdir().unwrap(); + let engine = MultiTenantEngine::with_snapshots_dir(dir.path(), TuningConfig::default()); + let project_id = "lifecycle-busy".to_string(); + let context = engine.get_or_create_project(project_id.clone()).unwrap(); + + assert_eq!( + engine.unload_project(&project_id).unwrap(), + ProjectUnloadResult::Busy + ); + assert!(engine.get_project(&project_id).is_some()); + + drop(context); + assert_eq!( + engine.unload_project(&project_id).unwrap(), + ProjectUnloadResult::Unloaded + ); + assert_eq!( + engine.unload_project(&project_id).unwrap(), + ProjectUnloadResult::AlreadyUnloaded + ); +} + +#[test] +fn test_project_snapshot_replacement_is_atomic_and_refuses_active_contexts() { + let dir = tempdir().unwrap(); + let engine = MultiTenantEngine::with_snapshots_dir(dir.path(), TuningConfig::default()); + let project_id = "lifecycle-replace".to_string(); + let context = engine.get_or_create_project(project_id.clone()).unwrap(); + context.main.add_memory( + "keep this memory".to_string(), + vec!["replacement".to_string()], + None, + MainStats::default(), + false, + ); + + assert_eq!( + engine + .replace_project_snapshot(&project_id, || Ok(())) + .unwrap(), + ProjectReplaceResult::Busy + ); + drop(context); + + let error = engine + .replace_project_snapshot(&project_id, || Err("replacement failed".to_string())) + .unwrap_err(); + assert_eq!(error, "replacement failed"); + assert_eq!( + engine + .get_project(&project_id) + .unwrap() + .main + .recall(vec!["replacement".to_string()], 10, false, None) + .len(), + 1 + ); + + assert_eq!( + engine + .replace_project_snapshot(&project_id, || Ok(())) + .unwrap(), + ProjectReplaceResult::Reloaded + ); +} + +#[test] +fn test_unload_requires_persistence_to_protect_unsaved_memory() { + let dir = tempdir().unwrap(); + let mut config = cuemap::config::ServerConfig::default(); + config.persistence.enabled = false; + let engine = MultiTenantEngine::with_config(config, dir.path().to_path_buf()); + let project_id = "no-persistence".to_string(); + let context = engine.get_or_create_project(project_id.clone()).unwrap(); + drop(context); + + let error = engine.unload_project(&project_id).unwrap_err(); + assert!(error.contains("persistence to be enabled")); + assert!(engine.get_project(&project_id).is_some()); +} + +#[test] +fn test_unload_inactive_projects_only_reaps_stale_loaded_contexts() { + let dir = tempdir().unwrap(); + let engine = MultiTenantEngine::with_snapshots_dir(dir.path(), TuningConfig::default()); + let stale_id = "lifecycle-stale".to_string(); + let recent_id = "lifecycle-recent".to_string(); + let stale = engine.get_or_create_project(stale_id.clone()).unwrap(); + let recent = engine.get_or_create_project(recent_id.clone()).unwrap(); + stale + .last_activity + .store(0, Ordering::Relaxed); + recent + .last_activity + .store( + std::time::SystemTime::now() + .duration_since(std::time::UNIX_EPOCH) + .unwrap() + .as_secs(), + Ordering::Relaxed, + ); + drop(stale); + drop(recent); + + let unloaded = engine.unload_inactive_projects(Duration::from_secs(1)); + assert_eq!(unloaded, vec![stale_id.clone()]); + assert!(engine.get_project(&stale_id).is_none()); + assert!(engine.get_project(&recent_id).is_some()); +} + #[test] fn test_delete_project() { let dir = tempdir().unwrap(); diff --git a/tests/nl/mod.rs b/tests/nl/mod.rs index 55d2c9d..84784f8 100644 --- a/tests/nl/mod.rs +++ b/tests/nl/mod.rs @@ -29,6 +29,21 @@ fn test_normalize_text() { ); } +#[test] +fn test_new_language_contexts_are_supported() { + assert_eq!(Language::from("lang:c"), Language::C); + assert_eq!(Language::from("lang:cpp"), Language::Cpp); + assert_eq!(Language::from("lang:csharp"), Language::CSharp); + assert_eq!(Language::from("lang:bash"), Language::Bash); + assert_eq!(Language::from("lang:toml"), Language::Toml); + + assert!(get_language_stopwords(Language::C).contains("struct")); + assert!(get_language_stopwords(Language::Cpp).contains("namespace")); + assert!(get_language_stopwords(Language::CSharp).contains("foreach")); + assert!(get_language_stopwords(Language::Bash).contains("function")); + assert!(get_language_stopwords(Language::Toml).contains("true")); +} + #[test] fn test_product_case_boundaries_emit_component_cues() { let cues = tokenize_to_cues("My iPhone 13 Pro syncs with GitHub and PowerPoint."); @@ -169,6 +184,63 @@ fn test_multiword_verb_exceptions_do_not_rewrite_component_words() { } } +#[test] +fn test_common_lemmas_do_not_use_truncated_or_wrong_pos_forms() { + let cases = [ + ("analyzes", "analyze"), + ("arises", "arise"), + ("arses", "arse"), + ("bodies", "body"), + ("bridges", "bridge"), + ("buzzes", "buzz"), + ("canvasses", "canvass"), + ("churches", "church"), + ("coaxes", "coax"), + ("companies", "company"), + ("compasses", "compass"), + ("carouses", "carouse"), + ("delves", "delve"), + ("divvies", "divvy"), + ("fishing", "fish"), + ("frizzes", "frizz"), + ("getting", "get"), + ("glasses", "glass"), + ("imagines", "imagine"), + ("interleaves", "interleave"), + ("judges", "judge"), + ("paralyzes", "paralyze"), + ("pasting", "paste"), + ("phases", "phase"), + ("phantasies", "phantasy"), + ("pickaxes", "pickaxe"), + ("pledges", "pledge"), + ("premiered", "premiere"), + ("programming", "program"), + ("putting", "put"), + ("raises", "raise"), + ("reaches", "reach"), + ("sasses", "sass"), + ("sexes", "sex"), + ("sises", "sise"), + ("stories", "story"), + ("taxes", "tax"), + ("teaches", "teach"), + ("tawses", "tawse"), + ("tries", "try"), + ("using", "use"), + ("uses", "use"), + ("wishes", "wish"), + ("witnesses", "witness"), + ("curries", "curry"), + ("curtsies", "curtsy"), + ("overemphasises", "overemphasise"), + ]; + + for (word, expected) in cases { + assert_eq!(stem_word(word), expected, "{word} should stem to {expected}"); + } +} + #[test] fn test_lemma_exception_table_has_no_identity_entries() { let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap(); diff --git a/tests/normalization/mod.rs b/tests/normalization/mod.rs index 05de16b..360622c 100644 --- a/tests/normalization/mod.rs +++ b/tests/normalization/mod.rs @@ -51,7 +51,6 @@ fn test_rewrite_chaining() { assert_eq!(normalized, "tag:my_value"); } -#[ignore] #[test] fn test_prefix_deduplication() { let config = NormalizationConfig::default(); diff --git a/tests/recursive_crawl_test.rs b/tests/recursive_crawl_test.rs index 7985a7a..049870a 100644 --- a/tests/recursive_crawl_test.rs +++ b/tests/recursive_crawl_test.rs @@ -4,6 +4,35 @@ use cuemap::agent::AgentConfig; use cuemap::jobs::JobQueue; use cuemap::multi_tenant::MultiTenantEngine; use std::sync::Arc; +use std::time::Duration; + +/// Wait until the queue has acknowledged every write enqueued by an ingest. +/// +/// The test queue still drains its channel asynchronously even when background +/// jobs are disabled, so asserting immediately after `process_url*` returns +/// races the worker. Polling the session progress keeps these tests focused +/// on the ordering guarantee they are meant to verify. +async fn wait_for_writes(job_queue: &JobQueue, project_id: &str) { + let deadline = tokio::time::Instant::now() + Duration::from_secs(15); + + loop { + let Some(session) = job_queue.get_session(project_id) else { + return; + }; + let progress = session.get_progress(); + if progress.writes_completed >= progress.writes_total { + return; + } + + assert!( + tokio::time::Instant::now() < deadline, + "Timed out waiting for writes to complete: {}/{}", + progress.writes_completed, + progress.writes_total + ); + tokio::time::sleep(Duration::from_millis(20)).await; + } +} /// Test basic URL chunking (single page, no recursion) #[tokio::test] @@ -55,7 +84,6 @@ async fn test_single_url_chunking() { /// Test recursive crawl with depth=1 on a real documentation page /// This is a longer test that requires network access -#[ignore] // Run with: cargo test --test recursive_crawl_test test_recursive_crawl_depth_1 -- --ignored #[tokio::test] async fn test_recursive_crawl_depth_1() { // Use axum docs as a stable test target (small, well-structured) @@ -88,6 +116,10 @@ async fn test_recursive_crawl_depth_1() { ) .await; + if result.is_ok() { + wait_for_writes(&job_queue, "test-project").await; + } + match result { Ok(crawl_result) => { println!("Crawl Result:"); @@ -141,7 +173,6 @@ async fn test_recursive_crawl_depth_1() { /// Test that job phases work correctly: /// 1. During crawl: phase should be Writing /// 2. After crawl: all writes should be complete before bg jobs start -#[ignore] #[tokio::test] async fn test_job_phase_ordering() { let test_url = "https://example.com"; @@ -164,6 +195,10 @@ async fn test_job_phase_ordering() { // Single page crawl (depth=0 still uses recursive method internally) let result = ingester.process_url(test_url, "phase-test").await; + if result.is_ok() { + wait_for_writes(&job_queue, "phase-test").await; + } + if let Ok(memory_ids) = result { if let Some(session) = job_queue.get_session("phase-test") { let progress = session.get_progress(); diff --git a/tests/unit/api.rs b/tests/unit/api.rs index 39767b1..4d4b4c3 100644 --- a/tests/unit/api.rs +++ b/tests/unit/api.rs @@ -11,6 +11,62 @@ use std::sync::Arc; use tower::ServiceExt; + #[test] + fn preview_shaping_preserves_handles_diagnostics_and_unicode() { + let text = format!("{}πŸ˜€tail", "x".repeat(99)); + let response = serde_json::json!({"results":[ + {"project_id":"a", "results":[{"id":7,"content":text,"metadata":{"source":"a.rs"}}]}, + {"project_id":"b", "results":[]}, {"project_id":"c","error":"Unavailable"} + ],"timing":{"scan_ms":1}}); + assert_eq!(shape_recall_response(response.clone(), RecallResponseMode::Full, 100), response); + let preview = shape_recall_response(response.clone(), RecallResponseMode::Preview, 100); + let hit = &preview["results"][0]["results"][0]; + assert_eq!(hit["preview"], "x".repeat(99)); + assert_eq!(hit["content_length"], 105); + assert_eq!(hit["content_truncated"], true); + assert!(hit.get("content").is_none()); + assert_eq!(hit["id"], 7); + assert_eq!(hit["metadata"]["source"], "a.rs"); + assert_eq!(preview["results"][1], response["results"][1]); + assert_eq!(preview["results"][2], response["results"][2]); + assert_eq!(preview["timing"], response["timing"]); + for content in ["", "short"] { + let shaped = shape_recall_response(serde_json::json!({"results":[{"content":content}]}), RecallResponseMode::Preview, 100); + assert_eq!(shaped["results"][0]["preview"], content); + assert_eq!(shaped["results"][0]["content_truncated"], false); + } + } + + #[tokio::test] + async fn recall_preview_is_an_engine_response_for_single_and_multiple_projects() { + let router = test_router(); + let content = format!("Preview discovery source. {}", "supporting evidence ".repeat(50)); + let stored = router.clone().oneshot(Request::builder().method("POST").uri("/memories") + .header("X-Project-ID", "preview-test").header("content-type", "application/json") + .body(Body::from(serde_json::json!({"content":content,"disable_temporal_chunking":true}).to_string())).unwrap()).await.unwrap(); + assert_eq!(stored.status(), StatusCode::OK); + for projects in [serde_json::Value::Null, serde_json::json!(["preview-test"])] { + for explain in [false, true] { + let payload = serde_json::json!({"query_text":"preview discovery source","semantic_mode":"lexical", + "response_mode":"preview","preview_chars":100,"projects":projects,"explain":explain}); + let response = router.clone().oneshot(Request::builder().method("POST").uri("/recall") + .header("X-Project-ID", "preview-test").header("content-type", "application/json") + .body(Body::from(payload.to_string())).unwrap()).await.unwrap(); + assert_eq!(response.status(), StatusCode::OK); + let body = json_body(response).await; + assert_eq!(body["response_mode"], "preview"); + let hit = if projects.is_null() { &body["results"][0] } else { &body["results"][0]["results"][0] }; + assert_eq!(hit["preview"], &content[..100]); + assert!(hit.get("content").is_none()); + assert_eq!(hit["content_truncated"], true); + } + } + let response = router.oneshot(Request::builder().method("POST").uri("/recall") + .header("X-Project-ID", "preview-test").header("content-type", "application/json") + .body(Body::from(r#"{"query_text":"test","response_mode":"preview","preview_chars":0}"#)).unwrap()).await.unwrap(); + assert_eq!(response.status(), StatusCode::BAD_REQUEST); + } + #[test] fn source_event_time_prefers_explicit_and_reads_structured_metadata() { let mut metadata = HashMap::new(); @@ -1963,6 +2019,35 @@ ) } + fn test_router_for_packages( + data_dir: &std::path::Path, + read_only: bool, + ) -> axum::Router { + let snapshots = data_dir.join("snapshots"); + let mt_engine = Arc::new(MultiTenantEngine::with_snapshots_dir( + &snapshots, + TuningConfig::default(), + )); + let metrics = Arc::new(MetricsCollector::new()); + let provider: Arc = mt_engine.clone(); + let job_queue = Arc::new(JobQueue::new(provider, Some(metrics.clone()), true)); + let agent_manager = Arc::new(crate::agent::manager::AgentManager::new( + job_queue.clone(), + mt_engine.clone(), + )); + routes( + mt_engine, + job_queue, + metrics, + AuthConfig::from_config(&crate::config::SecurityConfig::default()), + read_only, + data_dir.to_string_lossy().to_string(), + None, + None, + agent_manager, + ) + } + async fn test_router_with_local_backup() -> axum::Router { let root = std::env::temp_dir().join(format!("cuemap-api-backup-{}", uuid::Uuid::new_v4())); let data_dir = root.join("data"); @@ -2037,7 +2122,21 @@ .await .unwrap(); assert_eq!(root.status(), StatusCode::OK); - assert!(json_body(root).await["capabilities"].as_array().unwrap().len() >= 4); + assert!(json_body(root).await["capabilities"] + .as_array() + .unwrap() + .iter() + .any(|capability| capability == "project_packages_v1")); + let root = router + .clone() + .oneshot(Request::builder().uri("/").body(Body::empty()).unwrap()) + .await + .unwrap(); + assert!(json_body(root).await["capabilities"] + .as_array() + .unwrap() + .iter() + .any(|capability| capability == "project_sync_v1")); let missing_project = router .clone() @@ -2069,6 +2168,20 @@ .await .unwrap(); assert_eq!(stored.status(), StatusCode::OK); + + let saved = router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/api-test/save") + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(saved.status(), StatusCode::OK); + assert_eq!(json_body(saved).await["status"], "saved"); let stored_json = json_body(stored).await; let id = stored_json["id"].as_u64().unwrap(); @@ -2084,7 +2197,27 @@ .await .unwrap(); assert_eq!(fetched.status(), StatusCode::OK); - assert_eq!(json_body(fetched).await["id"], id); + let raw = json_body(fetched).await; + assert_eq!(raw["id"], id); + assert!(raw["content"].is_array(), "legacy storage response is unchanged"); + + let decoded = router.clone().oneshot( + Request::builder().uri(format!("/memories/{id}?decoded=true")) + .header("X-Project-ID", "api-test").body(Body::empty()).unwrap(), + ).await.unwrap(); + assert_eq!(decoded.status(), StatusCode::OK); + let decoded = json_body(decoded).await; + assert_eq!(decoded["content"], "hello world"); + assert_eq!(decoded["memory_id"], id); + assert_eq!(decoded["project_id"], "api-test"); + assert_eq!(decoded["metadata"]["source"], "test"); + assert!(decoded.get("semantic_vector").is_none()); + + let other_project = router.clone().oneshot( + Request::builder().uri(format!("/memories/{id}?decoded=true")) + .header("X-Project-ID", "different-project").body(Body::empty()).unwrap(), + ).await.unwrap(); + assert_eq!(other_project.status(), StatusCode::NOT_FOUND); let reinforced_with_cues = router .clone() @@ -2335,6 +2468,383 @@ assert_eq!(deleted_project.status(), StatusCode::OK); } + #[tokio::test] + async fn routes_cover_project_load_unload_and_demand_reload() { + let router = test_router(); + let project_id = "api-lifecycle"; + + let created = router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/projects") + .header("content-type", "application/json") + .body(Body::from(format!(r#"{{"project_id":"{project_id}"}}"#))) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(created.status(), StatusCode::CREATED); + + let stored = router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/memories") + .header("content-type", "application/json") + .header("X-Project-ID", project_id) + .body(Body::from(r#"{"content":"reload me","cues":["lifecycle"]}"#)) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(stored.status(), StatusCode::OK); + + let unloaded = router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri(format!("/projects/{project_id}/unload")) + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(unloaded.status(), StatusCode::OK); + assert_eq!(json_body(unloaded).await["loaded"], false); + + let listed = router + .clone() + .oneshot(Request::builder().uri("/projects").body(Body::empty()).unwrap()) + .await + .unwrap(); + let listed_json = json_body(listed).await; + let listed_project = listed_json + .as_array() + .unwrap() + .iter() + .find(|project| project["project_id"] == project_id) + .unwrap(); + assert_eq!(listed_project["loaded"], false); + assert_eq!(listed_project["total_memories"], 1); + + // Recall is a normal project request and should transparently load + // the snapshot back into memory. + let recalled = router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/recall") + .header("content-type", "application/json") + .header("X-Project-ID", project_id) + .body(Body::from(r#"{"cues":["lifecycle"],"limit":5}"#)) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(recalled.status(), StatusCode::OK); + assert_eq!(json_body(recalled).await["results"].as_array().unwrap().len(), 1); + + let explicitly_unloaded = router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri(format!("/projects/{project_id}/unload")) + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(explicitly_unloaded.status(), StatusCode::OK); + + let loaded = router + .oneshot( + Request::builder() + .method("POST") + .uri(format!("/projects/{project_id}/load")) + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(loaded.status(), StatusCode::OK); + assert_eq!(json_body(loaded).await["loaded"], true); + } + + #[tokio::test] + async fn project_unload_is_forbidden_in_read_only_mode_and_missing_load_is_not_found() { + let router = test_router_with_read_only(true); + + let unload = router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/api-lifecycle/unload") + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(unload.status(), StatusCode::FORBIDDEN); + + let save = router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/api-lifecycle/save") + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(save.status(), StatusCode::FORBIDDEN); + + let load = router + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/api-lifecycle/load") + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(load.status(), StatusCode::NOT_FOUND); + } + + #[tokio::test] + async fn routes_cover_portable_project_package_round_trip_and_guards() { + let source = tempfile::tempdir().unwrap(); + let target = tempfile::tempdir().unwrap(); + let source_router = test_router_for_packages(source.path(), false); + + let stored = source_router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/memories") + .header("content-type", "application/json") + .header("X-Project-ID", "api-package") + .body(Body::from( + r#"{"content":"portable API memory","cues":["package-roundtrip"]}"#, + )) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(stored.status(), StatusCode::OK); + + let packed = source_router + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/api-package/pack") + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(packed.status(), StatusCode::OK); + assert_eq!( + packed.headers()["content-type"], + "application/vnd.cuemap.project" + ); + let package = to_bytes(packed.into_body(), usize::MAX).await.unwrap(); + assert!(package.starts_with(b"CUEMAP01")); + + let target_router = test_router_for_packages(target.path(), false); + let loaded = target_router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/load") + .header("content-type", "application/vnd.cuemap.project") + .body(Body::from(package.clone())) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(loaded.status(), StatusCode::OK); + assert_eq!(json_body(loaded).await["project_id"], "api-package"); + + let duplicate = target_router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/load") + .body(Body::from(package)) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(duplicate.status(), StatusCode::CONFLICT); + + let recalled = target_router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/recall") + .header("content-type", "application/json") + .header("X-Project-ID", "api-package") + .body(Body::from( + r#"{"cues":["package-roundtrip"],"semantic_mode":"lexical"}"#, + )) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(recalled.status(), StatusCode::OK); + assert_eq!(json_body(recalled).await["results"][0]["content"], "portable API memory"); + + let invalid_push = target_router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/api-package/push") + .header("content-type", "application/json") + .body(Body::from(r#"{"destination":"https://example.test/file"}"#)) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(invalid_push.status(), StatusCode::BAD_REQUEST); + + let invalid_pull = target_router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/pull") + .header("content-type", "application/json") + .body(Body::from(r#"{"source":"s3://bucket-only"}"#)) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(invalid_pull.status(), StatusCode::BAD_REQUEST); + + let invalid_sync = target_router + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/api-package/sync") + .header("content-type", "application/json") + .body(Body::from(r#"{"remote":"https://example.test/sync"}"#)) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(invalid_sync.status(), StatusCode::BAD_REQUEST); + + let read_only_root = tempfile::tempdir().unwrap(); + let read_only = test_router_for_packages(read_only_root.path(), true); + let read_only_pack = read_only + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/api-package/pack") + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(read_only_pack.status(), StatusCode::FORBIDDEN); + let read_only_load = read_only + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/load") + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(read_only_load.status(), StatusCode::FORBIDDEN); + let read_only_sync = read_only + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/api-package/sync") + .header("content-type", "application/json") + .body(Body::from(r#"{"remote":"s3://example-bucket/team"}"#)) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(read_only_sync.status(), StatusCode::FORBIDDEN); + } + + #[tokio::test] + async fn routes_cover_project_lifecycle_and_package_validation_errors() { + let router = test_router(); + + for uri in [ + "/projects/bad!id/load", + "/projects/bad!id/save", + "/projects/bad!id/unload", + "/projects/bad!id/pack", + ] { + let response = router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri(uri) + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(response.status(), StatusCode::BAD_REQUEST, "{uri}"); + } + + for uri in [ + "/projects/missing-project/load", + "/projects/missing-project/save", + "/projects/missing-project/pack", + ] { + let response = router + .clone() + .oneshot( + Request::builder() + .method("POST") + .uri(uri) + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(response.status(), StatusCode::NOT_FOUND, "{uri}"); + } + + let malformed_package = router + .oneshot( + Request::builder() + .method("POST") + .uri("/projects/load") + .header("content-type", "application/vnd.cuemap.project") + .body(Body::from("not a cuemap package")) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(malformed_package.status(), StatusCode::BAD_REQUEST); + } + #[tokio::test] async fn routes_cover_project_guards_reload_and_directory_validation() { let router = test_router(); @@ -3615,3 +4125,90 @@ .unwrap(); assert_eq!(crawled.status(), StatusCode::OK); } + + #[tokio::test] + async fn uploads_cannot_overwrite_or_delete_client_selected_paths() { + let sandbox = tempfile::tempdir().unwrap(); + let victim = sandbox.path().join("sentinel.txt"); + std::fs::write(&victim, "original sentinel").unwrap(); + let router = test_router(); + let absolute = victim.to_string_lossy().to_string(); + let traversal = format!("../{}/sentinel.txt", sandbox.path().file_name().unwrap().to_string_lossy()); + let mut names = vec![absolute, traversal]; + #[cfg(unix)] { + let link = sandbox.path().join("link.txt"); + std::os::unix::fs::symlink(&victim, &link).unwrap(); + names.push(link.to_string_lossy().to_string()); + } + for filename in names { + let body = format!("--probe\r\nContent-Disposition: form-data; name=\"file\"; filename=\"normal.txt\"\r\n\r\nHarmless upload text.\r\n--probe\r\nContent-Disposition: form-data; name=\"filename\"\r\n\r\n{}\r\n--probe--\r\n", filename); + let upload = || router.clone().oneshot(Request::builder().method("POST").uri("/ingest/file") + .header("Content-Type", "multipart/form-data; boundary=probe") + .header("X-Project-ID", "upload-regression") + .body(Body::from(body.clone())).unwrap()); + let (one, two) = tokio::join!(upload(), upload()); + assert_eq!(one.unwrap().status(), StatusCode::OK); + assert_eq!(two.unwrap().status(), StatusCode::OK); + assert_eq!(std::fs::read_to_string(&victim).unwrap(), "original sentinel"); + } + } + + #[tokio::test] + async fn read_only_blocks_all_mutating_route_families_before_extraction() { + let router = test_router_with_read_only(true); + for (method, path) in [ + ("POST", "/memories"), ("POST", "/memories/batch"), + ("PATCH", "/memories/1/reinforce"), ("DELETE", "/memories/1"), + ("POST", "/projects"), ("DELETE", "/projects/demo"), + ("POST", "/projects/demo/watch-dir"), ("POST", "/projects/demo/artifacts"), + ("POST", "/projects/demo/save"), + ("POST", "/projects/demo/unload"), ("POST", "/projects/demo/pack"), + ("POST", "/projects/demo/push"), ("POST", "/projects/demo/sync"), + ("POST", "/projects/load"), ("POST", "/projects/pull"), + ("POST", "/aliases"), ("POST", "/aliases/merge"), + ("DELETE", "/lexicon/entry/1"), ("POST", "/lexicon/wire"), + ("POST", "/ingest/content"), ("POST", "/ingest/file"), ("POST", "/ingest/url"), + ("POST", "/backup/upload"), ("POST", "/backup/download"), ("DELETE", "/backup/demo"), + ] { + let response = router.clone().oneshot(Request::builder().method(method).uri(path) + .body(Body::empty()).unwrap()).await.unwrap(); + assert_eq!(response.status(), StatusCode::FORBIDDEN, "{method} {path}"); + } + let health = router.oneshot(Request::builder().uri("/healthz").body(Body::empty()).unwrap()).await.unwrap(); + assert_eq!(health.status(), StatusCode::NO_CONTENT); + } + + #[tokio::test] + async fn browser_requests_are_rejected_even_without_json_preflight() { + let router = test_router(); + for origin in ["https://attacker.example", "null", "http://localhost:3000"] { + let response = router.clone().oneshot(Request::builder().method("POST").uri("/memories") + .header("Origin", origin).header("Content-Type", "text/plain") + .body(Body::from("{}")).unwrap()).await.unwrap(); + assert_eq!(response.status(), StatusCode::FORBIDDEN); + } + let response = router.oneshot(Request::builder().uri("/projects") + .header("Sec-Fetch-Site", "same-origin").body(Body::empty()).unwrap()).await.unwrap(); + assert_eq!(response.status(), StatusCode::FORBIDDEN); + } + + #[tokio::test] + async fn oversized_uploads_are_rejected() { + let response = test_router().oneshot(Request::builder().method("POST").uri("/ingest/file") + .header("Content-Type", "multipart/form-data; boundary=probe") + .header("Content-Length", (64 * 1024 * 1024 + 1).to_string()) + .body(Body::empty()).unwrap()).await.unwrap(); + assert_eq!(response.status(), StatusCode::PAYLOAD_TOO_LARGE); + } + + #[tokio::test] + async fn streaming_body_limits_reject_payloads_without_content_length() { + let payload = vec![b'x'; 1024 * 1024]; + let stream = futures::stream::iter((0..65).map(move |_| { + Ok::<_, std::convert::Infallible>(bytes::Bytes::copy_from_slice(&payload)) + })); + let response = test_router().oneshot(Request::builder().method("POST").uri("/ingest/content") + .header("Content-Type", "application/json") + .body(Body::from_stream(stream)).unwrap()).await.unwrap(); + assert_eq!(response.status(), StatusCode::PAYLOAD_TOO_LARGE); + } diff --git a/tests/unit/nl.rs b/tests/unit/nl.rs index 53bfa09..58f2675 100644 --- a/tests/unit/nl.rs +++ b/tests/unit/nl.rs @@ -1,4 +1,9 @@ - use super::tokenize_to_cues; + use super::{ + get_language_stopwords, get_stopwords, normalize_text, sanitize_text, tokenize_to_cues, + tokenize_to_cues_with_lang, + Language, SymbolRouter, Intent, + }; + use std::collections::HashSet; #[test] fn temporal_connector_breaks_phrase_without_removing_token() { @@ -11,3 +16,75 @@ assert!(cues.contains(&"april_deploy".to_string())); assert!(!cues.contains(&"mint_tea_after".to_string())); } + + #[test] + fn every_supported_language_has_keyword_filtering() { + let languages = [ + Language::Default, + Language::Rust, + Language::Python, + Language::TypeScript, + Language::JavaScript, + Language::Go, + Language::Php, + Language::Java, + Language::Swift, + Language::Dart, + Language::ObjectiveC, + Language::Kotlin, + Language::C, + Language::Cpp, + Language::CSharp, + Language::Bash, + Language::Toml, + Language::Css, + Language::Html, + ]; + for language in languages { + let words = get_language_stopwords(language); + assert!(!words.is_empty()); + } + assert!(get_stopwords().contains("the")); + } + + #[test] + fn symbol_router_extracts_longest_symbols_and_compiles_intents() { + let symbols = HashSet::from([ + "foo".to_string(), + "foo_bar".to_string(), + "bar".to_string(), + ]); + let router = SymbolRouter::new(symbols); + let (intent, extracted) = router.route("where are foo_bar callers used?"); + assert_eq!(intent, Intent::FindCalls); + assert_eq!(extracted, vec!["foo_bar"]); + assert_eq!( + router.compile_to_cues(Intent::FindDef, vec!["Thing".to_string()]), + vec![ + "defines_function:Thing", + "defines_class:Thing", + "defines_struct:Thing", + "defines_method:Thing", + ] + ); + assert_eq!( + router.compile_to_cues(Intent::FindImports, vec!["serde".to_string()]), + vec!["imports_module:serde"] + ); + assert_eq!( + router.compile_to_cues(Intent::Generic, vec!["plain".to_string()]), + vec!["plain"] + ); + } + + #[test] + fn text_sanitization_and_normalization_handle_urls_camel_case_and_noise() { + assert_eq!(sanitize_text("Read https://www.Example.com/path?q=1"), "Read Example"); + assert_eq!(normalize_text("HTTPServer v2 API"), "http server v 2 api"); + let cues = tokenize_to_cues_with_lang( + "the HTTPServer uses abc12345 and running workers", + Language::Rust, + ); + assert!(cues.contains(&"server".to_string())); + assert!(!cues.contains(&"abc12345".to_string())); + }